/* ===== GOLFINN SA — SHARED STYLESHEET ===== */
:root {
    --green: #2d5016;
    --lime: #76b82a;
    --cream: #fafaf8;
    --grey: #6b7280;
    --dark: #1a1a1a;
    --gold: #c9a84c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.5;
    background: var(--cream);
    font-size: 14px;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 25px; }

/* ===== HEADER / NAV ===== */
header {
    background: linear-gradient(135deg, #1a3a1a, var(--green));
    padding: 15px 0;
    position: fixed;
    width: 100%; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700; color: #fff;
    letter-spacing: 2px; line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}
.logo span { color: var(--gold); }
.logo small {
    display: block; font-family: 'Inter', sans-serif;
    font-size: 0.45rem; font-weight: 500;
    letter-spacing: 3px; color: rgba(255,255,255,0.85);
    margin-top: 3px; text-transform: uppercase;
}

.nav-links {
    display: flex; gap: 22px;
    align-items: center; list-style: none;
}
.nav-links a {
    color: white; text-decoration: none;
    font-weight: 500; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.5px;
    transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--lime); }

.nav-protee-link a {
    color: var(--lime) !important;
    display: flex; align-items: center; gap: 6px;
}
.nav-protee-link a:hover { color: white !important; }
.nav-protee-icon { height: 18px; width: auto; vertical-align: middle; filter: brightness(0) invert(1); opacity: 0.85; }

.cart-icon { position: relative; cursor: pointer; font-size: 1.2rem; color: white; user-select: none; }
.cart-count {
    position: absolute; top: -6px; right: -6px;
    background: var(--lime); color: white; border-radius: 50%;
    width: 16px; height: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 600;
}

/* Hamburger */
.hamburger {
    display: none; flex-direction: column;
    gap: 5px; cursor: pointer; padding: 5px; z-index: 1100;
}
.hamburger span { width: 25px; height: 2px; background: white; transition: all 0.3s; display: block; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-overlay {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999;
}
.mobile-overlay.active { display: block; }

/* ===== HERO (shared structure — protee-sim style) ===== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white;
    padding: 120px 25px 80px;
    background-size: cover; background-position: center; background-attachment: fixed;
}

.hero-inner { max-width: 900px; margin: 0 auto; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(118,184,42,0.15); border: 1px solid rgba(118,184,42,0.4);
    padding: 8px 20px; border-radius: 50px; margin-bottom: 25px;
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
    color: var(--lime);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 900; line-height: 1.05;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px;
}
.hero h1 span { color: var(--lime); }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.85);
    max-width: 650px; margin: 0 auto 40px; font-weight: 300; line-height: 1.7;
}

.hero-ctas { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.btn-primary-hero {
    padding: 15px 40px; background: var(--lime); color: white;
    font-weight: 700; font-size: 0.9rem; text-transform: uppercase;
    border: 2px solid var(--lime); letter-spacing: 1px;
    cursor: pointer; text-decoration: none; transition: all 0.3s; display: inline-block;
}
.btn-primary-hero:hover { background: transparent; color: var(--lime); }

.btn-secondary-hero {
    padding: 15px 40px; background: transparent; color: white;
    font-weight: 600; font-size: 0.9rem; text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.4); letter-spacing: 1px;
    cursor: pointer; text-decoration: none; transition: all 0.3s; display: inline-block;
}
.btn-secondary-hero:hover { border-color: white; background: rgba(255,255,255,0.1); }

.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-number {
    font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700;
    color: var(--lime); display: block; line-height: 1;
}
.hero-stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.7); margin-top: 5px; }

/* Page sub-heroes */
.page-hero {
    padding-top: 80px; height: 38vh;
    background-size: cover; background-position: center; background-attachment: fixed;
    display: flex; align-items: center; justify-content: center; color: white;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); text-transform: uppercase; letter-spacing: 2px; }

/* ===== BRAND STRIP ===== */
.brand-strip {
    background: var(--dark); padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.brand-strip-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 50px; flex-wrap: wrap;
}
.brand-strip-label {
    color: rgba(255,255,255,0.4); font-size: 0.68rem;
    text-transform: uppercase; letter-spacing: 3px; font-weight: 600;
    white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.12); padding-right: 50px;
}
.brand-logo-item { display: flex; align-items: center; opacity: 0.75; transition: opacity 0.3s; cursor: pointer; }
.brand-logo-item:hover { opacity: 1; }
.brand-logo-item img { height: 38px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.brand-logo-item.protee-united img { height: 42px; }
.brand-logo-item.vx-logo img { height: 28px; }
.brand-logo-item.tgc-logo img { height: 32px; }
.brand-logo-item.reseller-logo img { height: 50px; filter: none; }

/* ===== SECTION STYLES ===== */
.section { padding: 70px 0; }
.section-dark { background: var(--dark); color: white; }
.section-white { background: white; }
.section-cream { background: var(--cream); }

.section-label {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 3px; color: var(--lime); margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700;
    text-transform: uppercase; margin-bottom: 15px; color: var(--green);
}
.section-dark .section-title,
.section-green .section-title { color: white; }
.section-subtitle { font-size: 0.95rem; color: var(--grey); line-height: 1.7; max-width: 650px; }
.title-center { text-align: center; }
.title-center .section-subtitle { margin: 0 auto; }
.title-accent { color: var(--lime); }

.divider-line { width: 60px; height: 3px; background: var(--lime); margin: 20px 0 30px; }
.divider-line-center { margin: 20px auto 30px; }

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block; padding: 12px 35px;
    background: var(--lime); color: white;
    text-decoration: none; font-weight: 600; font-size: 0.9rem;
    text-transform: uppercase; border: 2px solid var(--lime);
    transition: all 0.3s; cursor: pointer;
}
.cta-button:hover { background: transparent; color: white; }

.btn { padding: 11px 28px; border: 2px solid; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.btn-primary { background: var(--lime); border-color: var(--lime); color: white; }
.btn-primary:hover { background: var(--green); border-color: var(--green); }
.btn-secondary { background: transparent; border-color: var(--dark); color: var(--dark); }
.btn-secondary:hover { background: var(--dark); color: white; }

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.feature-card {
    text-align: center; padding: 30px 20px; background: white;
    border-radius: 6px; box-shadow: 0 2px 6px rgba(0,0,0,0.05); transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.1); }
.feature-icon { font-size: 2.5rem; margin-bottom: 15px; }
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 10px; color: var(--green); }
.feature-card p { color: var(--grey); line-height: 1.5; font-size: 0.88rem; }

/* ===== CATEGORY CARDS ===== */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.category-card {
    position: relative; height: 340px; overflow: hidden; cursor: pointer;
    border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: all 0.3s;
    text-decoration: none; display: block;
}
.category-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.category-image { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.4s; }
.category-card:hover .category-image { transform: scale(1.07); }
.category-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.92) 0%, transparent 100%);
    padding: 30px 20px;
}
.category-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: white; margin-bottom: 8px; text-transform: uppercase; }
.category-description { color: rgba(255,255,255,0.85); font-size: 0.82rem; margin-bottom: 10px; line-height: 1.4; }
.category-link { display: inline-block; color: var(--lime); font-weight: 600; text-transform: uppercase; font-size: 0.78rem; border-bottom: 1px solid var(--lime); padding-bottom: 2px; }
.category-protee-logo { position: absolute; top: 15px; left: 15px; height: 24px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed; right: -460px; top: 0;
    width: 460px; height: 100vh; background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    transition: right 0.4s; z-index: 3000;
    display: flex; flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-header {
    padding: 20px; background: var(--green); color: white;
    display: flex; justify-content: space-between; align-items: center;
}
.cart-header h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; text-transform: uppercase; }
.close-cart { background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item { display: flex; gap: 15px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #e5e7eb; }
.cart-item-image { width: 78px; height: 78px; background: #f9f9f9; flex-shrink: 0; overflow: hidden; border-radius: 4px; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Playfair Display', serif; font-weight: 600; margin-bottom: 3px; color: var(--green); font-size: 0.93rem; }
.cart-item-variant { font-size: 0.73rem; color: var(--grey); margin-bottom: 5px; }
.cart-item-price { color: var(--grey); font-weight: 500; font-size: 0.88rem; margin-bottom: 10px; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--dark); background: white; cursor: pointer; font-weight: 600; border-radius: 4px; }
.qty-btn:hover { background: var(--dark); color: white; }
.cart-item-quantity { font-weight: 500; min-width: 20px; text-align: center; }
.remove-item { margin-left: auto; background: none; border: none; color: var(--grey); cursor: pointer; font-size: 1rem; }
.remove-item:hover { color: #dc3545; }
.cart-footer { padding: 20px; border-top: 1px solid #e5e7eb; background: #f9f9f9; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.35rem; font-weight: 700; margin-bottom: 14px; color: var(--green); font-family: 'Playfair Display', serif; }
.checkout-btn { width: 100%; padding: 14px; background: var(--lime); color: white; border: 2px solid var(--lime); font-size: 0.92rem; font-weight: 600; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.checkout-btn:hover { background: var(--green); border-color: var(--green); }
.empty-cart { text-align: center; padding: 60px 20px; color: var(--grey); }
.empty-cart-icon { font-size: 3.5rem; margin-bottom: 15px; color: var(--lime); }

/* ===== CHECKOUT MODAL ===== */
.checkout-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); display: none;
    align-items: center; justify-content: center; z-index: 4000; padding: 20px;
}
.checkout-modal.open { display: flex; }
.checkout-content {
    background: white; max-width: 680px; width: 100%;
    max-height: 88vh; overflow-y: auto; padding: 40px; border-radius: 8px;
}
.checkout-content h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 28px; color: var(--green); text-transform: uppercase; text-align: center; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; color: var(--green); text-transform: uppercase; font-size: 0.78rem; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: 10px; border: 1px solid #e5e7eb; background: white; font-size: 0.9rem; border-radius: 4px; font-family: 'Inter', sans-serif; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.shipping-info { background: #f9f9f9; padding: 18px; margin: 18px 0; border-radius: 6px; }
.shipping-info h3 { font-family: 'Playfair Display', serif; margin-bottom: 14px; color: var(--green); font-size: 1.05rem; }
.shipping-status { font-size: 0.83rem; color: #666; margin-bottom: 10px; padding: 9px; background: white; border-left: 3px solid var(--lime); }
.shipping-option { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; }
.shipping-option:last-child { border: none; }
.shipping-option label { cursor: pointer; display: flex; align-items: center; gap: 8px; font-size: 0.87rem; }
.order-summary { background: #f9f9f9; padding: 18px; margin: 18px 0; border-radius: 6px; }
.summary-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 0.93rem; }
.summary-row.total { border-top: 2px solid var(--green); margin-top: 10px; padding-top: 12px; font-size: 1.25rem; font-weight: 700; color: var(--green); font-family: 'Playfair Display', serif; }
.modal-buttons { display: flex; gap: 12px; margin-top: 22px; }
.modal-btn { flex: 1; padding: 12px; border: 2px solid; font-size: 0.88rem; font-weight: 600; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.modal-btn-primary { background: var(--lime); border-color: var(--lime); color: white; }
.modal-btn-primary:hover { background: var(--green); border-color: var(--green); }
.modal-btn-secondary { background: transparent; border-color: #ccc; color: var(--dark); }
.modal-btn-secondary:hover { background: var(--dark); color: white; border-color: var(--dark); }

/* ===== PARTNER / ABOUT LOGOS ===== */
.partner-logos { margin-top: 48px; padding: 32px 0; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.partner-logos h3 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--green); text-transform: uppercase; margin-bottom: 22px; text-align: center; letter-spacing: 1px; }
.partner-logos-row { display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; }
.partner-logo-item { display: flex; align-items: center; opacity: 0.7; transition: opacity 0.3s; }
.partner-logo-item:hover { opacity: 1; }
.partner-logo-item img { height: 36px; width: auto; object-fit: contain; }
.partner-logo-item.vx img { height: 22px; }
.partner-logo-item.tgc img { height: 30px; }

/* ===== FOOTER ===== */
footer { background: linear-gradient(135deg, #1a1a1a, var(--green)); color: white; padding: 50px 0 28px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 35px; margin-bottom: 28px; }
.footer-section h3 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 14px; text-transform: uppercase; color: var(--lime); }
.footer-section p,
.footer-section a { color: rgba(255,255,255,0.78); text-decoration: none; line-height: 1.9; font-size: 0.84rem; display: block; }
.footer-section a:hover { color: var(--lime); }
.footer-logos { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 14px; }
.footer-logos img { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: 0.6; transition: opacity 0.3s; }
.footer-logos img:hover { opacity: 1; }
.footer-logos .reseller-img { height: 46px; filter: none; opacity: 0.85; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); font-size: 0.78rem; }

/* ===== FORM STYLES (Contact) ===== */
.submit-btn { width: 100%; padding: 12px; background: var(--dark); color: white; border: 2px solid var(--dark); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.submit-btn:hover { background: var(--lime); border-color: var(--lime); }

/* ===== NOTIFICATION TOAST ===== */
.toast {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px);
    background: var(--green); color: white; padding: 14px 28px;
    font-weight: 600; font-size: 0.88rem; z-index: 9999;
    transition: transform 0.35s; border-left: 4px solid var(--lime);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3); white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -285px; width: 285px; height: 100vh;
        background: linear-gradient(135deg, #1a3a1a, var(--green));
        flex-direction: column; padding: 80px 30px 30px;
        gap: 0; transition: right 0.3s; z-index: 1050;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }
    .nav-links.open { right: 0; }
    .nav-links li { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); list-style: none; }
    .nav-links a { font-size: 1.05rem; }
    .nav-links li:last-child { border: none; padding-top: 18px; }

    .brand-strip-label { border-right: none; padding-right: 0; }
    .brand-strip-inner { gap: 25px; }

    .hero { padding: 110px 20px 60px; min-height: 100vh; }
    .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-stats { gap: 20px; }
    .hero-stat-number { font-size: 1.8rem; }
    .hero-ctas { gap: 10px; }
    .btn-primary-hero, .btn-secondary-hero { padding: 12px 24px; font-size: 0.82rem; }

    .page-hero { height: 28vh; }
    .cart-sidebar { width: 100%; right: -100%; }
    .checkout-content { padding: 25px; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .category-card { height: 240px; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 50px 0; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 25px; }
    .partner-logos-row { gap: 30px; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero h1 { font-size: clamp(1.7rem, 7vw, 2.5rem); }
    .category-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .modal-buttons { flex-direction: column; }
    .hero-stats { gap: 15px; }
}
