@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================================
   THEME VARIABLES (सॉफ्ट पिंक ब्रांड पैलेट)
   ========================================== */
:root {
    --primary-pink: #ff69b4;       /* मुख्य ब्रांड पिंक (Buttons & Icons) */
    --hover-pink: #e05297;         /* माउस ले जाने पर डार्क पिंक */
    --bg-soft-pink: #fff2f5;       /* पूरे बैकग्राउंड के लिए लक्ज़री पेस्टल पिंक */
    --card-white: #ffffff;         /* कार्ड्स के लिए साफ़ सफ़ेद बैकग्राउंड */
    --text-dark: #3a2226;          /* डार्क बेरी/चारकोल टेक्स्ट (परफेक्ट कंट्रास्ट) */
    --text-muted: #735d61;         /* हल्का टेक्स्ट छोटे पैराग्राफ्स के लिए */
    --border-pink: #ffd6df;        /* सॉफ्ट पिंक लाइन्स और बॉर्डर्स */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-soft-pink); /* 🌸 पूरे पेज का बेस बैकग्राउंड अब सॉफ्ट पिंक है */
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: default !important; /* FIX: Default cursor force fully wapas laya gya hai */
}

/* Common overrides for all pointer events */
a, button, input, textarea, select {
    cursor: pointer !important; /* FIX: Taaki click karne par standard hand icon dikhe */
}

/* ==========================================
   COMPLETE HEADER & NAVIGATION STYLING 
   ========================================== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: rgba(255, 255, 255, 0.9); /* ग्लास जैसा ट्रांसपेरेंट सफ़ेद */
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--border-pink);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}
.logo span { 
    color: var(--primary-pink); 
}

.nav-links {
    display: flex;
    align-items: center;
}

/* सभी सामान्य लिंक्स के लिए */
.nav-links a, .main-header a {
    margin-left: 30px;
    text-decoration: none !important;
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .main-header a:hover { 
    color: var(--primary-pink) !important; 
}

/* 🏆 स्पेशल कार्ट लिंक: बिना अंडरलाइन के डिफ़ॉल्ट पिंक रंग */
a[href="cart.php"], a[href*="cart"] {
    color: var(--primary-pink) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

/* कार्ट लिंक पर माउस ले जाने पर इफेक्ट */
a[href="cart.php"]:hover, a[href*="cart"]:hover {
    color: #222222 !important;
    text-decoration: none !important;
}

/* ==========================================
   HERO / MAIN BANNER SECTION
   ========================================== */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8%;
    min-height: 85vh;
    /* सुंदर डबल शेड पिंक ग्रेडिएंट बैनर */
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,214,223,0.5) 100%);
    border-bottom: 1px solid var(--border-pink);
}
.hero-content { max-width: 550px; }
.sub-title {
    color: var(--primary-pink);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}
.hero-content h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}
.btn-primary {
    display: inline-block;
    padding: 14px 38px;
    background-color: var(--primary-pink);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 18px rgba(255, 105, 180, 0.35);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--hover-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(255, 105, 180, 0.45);
}
.hero-image img {
    max-width: 500px;
    border-radius: 25px;
    border: 4px solid #ffffff; /* फोटो के चारों तरफ एक लक्ज़री सफ़ेद फ्रेम */
    box-shadow: 0 20px 45px rgba(255, 105, 180, 0.1);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* ==========================================
   USP SECTION STYLING (BRAND FEATURES)
   ========================================== */
.usp-section {
    padding: 80px 8%;
    background-color: transparent;
}

.usp-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.usp-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 35px 25px;
    background: var(--card-white);
    border-radius: 20px;
    border: 1px solid var(--border-pink);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.02);
    transition: all 0.4s ease;
}

.usp-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.1);
}

.usp-icon {
    font-size: 38px;
    margin-bottom: 15px;
    display: inline-block;
}

.usp-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.usp-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================
   PRODUCTS SECTION STYLING
   ========================================== */
.products-section {
    padding: 80px 8%;
    background: linear-gradient(180deg, rgba(255,242,245,1) 0%, rgba(255,227,233,0.6) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title h2 {
    font-size: 34px;
    color: var(--text-dark);
    margin-top: 5px;
    font-weight: 700;
}

.products-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    flex: 1;
    min-width: 300px;
    background: var(--card-white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-pink);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-pink);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.12);
}

.product-image img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-info {
    padding: 28px;
}

.product-info h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    height: 42px;
    overflow: hidden;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 22px;
}

.btn-secondary {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-pink);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

/* ==========================================
   FOOTER SECTION STYLING
   ========================================== */
.main-footer {
    background-color: #1a1516; /* अल्ट्रा-डार्क रिच बेरी ब्लैक */
    color: #ffffff;
    padding: 70px 8% 25px 8%;
    border-top: 4px solid var(--primary-pink);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #c7b3b6;
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--primary-pink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #c7b3b6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid #2e2224;
}

.footer-bottom p {
    color: #665255;
    font-size: 13px;
}

/* Logo aur Text ko ek line mai align karne ke liye */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo {
    height: 40px;
    width: auto;  
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #333; 
}

/* ==========================================
   🌸 NEW PREMIUM AUTH PAGES OVERLAYS 🌸
   ========================================== */
.gfc-auth-body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../images/why-banner.png') no-repeat center center fixed;
    background-size: cover;
    z-index: 1;
}

.gfc-auth-body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 242, 245, 0.88);
    z-index: -1;
}

.gfc-auth-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 35px;
    width: 100%;
    max-width: 440px;
    border-radius: 28px;
    border: 1px solid var(--border-pink);
    box-shadow: 0 20px 45px rgba(255, 105, 180, 0.08);
    text-align: center;
    z-index: 10;
}

.gfc-auth-logo {
    height: 55px;
    object-fit: contain;
    margin-bottom: 12px;
}

.gfc-auth-card h2 {
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.gfc-auth-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
}
/* ========================================================
   🌈 HIGH-PRIORITY MULTICOLOR TRAIL OVERRIDE (EVERY PAGE)
   ======================================================== */
html, body, a, button, input, textarea, select, table, td, th {
    cursor: none !important; /* Hide standard system browser pointer fully */
}

/* Custom Cursor Base Elements */
.custom-cursor-dot, 
.custom-cursor-outline, 
.trail-flair {
    display: block !important;
    visibility: visible !important;
    position: fixed !important;
    pointer-events: none !important; /* Click breaks prevent karne ke liye */
    z-index: 2147483647 !important; /* Highest possible layer in browser */
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/* Core Dot Pointer */
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-pink, #ff69b4) !important;
}

/* Outer Dynamic Outline Aura */
.custom-cursor-outline {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary-pink, #ff69b4) !important;
    transition: transform 0.1s ease-out;
}

/* Multicolor Glowing Trail Elements (Will be scaled via JS) */
.trail-flair {
    position: fixed;
    width: 12px;
    height: 12px;
    filter: blur(1px); /* Soft organic edge glow */
    box-shadow: 0 0 10px currentcolor, 0 0 20px currentcolor;
    transition: transform 0.05s linear;
}