/* ===================================
   GENCO REDESIGN PAGES — DESIGN SYSTEM
   Brand: Deep green + cream white
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --green-dark: #1a3a0a;
    --green: #2D5016;
    --green-mid: #3d6a20;
    --green-light: #5a9e30;
    --cream: #f8f5ef;
    --cream-dark: #ede8dd;
    --white: #ffffff;
    --black: #111111;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #888888;
    --accent-gold: #c8a96e;
    --accent-warm: #e8dcc8;
    --red-sale: #d32f2f;
    --red-bg: rgba(211, 47, 47, 0.08);
    --orange: #e67e22;
    --blue: #2980b9;
    --border: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --max-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-primary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ── Announcement Bar ── */
.announcement-bar {
    background: var(--green-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.announcement-bar a {
    color: var(--accent-gold);
}

.announcement-bar .social-icons {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 12px;
}

.announcement-bar .social-icons a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.announcement-bar .social-icons a:hover {
    color: #fff;
}

/* ── Sticky Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--green);
    letter-spacing: 2px;
}

.header-logo small {
    display: block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.header-search {
    flex: 1;
    max-width: 420px;
    position: relative;
}

.header-search input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-family: inherit;
    background: var(--cream);
    transition: var(--transition);
}

.header-search input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.header-search .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-actions a,
.header-actions button {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.header-actions a:hover,
.header-actions button:hover {
    background: var(--cream);
}

/* ── Main Navigation ── */
.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.main-nav ul {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    list-style: none;
    display: flex;
    gap: 32px;
}

.main-nav ul li a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    transition: color 0.2s;
}

.main-nav ul li a:hover {
    color: var(--green);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s;
}

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

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 40px;
    color: var(--white);
}

.hero-content .eyebrow {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 560px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 450px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--white);
    color: var(--green);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-hero:hover {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.3);
    transform: translateY(-2px);
}

/* ── Value Bar ── */
.value-bar {
    background: var(--green);
    color: var(--white);
    padding: 14px 0;
    overflow: hidden;
}

.value-bar-inner {
    display: flex;
    justify-content: center;
    gap: 48px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.value-bar-inner span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* ── Section Layout ── */
.section {
    padding: 64px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ── Product Grid ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card .card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.card-badge.bestseller {
    background: var(--green);
    color: var(--white);
}

.card-badge.new {
    background: var(--blue);
    color: var(--white);
}

.card-badge.sale {
    background: var(--red-sale);
    color: var(--white);
}

.product-card .card-img {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--cream);
}

.product-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .card-img img {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 16px;
}

.product-card .card-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--accent-gold);
}

.product-card .card-stars span {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 4px;
}

.product-card .card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card .card-price {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
}

.product-card .card-price .original {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}

.product-card .card-installment {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.product-card .card-actions {
    padding: 0 16px 16px;
    display: flex;
    gap: 8px;
}

.btn-add-cart {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--green);
    background: transparent;
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-add-cart:hover {
    background: var(--green);
    color: var(--white);
}

.btn-quick-view {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.btn-quick-view:hover {
    background: var(--cream);
}

/* ── Product Detail Page ── */
.product-detail {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery .main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--cream);
    aspect-ratio: 1/1;
}

.product-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery .thumb-row {
    display: flex;
    gap: 10px;
}

.product-gallery .thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.product-gallery .thumb.active,
.product-gallery .thumb:hover {
    border-color: var(--green);
}

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

.product-info h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.product-info .price-block {
    margin-bottom: 16px;
}

.product-info .price-block .price {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--green);
}

.product-info .price-block .original-price {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
}

.product-info .price-block .save-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 10px;
    background: var(--red-bg);
    color: var(--red-sale);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Installment Box */
.installment-box {
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--cream);
}

.installment-box .installment-text {
    font-size: 14px;
    line-height: 1.5;
}

.installment-box .installment-text strong {
    color: var(--red-sale);
    font-size: 16px;
}

.installment-box .installment-logo {
    width: 60px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 12px 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.trust-badge .badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(45, 80, 22, 0.08);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Quantity + ATC */
.buy-section {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.quantity-selector button {
    width: 40px;
    height: 48px;
    border: none;
    background: var(--cream);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.quantity-selector button:hover {
    background: var(--cream-dark);
}

.quantity-selector input {
    width: 48px;
    height: 48px;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
}

.btn-atc {
    flex: 1;
    padding: 14px 24px;
    background: var(--cream-dark);
    color: var(--text-primary);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    letter-spacing: 0.5px;
}

.btn-atc:hover {
    background: var(--cream);
    box-shadow: var(--shadow-md);
}

.btn-buy-now {
    width: 100%;
    padding: 16px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    margin-bottom: 24px;
}

.btn-buy-now:hover {
    background: var(--green-mid);
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.3);
    transform: translateY(-1px);
}

/* Urgency Badge */
.urgency-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(230, 126, 34, 0.08);
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
}

/* Product Tabs */
.product-tabs {
    margin-top: 40px;
    border-top: 1px solid var(--border);
}

.tab-headers {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.tab-header {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: none;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    font-family: inherit;
}

.tab-header.active {
    color: var(--green);
}

.tab-header.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--green);
}

.tab-content {
    padding: 24px 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Benefit Icons */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius);
}

.benefit-item .benefit-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.benefit-item h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 11px;
    color: var(--text-muted);
}

/* Reviews Section */
.reviews-section {
    padding: 48px 0;
}

.review-summary {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.review-summary .big-rating {
    text-align: center;
}

.review-summary .big-rating .number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--green);
}

.review-summary .big-rating .stars {
    color: var(--accent-gold);
    font-size: 18px;
}

.review-summary .big-rating .count {
    font-size: 13px;
    color: var(--text-muted);
}

.review-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.review-card .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-card .reviewer {
    font-weight: 600;
    font-size: 14px;
}

.review-card .review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--green);
    font-weight: 500;
}

.review-card .review-stars {
    color: var(--accent-gold);
    font-size: 14px;
    margin-bottom: 8px;
}

.review-card .review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.review-card .review-location {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Frequently Bought Together */
.fbt-section {
    padding: 48px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.fbt-grid {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.fbt-item {
    text-align: center;
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius);
    width: 180px;
}

.fbt-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin: 0 auto 10px;
}

.fbt-item .fbt-name {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.fbt-item .fbt-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
}

.fbt-plus {
    font-size: 24px;
    color: var(--text-muted);
    font-weight: 300;
}

.fbt-total {
    padding: 20px;
    text-align: center;
}

.fbt-total .total-price {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 12px;
}

.btn-fbt {
    width: 100%;
    padding: 16px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    margin-bottom: 24px;
}

.btn-fbt:hover {
    background: var(--green-mid);
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.3);
    transform: translateY(-1px);
}

/* Sticky ATC Bar */
.sticky-atc {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.sticky-atc.visible {
    transform: translateY(0);
}

.sticky-atc .sticky-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-atc .sticky-title {
    font-size: 14px;
    font-weight: 600;
}

.sticky-atc .sticky-price {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
}

.sticky-atc .btn-atc-sticky {
    padding: 12px 32px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.sticky-atc .btn-atc-sticky:hover {
    background: var(--green-mid);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 997;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    font-size: 18px;
    color: var(--text-primary);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

/* Newsletter Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-overlay.visible {
    display: flex;
}

.popup-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 460px;
    width: 90%;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--cream);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.popup-box p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.popup-box input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    font-size: 14px;
    font-family: inherit;
}

.popup-box .btn-popup {
    width: 100%;
    padding: 14px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.popup-box .btn-popup:hover {
    background: var(--green-mid);
}

/* Footer */
.site-footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 60px 24px 30px;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icons span {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

    .benefit-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-badges {
        flex-wrap: wrap;
    }

    .value-bar-inner {
        gap: 24px;
        font-size: 11px;
    }

    .header-search {
        display: none;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

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

    .score-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Category Circles ── */
.category-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.category-circle {
    text-align: center;
    cursor: pointer;
    display: block;
    width: 100px;
}

.category-circle .circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background-color: var(--cream);
    box-shadow: var(--shadow-sm);
}

.category-circle:hover .circle {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-circle span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    transition: color 0.3s;
}

.category-circle:hover span {
    color: var(--green);
}
/* Mobile overflow safeguards */
.product-detail table {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .announcement-bar {
        letter-spacing: 0.8px;
        line-height: 1.5;
    }

    .main-nav ul {
        overflow-x: auto;
        white-space: nowrap;
        gap: 18px;
        -webkit-overflow-scrolling: touch;
    }

    .header-inner {
        padding-inline: 14px;
        gap: 12px;
    }

    .section {
        padding-inline: 14px !important;
    }

    [style*="grid-template-columns:repeat(4, 1fr)"],
    [style*="grid-template-columns:repeat(3, 1fr)"],
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="display:grid; grid-template-columns:repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    [style*="display:flex; gap:8px;"] {
        flex-direction: column !important;
    }

    [style*="padding:64px 24px"],
    [style*="padding:12px 24px"],
    [style*="padding:0 24px"] {
        padding-inline: 14px !important;
    }

    .btn-buy-now,
    .btn-atc {
        width: 100%;
    }
}
