/* Main Content Styles - Using Color Variables */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}


/* Instagram Stories Slider */
.stories-section {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.stories-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stories-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.stories-container {
    display: flex;
    gap: 20px;
    transition: transform var(--transition-normal) ease;
    padding: 10px 0;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    cursor: pointer;
    transition: all var(--transition-fast) ease;
}

.story-item:hover {
    transform: translateY(-2px);
}

.story-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--cream-light) 100%);
    padding: 3px;
    margin-bottom: 8px;
    position: relative;
    transition: all var(--transition-fast) ease;
}

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

.story-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pure-white);
    transition: all var(--transition-fast) ease;
}

.story-label {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 400;
    text-align: center;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
}

.stories-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast) ease;
    box-shadow: 0 2px 4px var(--shadow-light);
    color: var(--text-primary);
    font-size: 14px;
    z-index: 10;
}

.stories-nav:hover {
    background: var(--bg-secondary);
    border-color: var(--border-medium);
    transform: scale(1.05);
}

.stories-nav:active {
    transform: scale(0.95);
}

.stories-nav-prev {
    position: absolute;
    left: -20px;
    z-index: 10;
}

.stories-nav-next {
    position: absolute;
    right: -20px;
    z-index: 10;
}

/* Hide navigation buttons when not needed */
.stories-nav.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive Design for Stories */
@media (max-width: 1200px) {
    .stories-slider-wrapper {
        gap: 10px;
    }
    
    .stories-nav-prev {
        left: -15px;
    }
    
    .stories-nav-next {
        right: -15px;
    }
    
    .story-circle {
        width: 75px;
        height: 75px;
    }
    
    .story-item {
        min-width: 75px;
    }
    
    .story-label {
        max-width: 75px;
    }
}

@media (max-width: 768px) {
    .stories-section {
        padding: 15px 0;
    }
    
    .stories-container {
        gap: 15px;
        padding: 8px 0;
    }
    
    .story-circle {
        width: 70px;
        height: 70px;
        padding: 2px;
    }
    
    .story-item {
        min-width: 70px;
    }
    
    .story-label {
        font-size: 11px;
        max-width: 70px;
    }
    
    .stories-nav {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .stories-nav-prev {
        left: -12px;
    }
    
    .stories-nav-next {
        right: -12px;
    }
}

@media (max-width: 576px) {
    .stories-section {
        padding: 12px 0;
    }
    
    .stories-container {
        gap: 12px;
    }
    
    .story-circle {
        width: 65px;
        height: 65px;
    }
    
    .story-item {
        min-width: 65px;
    }
    
    .story-label {
        font-size: 10px;
        max-width: 65px;
    }
    
    .stories-nav {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    
    .stories-nav-prev {
        left: -10px;
    }
    
    .stories-nav-next {
        right: -10px;
    }
}

/* Hero Slider - Professional Modern Design */
.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 25px 25px;
}

/* Enhanced Image Overlay for Better Text Contrast */
.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

/* Smooth Carousel Transitions */
.hero-slider .carousel {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slider .carousel-item {
    height: 600px;
    position: relative;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

/* Enhanced Image Effects */
.hero-slider .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        var(--accent-gold-alpha-08) 0%,
        transparent 30%,
        transparent 70%,
        var(--black-alpha-10) 100%
    );
    z-index: 1;
    pointer-events: none;
    transition: all var(--transition-slow) ease;
}

.hero-slider .carousel-item img {
    width: 100%;
    height: 600px;
    object-position: center;
    /* filter: brightness(0.7) contrast(1.2) saturate(1.2); */
    transition: all var(--transition-slow) ease;
    transform: scale(1.05);
    object-fit: contain;
}

.hero-slider .carousel-item:hover img {
    transform: scale(1.08);
    /* filter: brightness(0.6) contrast(1.25) saturate(1.3); */
}

/* Professional Text Overlay - Modern Banner Design */
.carousel-caption {
    position: absolute !important;
    top: 45% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
    padding: 40px !important;
    border-radius: 16px !important;
    max-width: 700px !important;
    width: auto !important;
    z-index: 10 !important;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    margin: 0 auto !important;
    border: 1px solid var(--white-alpha-15) !important;
}

/* Enhanced Professional Caption with Dark Overlay */
.carousel-caption.with-text-dark {
    border: 1px solid var(--white-alpha-20) !important;
}

/* Subtle Professional Glow Effect */
.carousel-caption.with-text-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        var(--accent-gold-alpha-08) 0%,
        transparent 40%,
        transparent 60%,
        var(--accent-gold-alpha-08) 100%
    );
    border-radius: 15px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.8;
}

/* Bootstrap Override - Banner Text Styles */
.carousel-caption h2 {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    color: var(--primary-black) !important;
    text-transform: none !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
    text-shadow: none !important;
    transition: all 0.4s ease !important;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif !important;
    position: relative !important;
    z-index: 1001 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.carousel-caption p {
    font-size: 1rem !important;
    color: var(--gray-medium) !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    text-shadow: none !important;
    max-width: 480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transition: all 0.4s ease !important;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif !important;
    position: relative !important;
    z-index: 1001 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Dark Caption Text Styles */
.carousel-caption.with-text-dark h2 {
    color: var(--pure-white) !important;
    text-shadow: 2px 2px 8px var(--black-alpha-80) !important;
}

.carousel-caption.with-text-dark h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
    height: 3px !important;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-bright-alt)) !important;
    border-radius: 2px !important;
    opacity: 0.8 !important;
    z-index: 1001 !important;
    display: block !important;
    visibility: visible !important;
}

.carousel-caption.with-text-dark p {
    color: var(--pure-white) !important;
    text-shadow: 1px 1px 4px var(--black-alpha-80) !important;
}

/* Modern Professional Button Design */
.hero-slider .btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--gold-bright-alt) 50%, var(--gold-bright-alt2) 100%);
    border: none;
    color: var(--primary-black);
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 8px 25px var(--accent-gold-alpha-25),
        0 4px 12px var(--black-alpha-10),
        inset 0 1px 0 var(--white-alpha-30);
    border: 2px solid var(--white-alpha-20);
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    z-index: 2;
}

.hero-slider .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--white-alpha-30), transparent);
    transition: left 0.6s ease;
}

.hero-slider .btn-primary:hover::before {
    left: 100%;
}

.hero-slider .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-bright-alt) 0%, var(--accent-gold) 50%, var(--accent-gold) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px var(--accent-gold-alpha-40),
        0 8px 25px var(--black-alpha-15),
        inset 0 1px 0 var(--white-alpha-40);
    border-color: var(--white-alpha-30);
}

.hero-slider .btn-primary:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.15s ease;
}

/* Features Section */
.features-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--lightest-gray);
    border-bottom: 1px solid var(--lightest-gray);
}

.feature-item {
    text-align: center;
    padding: 10px;
    background-color: var(--bg-primary);
    border-radius: 15px;
    transition: all var(--transition-normal) ease;
    border: 1px solid var(--lightest-gray);
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
    transition: transform var(--transition-normal) ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.8rem;
}

/* Mobile Features Layout - 2x2 */
@media (max-width: 768px) {
    .features-section .row > .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .feature-item h4 {
        font-size: 0.8rem;
        margin-bottom: 0px;
        font-weight: normal;
    }
    
    .feature-item p {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Section Titles */
.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 400;
}


/* Category Cards */
.categories-section {
    background-color: var(--bg-primary);
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    transition: all var(--transition-normal) ease;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-medium);
    border-color: var(--accent-gold);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow) ease;
}

.category-card:hover img {
    transform: scale(1.15);
    filter: brightness(0.5);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    transition: all var(--transition-normal) ease;
    opacity: 0.8;
}

.category-card:hover .category-overlay {
    background: linear-gradient(135deg, var(--overlay-black-dark), var(--accent-gold-alpha-80));
    opacity: 0.95;
}

.category-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px var(--overlay-black-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.category-overlay .btn {
    display: none;
}


/* Newsletter Section - Single-Row Compact Design */
.newsletter-section {
    background: var(--gradient-black);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}


@keyframes newsletterCompactFloat {
    0% { transform: translateX(0); }
    100% { transform: translateX(-30px); }
}

.newsletter-section .container {
    position: relative;
    z-index: 10;
}

/* Single-Row Compact Newsletter Layout */
.newsletter-content-wrapper {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: space-between;
}

.newsletter-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0.6;
    z-index: 1;
}

/* Compact Icon and Text Section */
.newsletter-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.newsletter-icon {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.newsletter-icon i {
    font-size: 2.8rem;
    color: var(--accent-gold);
    background: var(--pure-white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px var(--accent-gold-alpha-30));
    animation: newsletterIconCompactPulse 4s ease-in-out infinite;
}

@keyframes newsletterIconCompactPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 2px 4px var(--accent-gold-alpha-30));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 3px 6px var(--accent-gold-alpha-40));
    }
}

/* Compact Typography Section */
.newsletter-text {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.newsletter-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--pure-white);
    line-height: 1.2;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    text-shadow: 1px 1px 4px var(--black-alpha-40);
}

.newsletter-section .newsletter-subtitle {
    font-size: 0.85rem;
    margin: 0;
    color: var(--white-alpha-75);
    line-height: 1.3;
    font-weight: 400;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Compact Newsletter Form */
.newsletter-form {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    min-width: 280px;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 
        0 8px 20px var(--black-alpha-20),
        0 4px 12px var(--black-alpha-15),
        inset 0 1px 0 var(--white-alpha-08);
    border: 1px solid var(--white-alpha-12);
    background: var(--white-alpha-06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.newsletter-form .input-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--accent-gold-alpha-08) 0%, transparent 50%, var(--accent-gold-alpha-04) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 50px;
}

.newsletter-form .input-group:hover::before,
.newsletter-form .input-group:focus-within::before {
    opacity: 1;
}

.newsletter-form .input-group:hover,
.newsletter-form .input-group:focus-within {
    border-color: var(--accent-gold-alpha-30);
    box-shadow: 
        0 12px 25px var(--black-alpha-25),
        0 6px 15px var(--accent-gold-alpha-15),
        inset 0 1px 0 var(--white-alpha-12);
    transform: translateY(-2px);
}

.newsletter-form .form-control {
    border: none;
    padding: 16px 25px;
    font-size: 0.95rem;
    background: transparent;
    color: var(--pure-white);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.newsletter-form .form-control::placeholder {
    color: var(--white-alpha-55);
    font-weight: 300;
    transition: color 0.3s ease;
}

.newsletter-form .form-control:focus::placeholder {
    color: var(--white-alpha-35);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: transparent;
    color: var(--pure-white);
    outline: none;
}

/* Compact Newsletter Button */
.newsletter-form .btn {
    padding: 16px 30px;
    font-weight: 700;
    border: none;
    background: var(--pure-white);
    color: var(--primary-black);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.85rem;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    border-radius: 0 50px 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 6px 15px var(--accent-gold-alpha-25),
        inset 0 1px 0 var(--white-alpha-25);
    z-index: 2;
}

.newsletter-form .btn:hover {
    transform: translateX(-3px) scale(1.02);
    box-shadow: 
        0 10px 20px var(--accent-gold-alpha-40),
        inset 0 1px 0 var(--white-alpha-30);
    color: var(--primary-black);
}

.newsletter-form .btn:active {
    transform: translateX(-2px) scale(1);
    transition: all 0.1s ease;
}

/* Responsive Newsletter Compact Design */
@media (max-width: 992px) {
    .newsletter-section {
        padding: 35px 0;
    }
    
    .newsletter-content-wrapper {
        padding: 18px 30px;
        gap: 20px;
        border-radius: 80px;
    }
    
    .newsletter-icon i {
        font-size: 2.4rem;
    }
    
    .newsletter-section h3 {
        font-size: 1.1rem;
        letter-spacing: 0.6px;
    }
    
    .newsletter-section .newsletter-subtitle {
        font-size: 0.8rem;
    }
    
    .newsletter-form {
        min-width: 260px;
    }
    
    .newsletter-form .form-control {
        padding: 15px 22px;
        font-size: 0.9rem;
    }
    
    .newsletter-form .btn {
        padding: 15px 28px;
        font-size: 0.8rem;
        border-radius: 0 40px 40px 0;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 30px 0;
    }
    
    .newsletter-content-wrapper {
        padding: 16px 25px;
        gap: 15px;
        border-radius: 60px;
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-info {
        gap: 15px;
        justify-content: center;
    }
    
    .newsletter-icon i {
        font-size: 2.2rem;
    }
    
    .newsletter-section h3 {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        margin-bottom: 3px;
    }
    
    .newsletter-section .newsletter-subtitle {
        font-size: 0.8rem;
    }
    
    .newsletter-form {
        min-width: 240px;
        width: 100%;
    }
    
    .newsletter-form .input-group {
        border-radius: 40px;
    }
    
    .newsletter-form .form-control {
        padding: 14px 20px;
        font-size: 0.85rem;
    }
    
    .newsletter-form .btn {
        padding: 14px 25px;
        font-size: 0.75rem;
        border-radius: 0 40px 40px 0;
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: 25px 0;
    }
    
    .newsletter-content-wrapper {
        padding: 15px 20px;
        gap: 12px;
        border-radius: 50px;
    }
    
    .newsletter-info {
        gap: 12px;
    }
    
    .newsletter-icon i {
        font-size: 2rem;
    }
    
    .newsletter-section h3 {
        font-size: 1rem;
        letter-spacing: 0.4px;
        margin-bottom: 2px;
    }
    
    .newsletter-section .newsletter-subtitle {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .newsletter-form {
        min-width: 200px;
        width: 100%;
    }
    
    .newsletter-form .input-group {
        border-radius: 35px;
    }
    
    .newsletter-form .form-control {
        padding: 12px 18px;
        font-size: 0.8rem;
    }
    
    .newsletter-form .btn {
        padding: 12px 20px;
        font-size: 0.7rem;
        letter-spacing: 0.4px;
        border-radius: 0 35px 35px 0;
    }
}

/* Newsletter Animation Enhancement */
@keyframes newsletterCompactGlow {
    0%, 100% { 
        box-shadow: 
            0 15px 35px var(--black-alpha-25),
            0 8px 20px var(--black-alpha-15),
            inset 0 1px 0 var(--white-alpha-08);
    }
    50% { 
        box-shadow: 
            0 18px 40px var(--black-alpha-30),
            0 10px 25px var(--accent-gold-alpha-10),
            inset 0 1px 0 var(--white-alpha-10);
    }
}

.newsletter-content-wrapper {
    animation: newsletterCompactGlow 6s ease-in-out infinite;
}

/* Success State for Compact Newsletter */
.newsletter-form.success .input-group {
    border-color: var(--green-success);
    box-shadow: 
        0 12px 25px var(--green-success-alpha-20),
        0 6px 15px var(--black-alpha-15),
        inset 0 1px 0 var(--white-alpha-10);
}

.newsletter-form.success .btn {
    background: linear-gradient(135deg, var(--green-success) 0%, var(--green-success-light) 100%);
}

/* Carousel Custom Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 70px;
    height: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-gold);
    border-radius: 50%;
    opacity: 0.9;
    transition: all var(--transition-normal) ease;
    border: 3px solid var(--text-white);
}

.hero-slider .carousel-control-prev {
    left: 30px;
}

.hero-slider .carousel-control-next {
    right: 30px;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    color: var(--primary-black);
    font-size: 24px;
}

.hero-slider .carousel-indicators {
    bottom: 25px;
    gap: 10px;
}

.hero-slider .carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    background: var(--accent-gold);
    opacity: 0.4;
    transition: all var(--transition-normal) ease;
    border: 2px solid var(--text-white);
}

.hero-slider .carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.category-card,
.feature-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-slider .carousel-caption h2 {
        font-size: 1.9rem;
        letter-spacing: 0.8px;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 450px;
    }
    
    .hero-slider .carousel-item img {
        height: 450px;
    }
    
    .hero-slider .carousel-caption {
        padding: 25px 20px;
        max-width: 90%;
    }
    
    .hero-slider .carousel-caption h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        letter-spacing: 0.8px;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .hero-slider .btn-primary {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        letter-spacing: 0.8px;
    }
    
    .section-title::after {
        width: 70px;
        height: 3px;
    }
    
    .feature-icon {
        font-size: 1.6rem;
    }
    
    .feature-item {
        padding: 20px 12px;
    }
    
    /* Mobile Categories Layout - 2x2 */
    .categories-section .row > .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .category-card {
        height: 200px;
        margin-bottom: 15px;
    }
    
    .category-overlay h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .newsletter-section h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .newsletter-section p {
        text-align: center;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .hero-slider .carousel-item {
        height: 300px;
    }
    
    .hero-slider .carousel-item img {
        height: 300px;
    }
    
    .hero-slider .carousel-caption {
        padding: 12px 8px;
        max-width: 90%;
    }
    
    .hero-slider .carousel-caption h2 {
        font-size: 1.1rem !important;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 0.8rem !important;
    }
    
    .hero-slider .btn-primary {
        padding: 8px 16px;
        font-size: 0.75rem !important;
        letter-spacing: 0.3px;
    }
    
    .section-title {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .section-title::after {
        width: 50px;
        height: 2px;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .feature-icon {
        font-size: 1.4rem;
    }
    
    .feature-item {
        padding: 12px 8px;
    }
    
    .feature-item h4 {
        font-size: 0.75rem;
    }
    
    /* Mobile Products Layout - 2x2 */
    .products-section .row > .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .product-image {
        height: 280px;
    }
    
    .product-info {
        padding: 25px 20px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .current-price {
        font-size: 1.3rem;
    }
    
    .old-price {
        font-size: 1rem;
    }
    
    .category-card {
        height: 200px;
        margin-bottom: 15px;
    }
    
    .category-overlay h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 25px;
        height: 25px;
        border-width: 2px;
    }
    
    .hero-slider .carousel-control-prev {
        left: 15px;
    }
    
    .hero-slider .carousel-control-next {
        right: 15px;
    }
    
    .hero-slider .carousel-control-prev-icon,
    .hero-slider .carousel-control-next-icon {
        font-size: 18px;
    }
    
    .hero-slider .carousel-indicators button {
        width: 12px;
        height: 12px;
        margin: 0 3px;
    }
    
    .newsletter-section h3 {
        font-size: 1rem;
    }
    
    .newsletter-form .form-control {
        padding: 12px 16px;
        font-size: 0.8rem;
    }
    
    .newsletter-form .btn {
        padding: 12px 20px;
        font-size: 0.75rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Loading Animation */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid var(--lightest-gray);
    border-top: 3px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus styles for accessibility */
.btn:focus,
.form-control:focus,
.menu--link:focus,
.header--action-link:focus {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header--container,
    .topbar--container,
    .menu--navbar,
    .footer--container,
    .newsletter-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-slider,
    .features-section,
    .products-section,
    .categories-section {
        page-break-inside: avoid;
    }
}

/* Advertisement Banners Section - Professional Modern Design */
.advertisement-section {
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    padding: 80px 0;
}

.advertisement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.advertisement-section .container {
    position: relative;
    z-index: 2;
}

/* General Advertisement Banner Styles */
.ad-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ad-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.05) 0%,
        transparent 30%,
        transparent 70%,
        rgba(212, 175, 55, 0.08) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
    pointer-events: none;
}

.ad-banner:hover::before {
    opacity: 1;
}

.ad-banner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(212, 175, 55, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.ad-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.95) saturate(1.1) contrast(1.05);
    transform: scale(1);
}

.ad-banner:hover img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1.2) contrast(1.1);
}

/* Large Banner Styles */
.large-banner {
    height: 400px;
    border-radius: 25px;
    position: relative;
    margin-bottom: 30px;
}

.large-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(212, 175, 55, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 8;
    pointer-events: none;
    border-radius: 25px;
}

.large-banner:hover::after {
    opacity: 1;
}

.large-banner:hover {
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.2),
        0 15px 40px rgba(212, 175, 55, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Medium Banner Styles */
.medium-banner {
    height: 300px;
    border-radius: 22px;
    position: relative;
    margin-bottom: 25px;
}

.medium-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.08) 0%,
        transparent 40%,
        transparent 60%,
        rgba(212, 175, 55, 0.12) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 8;
    pointer-events: none;
    border-radius: 22px;
}

.medium-banner:hover::after {
    opacity: 1;
}

.medium-banner:hover {
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.18),
        0 12px 35px rgba(212, 175, 55, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Small Banner Styles */
.small-banner {
    height: 250px;
    border-radius: 20px;
    position: relative;
    margin-bottom: 20px;
}

.small-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.06) 0%,
        transparent 50%,
        rgba(212, 175, 55, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 8;
    pointer-events: none;
    border-radius: 20px;
}

.small-banner:hover::after {
    opacity: 1;
}

.small-banner:hover {
    box-shadow: 
        0 18px 50px rgba(0, 0, 0, 0.16),
        0 10px 30px rgba(212, 175, 55, 0.16),
        0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Premium Ripple Effect for Advertisement Banners */
.ad-banner {
    position: relative;
    overflow: hidden;
}

.ad-banner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    transition: all 0.8s ease;
    transform: translate(-50%, -50%);
    z-index: 7;
    border-radius: 50%;
}

.ad-banner:hover::after {
    width: 200%;
    height: 200%;
}

/* Advertisement Overlay Styles */
.ad-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.ad-banner:hover .ad-overlay {
    opacity: 1;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.ad-content {
    text-align: center;
    color: white;
    padding: 30px;
    max-width: 90%;
}

.ad-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.ad-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.ad-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.ad-content p {
    font-size: 1rem;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.ad-btn {
    display: inline-block;
    background: var(--pure-white);
    color: var(--primary-black);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 8px 20px rgba(212, 175, 55, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.ad-btn::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;
}

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

.ad-btn:hover {
    background: linear-gradient(135deg, #f4d03f 0%, var(--accent-gold) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3);
    color: var(--primary-black);
    text-decoration: none;
}

/* Responsive Advertisement Overlay */
@media (max-width: 768px) {
    .ad-content {
        padding: 20px;
    }
    
    .ad-content h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .ad-content h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .ad-content h4 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .ad-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .ad-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .ad-content {
        padding: 15px;
    }
    
    .ad-content h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .ad-content h3 {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .ad-content h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .ad-content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .ad-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
}

/* Advertisement Banner Animation */
.ad-banner {
    animation: fadeInUp 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.large-banner { 
    animation-delay: 0.2s; 
}

.medium-banner:nth-child(1) { 
    animation-delay: 0.4s; 
}

.medium-banner:nth-child(2) { 
    animation-delay: 0.6s; 
}

.small-banner:nth-child(1) { 
    animation-delay: 0.8s; 
}

.small-banner:nth-child(2) { 
    animation-delay: 1s; 
}

.small-banner:nth-child(3) { 
    animation-delay: 1.2s; 
}

/* Advertisement Responsive Design */
@media (max-width: 992px) {
    .advertisement-section {
        padding: 60px 0;
    }
    
    .large-banner {
        height: 320px;
        margin-bottom: 25px;
    }
    
    .medium-banner {
        height: 260px;
        margin-bottom: 20px;
    }
    
    .small-banner {
        height: 220px;
        margin-bottom: 18px;
    }
}

@media (max-width: 768px) {
    .advertisement-section {
        padding: 50px 0;
    }
    
    .large-banner {
        height: 280px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .medium-banner {
        height: 240px;
        border-radius: 18px;
        margin-bottom: 18px;
    }
    
    .small-banner {
        height: 200px;
        border-radius: 16px;
        margin-bottom: 15px;
    }
    
    .ad-banner:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

@media (max-width: 576px) {
    .advertisement-section {
        padding: 40px 0;
    }
    
    .large-banner {
        height: 220px;
        border-radius: 18px;
        margin-bottom: 18px;
    }
    
    .medium-banner {
        height: 200px;
        border-radius: 16px;
        margin-bottom: 15px;
    }
    
    .small-banner {
        height: 180px;
        border-radius: 14px;
        margin-bottom: 12px;
    }
    
    .ad-banner:hover {
        transform: translateY(-3px) scale(1.005);
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.12),
            0 8px 25px rgba(212, 175, 55, 0.12),
            0 3px 8px rgba(0, 0, 0, 0.06);
    }
}

/* Accessibility Enhancement for Advertisement Banners */
.ad-banner:focus {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
    border-color: var(--accent-gold);
}

.ad-banner:focus:not(:focus-visible) {
    outline: none;
}

/* Loading State for Advertisement Banners */
.ad-banner.loading {
    pointer-events: none;
    opacity: 0.6;
}

.ad-banner.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(212, 175, 55, 0.3);
    border-top: 4px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 100;
}

/* Floating Social Media Sidebar - Minimal Tab from Left Edge */
.floating-social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Toggle Button - Tab that sticks out from left edge */
.social-sidebar-toggle {
    background: var(--accent-gold);
    color: var(--pure-white);
    border: none;
    padding: 15px 12px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.social-sidebar-toggle::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.5s ease;
}

.social-sidebar-toggle:hover::before {
    left: 100%;
}

.social-sidebar-toggle:hover {
    transform: translateX(5px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.2),
        0 6px 18px rgba(212, 175, 55, 0.4);
}

.toggle-arrow {
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Collapsed State */
.floating-social-sidebar.collapsed .social-sidebar-content {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
}

.floating-social-sidebar.collapsed .toggle-arrow {
    transform: rotate(0deg);
}

/* Expanded State */
.floating-social-sidebar:not(.collapsed) .social-sidebar-content {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.floating-social-sidebar:not(.collapsed) .toggle-arrow {
    transform: rotate(180deg);
}

/* Content Container */
.social-sidebar-content {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 0 15px 15px 0;
    border-left: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 20px 15px;
    margin-left: -1px;
}

.floating-social-sidebar .social-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.floating-social-sidebar .floating-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-social-sidebar .floating-social-link::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.5s ease;
}

.floating-social-sidebar .floating-social-link:hover::before {
    left: 100%;
}

.floating-social-sidebar .floating-social-link:hover {
    transform: translateY(-2px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Facebook */
.floating-social-sidebar .floating-social-link.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    color: white;
}

.floating-social-sidebar .floating-social-link.facebook:hover {
    background: linear-gradient(135deg, #166fe5 0%, #1565c0 100%);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

/* Twitter */
.floating-social-sidebar .floating-social-link.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd6 100%);
    color: white;
}

.floating-social-sidebar .floating-social-link.twitter:hover {
    background: linear-gradient(135deg, #0d8bd6 0%, #0a73b8 100%);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

/* Instagram */
.floating-social-sidebar .floating-social-link.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #833ab4 50%, #fcb045 100%);
    color: white;
}

.floating-social-sidebar .floating-social-link.instagram:hover {
    background: linear-gradient(135deg, #d6336c 0%, #7209b7 50%, #f19c3a 100%);
    box-shadow: 0 8px 20px rgba(228, 64, 95, 0.4);
}

/* YouTube */
.floating-social-sidebar .floating-social-link.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
}

.floating-social-sidebar .floating-social-link.youtube:hover {
    background: linear-gradient(135deg, #e60000 0%, #b30000 100%);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

/* LinkedIn */
.floating-social-sidebar .floating-social-link.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
    color: white;
}

.floating-social-sidebar .floating-social-link.linkedin:hover {
    background: linear-gradient(135deg, #005582 0%, #004066 100%);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

/* TikTok */
.floating-social-sidebar .floating-social-link.tiktok {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.floating-social-sidebar .floating-social-link.tiktok:hover {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Floating Contact Buttons - Bottom Right */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-contact-buttons .floating-phone-btn,
.floating-contact-buttons .floating-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.05);
    animation: floatingContactPulse 3s ease-in-out infinite;
}

.floating-contact-buttons .floating-phone-btn::before,
.floating-contact-buttons .floating-whatsapp-btn::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;
}

.floating-contact-buttons .floating-phone-btn:hover::before,
.floating-contact-buttons .floating-whatsapp-btn:hover::before {
    left: 100%;
}

.floating-contact-buttons .floating-phone-btn:hover,
.floating-contact-buttons .floating-whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.15);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 3px 8px rgba(0, 0, 0, 0.08);
    animation: none;
}

/* Phone Button */
.floating-contact-buttons .floating-phone-btn {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    animation-delay: 0s;
}

.floating-contact-buttons .floating-phone-btn:hover {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    box-shadow: 
        0 15px 35px rgba(46, 204, 113, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 3px 8px rgba(0, 0, 0, 0.08);
}

/* WhatsApp Button */
.floating-contact-buttons .floating-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    animation-delay: 0.5s;
}

.floating-contact-buttons .floating-whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    box-shadow: 
        0 15px 35px rgba(37, 211, 102, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 3px 8px rgba(0, 0, 0, 0.08);
}

/* Floating Contact Animation */
@keyframes floatingContactPulse {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 12px 30px rgba(0, 0, 0, 0.18),
            0 6px 18px rgba(0, 0, 0, 0.12),
            0 3px 8px rgba(0, 0, 0, 0.06);
    }
}

/* Contact Button Tooltips */
.floating-contact-buttons .floating-phone-btn::after,
.floating-contact-buttons .floating-whatsapp-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    pointer-events: none;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-contact-buttons .floating-phone-btn:hover::after,
.floating-contact-buttons .floating-whatsapp-btn:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Social Sidebar Tooltips */
.floating-social-sidebar .floating-social-link::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    pointer-events: none;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.floating-social-sidebar .floating-social-link:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Responsive Floating Elements */
@media (max-width: 1200px) {
    .floating-social-sidebar {
        left: 15px;
        padding: 18px 8px;
        min-width: 65px;
    }
    
    .floating-social-sidebar .floating-social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .floating-contact-buttons {
        bottom: 25px;
        right: 25px;
    }
    
    .floating-contact-buttons .floating-phone-btn,
    .floating-contact-buttons .floating-whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .floating-social-sidebar {
        left: 12px;
        padding: 15px 6px;
        min-width: 60px;
    }
    
    .floating-social-sidebar .social-sidebar-header span {
        font-size: 11px;
    }
    
    .floating-social-sidebar .floating-social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
        gap: 10px;
    }
    
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-contact-buttons .floating-phone-btn,
    .floating-contact-buttons .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .floating-social-sidebar {
        left: 10px;
        padding: 12px 5px;
        min-width: 55px;
        border-radius: 16px;
    }
    
    .floating-social-sidebar .social-sidebar-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .floating-social-sidebar .social-sidebar-header span {
        font-size: 10px;
    }
    
    .floating-social-sidebar .floating-social-link {
        width: 38px;
        height: 38px;
        font-size: 14px;
        gap: 8px;
        border-radius: 10px;
    }
    
    .floating-contact-buttons {
        bottom: 18px;
        right: 18px;
        gap: 10px;
    }
    
    .floating-contact-buttons .floating-phone-btn,
    .floating-contact-buttons .floating-whatsapp-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    /* Hide tooltips on mobile for better UX */
    .floating-social-sidebar .floating-social-link::after,
    .floating-contact-buttons .floating-phone-btn::after,
    .floating-contact-buttons .floating-whatsapp-btn::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .floating-social-sidebar {
        left: -8px;
        padding: 10px 4px;
        min-width: 50px;
        border-radius: 14px;
        opacity: 0.8;
    }
    
    .floating-social-sidebar .social-sidebar-header {
        margin-bottom: 10px;
        padding-bottom: 8px;
    }
    
    .floating-social-sidebar .social-sidebar-header span {
        font-size: 9px;
        letter-spacing: 0.5px;
    }
    
    .floating-social-sidebar .floating-social-link {
        width: 35px;
        height: 35px;
        font-size: 13px;
        gap: 6px;
        border-radius: 8px;
    }
    
    .floating-contact-buttons {
        bottom: 90px;
        right: 15px;
        gap: 8px;
    }
    
    .floating-contact-buttons .floating-phone-btn,
    .floating-contact-buttons .floating-whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
        border-width: 2px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-slider .carousel-caption {
        background: var(--primary-black);
        border: 2px solid var(--text-white);
    }
    
    .product-overlay {
        background: var(--primary-black);
    }
    
    .category-overlay {
        background: var(--primary-black);
    }
    
    .ad-banner {
        border: 3px solid var(--primary-black);
    }
    
    .ad-banner:hover {
        border-color: var(--accent-gold);
    }
    
    .floating-social-sidebar {
        background: white;
        border: 2px solid var(--primary-black);
    }
    
    .floating-contact-buttons .floating-phone-btn,
    .floating-contact-buttons .floating-whatsapp-btn {
        border: 3px solid var(--primary-black);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-slider .carousel {
        animation: none;
    }
    
    .ad-banner {
        animation: none;
        opacity: 1;
    }
    
    .ad-banner:hover {
        transform: none;
    }
    
    .floating-contact-buttons .floating-phone-btn,
    .floating-contact-buttons .floating-whatsapp-btn {
        animation: none;
    }
    
    .floating-social-sidebar:hover {
        transform: translateY(-50%);
    }
    
    .floating-contact-buttons .floating-phone-btn:hover,
    .floating-contact-buttons .floating-whatsapp-btn:hover {
        transform: scale(1.05);
    }
}


/* Campaigns Section */
.campaigns-section {
    background: var(--bg-secondary);
}

.campaign-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.campaign-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.campaign-banner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.campaign-banner:hover img {
    transform: scale(1.05);
}

.campaign-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.campaign-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.campaign-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.campaign-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.campaign-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.campaign-btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-1px);
}

/* Responsive Design for Campaigns */
@media (max-width: 768px) {
    .campaign-banner img {
        height: 200px;
    }
    
    .campaign-content h3 {
        font-size: 1.3rem;
    }
    
    .campaign-content p {
        font-size: 0.9rem;
    }
    
    .campaign-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* Homepage Description Section - Elegant Design */
.homepage-description-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.homepage-description-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    z-index: 1;
}


/* Content Wrapper */
.homepage-description-wrapper {
    position: relative;
    z-index: 2;
}

.homepage-description-content {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 0;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.04),
        0 3px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.homepage-description-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    z-index: 1;
}

.content-inner {
    padding: 50px 60px;
    position: relative;
    z-index: 2;
}

/* Decorative Elements */
.content-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-dot {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.decoration-dot-1 {
    width: 120px;
    height: 120px;
    top: -60px;
    right: -60px;
    animation-delay: 0s;
}

.decoration-dot-2 {
    width: 80px;
    height: 80px;
    bottom: -40px;
    left: -40px;
    animation-delay: 1.5s;
}

.decoration-dot-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: 20px;
    animation-delay: 3s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

/* CKEditor Content Styling - Enhanced */
.content-inner h1,
.content-inner h2,
.content-inner h3,
.content-inner h4,
.content-inner h5,
.content-inner h6 {
    color: var(--text-primary);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    position: relative;
}

.content-inner h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-inner h2 {
    font-size: 2.2rem;
    margin-bottom: 1.75rem;
    color: var(--text-primary);
}

.content-inner h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    margin-top: 10px;
    border-radius: 2px;
}

.content-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.content-inner p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 400;
}

.content-inner p:first-of-type {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.content-inner ul,
.content-inner ol {
    margin-bottom: 2rem;
    padding-left: 2.5rem;
}

.content-inner ul {
    list-style: none;
    padding-left: 0;
}

.content-inner ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
}

.content-inner ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 50%;
}

.content-inner ol li {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.content-inner li {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-inner a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.content-inner a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    transition: width 0.3s ease;
}

.content-inner a:hover::after {
    width: 100%;
}

.content-inner a:hover {
    color: var(--accent-secondary);
}

.content-inner strong,
.content-inner b {
    color: var(--text-primary);
    font-weight: 700;
}

.content-inner em,
.content-inner i {
    font-style: italic;
    color: var(--accent-primary);
    font-weight: 500;
}

.content-inner blockquote {
    border: none;
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(120, 119, 198, 0.05) 100%);
    border-radius: 15px;
    position: relative;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.7;
}

.content-inner blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-primary);
    font-family: serif;
    opacity: 0.3;
}

.content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.content-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--pure-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.content-inner th,
.content-inner td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.content-inner th {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    font-weight: 700;
    color: var(--pure-white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-inner td {
    color: var(--text-secondary);
    font-size: 1rem;
}

.content-inner tr:hover td {
    background: rgba(255, 193, 7, 0.02);
}

/* Responsive Design - Enhanced */
@media (max-width: 992px) {
    .homepage-description-section {
        padding: 60px 0;
    }
    
    .content-inner {
        padding: 40px 45px;
    }
    
    .content-inner h1 {
        font-size: 2.2rem;
    }
    
    .content-inner h2 {
        font-size: 1.8rem;
    }
    
    .content-inner h3 {
        font-size: 1.5rem;
    }
    
    .content-inner p,
    .content-inner li {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .homepage-description-section {
        padding: 50px 0;
    }
    
    .content-inner {
        padding: 35px 30px;
    }
    
    .content-inner h1 {
        font-size: 1.9rem;
    }
    
    .content-inner h2 {
        font-size: 1.6rem;
    }
    
    .content-inner h3 {
        font-size: 1.3rem;
    }
    
    .content-inner p,
    .content-inner li {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .content-inner ul,
    .content-inner ol {
        padding-left: 1.5rem;
    }
    
    .content-inner blockquote {
        padding: 1.5rem;
        margin: 2rem 0;
        font-size: 1.1rem;
    }
    
    .decoration-dot-1 {
        width: 80px;
        height: 80px;
        top: -40px;
        right: -40px;
    }
    
    .decoration-dot-2 {
        width: 60px;
        height: 60px;
        bottom: -30px;
        left: -30px;
    }
    
    .decoration-dot-3 {
        display: none;
    }
}

@media (max-width: 576px) {
    .homepage-description-section {
        padding: 40px 0;
    }
    
    .content-inner {
        padding: 25px 20px;
    }
    
    .content-inner h1 {
        font-size: 1.7rem;
    }
    
    .content-inner h2 {
        font-size: 1.4rem;
    }
    
    .content-inner h3 {
        font-size: 1.2rem;
    }
    
    .content-inner p,
    .content-inner li {
        font-size: 0.95rem;
    }
}


/* Free Shipping Info Section - Modern & Minimal */
.free-shipping-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.free-shipping-info-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.free-shipping-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.shipping-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.5rem;
}

.shipping-content {
    flex: 1;
}

.shipping-content h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.shipping-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}


/* Responsive Design */
@media (max-width: 768px) {
    .free-shipping-info-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }
    
    .shipping-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .shipping-content h4 {
        font-size: 1.2rem;
    }
    
    .shipping-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .free-shipping-info-section {
        padding: 20px 0;
    }
    
    .free-shipping-info-card {
        padding: 18px;
        border-radius: 12px;
    }
    
    .shipping-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .shipping-content h4 {
        font-size: 1.1rem;
    }
    
    .shipping-content p {
        font-size: 0.9rem;
    }
}
