/* Custom Alert Styles */
.alert {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    border-width: 1px;
    border-style: solid;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}
/*
.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}*/

.alert:hover::before {
    opacity: 1;
}

.alert-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.alert-content {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.alert-danger {
    background-color: #fee2e2;
    border-color: #fecaca;
    color: #991b1b;
}
.alert-danger .alert-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.alert-danger .alert-link {
    color: #b91c1c;
}

.alert-success {
    background-color: #dcfce7;
    border-color: #bbf7d0;
    color: #166534;
}
.alert-success .alert-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.alert-success .alert-link {
    color: #15803d;
}

.alert-warning {
    background-color: #fffbeb;
    border-color: #fef3c7;
    color: #92400e;
}

.alert-warning .alert-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.alert-warning .alert-link {
    color: #b45309;
}


.alert-link {
    font-weight: 600;
    text-decoration: underline;
}


.md-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.md-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.md-card-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.md-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.md-card-header-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.md-card-header-icon i {
    font-size: 1.2rem;
    color: white;
}

.md-card-header-title {
    color: white;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.md-card-body {
    padding: 1.5rem;
    background: hsl(var(--body-bg)) !important;
}

/* Background Color Variants */
.md-bg-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.md-bg-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.md-bg-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.md-bg-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.md-bg-info {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.md-bg-dark {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

/* Size Variants */
.md-sm {
    padding: 1rem 1.25rem;
}

.md-sm .md-card-header-icon {
    width: 36px;
    height: 36px;
}

.md-sm .md-card-header-icon i {
    font-size: 1rem;
}

.md-sm .md-card-header-title {
    font-size: 1.1rem;
}

.md-lg {
    padding: 1.5rem 2rem;
}

.md-lg .md-card-header-icon {
    width: 52px;
    height: 52px;
}

.md-lg .md-card-header-icon i {
    font-size: 1.4rem;
}

.md-lg .md-card-header-title {
    font-size: 1.4rem;
}

/* Card Body Size Variants */
.md-card-body.md-sm {
    padding: 1rem;
}

.md-card-body.md-lg {
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .md-card-header {
        padding: 1rem 1.25rem;
    }

    .md-card-header-icon {
        width: 36px;
        height: 36px;
    }

    .md-card-header-icon i {
        font-size: 1rem;
    }

    .md-card-header-title {
        font-size: 1.1rem;
    }

    .md-card-body {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .md-card-header {
        padding: 0.875rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .md-card-header-title {
        font-size: 1rem;
    }

    .md-card-body {
        padding: 1rem;
    }
}

/* Price Selection Components */
.md-price-selection-container {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.md-price-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 200px;
    max-width: 350px;
    min-height: 240px;
}

.md-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.md-price-card:hover::before {
    opacity: 1;
}

.md-price-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #6366f1;
}

.md-price-card.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-color: #6366f1;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
    transform: translateY(-3px);
}

.md-price-card.active::before {
    opacity: 0;
}

.md-price-card-glow {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 13px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.md-price-card.active .md-price-card-glow {
    opacity: 1;
    animation: md-pulse 2s infinite;
}

@keyframes md-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.01);
    }
}

.md-price-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.75rem;
    position: relative;
}

.md-price-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.md-price-card.active .md-price-icon-wrapper {
    background: white;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.md-price-icon {
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
}

.md-price-card.active .md-price-icon {
    color: #6366f1;
}

.md-price-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bs-heading-color);
    margin: 0;
    text-align: center;
    transition: color 0.3s ease;
}

.md-price-card.active .md-price-title {
    color: white;
}

.md-price-card-body {
    text-align: center;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.md-price-amount-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 9;
}

.md-price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6366f1;
    transition: all 0.3s ease;
}

.md-price-card.active .md-price-amount {
    color: white;
}

.md-price-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6366f1;
    margin-left: 0.2rem;
    transition: color 0.3s ease;
}

.md-price-card.active .md-price-currency {
    color: white;
}

.md-price-description {
    font-size: 0.8rem;
    color: var(--bs-body-color);
    line-height: 1.4;
    opacity: 0.8;
    transition: color 0.3s ease;
}

.md-price-card.active .md-price-description {
    color: rgba(255, 255, 255, 0.9);
}

.md-price-card-footer {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.md-selection-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.md-price-card.active .md-selection-indicator {
    opacity: 1;
    transform: scale(1);
    background: white;
}

.md-selection-indicator i {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.md-price-card.active .md-selection-indicator i {
    color: #6366f1;
}

/* Badge Components */
.md-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.md-badge-popular {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    animation: md-bounce 2s infinite;
    position: absolute;
    top: -8px;
    right: -8px;
}

@keyframes md-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-2px);
    }

    60% {
        transform: translateY(-1px);
    }
}

.md-badge-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.md-badge-hot {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Button Components */
.md-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.md-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.md-btn:hover::before {
    opacity: 1;
}

.md-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.md-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    color: white;
}

.md-btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.md-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    color: white;
}

.md-btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.md-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    color: white;
}

.md-btn-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.md-btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    color: white;
}

.md-btn-info {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.md-btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
    color: white;
}

.md-btn-dark {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(55, 65, 81, 0.3);
}

.md-btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(55, 65, 81, 0.4);
    color: white;
}

/* Utility Classes */
.md-shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.md-shadow-md {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.md-shadow-lg {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.md-hover-up {
    transition: transform 0.3s ease;
}

.md-hover-up:hover {
    transform: translateY(-2px);
}

.md-hover-scale {
    transition: transform 0.3s ease;
}

.md-hover-scale:hover {
    transform: scale(1.05);
}

/* Responsive Design for Price Cards */
@media (max-width: 768px) {
    .md-price-selection-container {
        flex-direction: column;
        align-items: center;
    }

    .md-price-card {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .md-price-card {
        width: 100%;
        max-width: 360px;
        padding: 1rem 0.75rem;
        min-height: 200px;
    }

    .md-price-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .md-price-icon {
        font-size: 1rem;
    }

    .md-price-title {
        font-size: 0.9rem;
    }

    .md-price-amount {
        font-size: 1.5rem;
    }

    .md-price-currency {
        font-size: 1rem;
    }

    .md-price-description {
        font-size: 0.75rem;
    }
}

/* Modern Contact Form Components */
.contact-gradient-container {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 50px auto;
    max-width: 1200px;
}

.contact-gradient-left {
    background: linear-gradient(135deg, #233674 0%, #3b5cb8 50%, #1a2a5e 100%);
    color: white;
    padding: 60px 40px;
    height: 100%;
    position: relative;
}

.contact-gradient-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,.05)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.8;
    z-index: 0;
}

.contact-gradient-left>* {
    position: relative;
    z-index: 1;
}

.contact-gradient-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-gradient-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.contact-gradient-info-item:hover .contact-gradient-icon {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.25);
}

.contact-gradient-icon i {
    font-size: 20px;
    color: white;
}

.contact-gradient-info-text {
    font-size: 1.1rem;
}

.contact-gradient-right {
    padding: 60px 40px;
}

.contact-gradient-right h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.contact-gradient-input {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 15px 0;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.contact-gradient-input:focus {
    box-shadow: none;
    border-color: #233674;
}

textarea.contact-gradient-input {
    min-height: 120px;
    resize: none;
}

.contact-gradient-btn {
    background: linear-gradient(135deg, #233674 0%, #3b5cb8 50%, #1a2a5e 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 0 4px 15px rgba(35, 54, 116, 0.2);
}

.contact-gradient-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(35, 54, 116, 0.3);
    color: white;
}

.contact-gradient-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.contact-gradient-btn:hover i {
    transform: translateX(5px);
}

/* Gradient Variants */
.gradient-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.gradient-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.gradient-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.gradient-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.gradient-info {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.gradient-dark {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #233674 0%, #3b5cb8 50%, #1a2a5e 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

/* Demo Info Badge */
.demo-info-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.demo-info-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    color: #6366f1;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    cursor: pointer;
}

.demo-info-badge:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-1px);
    color: #6366f1;
    text-decoration: none;
}

.demo-info-badge i {
    font-size: 1rem;
    color: #6366f1;
}

/* Sidebar Demo Buttons */
.product-sidebar .demo-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-sidebar .demo-info-badge {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.product-sidebar .demo-info-badge:hover {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.product-sidebar .demo-info-badge i {
    font-size: 1.1rem;
}

/* Login Information Styles */
.login-info-card {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.login-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-info-card:hover::before {
    opacity: 1;
}

.login-info-card:hover {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.login-info-header {
    background: rgba(16, 185, 129, 0.15);
    padding: 0.75rem 1rem;
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.login-info-header i {
    font-size: 1rem;
    color: #10b981;
}

.login-info-content {
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.login-info-item {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.login-info-item:last-child {
    margin-bottom: 0;
}

.login-info-item:hover {
    transform: translateX(2px);
}

.login-info {
    display: block;
    color: #10b981;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-info-value {
    display: block;
    color: #374151;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    font-size: 0.875rem;
    font-weight: 500;
    word-break: break-all;
    transition: all 0.3s ease;
}

.login-info-value:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(16, 185, 129, 0.2);
    transform: scale(1.02);
}

/* Shortcuts Card Styles */
.shortcuts-card {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.shortcuts-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shortcuts-card:hover::before {
    opacity: 1;
}

.shortcuts-card:hover {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.shortcuts-header {
    background: rgba(99, 102, 241, 0.15);
    padding: 0.75rem 1rem;
    color: #6366f1;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.shortcuts-header i {
    font-size: 1rem;
    color: #6366f1;
}

.shortcuts-content {
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.shortcut-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shortcut-item:last-child {
    margin-bottom: 0;
}

.shortcut-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.shortcut-item:hover::before {
    left: 100%;
}

.shortcut-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
    color: #374151;
    text-decoration: none;
}

.shortcut-icon {
    width: 32px;
    height: 32px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.shortcut-item:hover .shortcut-icon {
    background: rgba(99, 102, 241, 0.2);
    transform: scale(1.1);
}

.shortcut-icon i {
    font-size: 0.9rem;
    color: #6366f1;
}

.shortcut-text {
    flex: 1;
    font-weight: 500;
    font-size: 0.875rem;
}

.shortcut-arrow {
    font-size: 0.75rem;
    color: #6366f1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.shortcut-item:hover .shortcut-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* Read More Button Styles */
.product-details__desc-wrapper {
    position: relative;
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.product-details__desc-wrapper.expanded {
    max-height: none;
}

.read-more-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.product-details__desc-wrapper.expanded .read-more-overlay {
    opacity: 0;
    pointer-events: none;
}

.read-more-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: white;
}

.read-more-btn:active {
    transform: translateY(0);
}

.read-more-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateY(1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-details__desc-wrapper {
        max-height: 250px;
    }

    .read-more-overlay {
        height: 60px;
        padding-bottom: 0.75rem;
    }

    .read-more-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Responsive Design for Contact Form */
@media (max-width: 991px) {

    .contact-gradient-left,
    .contact-gradient-right {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .contact-gradient-container {
        margin: 30px 15px;
    }

    .demo-info-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Wishlist Button Styles */
.product-item__wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-item__wishlist:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-item__wishlist.active {
    background: #dc3545;
    color: white;
    animation: wishlist-pulse 0.6s ease;
}

.product-item__wishlist.active:hover {
    background: #c82333;
    transform: scale(1.1);
}

.product-item__wishlist i {
    font-size: 14px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.product-item__wishlist.active i {
    color: white;
}

.product-item__wishlist:hover i {
    color: #dc3545;
}

.product-item__wishlist.active:hover i {
    color: white;
}

@keyframes wishlist-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Wishlist Page Styles */
.wishlist-empty-state {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.wishlist-empty-state__icon {
    width: 80px;
    height: 80px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: wishlist-bounce 2s infinite;
}

.wishlist-empty-state__icon i {
    font-size: 2rem;
    color: #dc3545;
}

@keyframes wishlist-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.wishlist-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wishlist-count {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
}

.wishlist-clear-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
}

.wishlist-clear-btn:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.4);
    color: white;
}

/* Responsive Wishlist */
@media (max-width: 768px) {
    .product-item__wishlist {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
    }

    .product-item__wishlist i {
        font-size: 12px;
    }

    .wishlist-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .wishlist-empty-state {
        padding: 2rem 1rem;
    }

    .wishlist-empty-state__icon {
        width: 60px;
        height: 60px;
    }

    .wishlist-empty-state__icon i {
        font-size: 1.5rem;
    }
}

/* reCAPTCHA Styles */
.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 78px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.g-recaptcha:hover {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.g-recaptcha.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.g-recaptcha.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Dark mode support for reCAPTCHA */
[data-theme="dark"] .g-recaptcha,
.dark-mode .g-recaptcha {
    background: #2d3748;
    border-color: #4a5568;
}

[data-theme="dark"] .g-recaptcha:hover,
.dark-mode .g-recaptcha:hover {
    border-color: #3182ce;
    box-shadow: 0 0 0 0.2rem rgba(49, 130, 206, 0.25);
}

/* reCAPTCHA error message styling */
.invalid-feedback.d-block {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #dc3545;
    display: block !important;
}

[data-theme="dark"] .invalid-feedback.d-block,
.dark-mode .invalid-feedback.d-block {
    color: #f56565;
}

/* reCAPTCHA container animation */
.g-recaptcha {
    animation: recaptcha-fade-in 0.5s ease-in-out;
}

@keyframes recaptcha-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive reCAPTCHA */
@media (max-width: 576px) {
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
    }
}

/* Auth sayfaları için geliştirilmiş link alanları */
.auth-switch-container {
    text-align: center;
    margin-top: 1.5rem;
    padding: 0;
}

.auth-switch-text {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #6c757d !important;
    margin-bottom: 1rem !important;
}

.auth-switch-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white !important;
    text-decoration: none !important;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
}

.auth-switch-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: white !important;
}

.auth-switch-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.auth-switch-link:hover i {
    transform: translateX(2px);
}

/* Dark mode support */
[data-theme="dark"] .auth-switch-text,
.dark-mode .auth-switch-text {
    color: #a0aec0 !important;
}

[data-theme="dark"] .auth-switch-link,
.dark-mode .auth-switch-link {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    box-shadow: 0 2px 8px rgba(49, 130, 206, 0.2);
}

[data-theme="dark"] .auth-switch-link:hover,
.dark-mode .auth-switch-link:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .auth-switch-container {
        margin-top: 1.25rem;
    }

    .auth-switch-text {
        font-size: 0.95rem !important;
    }

    .auth-switch-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .auth-switch-container {
        margin-top: 1rem;
    }

    .auth-switch-text {
        font-size: 0.9rem !important;
    }

    .auth-switch-link {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
    }
}

/* Özel Auth Butonları */
.auth-buttons {
    position: relative;
    z-index: 10;
}

.auth-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: none;
    cursor: pointer;
    min-width: 120px;
    height: 44px;
}

.auth-btn__content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.auth-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.auth-btn__text {
    white-space: nowrap;
    transition: all 0.3s ease;
}

.auth-btn__glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.auth-btn__sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.auth-btn__sparkles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: sparkle 2s infinite;
}

.auth-btn__sparkles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.auth-btn__sparkles span:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 0.5s;
}

.auth-btn__sparkles span:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 1s;
}

/* Giriş Butonu */
.auth-btn--login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.auth-btn--login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.auth-btn--login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.auth-btn--login:hover::before {
    left: 100%;
}

.auth-btn--login:hover .auth-btn__icon {
    transform: translateX(2px) scale(1.1);
}

.auth-btn--login:hover .auth-btn__text {
    transform: translateX(2px);
}

/* Kayıt Butonu */
.auth-btn--register {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.auth-btn--register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.auth-btn--register:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.auth-btn--register:hover::before {
    left: 100%;
}

.auth-btn--register:hover .auth-btn__icon {
    transform: rotate(360deg) scale(1.1);
}

.auth-btn--register:hover .auth-btn__text {
    transform: translateX(2px);
}

.auth-btn--register:hover .auth-btn__sparkles span {
    animation-duration: 1s;
}

/* Animasyonlar */
@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Dark Mode Uyumluluğu */
[data-theme="dark"] .auth-btn--login {
    background: linear-gradient(135deg, #4c63d2 0%, #6b46c1 100%);
    box-shadow: 0 4px 15px rgba(76, 99, 210, 0.4);
}

[data-theme="dark"] .auth-btn--login:hover {
    box-shadow: 0 8px 25px rgba(76, 99, 210, 0.5);
}

[data-theme="dark"] .auth-btn--register {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
}

[data-theme="dark"] .auth-btn--register:hover {
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .auth-buttons {
        gap: 0.75rem !important;
    }

    .auth-btn {
        min-width: 100px;
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }

    .auth-btn__icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .auth-buttons {
        flex-direction: column;
        gap: 0.5rem !important;
        width: 100%;
    }

    .auth-btn {
        width: 100%;
        min-width: auto;
        justify-content: center;
    }
}

/* Sade Sosyal Medya İkonları */
.simple-social-share {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-icon:hover::before {
    transform: scale(1.1);
}

/* Facebook */
.social-icon--facebook {
    background: #1877f2;
}

.social-icon--facebook::before {
    background: #0d6efd;
}

/* Twitter */
.social-icon--twitter {
    background: #1da1f2;
}

.social-icon--twitter::before {
    background: #0ea5e9;
}

/* LinkedIn */
.social-icon--linkedin {
    background: #0077b5;
}

.social-icon--linkedin::before {
    background: #0ea5e9;
}

/* WhatsApp */
.social-icon--whatsapp {
    background: #25d366;
}

.social-icon--whatsapp::before {
    background: #128c7e;
}

/* Email */
.social-icon--email {
    background: #ea4335;
}

.social-icon--email::before {
    background: #dc2626;
}

/* Dark Mode Uyumluluğu */
[data-theme="dark"] .social-icon--facebook {
    background: #0d6efd;
}

[data-theme="dark"] .social-icon--facebook::before {
    background: #0a58ca;
}

[data-theme="dark"] .social-icon--twitter {
    background: #0ea5e9;
}

[data-theme="dark"] .social-icon--twitter::before {
    background: #0284c7;
}

[data-theme="dark"] .social-icon--linkedin {
    background: #0ea5e9;
}

[data-theme="dark"] .social-icon--linkedin::before {
    background: #0284c7;
}

[data-theme="dark"] .social-icon--whatsapp {
    background: #128c7e;
}

[data-theme="dark"] .social-icon--whatsapp::before {
    background: #0f766e;
}

[data-theme="dark"] .social-icon--email {
    background: #dc2626;
}

[data-theme="dark"] .social-icon--email::before {
    background: #b91c1c;
}

/* Responsive */
@media (max-width: 768px) {
    .simple-social-share {
        gap: 0.5rem;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .simple-social-share {
        gap: 0.4rem;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

/* Social Share Z-Index Fix */
.social-share {
    position: relative;
    z-index: 9999 !important;
}

.social-share__icons {
    z-index: 10000 !important;
}

.social-share__icons.show {
    z-index: 10000 !important;
}
