:root {
    --primary: #4e342e;
    /* Natural Deep Walnut */
    --primary-glow: rgba(78, 52, 46, 0.2);
    --secondary: #c5a059;
    /* Muted Gold */
    --bg-base: #fdfaf6;
    /* Paper/Wood texture base */
    --text-dark: #121212;
    --text-light: #fdfaf6;
    --text-muted: rgba(18, 18, 18, 0.6);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-slow: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    --transition-fast: all 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&display=swap');

/* Reset & Base */
body {
    background-color: var(--bg-base);
    color: var(--text-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar - Minimal */
::-webkit-scrollbar {
    width: 5px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary);
}

/* Global Typography */
h1,
h2,
h3 {
    margin: 0;
    line-height: 1;
}

/* --- THE NEW HEADER --- */
.esla-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    transition: var(--transition-slow);
    background: transparent;
}

.esla-nav.scrolled {
    height: 70px;
    background: rgba(253, 250, 246, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.esla-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-slow);
}

.esla-nav.scrolled .esla-logo img {
    height: 50px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition-fast);
}

.nav-menu li a:hover {
    color: var(--secondary);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.esla-menu-trigger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.esla-menu-trigger span {
    width: 30px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-fast);
}

.esla-menu-trigger:hover span:nth-child(1) {
    width: 20px;
}

.esla-menu-trigger:hover span:nth-child(3) {
    width: 20px;
}

/* --- HERO SECTION SLIDER --- */
.hero-slider-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.esla-hero-slider,
.slick-list,
.slick-track,
.hero-slide {
    height: 100%;
}

.hero-split {
    display: flex;
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    background: var(--bg-base);
    background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
    z-index: 2;
    transform: translateX(-30px);
    opacity: 0;
    transition: var(--transition-slow);
    position: relative; /* Ensure it stays in flow */
}

.slick-active .hero-content {
    transform: translateX(0);
    opacity: 1;
}

.hero-image-wrap {
    width: 50%;
    position: relative;
    overflow: hidden;
    background: #eee;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(1.2);
}

.slick-active .hero-image {
    transform: scale(1);
}

/* Custom Navigation */
.slider-nav-container {
    position: absolute;
    bottom: 50px;
    left: 8%;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: none;
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary);
    color: #fff;
}

.slider-dots .slick-dots {
    display: flex !important;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.slider-dots .slick-dots li button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: none;
    padding: 0;
    cursor: pointer;
}

.slider-dots .slick-dots li.slick-active button {
    background: var(--primary);
}

.hero-subtitle {
    font-size: clamp(10px, 1.2vw, 13px);
    letter-spacing: clamp(2px, 0.5vw, 6px);
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 25px;
    display: block;
    font-weight: 600;
    opacity: 0.8;
    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-title {
    font-size: clamp(48px, 6vw, 110px);
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 35px;
    font-weight: 900;
    line-height: 1.1;
    max-width: 100%;
    overflow-wrap: break-word;
}

.hero-btn {
    display: inline-block;
    padding: 22px 50px;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 11px;
    transition: var(--transition-fast);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.hero-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: var(--transition-fast);
    z-index: -1;
}

.hero-btn:hover {
    color: var(--text-light);
}

.hero-btn:hover::after {
    left: 0;
}

/* --- ABOUT SECTION NEW --- */
.section-tag {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    display: block;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary);
    font-weight: 700;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
}

.esla-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 5px;
    transition: var(--transition-fast);
}

.esla-link-btn:hover {
    gap: 15px;
    color: var(--secondary);
}

.about-image-composition {
    position: relative;
    padding: 40px;
}

.main-img-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 40px 40px 80px rgba(0, 0, 0, 0.06);
}

.main-img {
    width: 100%;
    transition: var(--transition-slow);
}

.secondary-img-wrapper {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 300px;
    height: 200px;
    z-index: 3;
    overflow: hidden;
    border-radius: 4px;
    border: 8px solid #fff;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
}

.secondary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 30px;
    z-index: 4;
    font-family: var(--font-heading);
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- FOOTER SOCIAL PREMIUM --- */
.footer-social-premium {
    display: flex;
    gap: 15px;
}

.social-icon-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 20px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-icon-btn:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px);
}

/* --- MOBILE MENU OVERLAY --- */
.esla-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fdfaf6;
    z-index: 2000;
    padding: 40px 5%;
    transform: translateX(100%);
    transition: var(--transition-slow);
}

.esla-mobile-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 40px;
    color: var(--primary);
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 30px;
}

.mobile-nav-list a {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
}

.mobile-contact-info {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-contact-info p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 991px) {
    .esla-nav {
        height: 80px;
        padding: 0 5%;
    }

    .esla-page-header {
        height: 40vh;
        margin-bottom: 50px;
    }

    .page-header-title {
        font-size: clamp(24px, 8vw, 36px);
        letter-spacing: 2px;
        padding: 0 5%;
        line-height: 1.2;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text-content {
        padding-left: 0 !important;
        margin-top: 40px;
    }

    .hero-slider-wrapper {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }
    
    .esla-hero-slider, .slick-list, .slick-track, .hero-slide {
        height: auto;
        min-height: 100vh;
    }

    .hero-split {
        flex-direction: column;
        height: auto; 
        min-height: 100vh;
    }

    .hero-content {
        width: 100%;
        height: auto;
        padding: 80px 8% 180px; /* Increased bottom padding for nav */
        order: 2;
        transform: translateY(20px); 
        opacity: 0;
        background: var(--bg-base);
        position: relative;
        z-index: 5;
        margin-top: -40px; 
        border-radius: 40px 40px 0 0; 
    }

    .slick-active .hero-content {
        transform: translateY(0);
        opacity: 1;
    }

    .hero-image-wrap {
        width: 100%;
        height: 50vh; /* Better height for mobile */
        order: 1;
        position: relative;
        z-index: 1;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 42px);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        letter-spacing: 3px;
        margin-bottom: 15px;
        font-size: 11px;
    }

    .slider-nav-container {
        bottom: 50px;
        z-index: 100;
        width: 100%;
        left: 0;
        right: 0;
        justify-content: center;
    }

    .slider-prev, .slider-next {
        width: 40px;
        height: 40px;
    }

    .slider-dots .slick-dots li button {
        width: 8px;
        height: 8px;
    }



    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 767px) {
    .esla-section {
        padding: 80px 0;
    }

    .about-image-composition {
        padding: 0;
        margin-top: 50px;
    }

    .experience-badge {
        padding: 15px;
        font-size: 14px;
    }
}

/* --- INTERNAL PAGE HEADER --- */
.esla-page-header {
    height: 50vh;
    background-color: var(--primary);
    background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 120px;
}

.esla-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 80px);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 10px;
}

.esla-breadcrumb {
    margin-top: 20px;
    list-style: none;
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 0;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.esla-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

/* --- INFO CARDS --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-card {
    background: #fff;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.03);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 30px 30px 80px rgba(0,0,0,0.06);
}

.info-card i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 30px;
    display: block;
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary);
}

.info-card p, .info-card a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
}

/* --- PRODUCT DETAIL --- */
.product-detail-wrap {
    padding-top: 50px;
}

.product-main-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 40px 40px 100px rgba(0,0,0,0.05);
}

.product-info-sticky {
    position: sticky;
    top: 120px;
}

.product-category-tag {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    display: block;
    margin-bottom: 20px;
}

.product-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 56px);
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.1;
}

.product-price-note {
    font-size: 18px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 40px;
    display: block;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-premium {
    padding: 18px 35px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-premium.active {
    background: var(--primary);
    color: #fff;
}

.btn-premium:hover {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

/* --- SPEC GRID --- */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.spec-item label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.spec-item span {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 991px) {
    .product-info-sticky {
        position: static;
        margin-top: 60px;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
}
.esla-section {
    padding: 180px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
    align-items: center;
}

.about-text-box {
    grid-column: 2 / 7;
    background: #fff;
    padding: 100px 80px;
    box-shadow: 60px 60px 120px rgba(0, 0, 0, 0.04);
    z-index: 5;
    position: relative;
}

.about-text-box::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--secondary);
    border-left: 2px solid var(--secondary);
}

.about-image-box {
    grid-column: 6 / 13;
    height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* --- PRODUCT CARDS: OVERLAPPING --- */
.products-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding: 0 5%;
}

@media (max-width: 1200px) {
    .products-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .products-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.product-card {
    position: relative;
    height: 550px;
    cursor: pointer;
}

.product-card-img {
    height: 85%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
    filter: grayscale(0.2);
}

.product-card-info {
    position: absolute;
    bottom: 30px;
    left: -30px;
    right: 60px;
    background: #fff;
    padding: 40px;
    box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.05);
    transition: var(--transition-slow);
    z-index: 10;
}

.product-card:hover .product-card-img {
    filter: grayscale(0);
    transform: translateY(-20px);
}

.product-card:hover .product-card-info {
    transform: translateX(30px);
}

/* --- FOOTER & BRAND --- */
.esla-footer {
    background: #111;
    color: #fff;
    padding: 120px 5% 60px;
    overflow: hidden;
    /* Prevent internal overflow */
}

.esla-footer h2, .esla-footer h4 {
    color: #fff !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .esla-footer {
        padding: 80px 5% 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .esla-footer [style*="display: flex; justify-content: space-between;"] {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Utilities */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

/* Hide original template elements */
#rs-header,
.rs-slider,
.rs-about,
.rs-project,
#rs-footer,
#pre-load {
    display: none !important;
}

/* --- PAGINATION --- */
.esla-pagination {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.esla-pagination li a, .esla-pagination li span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
    text-decoration: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.esla-pagination li.active a {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.esla-pagination li a:hover:not(.active) {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}

.esla-pagination li.disabled a {
    opacity: 0.3;
    pointer-events: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-align: center;
    line-height: 65px;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    margin: 0;
}

/* --- CONTACT & FORMS --- */
.esla-input {
    width: 100%;
    padding: 18px 25px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-fast);
    outline: none;
    color: var(--primary);
}

.esla-input:focus {
    border-color: var(--secondary);
    box-shadow: 10px 10px 30px rgba(197, 160, 89, 0.05);
}

.esla-input::placeholder {
    color: rgba(18, 18, 18, 0.3);
}

textarea.esla-input {
    min-height: 160px;
    resize: none;
}

.contact-map-wrapper {
    height: 100%;
    min-height: 600px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 40px 40px 80px rgba(0, 0, 0, 0.06);
    position: relative;
}

.mb-25 { margin-bottom: 25px; }

@media (max-width: 991px) {
    .contact-map-wrapper {
        min-height: 400px;
        margin-top: 50px;
    }
    .contact-form-col {
        order: 1;
    }
    .contact-map-col {
        order: 2;
    }
}

/* --- MODERN POPUP SYSTEM --- */
.esla-popup-modern {
    padding: 0 !important;
    border-radius: 0 !important;
    background: var(--bg-base) !important;
}

.popup-inner-wrap {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.popup-header-premium {
    padding: 40px 50px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-title-premium {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary);
    margin: 0;
}

.popup-main-content {
    display: flex;
    min-height: 500px;
}

.popup-slider-part {
    flex: 1.2;
    background: #111;
    position: relative;
    overflow: hidden;
}

.popup-info-part {
    flex: 1;
    padding: 50px;
    background: #fff;
    max-height: 600px;
    overflow-y: auto;
}

.popup-slider-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.popup-close-trigger {
    background: none;
    border: none;
    font-size: 30px;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.popup-close-trigger:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .popup-main-content {
        flex-direction: column;
    }
    .popup-slider-part {
        height: 300px;
    }
    .popup-slider-item img {
        height: 300px;
    }
    .popup-info-part {
        max-height: none;
        padding: 30px;
    }
    .popup-header-premium {
        padding: 25px;
    }
}

/* --- UTILITIES --- */
.mb-25 { margin-bottom: 25px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-80 { margin-top: 80px !important; }

@media (max-width: 767px) {
    .product-card {
        height: 450px; /* Shorter cards on mobile */
    }
    .product-card-info {
        left: 20px;
        right: 20px;
        padding: 30px 25px;
        bottom: 10px;
    }
    .product-card-info span {
        font-size: 10px !important;
        letter-spacing: 3px !important;
        margin-bottom: 8px !important;
    }
    .product-card-info h3 {
        font-size: 22px !important;
        margin-bottom: 15px !important;
        line-height: 1.2 !important;
    }
    .product-card-info a {
        font-size: 13px !important;
    }
    .section-title {
        font-size: 32px;
    }
}