* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: #FAFAFA;
}

/* Age Verification Modal */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><text x="10%" y="30%" font-size="200" font-family="Arial Black" fill="rgba(200,169,81,0.05)" font-style="italic" font-weight="bold">1ABOVE</text></svg>');
    background-size: cover;
    background-position: center;
}

.age-gate-content {
    background: rgba(28, 53, 45, 0.95);
    padding: 60px 80px;
    text-align: center;
    max-width: 600px;
    width: 90%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(200, 169, 81, 0.3);
}

.age-gate-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-gate-logo img {
    height: 80px;
    width: auto;
    max-width: 100%;
    filter: brightness(0) saturate(100%) invert(73%) sepia(13%) saturate(1007%) hue-rotate(9deg) brightness(94%) contrast(86%);
}

.age-gate-content h2 {
    color: #FAFAFA;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-gate-btn {
    background: #C8A951;
    color: #1C352D;
    padding: 18px 50px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.age-gate-btn:hover {
    background: #B39641;
    transform: translateY(-2px);
}

.age-gate-btn:active {
    transform: translateY(0);
}

.age-gate-btn.under {
    background: transparent;
    border: 2px solid #C8A951;
    color: #C8A951;
}

.age-gate-btn.under:hover {
    background: rgba(200, 169, 81, 0.1);
}

.age-gate-footer {
    margin-top: 50px;
    color: rgba(250, 250, 250, 0.5);
    font-size: 12px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #FAFAFA;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px 50px;
}

nav .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

nav .logo {
    font-size: 28px;
    font-weight: bold;
    color: #1C352D;
    font-style: italic;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

nav .logo img {
    height: 40px;
    width: auto;
}

nav .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

nav .nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav .nav-links a:hover {
    color: #C8A951;
}

nav .nav-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

nav .btn-find,
nav .btn-subscribe {
    padding: 10px 25px;
    border: 2px solid #1C352D;
    background: #FAFAFA;
    color: #1C352D;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

nav .btn-subscribe {
    background: #C8A951;
    color: #FAFAFA;
    border-color: #C8A951;
}

nav .btn-find:hover {
    background: #1C352D;
    color: #FAFAFA;
}

nav .btn-subscribe:hover {
    background: #B39641;
    border-color: #B39641;
}

/* Desktop: hide mobile COA link */
.nav-links .nav-coa-mobile {
    display: none;
}

/* Mobile: show mobile COA link, hide desktop COA button */
@media (max-width: 768px) {
    .nav-actions .btn-find {
        display: none;
    }

    .nav-links .nav-coa-mobile {
        display: block;
    }
}

/* Language Toggle Button */
.lang-toggle {
    padding: 8px 16px;
    margin-right: 10px;
    border: 2px solid #1C352D;
    background: #FAFAFA;
    color: #1C352D;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 20px;
}

.lang-toggle:hover {
    background: #1C352D;
    color: #FAFAFA;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1C352D;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 70vh;
    height: auto;
    background: linear-gradient(135deg, #1C352D 0%, #2A4D42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FAFAFA;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #FAFAFA;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
    max-width: 900px;
    padding: 50px 20px;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 52px);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: #C8A951;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 30px;
    font-weight: 300;
    color: rgba(250, 250, 250, 0.9);
}

/* Page Container */
.page-container {
    display: none;
}

.page-container.active {
    display: block;
}

/* Content Sections */
.section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section h2 {
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #1C352D;
}

.section > p {
    font-size: clamp(16px, 2.5vw, 18px);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    line-height: 1.8;
    padding: 0 20px;
}

/* Products Page */
.products-header {
    background: #FAFAFA;
    padding: 100px 20px 60px;
    margin-top: 80px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.products-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #1C352D;
}

.products-header p {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
    padding: 0 10px;
}

.category-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid #ddd;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background: #C8A951;
    color: #FAFAFA;
    border-color: #C8A951;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 0 10px;
}

.product-card {
    background: white;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(28, 53, 45, 0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #C8A951;
    color: #FAFAFA;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 11px;
    color: #C8A951;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-info h3 {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 12px;
    color: #1C352D;
    font-weight: 700;
}

.product-info p {
    font-size: clamp(14px, 2vw, 15px);
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    gap: 10px;
    flex-wrap: wrap;
}

.product-info .price {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    color: #1C352D;
}

.btn-view-product {
    background: #C8A951;
    color: #FAFAFA;
    padding: 10px 20px;
    border: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-product:hover {
    background: #B39641;
}

/* Innovation Section */
.innovation {
    background: white;
}

/* About Section */
.about-section {
    background: #FAFAFA;
    border-top: 4px solid #C8A951;
    padding-bottom: 80px;
    margin-top: 0;
}

/* Stockists Page */
.stockists-header {
    background: linear-gradient(135deg, #1C352D 0%, #2A4D42 100%);
    padding: 120px 20px 80px;
    margin-top: 80px;
    text-align: center;
    color: #FAFAFA;
}

.stockists-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #C8A951;
}

.stockists-header p {
    font-size: clamp(16px, 2.5vw, 20px);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 20px;
}

/* COA Page */
.coa-header {
    background: linear-gradient(135deg, #1C352D 0%, #2A4D42 100%);
    padding: 120px 20px 80px;
    margin-top: 80px;
    text-align: center;
    color: #FAFAFA;
}

.coa-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #C8A951;
}

.coa-header p {
    font-size: clamp(16px, 2.5vw, 20px);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 20px;
}

.coa-search {
    background: white;
    padding: 50px 30px;
    border-radius: 0;
    border: 2px solid #e0e0e0;
    margin-bottom: 60px;
    text-align: center;
}

.coa-search h3 {
    font-size: clamp(20px, 3vw, 28px);
    color: #1C352D;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-box {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto 15px;
    flex-wrap: wrap;
}

.search-box input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    font-size: 16px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: border-color 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: #C8A951;
}

.btn-search {
    padding: 15px 40px;
    background: #C8A951;
    color: #FAFAFA;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-search:hover {
    background: #B39641;
}

.search-help {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.coa-products {
    margin-bottom: 60px;
}

.coa-products h2 {
    font-size: clamp(28px, 4vw, 36px);
    color: #1C352D;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coa-product-card {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.coa-product-card:hover {
    border-color: #C8A951;
    box-shadow: 0 5px 20px rgba(28, 53, 45, 0.1);
}

.coa-product-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.product-image-small {
    font-size: 48px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    flex-shrink: 0;
}

.coa-product-info h3 {
    font-size: clamp(18px, 3vw, 24px);
    color: #1C352D;
    margin-bottom: 5px;
    font-weight: 700;
}

.product-type {
    font-size: 14px;
    color: #C8A951;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.coa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.coa-card {
    position: relative;
    background: #FAFAFA;
    border: 2px solid #e0e0e0;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    cursor: pointer;
}

.coa-card:hover {
    border-color: #C8A951;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 53, 45, 0.1);
}

.coa-card.coa-hidden {
    display: none;
}

.coa-lot-number {
    font-size: 16px;
    font-weight: 600;
    color: #1C352D;
    letter-spacing: 0.5px;
}

.coa-external-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    color: #666;
    transition: color 0.3s;
}

.coa-card:hover .coa-external-icon {
    color: #C8A951;
}

.btn-view-all-coa {
    width: 100%;
    padding: 12px 20px;
    margin-top: 15px;
    background: transparent;
    color: #1C352D;
    border: 2px solid #1C352D;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-all-coa:hover {
    background: #1C352D;
    color: #FAFAFA;
}

.coa-product-card.filtered-out {
    display: none;
}

.stockists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 0 10px;
}

.stockist-card {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.stockist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(28, 53, 45, 0.15);
    border-color: #C8A951;
}

.stockist-card h3 {
    font-size: clamp(24px, 4vw, 32px);
    color: #1C352D;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.stockist-card p {
    font-size: clamp(14px, 2vw, 16px);
    color: #666;
    margin-bottom: 30px;
}

.stockist-btn {
    background: #C8A951;
    color: #FAFAFA;
    padding: 15px 35px;
    border: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.stockist-btn:hover {
    background: #B39641;
    transform: scale(1.05);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: #FAFAFA;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.feature:hover {
    box-shadow: 0 10px 30px rgba(28, 53, 45, 0.1);
    transform: translateY(-5px);
    border-color: #C8A951;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #1C352D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #C8A951;
    font-size: 36px;
}

.feature h3 {
    font-size: clamp(18px, 3vw, 22px);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1C352D;
}

.feature p {
    font-size: clamp(14px, 2vw, 16px);
    color: #666;
    line-height: 1.7;
}

/* Footer */
footer {
    background: #1C352D;
    color: #FAFAFA;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #C8A951;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
    filter: brightness(0) saturate(100%) invert(73%) sepia(13%) saturate(1007%) hue-rotate(9deg) brightness(94%) contrast(86%);
}

.footer-section p {
    color: #999;
    line-height: 1.7;
    font-size: 14px;
    max-width: 320px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    color: #C8A951;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.social-link:hover {
    color: #C8A951;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(200, 169, 81, 0.3);
    color: #999;
    font-size: 13px;
    line-height: 1.6;
}

/* Desktop: hide mobile language menu item */
.nav-links .nav-lang-mobile {
    display: none;
}

/* Mobile: hide desktop FR/EN button, show mobile language item */
@media (max-width: 768px) {
    .nav-actions .lang-toggle {
        display: none;
    }

    .nav-links .nav-lang-mobile {
        display: block;
    }
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* Admin Link */
.admin-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #C8A951;
    color: #1C352D;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 999;
}

.admin-link:hover {
    background: #B39641;
    transform: scale(1.05);
}

/* OCS-Style Product Page */
.ocs-product-page {
    background: #FAFAFA;
    padding-top: 80px;
    min-height: 100vh;
}

.ocs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.ocs-breadcrumb {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ocs-breadcrumb a {
    color: #333;
    text-decoration: none;
}

.ocs-breadcrumb a:hover {
    color: #C8A951;
}

.ocs-product-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #1C352D;
    margin-bottom: 40px;
    text-transform: none;
    letter-spacing: normal;
}

.ocs-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Product Gallery */
.ocs-product-gallery {
    position: sticky;
    top: 120px;
    align-self: start;
}

.ocs-main-image {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.ocs-main-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.ocs-image-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.ocs-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    padding: 5px;
}

.ocs-thumbnail:hover {
    border-color: #C8A951;
}

.ocs-thumbnail.active {
    border-color: #333;
    border-width: 3px;
}

/* Product Info */
.ocs-product-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ocs-gauge-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.ocs-gauge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ocs-gauge-circle {
    width: 80px;
    height: 80px;
    position: relative;
}

.ocs-gauge-circle svg {
    width: 100%;
    height: 100%;
}

.ocs-gauge-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.ocs-gauge-type {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.ocs-info-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999;
    cursor: help;
    flex-shrink: 0;
}

.ocs-gauge-values {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ocs-gauge-percent {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.ocs-gauge-mg {
    font-size: 14px;
    color: #666;
}

/* Plant Type */
.ocs-plant-type {
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.ocs-plant-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ocs-plant-value {
    font-size: 18px;
    color: #333;
}

/* Size Section */
.ocs-size-section {
    padding-bottom: 30px;
}

.ocs-size-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ocs-size-options {
    display: flex;
    gap: 10px;
}

.ocs-size-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid #d0d0d0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.ocs-size-btn.active {
    border-color: #333;
    background: #f5f5f5;
}

.ocs-size-btn:hover {
    border-color: #333;
}

/* Store Button */
.ocs-store-btn {
    width: 100%;
    padding: 18px 30px;
    background: #333;
    color: white;
    border: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.ocs-store-btn:hover {
    background: #1C352D;
}

/* Availability */
.ocs-availability {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.ocs-store-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.ocs-availability a {
    color: #333;
    text-decoration: underline;
}

.ocs-availability a:hover {
    color: #C8A951;
}

/* Description */
.ocs-description {
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.ocs-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.ocs-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.ocs-learn-more:hover {
    color: #C8A951;
}

.ocs-learn-more #learnMoreArrow,
.ocs-learn-more #learnMoreJuicebarArrow,
.ocs-learn-more #learnMoreLiverosinArrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.ocs-learn-more.expanded #learnMoreArrow,
.ocs-learn-more.expanded #learnMoreJuicebarArrow,
.ocs-learn-more.expanded #learnMoreLiverosinArrow {
    transform: rotate(90deg);
}

/* Details Section */
.ocs-details-section {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 40px;
    margin-bottom: 40px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.ocs-details-section.expanding {
    animation: slideDown 0.4s ease-in-out;
}

.ocs-details-section.collapsing {
    animation: slideUp 0.4s ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 2000px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        max-height: 2000px;
    }
    to {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.ocs-details-section h2 {
    font-size: 24px;
    color: #1C352D;
    margin-bottom: 20px;
    text-align: left;
}

.ocs-about-description {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.ocs-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.ocs-details-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.ocs-details-table tr:last-child {
    border-bottom: none;
}

.ocs-details-table td {
    padding: 15px 0;
    vertical-align: top;
}

.ocs-detail-label {
    font-weight: 600;
    color: #333;
    width: 200px;
    font-size: 14px;
}

.ocs-detail-value {
    color: #666;
    font-size: 14px;
}

/* Ingredients Section */
.ocs-ingredients-section {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 40px;
    margin-bottom: 40px;
}

.ocs-ingredients-section h3 {
    font-size: 20px;
    color: #1C352D;
    margin-bottom: 20px;
}

.ocs-ingredients {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.ocs-ingredients strong {
    color: #333;
}

/* CTA Section */
.ocs-cta-section {
    background: linear-gradient(135deg, #1C352D 0%, #2A4D42 100%);
    color: #FAFAFA;
    text-align: center;
    padding: 60px 40px;
    margin-top: 60px;
}

.ocs-cta-section h2 {
    color: #C8A951;
    margin-bottom: 15px;
    font-size: 32px;
}

.ocs-cta-section p {
    color: rgba(250, 250, 250, 0.9);
    margin-bottom: 30px;
    font-size: 16px;
}

.ocs-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: #C8A951;
    color: #1C352D;
}

.btn-primary:hover {
    background: #B39641;
}

.btn-secondary {
    background: transparent;
    color: #C8A951;
    border: 2px solid #C8A951;
}

.btn-secondary:hover {
    background: rgba(200, 169, 81, 0.1);
}

/* Product Showcase */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-card {
    position: relative;
    text-align: center;
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-10px);
}

.showcase-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1C352D;
    margin: 30px 0 20px;
    letter-spacing: 2px;
    font-style: italic;
}

.btn-explore {
    background: #1C352D;
    color: #FAFAFA;
    padding: 15px 50px;
    border: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.btn-explore:hover {
    background: #C8A951;
    color: #1C352D;
    transform: scale(1.05);
}

/* Contact Form */
.contact-page-section {
    padding: 80px 20px 100px;
    background: #f3f3f3;
}

.contact-form-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 10px 0 20px;
}

.contact-form {
    width: 100%;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: #2f3346;
    margin-bottom: 14px;
}

.form-group label span {
    color: #d94b57;
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 62px;
    padding: 16px 20px;
    border: 2px solid #9aa0b8;
    border-radius: 14px;
    background: #f3f3f3;
    color: #2f3346;
    font-size: 22px;
    line-height: 1.4;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    box-sizing: border-box;
    transition: border-color 0.25s ease, background-color 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group textarea {
    min-height: 320px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7f86a3;
    background: #ffffff;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%232f3346' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 20px;
    padding-right: 54px;
}

.form-group input[type="email"] {
    padding-left: 56px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 24 24' fill='none' stroke='%232f3346' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'%3E%3C/rect%3E%3Cpath d='m3 7 9 6 9-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 16px center;
    background-size: 26px;
}

.form-note,
.form-helper {
    font-size: 17px;
    line-height: 1.7;
    color: #4f5366;
    margin: 0 0 12px;
}

.file-input-wrap input[type="file"] {
    padding: 18px 20px;
    background: #f3f3f3;
}

.checkbox-group {
    margin-top: 8px;
    padding-top: 34px;
    border-top: 1px solid #bfc3d4;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    color: #d94b57;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-height: auto;
    accent-color: #c8a951;
    margin: 0;
}

.hidden-copy-field {
    display: none !important;
}

.copy-email-group {
    padding-top: 6px;
    border-top: 1px solid #bfc3d4;
}

.copy-email-group.active {
    display: flex !important;
}

.contact-form .btn-search {
    min-width: 220px;
    width: auto;
    padding: 18px 36px;
    font-size: 18px;
    border-radius: 0;
    align-self: flex-start;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #C8A951;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}
/* Mobile Responsive - Tablets */
@media (max-width: 968px) {
    .ocs-product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ocs-product-gallery {
        position: static;
    }

    .ocs-main-image {
        min-height: 400px;
    }

    .ocs-details-section,
    .ocs-ingredients-section {
        padding: 30px 20px;
    }

    .ocs-detail-label {
        width: 150px;
        font-size: 13px;
    }

    .ocs-detail-value {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    nav .logo img {
        height: 35px;
    }

    .hero {
        margin-top: 100px;
    }

    .section {
        padding: 60px 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-image {
        height: 250px;
    }

    .age-gate-content {
        padding: 40px 30px;
    }

    .age-gate-logo img {
        height: 60px;
    }

    .age-gate-content h2 {
        font-size: 16px;
    }

    .age-gate-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .age-gate-btn {
        width: 100%;
        padding: 15px 30px;
    }

    .features {
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .admin-link {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 10px;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .showcase-image {
        height: 350px;
    }

    .showcase-card h3 {
        font-size: 20px;
    }

    .ocs-gauge-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .coa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-page-section {
        padding: 50px 15px 70px;
    }

    .contact-form-wrapper {
        max-width: 100%;
        padding: 0;
    }

    .contact-grid {
        gap: 26px;
    }

    .form-group label {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 54px;
        font-size: 16px;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .form-group input[type="email"] {
        padding-left: 48px;
        background-size: 22px;
        background-position: 14px center;
    }

    .form-group select {
        background-position: right 14px center;
        background-size: 18px;
        padding-right: 46px;
    }

    .form-group textarea {
        min-height: 220px;
    }

    .form-note,
    .form-helper,
    .checkbox-label {
        font-size: 14px;
    }

    .contact-form .btn-search {
        width: 100%;
        font-size: 16px;
        padding: 16px 24px;
    }
}

@media (max-width: 640px) {
    .ocs-container {
        padding: 20px 15px;
    }

    .ocs-details-table td {
        display: block;
        width: 100%;
    }

    .ocs-detail-label {
        width: 100%;
        padding-bottom: 5px;
    }

    .ocs-detail-value {
        padding-bottom: 15px;
    }

    .ocs-main-image {
        padding: 20px;
        min-height: 300px;
    }

    .ocs-cta-section {
        padding: 40px 20px;
    }
}

/* Mobile Responsive - Small Phones */
@media (max-width: 480px) {
    .age-gate-content {
        padding: 30px 20px;
    }

    nav {
        padding: 12px 15px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .section {
        padding: 40px 15px;
    }

    .products-header {
        padding: 100px 15px 40px;
    }

    .product-categories {
        gap: 10px;
    }

    .category-btn {
        padding: 10px 18px;
        font-size: 11px;
    }

    .product-info {
        padding: 20px;
    }

    .stockist-card {
        padding: 30px 20px;
    }

    .feature {
        padding: 25px 15px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

/* Landscape Mode - Phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 90vh;
    }

    .age-gate-content {
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover,
    .feature:hover,
    .stockist-card:hover {
        transform: none;
    }

    .product-card:active {
        transform: scale(0.98);
    }
}

/* ==================== MOBILE MENU - MUST BE LAST ==================== */
@media (max-width: 768px) {
    nav .nav-container .hamburger {
        display: flex !important;
        order: 3;
    }

    nav .nav-container .logo {
        order: 1;
    }

    nav .nav-container .nav-links {
        position: fixed !important;
        top: 80px !important;
        left: -100% !important;
        width: 100% !important;
        height: auto !important;
        background: #FAFAFA !important;
        flex-direction: column !important;
        display: flex !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
        transition: left 0.3s ease-in-out !important;
        z-index: 9999 !important;
        list-style: none !important;
        order: 4;
    }


	/* Desktop: hide mobile language menu item */
	.nav-links .nav-lang-mobile {
		display: none;
	}

	/* Mobile: hide desktop FR/EN button, show mobile item */
	@media (max-width: 768px) {
		.nav-actions .lang-toggle {
			display: none;
		}

		.nav-links .nav-lang-mobile {
			display: block;
		}
	}

    nav .nav-container .nav-links.active {
        left: 0 !important;
    }

    nav .nav-container .nav-links li {
        display: block !important;
        width: 100% !important;
        border-bottom: 1px solid #e0e0e0 !important;
        margin: 0 !important;
    }

    nav .nav-container .nav-links li:last-child {
        border-bottom: none !important;
    }

    nav .nav-container .nav-links a {
        display: block !important;
        padding: 18px 20px !important;
        color: #333 !important;
        font-size: 16px !important;
        width: 100% !important;
    }

    nav .nav-container .nav-actions {
        display: none !important;
        order: 2;
    }
}