/* Minification failed. Returning unminified contents.
(20,35): run-time error CSS1039: Token not allowed after unary operator: '-blue-dark'
(20,212): run-time error CSS1039: Token not allowed after unary operator: '-blue-dark'
(21,41): run-time error CSS1039: Token not allowed after unary operator: '-yellow'
(21,68): run-time error CSS1039: Token not allowed after unary operator: '-yellow'
(23,54): run-time error CSS1039: Token not allowed after unary operator: '-blue-dark'
(2182,35): run-time error CSS1039: Token not allowed after unary operator: '-blue-dark'
(2182,212): run-time error CSS1039: Token not allowed after unary operator: '-blue-dark'
(2183,41): run-time error CSS1039: Token not allowed after unary operator: '-yellow'
(2183,68): run-time error CSS1039: Token not allowed after unary operator: '-yellow'
(2185,54): run-time error CSS1039: Token not allowed after unary operator: '-blue-dark'
 */

/* ============================================
   HEADER SLIDER
   ============================================ */
.hero-slider{position:relative;height:520px;overflow:hidden;}
.hero-slide{position:absolute;inset:0;opacity:0;transition:opacity 0.8s ease;}
.hero-slide.active{opacity:1;z-index:1;}
.hero-slide img{width:100%;height:100%;object-fit:cover;}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(18,42,106,.8) 45%,rgba(10,20,80,.2));z-index:1;}
.hero-content{position:absolute;left:8%;top:50%;transform:translateY(-50%);color:#fff;z-index:5;}
.hero-content h2{font-size:42px;font-weight:700;}
.hero-tag{font-size:12px;letter-spacing:3px;text-transform:uppercase;color:rgba(255,255,255,.85);margin-bottom:12px;}
.hero-prev,.hero-next{position:absolute;top:50%;transform:translateY(-50%);width:60px;height:60px;border-radius:50%;background:rgba(255,255,255,0.15);display:flex;align-items:center;justify-content:center;color:#fff;text-decoration:none;font-size:28px;backdrop-filter:blur(6px);transition:0.3s ease;z-index:20;}
.hero-prev{left:30px;}.hero-next{right:30px;}
.hero-prev:hover,.hero-next:hover{background:#70d0e0;color:#1a3c8f;transform:translateY(-50%) scale(1.1);}
.hero-dots{position:absolute;bottom:30px;left:50%;transform:translateX(-50%);display:flex;gap:10px;z-index:20;}
.hero-dots span{width:12px;height:12px;border-radius:50%;background:rgba(255,255,255,0.5);cursor:pointer;transition:0.3s ease;}
.hero-dots span.active{background:#70d0e0;}
.hero-buttons{display:flex;gap:16px;margin-top:28px;flex-wrap:wrap;}
.hero-btn-primary{background:var(--blue-dark);color:#fff;padding:14px 30px;border-radius:6px;text-decoration:none;font-weight:700;font-size:13px;letter-spacing:1px;text-transform:uppercase;border:2px solid var(--blue-dark);transition:all .3s ease;}
.hero-btn-primary:hover{background:var(--yellow);border-color:var(--yellow);transform:translateY(-3px);}
.hero-btn-secondary{background:transparent;color:#fff;padding:14px 30px;border-radius:6px;text-decoration:none;font-weight:700;font-size:13px;letter-spacing:1px;text-transform:uppercase;border:2px solid rgba(255,255,255,.4);transition:all .3s ease;}
.hero-btn-secondary:hover{background:#fff;color:var(--blue-dark);transform:translateY(-3px);}









/* =====================
   RESET & BASE
===================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Manrope', sans-serif;
    color: #332F2A;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
}

/* =====================
   TOPBAR
===================== */
.topbar {
    background: #1A1815;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================
   HEADER
===================== */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
}

.header {
    border-bottom: 1px solid #E8E5E0;
    background: white;
}

.header__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}

.header__logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1A1815;
    text-decoration: none;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.header__search {
    flex: 1;
    max-width: 500px;
    display: none;
}

@media (min-width: 1024px) {
    .header__search { display: block; }
}

.search-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #F5F2ED;
    border: none;
    border-radius: 100px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #6F6A61;
    cursor: pointer;
    transition: background 0.2s;
}
.search-trigger:hover { background: #E8E5E0; }

.header__actions {
    display: none;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .header__actions { display: flex; }
}

.header__action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    color: #4A4740;
    text-decoration: none;
    transition: color 0.2s;
}
.header__action:hover { color: #2C4A3E; }

.header__action-label {
    font-size: 14px;
    display: none;
}

@media (min-width: 1024px) {
    .header__action-label { display: inline; }
}

.header__menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 1024px) {
    .header__menu-toggle { display: none; }
}

.menu-line {
    width: 100%;
    height: 2px;
    background: #1A1815;
    transition: all 0.3s;
}
.menu-line:nth-child(2) {
    width: 70%;
    margin-left: auto;
}

/* =====================
   MOBILE DRAWER
===================== */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
}
.drawer[hidden] { display: none; }

.drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 24, 21, 0.6);
    backdrop-filter: blur(4px);
}

.drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: white;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.drawer__header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    border-bottom: 1px solid #E8E5E0;
}

.drawer__close {
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: #4A4740;
}

.drawer__search {
    padding: 20px;
    border-bottom: 1px solid #E8E5E0;
}
.drawer__search input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E8E5E0;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

.drawer__nav { padding: 20px; }

.drawer__item { border-bottom: 1px solid #E8E5E0; }

.drawer__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: #332F2A;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.drawer__link svg { transition: transform 0.3s; }
.drawer__link.active svg { transform: rotate(180deg); }

.drawer__submenu {
    display: none;
    padding-left: 20px;
    padding-bottom: 16px;
}
.drawer__submenu.is-open {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.drawer__submenu a {
    color: #4A4740;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0;
}

.drawer__item--cta {
    border: none;
    margin-top: 24px;
}
.drawer__item--cta .drawer__link {
    background: #2C4A3E;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    justify-content: center;
}

/* =====================
   NAVIGATION
===================== */
.nav {
    background: white;
    border-bottom: 1px solid #E8E5E0;
}

.nav__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav__list {
    list-style: none;
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 16px 0;
}

.nav__item { position: relative; }

.nav__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: none;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #332F2A;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
}
.nav__link:hover {
    background: #F5F2ED;
    color: #2C4A3E;
}
.nav__link.active {
    background: #F5F2ED;
    color: #2C4A3E;
}

.nav__arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}
.nav__link.active .nav__arrow { transform: rotate(180deg); }

.nav__item--cta .nav__link {
    background: #2C4A3E;
    color: white;
}
.nav__item--cta .nav__link:hover { background: #1F3329; }

@media (max-width: 1023px) {
    .nav { display: none; }
}

/* =====================
   MEGA MENU
===================== */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    border-top: 1px solid #E8E5E0;
    box-shadow: 0 12px 28px rgba(26, 24, 21, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 24px;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.mega-menu__title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6F6A61;
    margin-bottom: 16px;
}

.mega-menu__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.mega-menu__links a {
    color: #332F2A;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
    padding: 4px 0;
}
.mega-menu__links a:hover { color: #2C4A3E; }

.mega-menu__card {
    background: linear-gradient(135deg, #2C4A3E 0%, #1F3329 100%);
    border-radius: 12px;
    padding: 32px;
    color: white;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mega-menu__card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 8px;
}

.mega-menu__card-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.mega-menu__card-cta {
    color: white;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
}

/* =====================
   BREADCRUMB
===================== */
.breadcrumb {
    background: #FAF8F5;
    border-bottom: 1px solid #E8E5E0;
    padding: 14px 24px;
}

.breadcrumb__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6F6A61;
}
.breadcrumb__inner a {
    color: #6F6A61;
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb__inner a:hover { color: #2C4A3E; }
.breadcrumb__inner span { color: #332F2A; font-weight: 500; }
.breadcrumb__sep { opacity: 0.4; }

/* =====================
   BUTTONS (UNIFIED)
===================== */
.btn {
    padding: 14px 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn--primary {
    background: white;
    color: #2C4A3E;
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.btn--secondary {
    background: transparent;
    color: white;
    border-color: white;
}
.btn--secondary:hover {
    background: white;
    color: #2C4A3E;
}

.btn--white {
    background: white;
    color: #2C4A3E;
}
.btn--white:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn--outline {
    background: transparent;
    color: #332F2A;
    border-color: #332F2A;
}
.btn--outline:hover {
    background: #1A1815;
    color: white;
}

.btn--outline-white {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.btn--small {
    padding: 10px 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #332F2A;
    border: 2px solid #E8E5E0;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.btn-view-all:hover {
    border-color: #2C4A3E;
    background: #2C4A3E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 74, 62, 0.2);
}
.btn-view-all::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.2s;
}
.btn-view-all:hover::after {
    transform: translateX(4px);
}



/* =====================
   CONTENT
===================== */
.content {
    padding: 80px 24px;
    max-width: 1440px;
    margin: 0 auto;
}

.content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    margin-bottom: 24px;
    text-align: center;
}

.content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4A4740;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* =====================
   INTRO SECTION
===================== */
.intro-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.intro-section__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 768px) {
    .intro-section__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.intro-section__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #B8906A;
    margin-bottom: 20px;
    display: block;
}

.intro-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    color: #1A1815;
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-section__text {
    font-size: 16px;
    line-height: 1.85;
    color: #4A4740;
    margin-bottom: 20px;
}

.intro-section__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: #332F2A;
}

.intro-feature__icon {
    width: 40px;
    height: 40px;
    background: #F5F2ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2C4A3E;
}

.intro-section__visual {
    position: relative;
    padding-bottom: 32px;
    padding-right: 20px;
}

.intro-section__img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    background: linear-gradient(135deg, #D1CCC4, #A8A39A);
    min-height: 300px;
}

.intro-section__badge {
    position: absolute;
    bottom: 0px;
    left: -16px;
    background: #2C4A3E;
    color: white;
    padding: 24px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.intro-section__badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: #B8906A;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.intro-section__badge-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    line-height: 1.4;
}

/* =====================
   COLLECTIONS GRID (UNIFIED)
===================== */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.collection-card {
    aspect-ratio: 6/7;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}
.collection-card:hover { transform: translateY(-8px); }

.collection-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #B8906A;
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
}

.collection-card__bg-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #D1CCC4, #A8A39A);
}

.collection-card__img-default {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    opacity: 1;
}

.collection-card__img-hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.collection-card:hover .collection-card__img-default { opacity: 0; }
.collection-card:hover .collection-card__img-hover { opacity: 1; }

.collection-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(26, 24, 21, 0.9) 60%, transparent);
    color: white;
    z-index: 1;
}

.collection-card__content a {
    display: block;
    color: white;
    text-decoration: none;
}

.collection-card__content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 8px;
    color: white;
}

.collection-card__content p {
    font-size: 14px;
    opacity: 0.9;
    color: white;
    text-align: left;
    margin-bottom: 12px;
}

.collection-card__cta {
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
    display: block;
}
.collection-card:hover .collection-card__cta {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   COLLECTION INFO
===================== */
.collection-info {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 24px;
}

.collection-info__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 968px) {
    .collection-info__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.collection-info__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #B8906A;
    margin-bottom: 20px;
    display: block;
}

.collection-info__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: #1A1815;
    margin-bottom: 24px;
    line-height: 1.2;
}

.collection-info__text {
    font-size: 16px;
    line-height: 1.8;
    color: #4A4740;
    margin-bottom: 32px;
}

.collection-info__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 640px) {
    .collection-info__features { grid-template-columns: 1fr; }
}

.collection-info__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.collection-info__feature-icon {
    width: 36px;
    height: 36px;
    background: #F5F2ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2C4A3E;
}

.collection-info__feature-text {
    font-size: 14px;
    color: #332F2A;
    line-height: 1.5;
}

.collection-info__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: #FAF8F5;
    border-radius: 12px;
    padding: 40px;
}

@media (max-width: 640px) {
    .collection-info__stats { grid-template-columns: 1fr; }
}

.collection-info__stat {
    text-align: center;
}

.collection-info__stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: #2C4A3E;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.collection-info__stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6F6A61;
}

/* =====================
   PRODUCTS SECTION (UNIFIED)
===================== */
.products-section {
    background: #FAF8F5;
    padding: 80px 0;
}

.products-section__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.products-section__header {
    text-align: center;
    margin-bottom: 56px;
}

.products-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 48px);
    color: #1A1815;
    margin-bottom: 16px;
}

.products-section__subtitle {
    font-size: 16px;
    color: #6F6A61;
    max-width: 600px;
    margin: 0 auto;
}

/* =====================
   PRODUCT GRID (UNIFIED)
===================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1280px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .products-grid { grid-template-columns: 1fr; }
}

/* =====================
   PRODUCT CARD (UNIFIED)
===================== */
.product-card {
    aspect-ratio: 6/7;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #B8906A;
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
}

.product-card__bg-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #D1CCC4, #A8A39A);
}

.product-card__img-default {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    opacity: 1;
}

.product-card__img-hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.product-card:hover .product-card__img-default { opacity: 0; }
.product-card:hover .product-card__img-hover { opacity: 1; }

.product-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(26,24,21,0.9) 60%, transparent);
    color: white;
    z-index: 1;
}

.product-card__content a {
    display: block;
    color: white;
    text-decoration: none;
}

.product-card__content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    margin-bottom: 6px;
    color: white;
}

.product-card__content p {
    font-size: 13px;
    opacity: 0.85;
    color: white;
    text-align: left;
    margin-bottom: 10px;
}

.product-card__cta {
    font-size: 13px;
    font-weight: 500;
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
    display: block;
}

.product-card:hover .product-card__cta {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   PRODUCT GROUP
===================== */
.product-group {
    background: white;
    padding: 80px 0;
}

.product-group:nth-child(even) {
    background: #FAF8F5;
}

.product-group__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-group__header {
    max-width: 900px;
    margin: 0 auto 56px;
}

.product-group__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 44px);
    color: #1A1815;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-group__description {
    font-size: 16px;
    line-height: 1.85;
    color: #4A4740;
    margin-bottom: 16px;
}

/* =====================
   PRODUCT INFO
===================== */
.product-info {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 24px;
}

.product-info__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.product-info__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #B8906A;
    margin-bottom: 20px;
    display: block;
}

.product-info__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: #1A1815;
    margin-bottom: 24px;
    line-height: 1.2;
}

.product-info__text {
    font-size: 16px;
    line-height: 1.8;
    color: #4A4740;
    margin-bottom: 32px;
}

/* =====================
   PRODUCTS HEADER & SORT
===================== */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.products-count {
    font-size: 14px;
    color: #6F6A61;
}

.products-count strong {
    color: #1A1815;
    font-weight: 600;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #6F6A61;
}

.products-sort select {
    padding: 8px 16px;
    border: 1px solid #E8E5E0;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #332F2A;
    background: white;
    cursor: pointer;
}

/* =====================
   PROJECT STEPS
===================== */
.project-steps {
    background: #F5F2ED;
    padding: 80px 24px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.step {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.step__number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    color: #E8E5E0;
    line-height: 1;
    margin-bottom: 24px;
}

.step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 16px;
    color: #1A1815;
}

.step p {
    color: #4A4740;
    line-height: 1.7;
    text-align: left;
    margin: 0;
}

/* =====================
   INSPIRATIONS
===================== */
.inspirations {
    background: #FAF8F5;
    padding: 80px 24px;
}

.inspirations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1440px;
    margin: 48px auto 0;
}

@media (max-width: 1024px) {
    .inspirations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .inspirations-grid {
        grid-template-columns: 1fr;
    }
}

.inspiration-card {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #2C4A3E, #1F3329);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.inspiration-card:hover {
    transform: scale(1.02);
}

.inspiration-card.large {
    grid-column: span 2;
    aspect-ratio: 16/10;
}

@media (max-width: 1024px) {
    .inspiration-card.large {
        grid-column: span 1;
    }
}

.inspiration-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(26, 24, 21, 0.85), transparent);
    color: white;
}

.inspiration-card__content .tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
}

.inspiration-card__content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: white;
}

/* =====================
   CATALOGS
===================== */
.catalogs {
    padding: 80px 24px;
    background: white;
}

.catalogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1440px;
    margin: 48px auto 0;
}

.catalog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.catalog-image {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #E8E5E0, #D1CCC4);
}

.catalog-content {
    padding: 24px;
}

.catalog-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: #1A1815;
}

.catalog-content p {
    color: #4A4740;
    margin-bottom: 20px;
    text-align: left;
    font-size: 15px;
}

/* =====================
   MATERIALS
===================== */
.materials {
    padding: 80px 24px;
    background: #FAF8F5;
}

.materials-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 48px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .materials-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.materials-list {
    list-style: none;
}

.materials-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #332F2A;
    border-bottom: 1px solid #E8E5E0;
}

.materials-visual div {
    background: linear-gradient(135deg, #D1CCC4, #A8A39A);
    height: 400px;
    border-radius: 12px;
}

/* =====================
   SLIDER SECTION
===================== */
.slider-section {
    background: #FAF8F5;
    padding: 80px 0;
    overflow: hidden;
}

.slider-section__header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.slider-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    color: #1A1815;
    line-height: 1.15;
}

.slider-section__subtitle {
    font-size: 15px;
    color: #6F6A61;
    max-width: 380px;
    line-height: 1.6;
    text-align: right;
}

@media (max-width: 768px) {
    .slider-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .slider-section__subtitle { text-align: left; max-width: 100%; }
}

.slider-track {
    display: flex;
    gap: 24px;
    padding: 0 24px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}
.slider-track::-webkit-scrollbar { display: none; }

.slider-slide {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
}
@media (max-width: 1024px) {
    .slider-slide { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 640px) {
    .slider-slide { flex: 0 0 calc(85%); }
}

.slider-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.slider-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.slider-card__img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #2C4A3E, #1F3329);
}

.slider-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.slider-card:hover .slider-card__img {
    transform: scale(1.06);
}

.slider-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,24,21,0.4), transparent 60%);
}

.slider-card__img-tag {
    position: absolute;
    bottom: 16px;
    left: 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 1;
}

.slider-card__content {
    padding: 24px 28px 28px;
}

.slider-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #1A1815;
    margin-bottom: 10px;
    line-height: 1.2;
}

.slider-card__desc {
    font-size: 14px;
    color: #6F6A61;
    line-height: 1.6;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding: 0 24px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #E8E5E0;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #332F2A;
}
.slider-btn:hover {
    border-color: #2C4A3E;
    background: #2C4A3E;
    color: white;
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1CCC4;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}
.slider-dot.active {
    background: #2C4A3E;
    width: 24px;
    border-radius: 4px;
}

/* =====================
   SIDEBAR
===================== */
.sidebar {
    position: sticky;
    top: 160px;
}

@media (max-width: 1023px) {
    .sidebar {
        position: static;
    }
}

.sidebar__title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6F6A61;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E8E5E0;
}

.filter-group {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E8E5E0;
}

.filter-group:last-of-type {
    border-bottom: none;
}

.filter-group__title {
    font-size: 14px;
    font-weight: 600;
    color: #1A1815;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.filter-group__arrow {
    transition: transform 0.2s;
    color: #6F6A61;
    flex-shrink: 0;
}

.filter-group.open .filter-group__arrow {
    transform: rotate(180deg);
}

.filter-group__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-group__options.hidden {
    display: none;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #332F2A;
    transition: color 0.2s;
}

.filter-option:hover {
    color: #2C4A3E;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2C4A3E;
    cursor: pointer;
    flex-shrink: 0;
}

.filter-option__count {
    margin-left: auto;
    font-size: 12px;
    color: #A8A39A;
}

.filter-reset {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #B8906A;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Manrope', sans-serif;
    margin-top: 8px;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* =====================
   TEXT SECTION (UNIFIED)
===================== */
.text-section {
    background: #FAF8F5;
    padding: 80px 24px;
    border-top: 1px solid #E8E5E0;
}

.text-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.text-section__intro {
    text-align: center;
    margin-bottom: 64px;
}

.text-section__label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #B8906A;
    margin-bottom: 16px;
}

.text-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: #1A1815;
    line-height: 1.15;
    margin-bottom: 24px;
}

.text-section__lead {
    font-size: 18px;
    line-height: 1.8;
    color: #4A4740;
    max-width: 760px;
    margin: 0 auto;
}

.text-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

@media (max-width: 768px) {
    .text-section__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.text-section__block-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: #1A1815;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #B8906A;
    display: inline-block;
}

.text-section__block p {
    font-size: 15px;
    line-height: 1.85;
    color: #4A4740;
    margin-bottom: 16px;
}

.text-section__block p:last-child {
    margin-bottom: 0;
}

.text-section__quote {
    background: white;
    border-left: 4px solid #B8906A;
    border-radius: 0 12px 12px 0;
    padding: 40px 48px;
    margin-bottom: 56px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.text-section__quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    font-style: italic;
    color: #2C4A3E;
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-section__quote p {
    font-size: 15px;
    line-height: 1.8;
    color: #4A4740;
    margin: 0;
    max-width: 800px;
}

.text-section__image {
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
}

.text-section__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =====================
   BOTTOM TEXT SECTION
===================== */
.bottom-text {
    background: #FAF8F5;
    padding: 80px 24px;
}

.bottom-text__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.bottom-text__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    color: #1A1815;
    margin-bottom: 24px;
    line-height: 1.2;
}

.bottom-text__content {
    font-size: 15px;
    line-height: 1.85;
    color: #4A4740;
}

.bottom-text__content p {
    margin-bottom: 20px;
}

.bottom-text__content p:last-child {
    margin-bottom: 0;
}

.bottom-text__content strong {
    color: #1A1815;
    font-weight: 600;
    display: block;
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 16px;
}

.bottom-text__content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: #1A1815;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #B8906A;
    display: inline-block;
}

/* =====================
   CTA SECTION (UNIFIED)
===================== */
.cta-banner,
.cta-section,
.bottom-cta {
    background: linear-gradient(135deg, #2C4A3E, #1F3329);
    padding: 80px 24px;
    text-align: center;
}

.cta-section__inner,
.bottom-cta__inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section__label,
.bottom-cta__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #B8906A;
    margin-bottom: 20px;
    display: block;
}

.cta-section__title,
.bottom-cta__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 52px);
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-section__text,
.bottom-cta__text {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-section__actions,
.bottom-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================
   FOOTER
===================== */
.footer {
    background: #1A1815;
    color: #A8A39A;
    padding: 80px 24px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-title {
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    color: #A8A39A;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A8A39A;
    transition: all 0.2s;
}
.footer-social a:hover {
    background: white;
    color: #1A1815;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p {
    margin: 0;
    text-align: left;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    color: #A8A39A;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-legal a:hover { color: white; }




/* ============================================
   HEADER SEARCH CSS
   Matching exact site style from screenshot
   ============================================ */

/* Container */
.header__search {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

/* Search Icon (before input) */
.header__search::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232c5f2d' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

/* Search Input */
.header-search__input {
    width: 420px;
    padding: 12px 100px 12px 45px;
    border: none;
    border-radius: 25px;
    background: #f5f5f5;
    color: #666;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.header-search__input::placeholder {
    color: #999;
}

.header-search__input:focus {
    background: #ebebeb;
}

/* Search Button - Visible and styled */
.header-search__button {position: absolute;right: 4px;top: 50%;transform: translateY(-50%);padding: 8px 20px;
    border: none;
    border-radius: 20px;
    background: #2c5f2d;color: #fff;
    font-size: 13px;font-weight: 600;cursor: pointer;transition: all 0.3s ease;text-transform: lowercase;z-index: 2;
}

.header-search__button:hover {background: #1a3a1b;}

/* Hide  if present */
.header__search br {display: none;}
/* Responsive */


@media (max-width: 1024px) {
    .header-search__input {width: 300px;padding-right: 90px;}
    .header-search__button {padding: 8px 16px;font-size: 12px;}
}

@media (max-width: 768px) {
    .header-search__input {width: 240px;font-size: 13px;padding: 10px 80px 10px 40px;} 
    .header__search::before {width: 16px;height: 16px;left: 14px;}
    .header-search__button {padding: 7px 14px;font-size: 11px;}
}

@media (max-width: 480px) {
    .header-search__input {width: 200px;font-size: 12px;padding: 10px 70px 10px 38px;}
    .header__search::before {width: 14px;height: 14px;left: 12px;}
    .header-search__button {padding: 7px 12px;font-size: 11px;}
}



/* ============================================
   HEADER SLIDER
   ============================================ */
.hero-slider{position:relative;height:520px;overflow:hidden;}
.hero-slide{position:absolute;inset:0;opacity:0;transition:opacity 0.8s ease;}
.hero-slide.active{opacity:1;z-index:1;}
.hero-slide img{width:100%;height:100%;object-fit:cover;}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(18,42,106,.8) 45%,rgba(10,20,80,.2));z-index:1;}
.hero-content{position:absolute;left:8%;top:50%;transform:translateY(-50%);color:#fff;z-index:5;}
.hero-content h2{font-size:42px;font-weight:700;}
.hero-tag{font-size:12px;letter-spacing:3px;text-transform:uppercase;color:rgba(255,255,255,.85);margin-bottom:12px;}
.hero-prev,.hero-next{position:absolute;top:50%;transform:translateY(-50%);width:60px;height:60px;border-radius:50%;background:rgba(255,255,255,0.15);display:flex;align-items:center;justify-content:center;color:#fff;text-decoration:none;font-size:28px;backdrop-filter:blur(6px);transition:0.3s ease;z-index:20;}
.hero-prev{left:30px;}.hero-next{right:30px;}
.hero-prev:hover,.hero-next:hover{background:#70d0e0;color:#1a3c8f;transform:translateY(-50%) scale(1.1);}
.hero-dots{position:absolute;bottom:30px;left:50%;transform:translateX(-50%);display:flex;gap:10px;z-index:20;}
.hero-dots span{width:12px;height:12px;border-radius:50%;background:rgba(255,255,255,0.5);cursor:pointer;transition:0.3s ease;}
.hero-dots span.active{background:#70d0e0;}
.hero-buttons{display:flex;gap:16px;margin-top:28px;flex-wrap:wrap;}
.hero-btn-primary{background:var(--blue-dark);color:#fff;padding:14px 30px;border-radius:6px;text-decoration:none;font-weight:700;font-size:13px;letter-spacing:1px;text-transform:uppercase;border:2px solid var(--blue-dark);transition:all .3s ease;}
.hero-btn-primary:hover{background:var(--yellow);border-color:var(--yellow);transform:translateY(-3px);}
.hero-btn-secondary{background:transparent;color:#fff;padding:14px 30px;border-radius:6px;text-decoration:none;font-weight:700;font-size:13px;letter-spacing:1px;text-transform:uppercase;border:2px solid rgba(255,255,255,.4);transition:all .3s ease;}
.hero-btn-secondary:hover{background:#fff;color:var(--blue-dark);transform:translateY(-3px);}






