:root {
    --bg-1: #330000;
    --bg-2: #1a0000;
    --accent-1: #ff6600;
    --accent-2: #ff3300;
    --gold: #ffcc33;
    --muted: #ffdd99;
    --glass: rgba(51, 0, 0, 0.48);
    --glass-strong: rgba(0, 0, 0, 0.6);
    --success: #22c55e;
    --danger: #ef4444;
    --max-width: 1100px;
    --safe-top: env(safe-area-inset-top, 12px);
    --safe-bottom: env(safe-area-inset-bottom, 12px);
}

.nav-container {
    display: flex;
    flex-wrap: wrap; /* Allows links to drop to the next line if needed */
    justify-content: center;
    gap: 15px; /* Spacing between links */
    padding: 15px;
}

.nav-container a {
    padding: 10px 15px; /* Larger tap target for fingers */
    border-radius: 5px;
    transition: background 0.3s;
}

/* Mobile Specific Adjustments */
@media (max-width: 600px) {
    .nav-container {
        flex-direction: column; /* Stacks links vertically on phones */
        align-items: center;
    }

    .nav-container a {
        width: 100%; /* Makes links full width for easier tapping */
        text-align: center;
    }
}

/* Basic reset and layout */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
  height: 100%;
  overflow-y: auto;
}
body {
    height: auto;
     min-height: 100%
      overflow-y: auto;
        overflow-x: hidden;
         -webkit-overflow-scrolling: touch
    width: 100%;
    margin: 0;
    padding: 0;
    background: radial-gradient(
        circle at center,
        var(--bg-1) 0%,
        var(--bg-2) 50%,
        #000 100%
    );
    color: #fff;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
}
body {
    padding: calc(18px + var(--safe-top)) 18px calc(22px + var(--safe-bottom));
}

/* Animated background glow (reduced for performance on mobile) */
body::before {
    content: "";
    position: fixed;
    inset: -30%;
    background: linear-gradient(
        120deg,
        var(--accent-2),
        #8b0000 30%,
        rgba(255, 140, 0, 0.6) 60%
    );
    z-index: 0;
    filter: blur(90px);
    opacity: 0.1;
    pointer-events: none;
    transform-origin: center;
    animation: rotate 18s linear infinite;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    body::before {
        animation: none;
    }
    * {
        animation: none !important;
        transition: none !important;
    }
}

.wrap {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo {
    width: 140px;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(255, 102, 0, 0.18);
    display: flex;
    align-items: center;
}

.logo-age {
    width: 140px;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(255, 102, 0, 0.18);
    align-items: center;
}
.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
}

nav {
    display: flex;
    gap: 8px;
    align-items: center;
}
nav a {
    color: var(--muted);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}
nav a:hover {
    color: var(--gold);
    background: rgba(255, 102, 0, 0.04);
}

/* Hero: two-column that collapses to single column on small screens */
.hero {
    //display: grid;
    grid-template-columns: 1fr 420px;
    gap: 20px;
    align-items: stretch;
    padding: 22px;
    border-radius: 16px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.36),
        rgba(0, 0, 0, 0.18)
    );
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.hero-left {
    padding-right: 6px;
}
h1 {
    font-size: clamp(1.6rem, 5.6vw, 2.8rem);
    color: var(--gold);
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-shadow: 0 0 12px var(--accent-2);
}
.lead {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.5;
    font-size: 1rem;
}

.pills {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.pill {
    background: rgba(255, 102, 0, 0.06);
    border: 1px solid rgba(255, 102, 0, 0.08);
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Subscription card */
.card {
    background: var(--glass);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 102, 0, 0.08);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.card h3 {
    margin: 0;
    color: var(--gold);
    font-size: 1.05rem;
}
.card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.tabs {
    display: flex;
    gap: 8px;
}
.tab {
    flex: 1;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--muted);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.02);
    font-size: 0.95rem;
}
.tab.active {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    color: #fff;
    box-shadow: 0 10px 26px rgba(255, 51, 0, 0.14);
}

form .form-group {
    margin-bottom: 12px;
    text-align: left;
}
label {
    display: block;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 102, 0, 0.08);
    background: var(--glass-strong);
    color: #fff;
    font-size: 1rem;
}
input::placeholder {
    color: #ff9966;
}
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(255, 204, 51, 0.06);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 51, 0, 0.14);
}
.btn.ghost {
    background: transparent;
    border: 1px solid rgba(255, 102, 0, 0.06);
    color: var(--muted);
}

.small {
    font-size: 0.9rem;
    color: var(--muted);
}

.hero-image-container {
    margin: 20px 0;
    width: 100%;
    overflow: hidden;
    border-radius: 12px; /* Smooth corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle depth */
}

.consent input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-1);
}

.consent {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
}

.consent p {
    margin: 0;
}

.consent-options {
    //display: flex;
    align-items: center;
    gap: 16px;
}

.consent-text {
    margin: 0;
    font-size: 13px;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px; /* Keeps the page from getting too long */
}

/* Helper: full-width buttons on small screens */
.w-100 {
    width: 100%;
}

/* About & Warehouse */
section {
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 18px;
    align-items: center;
}
.info-card {
    background: var(--glass);
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 102, 0, 0.06);
}

.warehouse-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.warehouse-box {
    height: 120px;
    border-radius: 10px;
    background: linear-gradient(
        180deg,
        rgba(255, 102, 0, 0.04),
        rgba(0, 0, 0, 0.22)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-weight: 700;
}

/* Messages */
.message {
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-weight: 700;
}
.message.success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.18);
    color: #a7f3d0;
}
.message.error {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.12);
    color: #fecaca;
}
.message.info {
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    color: #bfdbfe;
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 5 items = one row */
    gap: 16px;
    margin-top: 16px;
}

.product-card {
    background: var(--glass);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 102, 0, 0.06);
    text-align: center;
}

.product-image {
    height: 140px;
    border-radius: 10px;
    background: linear-gradient(
        180deg,
        rgba(255, 102, 0, 0.05),
        rgba(0, 0, 0, 0.25)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 10px;
}

/* Footer */
footer {
    margin-top: 6px;
    padding: 10px;
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
footer a {
    color: var(--muted);
    text-decoration: underline;
    margin: 0 6px;
}

/* Age Verification Overlay */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: var(--glass);
    border: 1px solid rgba(255, 102, 0, 0.12);
    border-radius: 14px;
    padding: 22px;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.age-gate-box h2 {
    margin-top: 0;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-gate-box p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.age-gate-buttons {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 520px) {
    .age-gate-buttons .btn {
        flex: 1 1 100%;
    }
}

/* Contact section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 14px;
}

.map-box {
    margin-top: 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 102, 0, 0.08);
    height: 260px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 18px;
    }
    .hero-left {
        order: 2;
    }
    .card {
        order: 1;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .warehouse-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .logo {
        width: 110px;
    }
    nav {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .pills {
        gap: 6px;
    }
    .warehouse-box {
        height: 110px;
    }
    .tab {
        font-size: 0.9rem;
        padding: 10px;
    }
    .btn {
        padding: 14px;
        font-size: 1rem;
    }
    .w-100 {
        width: 100%;
    }
    .card {
        padding: 14px;
    }
    body {
        padding-left: 12px;
        padding-right: 12px;
    }
    .warehouse-grid {
        grid-template-columns: 1fr;
    }
}

.legal-notice {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #000;
}

.legal-notice a {
    color: #c18b26;
    text-decoration: none;
    font-weight: 600;
}

.legal-notice a:hover {
    text-decoration: underline;
}

/* Legal buttons layout helper */
.legal-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center; /* center by default */
}

/* Make ghost buttons slightly smaller by default */
.legal-buttons .btn {
    padding: 10px 12px;
    font-size: 0.95rem;
}

/* Mobile: make buttons smaller and fit nicely in the center */
@media (max-width: 520px) {
    .legal-buttons {
        gap: 10px;
        justify-content: center;
    }

    .legal-buttons .btn {
        padding: 8px 10px;
        font-size: 0.9rem;
        /* Optional: make them share the row (two across) — comment out if you prefer inline */
        flex: 1 1 48%;
        max-width: 48%;
    }
}

@media (max-width: 980px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Hover effect: lift card slightly on hover */
.contact-item:hover {
    transform: translateX(4px);
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: #000;
    color: #fff;
    padding: 30px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #444;
}

.age-gate-box h2 {
    margin-bottom: 10px;
}

.dob-fields {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.dob-fields input {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    border: none;
}

.error {
    color: #ff6666;
    margin-top: 8px;
    font-size: 14px;
}

.remember {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #fc3;
}

.dob-fields {
    display: flex;
    gap: 12px;
    margin: 18px 0;
}

.dob-fields input {
    flex: 1;
    padding: 14px 12px;
    font-size: 18px;
    text-align: center;
    letter-spacing: 2px;
    border-radius: 10px;
    border: 1px solid #fc3;
    background: #111;
    color: #fff;
    outline: none;
    transition: all 0.2s ease;
}

.dob-fields input::placeholder {
    color: #777;
}

.dob-fields input:focus {
    border-color: #c9a24d;
    box-shadow: 0 0 0 2px rgba(201, 162, 77, 0.25);
}


.subscribe-section {
    margin-top: 30px;
    padding: 30px 0;
    border-radius: 14px;
    background: linear-gradient(
        180deg,
        rgba(255, 102, 0, 0.05),
        rgba(0, 0, 0, 0.2)
    );
}

.subscribe-card {

    margin: 0 auto;
    padding: 26px;
    border-radius: 16px;
    background: var(--glass);
    border: 1px solid rgba(255, 102, 0, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* subtle hover lift */
.subscribe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(255, 51, 0, 0.15);
}


.subscribe-card form {
    margin-top: 14px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.subscribe-card input[type="email"] {
    flex: 1 1 260px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 102, 0, 0.15);
    background: var(--glass-strong);
    color: #fff;
    font-size: 1rem;
    transition: 0.25s ease;
}

.subscribe-card input[type="email"]:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(255, 204, 51, 0.25);
}

.subscribe-card button {
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 51, 0, 0.18);
    transition: 0.25s ease;
}

.subscribe-card button:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 40px rgba(255, 51, 0, 0.28);
}

/* ===== Responsive ===== */

@media (max-width: 980px) {
    .subscribe-card {
        padding: 22px;
    }
}

@media (max-width: 520px) {
    .subscribe-card {
        padding: 18px;
    }

    .subscribe-card form {
        flex-direction: column;
    }

    .subscribe-card input[type="email"],
    .subscribe-card button {
        width: 100%;
    }
}
