:root {
    --primary-color: #dbfbbd;
    /* Deep Forest Green */
    --secondary-color: #C5A059;
    /* Brass/Gold */
    --accent-color: #1A1A1A;
    /* Dark Charcoal */
    --background-color: #121212;
    /* Nearly Black */
    --text-color: #E0E0E0;
    /* Off-white */
    --card-bg: #1E1E1E;
    --limited-color: #ffd700; /* Gold */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

/* Header */
header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    max-height: 100px;
}

.logo-img {
    max-height: 90px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../assets/images/business-4.jpeg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    /* Override if needed */
}

/* Fallback if image fails */
.hero {
    background-color: var(--background-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--background-color);
}

.btn-primary:hover {
    background-color: #b08d4b;
}

.btn-secondary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.btn-secondary:hover {
    background-color: rgba(197, 160, 89, 0.1);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.delivery-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(219, 251, 189, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(219, 251, 189, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(219, 251, 189, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(219, 251, 189, 0);
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--background-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 4px;
    border: 1px solid var(--secondary-color);
    box-shadow: 10px 10px 0 rgba(197, 160, 89, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #ccc;
}

.features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Featured Section */
.featured-preview {
    padding: 80px 0;
    background-color: #181818;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
}

.view-all {
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    gap: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.product-image {
    height: 250px;
    background-color: #252525;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--secondary-color);
    color: var(--background-color);
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 2;
}

.badge.limited {
    background-color: var(--limited-color);
    color: #000;
    border: 1px solid #000;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.strain-type {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Showcase Grid (Stash Page) */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.showcase-card {
    background-color: var(--card-bg);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.showcase-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.showcase-image {
    height: 300px;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #888;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #555;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide for now, enable with JS */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.age-modal-content {
    background-color: var(--card-bg);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.age-modal-logo {
    max-width: 150px;
    margin: 0 auto 20px;
}

.age-modal-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.age-modal-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
}

.age-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-modal-buttons .btn {
    width: 100%;
}

.age-error {
    color: #e74c3c !important;
    font-weight: 600;
    margin-top: 15px !important;
    margin-bottom: 0 !important;
    font-size: 0.95rem !important;
}

/* Lightbox Modal */
.lightbox {
    display: none; /* Changed to flex in JS when active */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    animation: zoom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--secondary-color);
    padding: 15px 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--secondary-color);
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Responsive Lightbox */
@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 95%;
    }
    
    .close-lightbox {
        top: 10px;
        right: 20px;
    }
}

.showcase-image {
    cursor: pointer;
}

/* Chess Tournament Section Styling */
.chess-tournament-section {
    background: var(--background-color);
    padding: 80px 0;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.chess-tournament-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(219, 251, 189, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.chess-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.chess-content {
    position: relative;
    z-index: 2;
}

.chess-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.chess-badge {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

.chess-badge.limited {
    background-color: #ff3b30;
    color: #fff;
    animation: pulse-red 2s infinite;
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.4);
}

.chess-badge.secure {
    background-color: var(--primary-color);
    color: var(--background-color);
    box-shadow: 0 4px 12px rgba(219, 251, 189, 0.4);
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }
    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 10px rgba(255, 59, 48, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

.chess-tournament-section h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.chess-subtitle {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.chess-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.7;
}

.chess-details-list {
    margin-bottom: 35px;
}

.chess-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.chess-detail-item i {
    color: var(--secondary-color);
    font-size: 1.4rem;
    width: 25px;
    text-align: center;
}

.chess-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chess-board-art {
    background-color: var(--card-bg);
    border: 3px solid var(--secondary-color);
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    position: relative;
}

.chess-icon-large {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3));
}

.chess-board-art h4 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.chess-board-art p {
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

@media only screen and (max-width: 991px) {
    .chess-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .chess-tournament-section h2 {
        font-size: 2.5rem;
    }
    
    .chess-board-art {
        max-width: 100%;
    }
}
