﻿/* ===================================================
   Seaman Keys â€” Global CSS Design System
   Dark theme with neon green + golden yellow accents
   Matched to seamankeys.nl original
   =================================================== */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #0d1117;
    --bg-card: #1a1a2e;
    --bg-card-hover: #1f1f3a;
    --green: #14FF72;
    --green-dark: #0fd45e;
    --yellow: #f5c518;
    --yellow-hover: #e6b800;
    --orange: #FFA500;
    --pink: #ff4081;
    --white: #ffffff;
    --gray-100: #f0f0f0;
    --gray-200: #cccccc;
    --gray-300: #aaaaaa;
    --gray-400: #888888;
    --gray-500: #666666;
    --gray-600: #444444;
    --gray-700: #2a2a3e;
    --gray-800: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #bbbbbb;
    --text-muted: #888888;
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container-width: 1200px;
    --header-height: 100px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(20, 255, 114, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================================
   TOP ANNOUNCEMENT BAR
   =================================================== */
.top-bar {
    background: var(--green);
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

.top-bar__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.top-bar__btn {
    display: inline-block;
    background: var(--yellow);
    color: #000;
    padding: 4px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
    transition: var(--transition);
    border: 2px solid #000;
}

.top-bar__btn:hover {
    background: #000;
    color: var(--yellow);
}

/* ===================================================
   HEADER / NAVIGATION
   =================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    margin-left: 10px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s ease;
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}

.header__nav-link.active {
    color: var(--green);
}

.header__nav-link:hover {
    color: var(--green);
}

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

.header__icon-btn {
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.header__icon-btn:hover {
    color: var(--green);
}

.header__cart {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
}

.cart-price {
    font-size: 14px;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--green);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__signin {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-left: 4px;
}

.header__signin:hover {
    color: var(--green);
}

.header__user-menu {
    position: relative;
}

.header__user-btn {
    position: relative;
}

.user-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 1000;
    margin-top: 8px;
}

.user-dropdown__header {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: #333;
}

.user-dropdown__link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.user-dropdown__link:hover {
    background-color: #f8f9fa;
}

.user-dropdown__link:first-of-type {
    border-top: 1px solid #eee;
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.cart-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.cart-modal__content {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 400px;
    max-width: 90vw;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cart-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-modal__header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.cart-modal__close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal__close:hover {
    color: #333;
}

.cart-modal__body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    max-height: 400px;
}

.cart-modal__empty {
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

.cart-modal__item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f5f5f5;
}

.cart-modal__item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.cart-modal__item-details {
    flex: 1;
}

.cart-modal__item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.cart-modal__item-price {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.cart-modal__item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
}

.cart-modal__item-remove:hover {
    color: #dc3545;
}

.cart-modal__footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.cart-modal__total {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.cart-modal__actions {
    display: flex;
    gap: 10px;
}

.cart-modal__actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 14px;
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.7) 45%,
        rgba(10, 10, 10, 0.3) 70%,
        rgba(10, 10, 10, 0.1) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero__title {
    font-size: clamp(38px, 5vw, 61px);
    font-weight: 800;
    font-style: italic;
    line-height: 1.08;
    color: var(--green);
    max-width: 750px;
    margin-bottom: 24px;
    text-shadow: 0 0 40px rgba(20, 255, 114, 0.15);
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -0.5px;
}

.hero__subtitle {
    font-size: 16px;
    color: var(--gray-300);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero__cta {
    display: inline-block;
    background: var(--yellow);
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero__cta:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 197, 24, 0.3);
}

/* ===================================================
   USP CARDS
   =================================================== */
.usp {
    position: relative;
    z-index: 5;
    margin-top: -50px;
    padding-bottom: 60px;
}

.usp__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.usp__card {
    background: rgba(60, 50, 80, 0.55);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 28px 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.usp__card:hover {
    background: rgba(70, 60, 100, 0.65);
    transform: translateY(-4px);
    border-color: rgba(20, 255, 114, 0.2);
    box-shadow: var(--shadow-glow);
}

.usp__icon {
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
}

.usp__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

/* ===================================================
   SECTION HEADERS
   =================================================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header--left {
    text-align: left;
}

.section-header__icon {
    margin-bottom: 8px;
}

.section-header__label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 8px;
}

.section-header__label--pink {
    color: var(--pink);
}

.section-header__title {
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    font-style: italic;
    color: var(--white);
    line-height: 1.15;
}

/* ===================================================
   PRODUCT SECTIONS
   =================================================== */
.products-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.products-section--dark {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #080c15 100%);
}

.products-grid {
    display: grid;
    gap: 24px;
}

.products-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ===================================================
   PRODUCT CARD
   =================================================== */
.product-card {
    background: transparent;
    /* border-radius: var(--radius-md); */
    text-align: center;
    transition: var(--transition);
    padding-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card__image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 1 / 1;
    background: var(--bg-card);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    padding: 0 8px;
    line-height: 1.3;
}

.product-card__stars {
    font-size: 13px;
    color: var(--yellow);
    margin-bottom: 6px;
    letter-spacing: 2px;
}

/* Product card link styles (global) */
.product-card__image-link {
    display: block;
    text-decoration: none;
}

.product-card__name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card__name a:hover {
    color: var(--green, #01FF84);
}

.offer-month__name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.offer-month__name a:hover {
    color: var(--green, #01FF84);
}

.product-card__price {
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 14px;
}

.product-card__stock.in {
    margin-bottom: 5px;
}

.price-new {
    color: var(--green);
    font-weight: 800;
}

/* Product button â€” Outlined style matching original */
.product-card__btn {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-500);
    transition: var(--transition);
    cursor: pointer;
}

.product-card__btn:hover {
    border-color: var(--green);
    color: var(--green);
    box-shadow: 0 0 12px rgba(20, 255, 114, 0.15);
}

.products-section__cta {
    text-align: center;
    margin-top: 48px;
}

.btn-view-more {
    display: inline-block;
    background: var(--yellow);
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-view-more:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 197, 24, 0.25);
}

/* ===================================================
   OFFER OF THE MONTH
   =================================================== */
.offer-month {
    padding: 80px 0;
    background: linear-gradient(
        180deg,
        var(--bg-primary) 0%,
        rgba(60, 10, 40, 0.3) 50%,
        var(--bg-primary) 100%
    );
}

.offer-month__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.offer-month__slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.offer-month__track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    width: 100%;
}

.offer-month__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.offer-month__slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.offer-month__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.offer-month__arrow:hover {
    background: rgba(20, 255, 114, 0.3);
}

.offer-month__arrow--left {
    left: 12px;
}

.offer-month__arrow--right {
    right: 12px;
}

.offer-month__name {
    font-size: 42px;
    font-weight: 800;
    font-style: italic;
    color: var(--white);
    margin-bottom: 16px;
}

.offer-month__desc {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 24px;
}

.offer-month__price {
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
}

.offer-month__btn {
    display: inline-block;
    background: var(--yellow);
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    margin-right: 16px;
    transition: var(--transition);
}

.offer-month__btn:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
}

.offer-month__link {
    display: inline-block;
    color: var(--green);
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid var(--green);
    padding-bottom: 2px;
}

.offer-month__link:hover {
    color: var(--green-dark);
}

/* ===================================================
   REVIEWS / TRUSTPILOT
   =================================================== */
.reviews {
    padding: 80px 0 100px;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.reviews__header-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 48px !important;
    gap: 30px;
    width: 100%;
}

.reviews__header-flex .section-header {
    margin-bottom: 0 !important;
    flex-shrink: 0;
}

.reviews__rating {
    font-size: 16px;
    color: var(--gray-300);
    margin-top: 8px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews__tp-link {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s;
}

.reviews__tp-link:hover {
    color: var(--green);
    text-decoration: underline;
}

.reviews__tp-logo-anchor {
    display: block;
    transition: transform 0.3s;
}

.reviews__tp-logo-anchor:hover {
    transform: scale(1.02);
}

.reviews__tp-img {
    height: auto !important;
    width: 280px !important;
    max-width: 100% !important;
    object-fit: contain;
    opacity: 0.95;
    transition: var(--transition);
    display: block;
}

.reviews__tp-img:hover {
    opacity: 1;
    transform: scale(1.02);
}

.reviews__stars-text {
    color: var(--green);
    font-size: 18px;
}

.reviews__carousel {
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}

.reviews__track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    scroll-snap-align: start;
    flex: 0 0 calc(33.333% - 16px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* Trustpilot-style star bars */
.review-card__stars-bar {
    display: flex;
    gap: 3px;
}

.tp-star {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: #00b67a;
    position: relative;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.review-card__tp-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #00b67a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-card__date {
    font-size: 13px;
    color: #888;
    margin-left: auto;
    white-space: nowrap;
}

.review-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 24px;
    min-height: 100px;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #eee;
    padding-top: 16px;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-card__info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-card__info strong {
    font-size: 14px;
    color: #1a1a1a;
}

.pdp-stock-status {
    margin: 15px 0;
    font-size: 14px;
    font-weight: 600;
}

.pdp-stock-status .stock-in {
    color: #5CB44B;
    display: flex;
    align-items: center;
}

.pdp-stock-status .stock-out {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
}

/* ===================================================
   REVIEW FORM
   =================================================== */
.review-form-wrapper {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-form__title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.review-form__group {
    margin-bottom: 20px;
}

.review-form__label {
    display: block;
    font-size: 13px;
    color: #aaa;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-stars-selector {
    display: flex;
    gap: 6px;
}

.review-star {
    font-size: 28px;
    color: #333;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.review-star.active {
    color: #ffc01d;
}

.review-star.hover {
    color: #ffe066;
    transform: scale(1.15);
}

.review-form__textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    padding: 14px 16px;
    resize: vertical;
    min-height: 100px;
    outline: none;
    transition: border-color 0.3s ease;
}

.review-form__textarea:focus {
    border-color: #14FF72;
    background: rgba(20, 255, 114, 0.03);
}

.review-form__textarea::placeholder {
    color: #555;
}

.review-form__charcount {
    display: block;
    text-align: right;
    font-size: 11px;
    color: #555;
    margin-top: 6px;
}

.review-form__submit {
    background: linear-gradient(135deg, #14FF72, #0abf5b);
    color: #000;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
}

.review-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(20, 255, 114, 0.3);
}

.review-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.review-form__success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 255, 114, 0.1);
    border: 1px solid rgba(20, 255, 114, 0.3);
    color: #14FF72;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.review-form__login-prompt {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    border-radius: 10px;
    color: #888;
    font-size: 14px;
}

.review-form__login-prompt a {
    color: #14FF72;
    font-weight: 700;
    text-decoration: none;
}

.review-form__login-prompt a:hover {
    text-decoration: underline;
}

.review-card__divider {
    color: #ccc;
    font-size: 14px;
}

.review-card__info span {
    font-size: 13px;
    color: #888;
}

.reviews__controls {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.reviews__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gray-600);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.reviews__arrow:hover {
    border-color: var(--green);
    background: var(--green);
    color: #000;
}

.reviews__arrow--left {
    color: var(--gray-400);
}

.reviews__arrow--right {
    background: var(--green);
    border-color: var(--green);
    color: #000;
}

.reviews__dots {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 16px;
}

.reviews__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-600);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.reviews__dot.active {
    background: var(--green);
}

/* ===================================================
   NEWSLETTER / DISCOUNT BANNER
   =================================================== */
.newsletter {
    background: var(--green);
    padding: 60px 0;
}

.newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.newsletter__title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    font-style: italic;
    color: #000;
    margin-bottom: 0;
    max-width: 620px;
    line-height: 1.25;
}

.newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 320px;
}

.newsletter__input {
    padding: 16px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-family);
    background: var(--white);
    color: #333;
    outline: none;
    transition: var(--transition);
}

.newsletter__input:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
}

.newsletter__input::placeholder {
    color: #999;
}

.newsletter__btn {
    padding: 16px 20px;
    background: var(--yellow);
    color: #000;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter__btn:hover {
    background: var(--yellow-hover);
    transform: translateY(-1px);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
    position: relative;
    background: var(--bg-secondary);
    padding: 80px 0 30px;
    overflow: hidden;
}

.footer__bg-overlay {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.png') center/cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.footer__heading {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__text {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    font-size: 14px;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer__link:hover,
.footer__link.active {
    color: var(--green);
}

.footer__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom-links {
    display: flex;
    gap: 24px;
}

.footer__bottom-link {
    font-size: 13px;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer__bottom-link:hover {
    color: var(--white);
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__social {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: var(--transition);
}

.footer__social:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

/* Copyright */
.footer__copyright {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    padding-top: 20px;
}

.footer__copyright p {
    font-size: 13px;
    color: var(--gray-400);
}

/* ===================================================
   WHATSAPP FLOATING BUTTON
   =================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2s infinite;
    transition: var(--transition);
}

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

.whatsapp-float__tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: #333;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1200px) {
    .products-grid--4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .header__nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }

    .header__nav.active {
        display: flex;
    }

    .header__nav-link {
        font-size: 20px;
    }

    .header__hamburger {
        display: flex;
    }

    .header__signin {
        display: none;
    }

    .usp__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offer-month__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .review-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .top-bar__inner {
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .hero {
        min-height: 70vh;
    }

    .hero__title {
        font-size: 36px;
    }

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

    .newsletter__inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .newsletter__form {
        min-width: 100%;
    }

    .review-card {
        flex: 0 0 calc(100% - 0px);
    }

    .reviews__header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 36px;
    }

    .reviews__tp-img {
        height: 48px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .usp__grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid--4 {
        grid-template-columns: 1fr;
    }

    .hero__title {
        font-size: 30px;
    }

    .offer-month__name {
        font-size: 28px;
    }

    .offer-month__price {
        font-size: 36px;
    }
}

/* ===================================================
   OUT OF STOCK SYSTEM
   =================================================== */
/* Out of stock product styles */

/* Overlay removed */

.product-card__out-of-stock-badge {
    background: #ff4d4d;
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card--out-of-stock .product-card__out-of-stock-badge {
    transform: translateY(0);
}

.product-card__btn--out-of-stock {
    background: #2a2a2a !important;
    color: #666 !important;
    border-color: #333 !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* PDP Out of Stock */
.pdp-add-to-cart--out-of-stock {
    background: #2a2a2a !important;
    color: #666 !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

.pdp-price--out-of-stock {
    opacity: 0.5;
}
