/* JEEVIX Premium Design System */
:root {
    --bg-dark: transparent;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --accent-blue: #00f2ff;
    --accent-green: #39ff14;
    --accent-red: #ff3e3e;
    --accent-orange: #ff9d00;
    --accent-pink: #ff00ea;
    --accent-purple: #9d00ff;

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;

    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* Natural Story Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?q=80&w=2071&auto=format&fit=crop') center/cover;
    background-attachment: fixed;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 50%, rgba(57, 255, 20, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 242, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 234, 0.02) 0%, transparent 50%);
    pointer-events: none;
    animation: naturalGlow 20s ease-in-out infinite;
}

@keyframes naturalGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}


.particle.glow-blue {
    background: radial-gradient(circle, rgba(0, 242, 255, 0.8), transparent);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.6);
}

.particle.glow-green {
    background: radial-gradient(circle, rgba(57, 255, 20, 0.8), transparent);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
}

.particle.glow-pink {
    background: radial-gradient(circle, rgba(255, 0, 234, 0.8), transparent);
    box-shadow: 0 0 20px rgba(255, 0, 234, 0.6);
}

.particle.glow-orange {
    background: radial-gradient(circle, rgba(255, 157, 0, 0.8), transparent);
    box-shadow: 0 0 20px rgba(255, 157, 0, 0.6);
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 1;
    filter: grayscale(20%) contrast(120%);
}

.bg-story-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    z-index: -2;
    text-transform: uppercase;
    pointer-events: none;
    font-family: var(--font-heading);
    letter-spacing: 2rem;
    transition: var(--transition-smooth);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -1px;
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-glow {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.5));
}

/* Header & Navbar */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-blue);
    text-shadow: 0 0 10px var(--accent-blue);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    box-shadow: 0 0 10px var(--accent-blue);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    list-style: none;
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 1rem 1.5rem;
    display: block;
    font-size: 0.9rem;
    color: var(--text-white) !important;
    text-transform: uppercase;
    font-weight: 600;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-blue) !important;
}

.dropdown-menu li a::after {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon {
    position: relative;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cart-icon:hover {
    color: var(--accent-blue);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--accent-blue);
    color: black;
    font-size: 0.7rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px var(--accent-blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-green));
    color: #000;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

/* Button Processing State */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    gap: 10px;
}

.btn.loading {
    color: transparent !important;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: btn-spin 0.6s linear infinite;
}

.btn.success {
    background: var(--accent-green) !important;
    color: black !important;
    border-color: var(--accent-green) !important;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

.hero-visual {
    height: 600px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 0 50px rgba(0, 242, 255, 0.2));
    border-radius: 30px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.8rem;
    opacity: 0.6;
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--text-gray);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Sections */
section {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    height: 500px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-15px);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: var(--transition-smooth);
}

.man-card {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 242, 255, 0.2) 100%);
}

.slim-card {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(255, 62, 62, 0.2) 100%);
}

.glow-card {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(255, 0, 234, 0.2) 100%);
}

.man-card h3 {
    color: var(--accent-blue);
}

.slim-card h3 {
    color: var(--accent-orange);
}

.glow-card h3 {
    color: var(--accent-pink);
}

.category-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-link {
    margin-top: 1.5rem;
    text-decoration: none;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-link i {
    transition: transform 0.3s ease;
}

.category-card:hover .card-link i {
    transform: translateX(10px);
}

.card-floating-img {
    position: absolute;
    top: 10%;
    right: -20px;
    height: 80%;
    object-fit: contain;
    z-index: 0;
    opacity: 0.8;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
    transition: var(--transition-smooth);
    pointer-events: none;
}

.category-card:hover .card-floating-img {
    transform: translateY(-20px) scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 50px rgba(0, 242, 255, 0.3));
}

.card-content {
    position: relative;
    z-index: 1;
}

/* Benefits */
.benefits {
    background: rgba(255, 255, 255, 0.02);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--accent-blue));
}

.benefit-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Subscription Offer */
.offer-box {
    padding: 5rem;
    border-radius: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.offer-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.offer-box p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.subscribe-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
}

.subscribe-form input {
    flex: 1;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    outline: none;
}

.subscribe-form input:focus {
    border-color: var(--accent-blue);
}

/* Footer */
footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    background: transparent;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info .logo {
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: var(--text-gray);
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent-blue);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--accent-blue);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Natural Theme Variants */
.home-theme::before {
    background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?q=80&w=2071&auto=format&fit=crop') center/cover !important;
}

.man-theme::before {
    background: url('https://images.unsplash.com/photo-1511497584788-876760111969?q=80&w=2232&auto=format&fit=crop') center/cover !important;
}

.slim-theme::before {
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2070&auto=format&fit=crop') center/cover !important;
}

.glow-theme::before {
    background: url('https://images.unsplash.com/photo-1490750967868-88aa4486c946?q=80&w=2070&auto=format&fit=crop') center/cover !important;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(30px);
}

/* Product Grid & Cards */
.product-grid {
    padding: 4rem 0;
}

.product-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    padding: 2rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.05);
}

.product-img {
    height: 250px;
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
}

.bottle-preview {
    width: 100%;
    height: 100%;
}

.product-bottle-img {
    max-width: 100%;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.2));
    transition: var(--transition-smooth);
}

.product-card:hover .product-bottle-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.5));
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tagline {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.rating {
    color: #ffcc00;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.rating span {
    color: var(--text-gray);
    margin-left: 5px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.product-btns {
    display: flex;
    gap: 10px;
    width: 100%;
}

.btn.small {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
    flex: 1;
}

.text-center {
    text-align: center;
}

.green {
    background: linear-gradient(90deg, var(--accent-green), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orange {
    background: linear-gradient(90deg, var(--accent-orange), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pink {
    background: linear-gradient(90deg, var(--accent-pink), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Product Detail Page */
.product-detail {
    padding: 120px 0 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.large-3d-view {
    height: 600px;
    width: 100%;
}

.product-gallery-img {
    width: 100%;
    margin-top: 2rem;
    border-radius: 20px;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.2));
}

.product-story-section {
    padding: 6rem 0;
    margin: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    padding: 4rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.story-content p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-white);
    margin-bottom: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.story-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.story-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
}

.price-section {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
}

.subscription-price {
    color: var(--accent-green);
    font-weight: 600;
}

.product-description {
    color: var(--text-white);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.9;
}

.purchase-options {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.5rem;
}

.qty-selector button {
    background: transparent;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
}

.qty-selector input {
    width: 40px;
    text-align: center;
    background: transparent;
    border: none;
    color: white;
    font-weight: 700;
}

.trust-icons {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2.5rem;
}

.t-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.t-icon i {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

/* Tabs */
.product-info-tabs {
    margin-top: 6rem;
    border-radius: 40px;
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--glass-border);
}

.tab-btn {
    padding: 1.5rem 3rem;
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.tab-btn.active {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-blue);
}

.tab-content {
    padding: 4rem;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content ul {
    list-style: none;
}

.tab-content ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tab-content ul li i {
    color: var(--accent-green);
}

/* Checkout Page */
.checkout-page {
    padding: 120px 0 80px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.checkout-form,
.order-summary {
    padding: 3rem;
    border-radius: 30px;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.form-group input {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

.payment-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pay-item {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
}

.pay-item.active {
    border-color: var(--accent-blue);
    background: rgba(0, 242, 255, 0.1);
}

.order-summary .summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.order-summary hr {
    border: 0;
    border-top: 1px solid var(--glass-border);
    margin: 1.5rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.secure-badge {
    text-align: center;
    font-size: 0.8rem;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.w-100 {
    width: 100%;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* About & Info Pages */
.about-hero,
.contact-section {
    padding: 160px 0 80px;
    text-align: center;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.story-text {
    padding: 4rem;
    border-radius: 40px;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.faq-section {
    padding: 8rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.faq-item {
    padding: 2.5rem;
    border-radius: 25px;
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    text-align: left;
    margin-top: 4rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.method-item i {
    font-size: 1.5rem;
    color: var(--accent-blue);
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-box {
    padding: 3rem;
    border-radius: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar {
        padding: 0 2rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtext {
        margin: 0 auto 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-3d {
        height: 400px;
        order: -1;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .checkout-grid,
    .story-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }

    .large-3d-view {
        height: 400px;
    }

    .tabs-nav {
        flex-direction: column;
    }

    .product-detail {
        padding-top: 100px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .subscribe-form {
        flex-direction: column;
    }
}

.product-btns-detail {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-btns-detail button {
    flex: 1;
    padding: 1.2rem !important;
}


/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2001;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 2.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    color: var(--text-white);
}

.close-cart {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-cart:hover {
    color: var(--accent-blue);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.cart-item-img img {
    width: 100%;
    border-radius: 12px;
}

.cart-item-details h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.8rem;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    cursor: pointer;
}

.remove-item {
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.remove-item:hover {
    color: var(--accent-red);
}

.cart-footer {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    border-radius: 50px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

@media (max-width: 500px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}