@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;800&display=swap');

:root {
    --text-dark: #1a1a24;
    --text-light: #4a4a5a;
    --accent-color: #00e676; 
    --accent-hover: #00c853;
    --card-bg: rgba(255, 255, 255, 0.85); 
    --card-border: 1px solid rgba(255, 255, 255, 0.6);
    --radius: 20px;
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Outfit', sans-serif; }

body { 
    color: var(--text-dark);
    background: linear-gradient(-45deg, #ff7eb3, #ff758c, #845ec2, #d65db1, #ff9671, #ffc75f, #00e676);
    background-size: 400% 400%;
    animation: fluidGradient 20s ease infinite;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

@keyframes fluidGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* AGE VERIFICATION MODAL */
.age-modal { display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(15px); z-index: 9999; justify-content: center; align-items: center; padding: 20px; }
.age-modal-content { background: var(--card-bg); padding: 50px 40px; border-radius: var(--radius); text-align: center; max-width: 500px; border: var(--card-border); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.age-modal h2 { font-size: 32px; font-weight: 800; margin-bottom: 20px; color: var(--text-dark); }
.age-modal p { font-size: 18px; color: var(--text-light); font-weight: 500; line-height: 1.6; }

.bg-blobs { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.6; animation: float 15s infinite alternate ease-in-out; }
.blob1 { width: 500px; height: 500px; background: #00e676; top: -10%; left: -10%; animation-delay: 0s; }
.blob2 { width: 400px; height: 400px; background: #845ec2; bottom: -10%; right: -10%; animation-delay: -5s; }
.blob3 { width: 600px; height: 600px; background: #ff7eb3; top: 40%; left: 30%; animation-delay: -10s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

.top-banner { background: rgba(0, 0, 0, 0.85); color: white; text-align: center; padding: 12px; font-size: 14px; font-weight: 500; letter-spacing: 1.5px; backdrop-filter: blur(5px); }

nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.4); box-shadow: 0 4px 30px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.logo { font-size: 30px; font-weight: 800; background: linear-gradient(90deg, #845ec2, #00e676); -webkit-background-clip: text; -webkit-text-fill-color: transparent; cursor: pointer; }

.nav-links { display: flex; gap: 35px; align-items: center; }
.nav-links a { color: var(--text-dark); text-decoration: none; font-size: 16px; font-weight: 800; cursor: pointer; transition: color 0.3s; text-transform: uppercase; }
.nav-links a:hover { color: var(--accent-hover); }
.menu-toggle { display: none; font-size: 28px; cursor: pointer; color: var(--text-dark); }

/* DROPDOWN STYLES */
.dropdown { position: relative; display: inline-block; text-align: center; }
.dropdown-content { display: none; position: absolute; background-color: rgba(255, 255, 255, 0.98); min-width: 220px; box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.1); z-index: 1000; border-radius: 12px; overflow: hidden; backdrop-filter: blur(15px); top: 100%; left: 50%; transform: translateX(-50%); border: 1px solid rgba(255,255,255,0.4); }
.dropdown-content a { color: var(--text-dark); padding: 15px 20px; text-decoration: none; display: block; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 14px; text-transform: uppercase; font-weight: 800; }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background-color: rgba(0, 230, 118, 0.1); color: var(--accent-hover); }
.dropdown:hover .dropdown-content, .dropdown.show-dropdown .dropdown-content { display: block; }

.btn { background: linear-gradient(135deg, #1a1a24, #2a2a36); color: white; border: 1px solid rgba(255,255,255,0.1); padding: 15px 30px; border-radius: 30px; font-size: 16px; font-weight: 800; cursor: pointer; box-shadow: 0 5px 20px rgba(0,0,0,0.2); text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.btn-green { background: linear-gradient(135deg, #00e676, #00c853); color: white; }
.btn-green:hover { box-shadow: 0 10px 25px rgba(0, 230, 118, 0.4); }

.container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; position: relative; z-index: 2; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }

.product-card { background: var(--card-bg); border-radius: var(--radius); border: var(--card-border); box-shadow: var(--shadow); padding: 25px; text-align: center; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; backdrop-filter: blur(20px); overflow: hidden; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 45px rgba(0,0,0,0.15), 0 0 20px rgba(255,255,255,0.5); }

/* PRODUCT IMAGE & SLIDER STYLES */
.product-image-container { width: 100%; height: 250px; background: rgba(255,255,255,0.4); border-radius: 12px; margin-bottom: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; }
.product-image { width: 100%; height: 100%; object-fit: contain; } /* 'contain' perfectly fits your images inside the box */

.slider-container { position: relative; width: 100%; overflow: hidden; border-radius: 12px; border: 1px solid rgba(255,255,255,0.8); background: rgba(255,255,255,0.4); }
.card-slider { height: 250px; margin-bottom: 20px; } /* Slider sizing specifically for Home Page cards */
.product-gallery .slider-container { height: 450px; } /* Slider sizing specifically for Product Page */

.slider-images { display: flex; width: 100%; height: 100%; transition: transform 0.4s ease-in-out; }
.slide-img { min-width: 100%; height: 100%; object-fit: contain; } /* 'contain' keeps all images completely inside */

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.4); color: white; border: none; padding: 10px 15px; cursor: pointer; font-size: 18px; border-radius: 50%; z-index: 10; transition: background 0.3s; backdrop-filter: blur(5px); }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
.slider-btn:hover { background: var(--accent-color); }
.card-slider .slider-btn { padding: 8px 12px; font-size: 14px; } /* Smaller arrows on home page cards */

.slider-dots { position: absolute; bottom: 15px; width: 100%; text-align: center; z-index: 10; }
.dot { display: inline-block; width: 10px; height: 10px; background: rgba(255,255,255,0.6); border-radius: 50%; margin: 0 6px; cursor: pointer; border: 1px solid rgba(0,0,0,0.2); transition: all 0.3s; }
.dot.active { background: var(--accent-color); transform: scale(1.3); }

.product-card h3 { font-size: 26px; font-weight: 800; margin-bottom: 8px; color: var(--text-dark); }
.product-card p { color: var(--text-light); font-weight: 500; }

.product-view { display: flex; flex-wrap: wrap; gap: 50px; background: var(--card-bg); border: var(--card-border); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.product-gallery { flex: 1; min-width: 320px; }
.product-info { flex: 1; min-width: 320px; }
.product-info h1 { font-size: 46px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; line-height: 1.1; }
.tagline { font-size: 20px; color: #845ec2; font-weight: 800; margin-bottom: 20px; }
.dispatch-notice { color: var(--accent-hover); font-weight: 800; margin-bottom: 25px; display: inline-block; background: rgba(0,230,118,0.15); padding: 10px 20px; border-radius: 30px; border: 1px solid rgba(0,230,118,0.3); }
.description { font-size: 17px; color: var(--text-light); line-height: 1.7; margin-bottom: 30px; font-weight: 500; }

.stats-box { background: rgba(255,255,255,0.7); border-radius: 16px; padding: 25px; margin-bottom: 25px; box-shadow: 0 8px 32px rgba(0,0,0,0.05); border: 1px solid rgba(255,255,255,0.8); }
.stats-box ul { list-style: none; }
.stats-box ul li { margin-bottom: 12px; color: var(--text-dark); font-size: 16px; }
.stats-box ul li strong { color: #845ec2; display: inline-block; width: 130px; font-weight: 800;}

.glass-input { width: 100%; padding: 15px 20px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.8); background: rgba(255,255,255,0.5); font-size: 16px; font-weight: 500; margin-bottom: 20px; outline: none; transition: all 0.3s; }
.glass-input:focus { background: rgba(255,255,255,0.9); border-color: #845ec2; box-shadow: 0 0 15px rgba(132, 94, 194, 0.3); }

.reviews-container h2 { text-align: center; color: white; text-shadow: 0 4px 15px rgba(0,0,0,0.3); margin-bottom: 50px; font-size: 40px; font-weight: 800; }
.review-card { background: var(--card-bg); border: var(--card-border); border-radius: var(--radius); padding: 30px; display: flex; gap: 20px; box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.review-avatar { width: 65px; height: 65px; border-radius: 50%; object-fit: cover; border: 2px solid white; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.review-content p { color: var(--text-light); margin-top: 12px; line-height: 1.6; font-style: italic; }
.stars { color: #ffc75f; font-size: 20px; letter-spacing: 2px; }

.promo-strip { background: rgba(255, 255, 255, 0.25); backdrop-filter: blur(25px); border-top: 1px solid rgba(255,255,255,0.4); border-bottom: 1px solid rgba(255,255,255,0.4); color: white; text-align: center; padding: 60px 20px; font-size: 36px; font-weight: 800; margin: 80px 0; box-shadow: 0 15px 40px rgba(0,0,0,0.1); text-transform: uppercase; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }

.admin-wrap, .auth-wrap { background: var(--card-bg); border: var(--card-border); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); backdrop-filter: blur(20px); }

footer { background: #111116; color: white; padding: 80px 5% 40px; margin-top: 100px; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-links a { display: block; color: #a0a0b0; text-decoration: none; font-weight: 500; margin-bottom: 12px; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent-color); }
.disclaimer { font-size: 12px; color: #666; line-height: 1.7; border-top: 1px solid #222; padding-top: 40px; text-align: justify; }

/* Custom Glassmorphism Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    color: var(--text-dark);
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    font-weight: 800;
    font-size: 16px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}
.toast-notification.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-success { border-bottom: 4px solid var(--accent-color); }
.toast-error { border-bottom: 4px solid #ff4757; color: #ff4757; }

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(255, 255, 255, 0.98); padding: 30px 20px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
    .nav-links.mobile-active { display: flex; }
    .nav-links a, .dropdown { font-size: 20px; padding: 15px 0; width: 100%; text-align: center; border-bottom: 1px solid #eee; }
    .dropdown { border-bottom: none; }
    .dropdown-content { position: relative; box-shadow: none; left: 0; transform: none; border: none; background: transparent; padding-top: 10px;}
    .dropdown-content a { font-size: 16px; color: var(--text-dark); border-bottom: 1px solid #eee; padding: 10px 0; }
    .product-view, .admin-wrap, .auth-wrap { padding: 30px; }
    .promo-strip { font-size: 24px; padding: 40px 15px; }
}