* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f0e6;
    color: #1f2430;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: calc(100% - 32px);
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */
.topbar {
    background: rgba(19, 41, 75, 0.95);
    color: #fff;
    border-bottom: 1px solid rgba(200, 154, 67, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(6px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    color: #fff;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    position: relative;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.2px;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.menu a:hover {
    opacity: 1;
    color: #ede6d8;
}

.menu a.active {
    color: #ede6d8;
}

.menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: #c89a43;
    border-radius: 999px;
}

.right {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.lang-switch a {
    color: #fff;
    opacity: 0.75;
    transition: all 0.2s ease;
}

.lang-switch a.active {
    opacity: 1;
    color: #c89a43;
}

.btn-gold {
    display: inline-block;
    background: #c89a43;
    color: #13294b;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-gold:hover {
    background: #d2a955;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(200, 154, 67, 0.4);
}

.btn-outline {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
    border: 1px solid #13294b;
    color: #13294b;
    background: transparent;
    display: inline-block;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-outline-dark:hover {
    background: #13294b;
    color: #fff;
}

.mobile-btn {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
}

.mobile-menu {
    display: none;
    padding: 0 16px 16px;
    background: #13294b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a {
    display: block;
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 18px;
}

.mobile-lang {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}

.mobile-lang a {
    color: #fff;
    opacity: 0.7;
    margin: 0 6px;
    transition: all 0.2s ease;
}

.mobile-lang a.active {
    opacity: 1;
    color: #c89a43;
}

/* HERO */
.hero {
    position: relative;
    background: url('../img/hero-bg4.jpg') center/cover no-repeat;
    color: #fff;
    padding: 150px 0 130px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(19, 41, 75, 0.72) 0%,
            rgba(19, 41, 75, 0.55) 22%,
            rgba(19, 41, 75, 0.28) 48%,
            rgba(19, 41, 75, 0.12) 75%,
            rgba(19, 41, 75, 0.04) 100%
        );
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 45%, rgba(255,255,255,0.10), transparent 40%);
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
    max-width: 640px;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #c89a43;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 20px;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;
}

.hero p {
    margin: 0 0 28px;
    font-size: 20px;
    line-height: 1.7;
    color: #f2eadc;
}

.buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* FEATURE */
.feature-strip {
    background: #f1eadf;
    padding: 34px 0;
    border-top: 1px solid #e2d8c8;
    border-bottom: 1px solid #e2d8c8;
}

.feature-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(19, 41, 75, 0.08);
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 12px 30px rgba(19, 41, 75, 0.06);
    transition: all 0.25s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(19, 41, 75, 0.10);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(200,154,67,0.16), rgba(200,154,67,0.10));
    border: 1px solid rgba(200,154,67,0.35);
    box-shadow: 0 6px 14px rgba(200,154,67,0.14);
    color: #c89a43;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    color: #13294b;
    margin: 0;
}

.feature-text {
    font-size: 14px;
    line-height: 1.7;
    color: #5f6270;
}

/* PRODUCTS */
.products {
    padding: 80px 0;
}

.section-head {
    margin-bottom: 34px;
}

.products h2 {
    font-size: 52px;
    margin: 0 0 14px;
    color: #13294b;
    line-height: 1.05;
}

.section-head p {
    margin: 0;
    color: #5f6270;
    font-size: 18px;
    line-height: 1.6;
    max-width: 720px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.card {
    background: #fff;
    border: 1px solid #e2d8c8;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(19, 41, 75, 0.08);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(19, 41, 75, 0.14);
}

.card-image {
    display: block;
    overflow: hidden;
    background: #f2eee7;
}

.card-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.35s ease;
    background: #f2eee7;
}

.card:hover .card-image img {
    transform: scale(1.04);
}

.card-body {
    padding: 18px 18px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card h3 {
    font-size: 18px;
    color: #13294b;
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: 0.1px;
    min-height: 66px;
}

.card p {
    margin: 0 0 16px;
    color: #6a6f7d;
    line-height: 1.5;
    font-size: 14px;
    flex-grow: 1;
}

.card .learn-more {
    display: inline-block;
    color: #c89a43;
    font-weight: 700;
    font-size: 16px;
}

/* STORY SECTION */
.story-section {
    background:
        linear-gradient(
            90deg,
            rgba(246,239,230,0.88) 0%,
            rgba(246,239,230,0.75) 30%,
            rgba(246,239,230,0.45) 55%,
            rgba(246,239,230,0.15) 100%
        ),
        url('../img/story-bg.jpg') 75% center / 115% auto no-repeat;
    padding: 90px 0;
}

.story-text {
    max-width: 560px;
}

.story-kicker {
    color: #c89a43;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
}

.story-text h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 18px;
    color: #13294b;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4f5665;
    max-width: 520px;
}

/* PAGE HERO */
.page-hero {
    background: linear-gradient(180deg, #13294b 0%, #1b3762 100%);
    color: #fff;
}

.page-hero-thin {
    padding: 26px 0 24px;
}

.page-hero-small {
    padding: 38px 0 34px;
}

.page-hero-text {
    max-width: 760px;
}

.page-hero h1 {
    margin: 0 0 10px;
    font-size: 38px;
    line-height: 1.05;
    color: #fff;
}

.page-hero p {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: #e9e2d6;
    max-width: 680px;
}

.products-page {
    padding-top: 70px;
}

/* PRODUCT DETAIL */
.product-detail-section {
    padding: 36px 0 30px;
    background: #f6f0e6;
}

.breadcrumb,
.product-breadcrumb {
    margin-bottom: 18px;
    font-size: 14px;
    color: #7f8794;
}

.breadcrumb a,
.product-breadcrumb a {
    color: #7f8794;
    transition: color 0.2s ease;
}

.breadcrumb a:hover,
.product-breadcrumb a:hover {
    color: #13294b;
}

.breadcrumb span,
.product-breadcrumb span {
    margin: 0 6px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 52px;
    align-items: start;
}

.product-detail-image-wrap {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.75), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.82), rgba(247,242,234,0.96));
    border: 1px solid rgba(19, 41, 75, 0.08);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 22px 54px rgba(19, 41, 75, 0.10);
}

.product-detail-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 22%);
    z-index: 1;
}

.product-gallery {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
}

.product-gallery-main {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #f3eee6;
}

.product-detail-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #f2eee7;
    border-radius: 24px;
    transition: transform 0.45s ease;
}

.product-gallery-main:hover .product-detail-image {
    transform: scale(1.025);
}

.product-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: rgba(19, 41, 75, 0.82);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(19, 41, 75, 0.18);
}

.product-gallery-nav:hover {
    background: #c89a43;
    color: #13294b;
}

.product-gallery-nav.prev {
    left: 14px;
}

.product-gallery-nav.next {
    right: 14px;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 4px;
    scrollbar-width: thin;
    scroll-behavior: smooth;
}

.product-thumb-btn {
    border: 1px solid #e2d8c8;
    background: #fff;
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumb-btn.is-active {
    border-color: #c89a43;
    box-shadow: 0 0 0 2px rgba(200, 154, 67, 0.18);
}

.product-thumb-btn:hover {
    transform: translateY(-2px);
}

.product-detail-content {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    position: sticky;
    top: 108px;
}

.product-detail-kicker,
.section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #c89a43;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.product-category-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(200,154,67,0.12);
    border: 1px solid rgba(200,154,67,0.28);
    color: #b8841f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.product-detail-content h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 4vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.8px;
    color: #13294b;
    max-width: 620px;
}

.product-detail-lead {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.75;
    color: #525a68;
    max-width: 620px;
}

.product-meta-list,
.product-quick-facts,
.product-feature-grid,
.tech-grid,
.prep-grid,
.related-product-grid {
    display: grid;
}

.product-meta-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 4px 0 16px;
}

.product-meta-item {
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(19, 41, 75, 0.07);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(19, 41, 75, 0.035);
}

.product-meta-item span {
    display: block;
    font-size: 12px;
    color: #7a8190;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.product-meta-item strong {
    color: #13294b;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.product-detail-buttons {
    margin: 4px 0 16px;
}

.product-detail-buttons .btn-gold,
.product-detail-buttons .btn-outline-dark {
    min-width: 180px;
    text-align: center;
}

.product-quick-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-quick-fact {
    background: rgba(255,255,255,0.58);
    border: 1px solid #e2d8c8;
    border-radius: 14px;
    padding: 13px 14px;
}

.product-quick-fact span {
    display: block;
    font-size: 12px;
    color: #7a8190;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.product-quick-fact strong {
    color: #13294b;
    font-size: 14px;
    line-height: 1.45;
}

.product-feature-band,
.product-description-section,
.product-tech-section,
.prep-section,
.related-products-section,
.product-cta-section {
    position: relative;
    background: #f6f0e6;
}

.product-feature-band {
    padding: 10px 0 30px;
}

.product-description-section {
    padding: 10px 0 35px;
}

.product-tech-section {
    padding: 26px 0 80px;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 24%), #f6f0e6;
}

.prep-section {
    padding: 10px 0 84px;
}

.related-products-section {
    padding: 48px 0 70px;
}

.product-cta-section {
    padding: 10px 0 90px;
    background: linear-gradient(180deg, #f3ede3 0%, #f6f0e6 100%);
}

.product-description-section::before,
.product-tech-section::before,
.prep-section::before,
.related-products-section::before,
.product-cta-section::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(200,154,67,0.28) 18%,
        rgba(200,154,67,0.28) 82%,
        transparent 100%
    );
    margin-bottom: 34px;
}

.product-description-card,
.tech-card,
.tech-note-card,
.prep-card,
.product-cta-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(249,246,239,0.95));
    border: 1px solid rgba(200,154,67,0.20);
    border-radius: 24px;
    box-shadow: 0 14px 36px rgba(19, 41, 75, 0.06);
}

.product-description-card {
    padding: 34px 36px;
}

.product-description-text {
    color: #4f5665;
    font-size: 18px;
    line-height: 1.95;
    max-width: 980px;
}

.product-feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-feature-box {
    background: #fff;
    border: 1px solid #e2d8c8;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(19, 41, 75, 0.05);
}

.icon-feature-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.icon-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #c89a43;
    background: linear-gradient(180deg, rgba(200,154,67,0.14), rgba(200,154,67,0.08));
    border: 1px solid rgba(200,154,67,0.26);
}

.icon-feature-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.product-feature-box h3 {
    margin: 0;
    font-size: 20px;
    color: #13294b;
}

.product-feature-box p {
    margin: 0;
    color: #5f6270;
    line-height: 1.7;
}

.tech-grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 28px;
}

.tech-card,
.tech-note-card {
    padding: 30px;
}

.tech-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #eee4d5;
}

.tech-row:last-child {
    border-bottom: none;
}

.tech-row span {
    color: #6a6f7d;
    font-size: 14px;
}

.tech-row strong {
    color: #13294b;
    text-align: right;
    font-size: 15px;
    line-height: 1.5;
    max-width: 50%;
}

.tech-note-card h3 {
    margin: 0 0 12px;
    color: #13294b;
    font-size: 30px;
    line-height: 1.1;
}

.tech-note-card p {
    margin: 0;
    color: #5f6270;
    line-height: 1.85;
    font-size: 16px;
}

.export-note-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.export-note-list li {
    position: relative;
    padding-left: 18px;
    color: #5f6270;
    line-height: 1.75;
}

.export-note-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #c89a43;
}

.prep-card {
    padding: 32px;
}

.prep-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.prep-block {
    background: linear-gradient(180deg, #fcfaf6, #f8f4ec);
    border: 1px solid #ece2d2;
    border-radius: 20px;
    padding: 24px;
}

.prep-block h3 {
    margin: 0 0 14px;
    color: #13294b;
    font-size: 24px;
    line-height: 1.15;
}

.prep-list {
    margin: 0;
    padding-left: 18px;
    color: #5f6270;
}

.prep-list li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.prep-text {
    color: #5f6270;
    font-size: 16px;
    line-height: 1.85;
}

.related-products-section .section-head {
    margin-bottom: 28px;
}

.related-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.product-cta-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(200,154,67,0.16), transparent 24%),
        radial-gradient(circle at bottom left, rgba(19,41,75,0.06), transparent 26%),
        linear-gradient(180deg, #ffffff, #f8f4ec);
    border: 1px solid rgba(200,154,67,0.24);
    border-radius: 30px;
    padding: 48px 42px;
    box-shadow: 0 20px 48px rgba(19, 41, 75, 0.07);
    text-align: center;
}

.product-cta-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: linear-gradient(90deg, #13294b, #c89a43, #13294b);
    opacity: 0.9;
}

.product-cta-card h2 {
    margin: 0 0 14px;
    color: #13294b;
    font-size: 44px;
    line-height: 1.04;
    letter-spacing: -1px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.product-cta-card p {
    margin: 0 auto 24px;
    color: #5f6270;
    font-size: 18px;
    line-height: 1.8;
    max-width: 760px;
}

.product-cta-buttons {
    justify-content: center;
}

/* DROPDOWN */
.menu-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.menu-dropdown-btn {
    background: none;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    position: relative;
}

.menu-dropdown-btn.active {
    color: #ede6d8;
}

.menu-dropdown-btn.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: #c89a43;
    border-radius: 999px;
}

.dropdown-caret {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.menu-dropdown.open .dropdown-caret {
    transform: rotate(180deg);
}

.dropdown-menu-box {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid rgba(19, 41, 75, 0.08);
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
    padding: 8px 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: all 0.22s ease;
}

.menu-dropdown.open .dropdown-menu-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu-box a {
    display: block;
    padding: 12px 16px;
    color: #13294B;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.dropdown-menu-box a:hover {
    background: #f8f4ec;
    color: #c99a3d;
}

.dropdown-menu-box a.is-current {
    background: rgba(200, 154, 67, 0.14);
    color: #c99a3d;
    font-weight: 700;
    border-left: 3px solid #c99a3d;
}

.dropdown-menu-box a::after {
    display: none !important;
    content: none !important;
}

.home-category-block {
    padding: 48px 0;
}

.section-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.home-category-block .section-head h2 {
    font-size: 36px;
    margin: 0;
    color: #13294b;
}

.section-link {
    font-size: 16px;
    font-weight: 700;
    color: #c89a43;
    white-space: nowrap;
}

.section-link:hover {
    color: #13294b;
}

.premium-highlight {
    padding: 72px 0;
    background: linear-gradient(180deg, #f3ede2 0%, #f6f0e6 100%);
}

.premium-head {
    margin-bottom: 28px;
}

.premium-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.premium-highlight-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(19, 41, 75, 0.08);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(19, 41, 75, 0.06);
}

.premium-highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(200,154,67,0.14);
    color: #c89a43;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
}

.premium-highlight-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.2;
    color: #13294b;
}

.premium-highlight-card p {
    margin: 0;
    color: #5f6270;
    line-height: 1.75;
    font-size: 15px;
}

.mobile-sticky-cta {
    display: none;
}

.footer {
    margin-top: auto;
    background: #13294b;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.footer h2 {
    margin: 0 0 12px;
    font-size: 40px;
    letter-spacing: 1px;
}

.footer p {
    margin: 0 0 22px;
    color: #f0e6d8;
}

.footer-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-buttons a {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    background: #c89a43;
    color: #13294b;
}

.footer-contact {
    margin: 18px 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-contact span {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
}

.footer-contact a {
    color: #c89a43;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.copyright {
    color: #d9d9d9;
    font-size: 14px;
}

.product-detail-content h1,
.product-cta-card h2,
.product-tech-section h2,
.prep-section h2,
.related-products-section h2,
.page-hero h1 {
    text-wrap: balance;
}

/* TABLET */
@media (max-width: 1200px) {
    .product-grid,
    .related-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 900px) {
    .menu,
    .right,
    .menu-dropdown {
        display: none;
    }

    .mobile-btn {
        display: block;
    }

    .logo img {
        height: 52px;
    }

    .hero {
        padding: 100px 0 90px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 17px;
    }

    .product-detail-section {
        padding: 34px 0 24px;
    }

    .product-detail-grid,
    .product-meta-list,
    .product-feature-grid,
    .tech-grid,
    .prep-grid,
    .related-product-grid,
    .product-quick-facts,
    .product-grid,
    .feature-strip-grid,
    .premium-highlight-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-content {
        padding-top: 0;
        position: static;
        top: auto;
    }

    .product-detail-content h1 {
        font-size: 32px;
        line-height: 1.02;
        letter-spacing: -0.6px;
    }

    .product-detail-lead,
    .story-text p,
    .page-hero p,
    .product-description-text {
        font-size: 16px;
        line-height: 1.75;
    }

    .product-detail-buttons,
    .product-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .product-detail-buttons .btn-gold,
    .product-detail-buttons .btn-outline-dark,
    .product-cta-buttons .btn-gold,
    .product-cta-buttons .btn-outline-dark {
        width: 100%;
        min-width: 0;
    }

    .product-thumb-btn {
        width: 68px;
        height: 68px;
        flex: 0 0 68px;
    }

    .product-gallery-nav {
        width: 38px;
        height: 38px;
        font-size: 24px;
    }

    .story-section {
        padding: 70px 0;
        background-position: center right;
    }

    .story-text h2,
    .tech-note-card h3,
    .prep-block h3,
    .premium-highlight-card h3 {
        font-size: 22px;
    }

    .products {
        padding: 60px 0;
    }

    .products h2,
    .footer h2,
    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero-thin,
    .page-hero-small {
        padding: 42px 0 38px;
    }

    .card h3 {
        font-size: 17px;
        line-height: 1.18;
        margin: 0 0 10px;
        min-height: 60px;
    }

    .card-body {
        padding: 18px 18px 22px;
    }

    .card-image img {
        object-fit: cover;
        object-position: center top;
    }

    .product-description-card,
    .tech-card,
    .tech-note-card,
    .prep-card,
    .prep-block,
    .product-cta-card {
        padding: 24px;
        border-radius: 22px;
    }

    .tech-row {
        align-items: flex-start;
    }

    .tech-row strong {
        max-width: 54%;
        font-size: 14px;
    }

    .mobile-lang {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 18px auto 0;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 10px;
        overflow: hidden;
    }

    .mobile-lang a {
        padding: 8px 14px;
        margin: 0;
    }

    .mobile-lang a.active {
        background: #c89a43;
        color: #13294b;
    }

    .section-head-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-category-block .section-head h2 {
        font-size: 30px;
    }

    .mobile-sticky-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        background: rgba(255,255,255,0.88);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(19, 41, 75, 0.08);
        border-radius: 18px;
        padding: 10px;
        box-shadow: 0 16px 30px rgba(19, 41, 75, 0.14);
    }

    .mobile-sticky-cta a {
        min-height: 44px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 14px;
    }

    .mobile-sticky-cta a:first-child {
        background: #c89a43;
        color: #13294b;
    }

    .mobile-sticky-cta a:last-child {
        background: #13294b;
        color: #fff;
    }

    body.has-mobile-cta {
        padding-bottom: 88px;
    }
}
.mobile-menu > a.active {
    color: #c89a43;
    font-weight: 800;
    background: rgba(255,255,255,0.05);
    padding-left: 18px;
    border-radius: 12px;
    box-shadow: inset 3px 0 0 #c89a43;
}

.category-filter-wrap {
    margin-bottom: 32px;
}

.category-filter-head {
    margin: 0 0 10px;
}

.category-filter-head h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #13294B;
}

.category-filter-head.sub-head {
    margin-top: 18px;
}

.product-filters.slider-filters {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    margin-bottom: 8px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.product-filters.slider-filters::-webkit-scrollbar {
    height: 8px;
}

.product-filters.slider-filters::-webkit-scrollbar-track {
    background: rgba(19, 41, 75, 0.06);
    border-radius: 999px;
}

.product-filters.slider-filters::-webkit-scrollbar-thumb {
    background: rgba(200, 154, 67, 0.55);
    border-radius: 999px;
}

.product-filters.slider-filters a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid #d7d1c7;
    background: #f7f3eb;
    color: #13294B;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-filters.slider-filters a:hover {
    border-color: #c99a3d;
    color: #c99a3d;
    background: #fffaf2;
}

.product-filters.slider-filters a.active-filter {
    background: #c99a3d !important;
    color: #fff !important;
    border-color: #c99a3d !important;
}

.products-search-section {
    background: #f6f0e6;
    padding: 22px 0 10px;
}

.products-search-form {
    width: 100%;
}

.products-search-box {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(19, 41, 75, 0.08);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(19, 41, 75, 0.05);
}

.products-search-box input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    color: #13294b;
    font-size: 16px;
    padding: 10px 12px;
    font-family: Arial, Helvetica, sans-serif;
}

.products-search-box input::placeholder {
    color: #7a8190;
}

.products-search-box .btn-gold {
    border: none;
    cursor: pointer;
    min-width: 120px;
}

.products-result-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.products-result-count {
    color: #13294b;
    font-size: 15px;
    font-weight: 700;
}

.products-result-query {
    color: #6a6f7d;
    font-size: 14px;
}

.products-result-query strong {
    color: #13294b;
}

.product-filters.slider-filters a.active-filter {
    background: #c99a3d !important;
    color: #fff !important;
    border-color: #c99a3d !important;
    box-shadow: 0 6px 16px rgba(200, 154, 67, 0.35);
}

.product-filters.slider-filters a {
    transition: all 0.25s ease;
}

@media (max-width: 900px) {
    .products-search-box {
        flex-direction: column;
        align-items: stretch;
    }

    .products-search-box .btn-gold {
        width: 100%;
        min-width: 0;
    }

    .products-result-bar {
        align-items: flex-start;
    }
}


.products-hero-dynamic {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 0 78px;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(200,154,67,0.14);
}

.products-hero-content {
    max-width: 760px;
}

.products-hero-dynamic h1 {
    margin: 0 0 12px;
    font-size: 56px;
    line-height: 1.02;
    color: #fff;
    letter-spacing: -1px;
}

.products-hero-dynamic p {
    margin: 0;
    max-width: 760px;
    font-size: 21px;
    line-height: 1.7;
    color: #efe7db;
}

.selected-category-label-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.selected-category-label,
.selected-subcategory-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.selected-category-label {
    background: rgba(200,154,67,0.16);
    border: 1px solid rgba(200,154,67,0.30);
    color: #b8841f;
}

.selected-subcategory-label {
    background: rgba(19,41,75,0.08);
    border: 1px solid rgba(19,41,75,0.12);
    color: #13294b;
}

@media (max-width: 900px) {
    .products-hero-dynamic {
        padding: 58px 0 54px;
        background-position: center;
    }

    .products-hero-dynamic h1 {
        font-size: 40px;
        line-height: 1.04;
    }

    .products-hero-dynamic p {
        font-size: 18px;
        line-height: 1.7;
    }
}

/* MOBILE MENU OPEN STATE */
.mobile-menu.is-open {
    display: block;
}

/* MOBILE PRODUCTS DROPDOWN */
.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: none;
    border: none;
    color: #fff;
    padding: 12px 0;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    text-align: left;
}

.mobile-dropdown-toggle.active {
    color: #c89a43;
    font-weight: 800;
}

.mobile-dropdown-caret {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.mobile-dropdown.open .mobile-dropdown-caret {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    padding: 0 0 8px 18px;
}

.mobile-dropdown.open .mobile-submenu {
    display: block;
}

.mobile-submenu a {
    display: block;
    color: rgba(255,255,255,0.92);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 16px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.mobile-submenu a:last-child {
    border-bottom: none;
}

.mobile-submenu a.active {
    color: #c89a43;
    font-weight: 800;
    background: transparent;
    padding-left: 0;
    border-radius: 0;
    box-shadow: none;
}