/* ===== Header ===== */
:root {
 --primary-green:#0b3d2e;
 --gold-accent:#c5a059;
}

.login-btn{
 font-family:'Montserrat',sans-serif;
}

/* Mobile Responsiveness for Auth & Profile Pages */
@media (max-width: 768px) {
    .reg-container {
        padding: 20px;
    }

    .reg-box {
        flex-direction: column; /* Image upar aur form niche lane ke liye */
        width: 100% !important;
    }

    .reg-visual, .login-visual {
        display: none; /* Mobile par side wali image hata di taaki form bada dikhe */
    }

    .reg-form-content, .login-form-area {
        padding: 30px 20px !important;
        width: 100% !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important; /* Profile fields ek ke niche ek aayenge */
    }

    .brand-logo-text {
        font-size: 1.5rem;
    }
}
/* --- Global Section Title --- */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-green);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
}
/* Header Container */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid rgba(11, 61, 46, 0.08);
    transition: all 0.4s ease;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand Section */
/* --- Brand Identity Fix --- */

.brand-identity {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px; /* Logo aur Text ke beech ka space */
    border: none; /* Kisi bhi accidental border ko hatane ke liye */
    outline: none;
}

.brand-logo {
    height: 60px; /* Logo ki height thodi badhayi hai balance ke liye */
    width: auto;  /* Width auto taaki aspect ratio kharab na ho */
    object-fit: contain;
    display: block;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #0b3d2e !important; /* Aapka requested Green colour */
    text-transform: uppercase;
    line-height: 1; /* Extra spacing hatane ke liye */
    margin: 0;
    padding: 0;
}

/* Hover Effect */
.logo-link:hover .brand-name {
    color: var(--gold-accent) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .brand-logo {
        height: 45px;
    }
    .brand-name {
        font-size: 18px;
        letter-spacing: 2px;
    }
    .nav-wrapper {
        padding: 10px 20px;
    }
}
/* Mobile responsive font adjustment */
@media (max-width: 768px) {
    .brand-name {
        font-size: 18px;
        letter-spacing: 3px;
    }
}

/* Navigation Links */
.menu-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.menu-item {
    text-decoration: none;
    color: var(--primary-green);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    padding: 10px 0;
}

/* Dropdown Hidden State */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    list-style: none;
    padding: 20px 0;
    margin: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-top: 2px solid var(--primary-green);
    
    /* Animation settings */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

/* Dropdown Show on Hover */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px; /* Thoda wide dropdown better lagta hai */
    background: rgba(255, 255, 255, 0.98); /* Clean white */
    backdrop-filter: blur(10px); /* Modern glass effect */
    list-style: none;
    padding: 20px 0;
    margin: 0;
    
    /* Soft Elevation Shadow */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    
    /* Top Accent Line */
    border-top: 2px solid var(--primary-green);
    
    /* Animation setup */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); /* Niche se upar aayega */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Smooth 'bounce' effect */
    z-index: 999;
}

/* --- Floating Luxury Dropdown (Like Screenshot) --- */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%; /* Center alignment ke liye */
    transform: translateX(-50%) translateY(15px); /* Center se thoda niche */
    min-width: 220px; /* Screenshots ke hisab se width set ki hai */
    background: #ffffff;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    
    /* Elegant Shadow and Border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 2px solid var(--gold-accent); /* Screenshot mein top border gold hai */
    
    /* Initial Hidden State */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

/* Hover par exact alignment */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Menu Items */
.dropdown-menu li {
    text-align: center; /* Screenshot mein text center-aligned lag raha hai */
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--primary-green); /* Emerald Green color maintained */
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.3s;
}

/* Hover Effect */
.dropdown-menu li a:hover {
    color: var(--gold-accent); /* Text turns Gold */
    background-color: #fcfaf5; /* Very subtle cream wash */
}

/* Arrow remove ho chuka hai, par agar spacing handle karni ho */
.menu-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Right Side Icons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.action-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--primary-green);
    cursor: pointer;
    transition: 0.3s;
}

.action-btn:hover {
    color: var(--gold-accent);
}

.cart-wrapper {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--gold-accent);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* Sticky Space for Content */
body {
    padding-top: 85px; /* Isse aapka content header ke niche nahi chupega */
}
/* ===== HEADER ===== */

.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 30px; /* Increased gap for a cleaner look */
}

/* Unifying Fonts for Login/Register */
.login-trigger, 
.register-btn {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 11px !important; /* Matching the Nav menu size */
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    color: var(--primary-green);
    text-decoration: none;
    transition: 0.3s ease;
}

.register-btn:hover {
    color: var(--gold-accent);
}

/* Login Dropdown Specific (Inherits from .has-dropdown) */
.login-dropdown .dropdown-menu {
    min-width: 180px;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
}

.login-dropdown:hover .dropdown-menu {
    transform: translateX(-50%) translateY(0);
}
/* =====USER-LOGIN PAGE STYLING ===== */

.login-page-body {
    background: #fbf9f4; /* Subtle Cream Background */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0;
}

.login-container {
    width: 100%;
    max-width: 950px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(11, 61, 46, 0.1);
}

.login-box {
    display: flex;
    min-height: 550px;
}

/* Left Visual Side */
.login-visual {
    flex: 1;
    background: linear-gradient(rgba(11, 61, 46, 0.85), rgba(11, 61, 46, 0.95)), 
                url('images/slide1.webp'); /* Reuse your hero image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.visual-overlay h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin: 20px 0 10px;
    color: var(--gold-accent);
}

.visual-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

.login-logo-img {
    height: 80px;

}

/* Right Form Side */
.login-form-content {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 35px;
}

.form-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.auth-form .input-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-green);
    text-transform: uppercase;
}

.auth-form input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: 0.3s;
}

.auth-form input:focus {
    border-bottom-color: var(--gold-accent);
}

.label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-link {
    font-size: 0.7rem;
    color: var(--gold-accent);
    text-decoration: none;
}

.btn-login-submit {
    width: 100%;
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.4s;
}

.btn-login-submit:hover {
    background: #082d22;
    box-shadow: 0 10px 20px rgba(11, 61, 46, 0.2);
}

.form-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.form-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
    z-index: 1;
}

.form-divider span {
    background: #fff;
    padding: 0 15px;
    font-size: 0.7rem;
    color: #bbb;
    position: relative;
    z-index: 2;
}

.switch-auth {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

.switch-auth a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.back-home {
    margin-top: 30px;
    text-align: center;
}

.back-home a {
    font-size: 0.8rem;
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.back-home a:hover {
    color: var(--primary-green);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .login-box {
        flex-direction: column;
    }
    .login-visual {
        display: none; /* Mobile par clean look ke liye image hide kar di */
    }
    .login-form-content {
        padding: 40px 30px;
    }
}
/* ===== ADMIN LOGIN SPECIFIC ===== */

.admin-body {
    background: #062119;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 30px 15px;
    position: relative;
}
.admin-card {
    max-width: 420px;
    width: 100%;
}
.admin-login-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 420px;
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* Background Glowing Effects */
.admin-glow-1, .admin-glow-2{
filter: blur(80px);
opacity:0.7;
}
.admin-glow-1 { top: 0; right: 0; }
.admin-glow-2 { bottom: 0; left: 0; }

.admin-header .admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold-accent);
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.admin-tagline {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 5px;
}

.admin-header .brand-name {
    color: #fff !important;
    font-size: 32px;
}

/* Admin Input Style */
.admin-form {
    margin-top: 40px;
}

.admin-input-group {
    position: relative;
    margin-bottom: 20px;
}

.admin-input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 15px 15px 45px;
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: 0.3s;
}

.admin-input-group input:focus {
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.1);
}

.admin-input-group .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
}

/* Admin Button */
.btn-admin-login {
    width: 100%;
    background: var(--gold-accent);
    color: #062119;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-admin-login:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}

.admin-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-footer a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.admin-footer a:hover {
    color: var(--gold-accent);
}

.admin-footer p {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    margin-top: 10px;
}
@media (max-width: 768px){

.admin-card{
padding:30px 25px;
border-radius:20px;
}

.admin-header .brand-name{
font-size:26px;
}

.admin-input-group input{
padding:14px 14px 14px 40px;
}

.btn-admin-login{
padding:14px;
font-size:14px;
}
/* ===== REGISTRATION PAGE STYLING ===== */

/* --- Success Page Specific --- */
.success-card {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 30px 60px rgba(11, 61, 46, 0.1);
    animation: fadeInUp 0.8s ease;
}

.success-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.success-card p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* --- Registration Grid Layout --- */
.reg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
    margin-top: 30px;
}

/* These items should take full width even in the grid */
.reg-grid .terms-check, 
.reg-grid .btn-reg-submit, 
.reg-grid .switch-auth {
    grid-column: span 2; 
}

.terms-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #666;
}

.terms-check input[type="checkbox"] {
    accent-color: var(--primary-green);
    width: 16px;
    height: 16px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Fix for Registration */
@media (max-width: 600px) {
    .reg-grid {
        grid-template-columns: 1fr;
    }
    .reg-grid .terms-check, 
    .reg-grid .btn-reg-submit, 
    .reg-grid .switch-auth {
        grid-column: span 1; 
    }
}

.register-page-body {
    background: #fbf9f4;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.reg-container {
    width: 100%;
    max-width: 1000px;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(11, 61, 46, 0.12);
}

.reg-box {
    display: flex;
    min-height: 650px;
}

/* Left Section */
.reg-visual {
    flex: 1;
    background: linear-gradient(rgba(11, 61, 46, 0.9), rgba(11, 61, 46, 0.9)), 
                url('images/slide3.webp'); 
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    color: #fff;
    display: flex;
    align-items: center;
}

.reg-tag {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold-accent);
    border: 1px solid var(--gold-accent);
    padding: 5px 12px;
    border-radius: 50px;
}

.reg-overlay h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    margin: 25px 0;
    line-height: 1.1;
}

.accent-gold { color: var(--gold-accent); }

.reg-features {
    margin-top: 40px;
}

.f-item {
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.f-item span { color: var(--gold-accent); font-weight: bold; }

/* Right Section */
.reg-form-content {
    flex: 1.3;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--primary-green);
    text-transform: uppercase;
}

.form-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
    margin-top: 5px;
}

/* Inputs Styling */
.auth-form .input-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.auth-form label {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-green);
    text-transform: uppercase;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="tel"],
.auth-form input[type="password"] {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.reg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
    margin-top: 30px;
}

.reg-grid .terms-check, 
.reg-grid .btn-reg-submit, 
.reg-grid .switch-auth {
    grid-column: span 2; 
}

.terms-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #666;
}

.btn-reg-submit {
    background: var(--primary-green);
    color: #fff;
    border: none;
    padding: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-reg-submit:hover {
    background: #082d22;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 61, 46, 0.2);
}

.switch-auth {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 15px;
}

.switch-auth a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.back-home {
    margin-top: 20px;
    text-align: center;
}

.back-home a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #999;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .reg-box { flex-direction: column; }
    .reg-visual { display: none; }
    .reg-grid { grid-template-columns: 1fr; }
    .reg-grid .terms-check, .reg-grid .btn-reg-submit, .reg-grid .switch-auth {
        grid-column: span 1;
    }
    .reg-form-content { padding: 40px 25px; }
}
}
/* Action Buttons (Search/Cart) */
.action-btn {
    background: none;
    border: none;
    color: var(--primary-green);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.action-btn:hover {
    color: var(--gold-accent);
    transform: scale(1.1);
}

.action-btn svg {
    stroke: currentColor; /* Matches the green/gold hover */
}
/* --- Full Screen Search Overlay --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 46, 0.98); /* Luxury Deep Green Background */
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Jab active ho tab */
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Close Button */
.close-search {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: var(--gold-accent);
    cursor: pointer;
    transition: 0.3s;
}

.close-search:hover {
    transform: rotate(90deg);
}
/* Registration Page Specific Styling */
.register-page-body {
    background: #fbf9f4; /* Soft Cream */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin: 0;
}

.reg-container {
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(11, 61, 46, 0.15);
}

.reg-box {
    display: flex;
    min-height: 700px;
}

/* Left Visual */
.reg-visual {
    flex: 1;
    background: linear-gradient(rgba(11, 61, 46, 0.85), rgba(11, 61, 46, 0.95)), 
                url('images/slide3.webp'); /* Aapki existing image */
    background-size: cover;
    background-position: center;
    padding: 60px;
    color: #fff;
    display: flex;
    align-items: center;
}

.reg-tag {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold-accent);
    border: 1px solid var(--gold-accent);
    padding: 6px 15px;
    border-radius: 50px;
    text-transform: uppercase;
}

.reg-overlay h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin: 30px 0;
    line-height: 1.1;
}

.accent-gold { color: var(--gold-accent); }

.reg-features { margin-top: 50px; }
.f-item {
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.9;
}
.f-item span { color: var(--gold-accent); font-weight: bold; }

/* Right Form */
.reg-form-content {
    flex: 1.2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

/* Form Styling */
.auth-form label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 8px;
    display: block;
}

.auth-form input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.auth-form input:focus {
    border-bottom-color: var(--gold-accent);
}

.reg-grid .terms-check, 
.reg-grid .btn-reg-submit, 
.reg-grid .switch-auth {
    grid-column: span 2;
}

.btn-reg-submit {
    background: var(--primary-green);
    color: #fff;
    border: none;
    padding: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s;
    margin-top: 10px;
}

.btn-reg-submit:hover {
    background: #082d22;
    box-shadow: 0 10px 20px rgba(11, 61, 46, 0.2);
    transform: translateY(-2px);
}

.switch-auth a {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
}

/* Mobile Fix */
@media (max-width: 900px) {
    .reg-box { flex-direction: column; }
    .reg-visual { display: none; }
    .reg-grid { grid-template-columns: 1fr; }
    .reg-grid .terms-check, .reg-grid .btn-reg-submit, .reg-grid .switch-auth {
        grid-column: span 1;
    }
}
/* Search Content */
.search-form-wrapper {
    width: 80%;
    max-width: 800px;
    text-align: center;
}

.search-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.search-form {
    position: relative;
    border-bottom: 2px solid var(--gold-accent);
}

.search-form input {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: white;
    outline: none;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-submit-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gold-accent);
    cursor: pointer;
}

.search-hint {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Cart Count Styling */
.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--gold-accent);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between; /* Teeno parts ko door rakhne ke liye */
    align-items: center;
    padding: 10px 0;
}

/* ===== LOGO SECTION ===== */
.logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex: 1; 
}

.logo-img {
    height: 55px; /* Size yahan se control karein */
    width: auto;
    object-fit: contain;
    /* Agar logo dark green background par hai aur image ka color contrast set karna hai */
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.05)); 
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #0F5132; /* Deep Emerald Green */
    transition: 0.3s;
}

/* Hover effect: Jab mouse logo par jaye toh color thoda light ho jaye */
.logo-text:hover {
    color: #1a744a; 
}
/* Responsive adjust for mobile */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    .logo-text {
        font-size: 16px;
    }
}

/* Nav Links (Center) */
.main-nav {
    flex: 2; /* Center mein zyada jagah lene ke liye */
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px; /* Menu items ke beech ki dori */
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
}

/* Icons (Right) */
.nav-icons {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: flex-end; /* Right side chipkane ke liye */
}

.icon-link {
    text-decoration: none;
    font-size: 18px;
    color: #333;
} 
.mobile-bottom-nav {
    display: none; 
}
@media (max-width: 992px) {
    .nav-links {
        display: none; /* Mobile par menu chupaane ke liye */
    }
}
/* ===== PRODUCT COLLECTION PAGE ===== */

.product-page {
    background: #fff;
}

/* Banner Styling */
.page-banner p{
    max-width:600px;
    margin:auto;
    font-family:'Montserrat',sans-serif;
    font-size:14px;
    line-height:1.8;
    opacity:0.9;
}
.product-card{
    transition:all .4s ease;
}
.product-card:hover{
    transform:translateY(-8px);
}
.product-img{
    border-radius:6px;
}

.add-to-cart-btn{
    border-radius:4px;
}

.product-info h3{
    line-height:1.3;
}.wishlist{
position:absolute;
top:15px;
right:15px;
background:#fff;
width:35px;
height:35px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:16px;
cursor:pointer;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.quick-view{
background:transparent;
border:1px solid #fff;
color:#fff;
padding:12px 25px;
margin-bottom:10px;
font-family:'Montserrat';
letter-spacing:2px;
font-size:10px;
cursor:pointer;
transition:.3s;
}

.quick-view:hover{
background:#fff;
color:#0b3d2e;
}

.product-type{
font-size:11px;
letter-spacing:1px;
text-transform:uppercase;
color:#999;
}
.page-banner {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(11, 61, 46, 0.8), rgba(11, 61, 46, 0.8)), 
                url('images/sarees bg.webp') center/cover;
    text-align: center;
    color: #fff;
}

.page-banner h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    letter-spacing: 2px;
}

/* Controls (Sort & Count) */
.collection-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.results-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
}

#sort {
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-green);
    cursor: pointer;
    outline: none;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
}

.product-card {
    text-align: center;
    transition: 0.4s;
}

.product-img {
    position: relative;
    height: 480px; /* Editorial Tall Image */
    overflow: hidden;
    background: #f9f9f9;
    margin-bottom: 20px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Overlay & Button */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 46, 0.2);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    opacity: 0;
    transition: 0.4s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.add-to-cart-btn {
    background: #fff;
    color: var(--primary-green);
    border: none;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.add-to-cart-btn:hover {
    background: var(--gold-accent);
    color: #fff;
}

/* Info Text */
.product-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--gold-accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.view-details {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-decoration: none;
    color: #888;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    padding-bottom: 3px;
    transition: 0.3s;
}

.view-details:hover {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .product-grid { grid-template-columns: 1fr; }
    .page-banner h1 { font-size: 2.5rem; }
    .product-img { height: 400px; }
}
/*==== HERO ===== */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero__slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    animation: luxurySlider 15s infinite;
}

/* ✅ Correct Image Paths */
.slide-1 {
    background-image: url("images/slide1.webp"); 
    animation-delay: 0s;

    /* Niche di gayi lines add karein */
    background-size: cover;       /* Image ko poore frame mein fit karne ke liye */
    background-position: center;  /* Image ka beech ka hissa dikhane ke liye */
    background-repeat: no-repeat; /* Image ko repeat hone se rokne ke liye */
}

.slide-2 {
    /* Screenshot mein is file ka naam '2slide.webp' hai, 'slide2' nahi */
    background-image: url("images/2slide.webp");
    animation-delay: 5s;
}

.slide-3 {
    /* Screenshot mein ab 'slide3.webp' mil gayi hai, bas slash (/) sahi karein */
    background-image: url("images/slide3.webp"); 
    animation-delay: 10s;
}

/* ✅ Luxury Fade Animation */
@keyframes luxurySlider {

    0% {
        opacity: 0;
        visibility: hidden;
    }

    5% {
        opacity: 1;
        visibility: visible;
    }

    30% {
        opacity: 1;
        visibility: visible;
    }

    35% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}
/* Luxury Fade + Zoom Animation */
@keyframes luxurySlider {
    0% { opacity: 0; visibility: visible; transform: scale(1.1); }
    5% { opacity: 1; transform: scale(1.05); } /* Fade in with zoom */
    33.33% { opacity: 1; visibility: visible; }
    38.33% { opacity: 0; visibility: hidden; transform: scale(1); }
    100% { opacity: 0; }
}

/* Overlay & Content Styling (Exactly like Screenshots) */
.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Transparent dark layer */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-tag {
    color: var(--gold-accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 15px;
    display: block;
}

/* Button style from your screenshot */
.btn-hero {
    border: 1px solid var(--gold-accent);
    padding: 15px 35px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-hero:hover {
    background: var(--gold-accent);
    color: #000;

    
    /* Cross-browser animations */
    -webkit-animation: slideFade 15s infinite;
    animation: slideFade 15s infinite;
}

/* Timing for each image */
.slide-1 { animation-delay: 0s; -webkit-animation-delay: 0s; }
.slide-2 { animation-delay: 5s; -webkit-animation-delay: 5s; }
.slide-3 { animation-delay: 10s; -webkit-animation-delay: 10s; }

/* Luxury Fade Animation */
@keyframes slideFade {
    0% { opacity: 0; transform: scale(1); }
    5% { opacity: 1; }
    33.33% { opacity: 1; }
    38.33% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; }
}

@-webkit-keyframes slideFade {
    0% { opacity: 0; -webkit-transform: scale(1); }
    5% { opacity: 1; }
    33.33% { opacity: 1; }
    38.33% { opacity: 0; -webkit-transform: scale(1.05); }
    100% { opacity: 0; }
}

/* Content adjustment to stay on top */
.hero-overlay {
    z-index: 5;
    position: relative;
    background: linear-gradient(to bottom, rgba(11, 61, 46, 0.3), rgba(0,0,0,0.6));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ===== COLLECTIONS ===== */

/* ===== CATEGORY GRID ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 40px 0;
}

/* ===== CARD ===== */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    background: #0f3d2e;
    transition: 0.5s ease;
}

/* GOLDEN BORDER */
.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.5);
    z-index: 3;
}

/* HOVER LIFT */
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* ===== IMAGE ===== */
.category-card .img-box {
    width: 100%;
    height: 420px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

/* ===== GREEN LUXURY OVERLAY ===== */
.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,40,30,0.95),
        rgba(8,40,30,0.6),
        rgba(8,40,30,0.2),
        transparent
    );
}

/* ===== TEXT ===== */
.category-info {
    position: absolute;
    bottom: 35px;
    left: 30px;
    z-index: 5;
}

/* GOLD HEADING */
.category-info h3 {
    font-size: 1.6rem;
    color: #D4AF37;
    margin-bottom: 8px;
    font-weight: 600;
}

/* SUBTEXT */
.category-info p {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

/* GOLD LINE */
.category-info::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #D4AF37;
    display: block;
    margin-top: 12px;
    transition: 0.4s;
}

.category-card:hover .category-info::after {
    width: 110px;
}
/* Mobile Responsive: Phone par 1 column dikhega */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== SAREES PAGE STYLING ===== */

.page-banner {
    background: linear-gradient(rgba(11, 61, 46, 0.7), rgba(11, 61, 46, 0.7)), 
                url('images/banner.webp') no-repeat center center/cover;
    padding: 120px 0;
    letter-spacing: 2px;
}

.hero-tag {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 10px;
}

.page-banner h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
}

.accent-text {
    color: var(--gold-accent);
    font-style: italic;
}

/* Sidebar Refinement */
.filter-sidebar {
    border-right: 1px solid #e0e0e0;
    padding-right: 30px;
}

.filter-group h4 {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Product Card - The Luxury Look */
.product-card {
    background: var(--white);
    border: none; /* Removed borders for a cleaner look */
    border-radius: 0; /* Sharp edges often look more premium */
    position: relative;
}

.product-img {
    height: 450px; /* Tall images look more editorial */
    overflow: hidden;
}

.product-img img {
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-card:hover .product-img img {
    transform: scale(1.08); /* Slow, elegant zoom */
}

/* Elegant Overlay */
.product-overlay {
    background: rgba(11, 61, 46, 0.85);
    backdrop-filter: blur(5px);
    bottom: -100%; /* Hide completely */
}

.add-to-cart-btn {
    background: transparent;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    padding: 12px 30px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.add-to-cart-btn:hover {
    background: var(--gold-accent);
    color: var(--white);
}

/* Product Info */
.product-info {
    padding: 25px 10px;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.price {
    color: var(--text-dark); /* Dark price looks more sophisticated */
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.view-details {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 0.7rem;
    border-bottom: 1.5px solid var(--gold-accent);
    transition: 0.3s;
}

.view-details:hover {
    color: var(--gold-accent);
    padding-bottom: 3px;
}

/* Price Slider Customization */
.price-slider {
    accent-color: var(--gold-accent);
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .shop-container { flex-direction: column; }
    .filter-sidebar { width: 100%; display: none; /* Hide filters on mobile for now */ }
}
/* ===== ABOUT ===== */
/* About Section Background */
/* --- Web API Look CSS --- */

.about-wrapper {
    display: flex;
    align-items: stretch;   
    justify-content: space-between;
    gap: 80px;
}
/* Modern Image Container */
/* Container ko control karne ke liye */
.about-image-api {
    position: relative;
    flex: 1;
    max-width: 520px;
    width: 100%;
    aspect-ratio: 4 / 5;

    animation: floatImage 6s ease-in-out infinite;
}

/* Floating Effect */
@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}
/* PERFECT IMAGE FIT */
.about-image-api img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    position: relative;
    z-index: 3;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.25),
        0 0 0 1px rgba(212,175,55,0.3);
}
/* Decorative Glass Card (Jo image ke piche hai) */
.glass-card-proxy {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    height: 220px;

    background: rgba(212,175,55,0.12);
    backdrop-filter: blur(14px);

    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 26px;

    z-index: 2;
}
.section-title {
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--primary-green);
}

.accent-text {
    color: #d4af37;
}
.api-blob {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 320px;
    height: 320px;

    background: radial-gradient(
        circle,
        rgba(212,175,55,0.35),
        transparent 70%
    );

    filter: blur(60px);
    z-index: 1;

    animation: glowMove 8s ease-in-out infinite;
}

@keyframes glowMove {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
/* Responsive adjustment */
@media (max-width: 768px) {
    .about-image-api img {
        height: 350px; /* Mobile par choti height */
    }
    
}


/* Soft Blob Background */
.api-blob {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(11, 61, 46, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* API Badge Styling */
.api-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f4f2;
    padding: 6px 16px;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.api-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--gold-accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.accent-text {
    color: var(--gold-accent);
}

.api-description {
    font-size: 1.1rem;
    color: #4b5563; /* Modern slate grey */
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Button Group Styling */
.btn-group-api {
    display: flex;
    gap: 20px;
}

.btn-api-primary {
    background: var(--primary-green);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-api-secondary {
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-api-primary:hover {
    background: #082d22;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(11, 61, 46, 0.15);
}

.btn-api-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

/* Mobile Fix */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
    .btn-group-api {
        justify-content: center;
    }
}
/* ===== WHY US ===== */

/* Section Background */
.why-us {
    padding: 120px 0;
    background:
        radial-gradient(circle at top right,
        rgba(15,61,46,0.05),
        transparent 40%),
        #fbf9f4;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 70px;
}

/* Feature Box Styling */
.feature-box {
    position: relative;
    padding: 55px 35px;
    text-align: center;

    border-radius: 22px;

    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(212,175,55,0.25);

    transition: all 0.45s ease;
    overflow: hidden;
}

/* GOLD LIGHT EFFECT */
.feature-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top,
        rgba(212,175,55,0.18),
        transparent 70%);
    opacity: 0;
    transition: 0.5s;
}

.feature-box:hover::after {
    opacity: 1;
}
/* Hover Effects */
.feature-box:hover {
    transform: translateY(-14px);

    box-shadow:
        0 30px 70px rgba(15,61,46,0.15),
        0 0 45px rgba(212,175,55,0.25);

    border-color: var(--gold-accent);
}
.icon-wrapper {
    width: 80px;
    height: 80px;

    margin: 0 auto 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(15,61,46,0.08),
            rgba(212,175,55,0.18)
        );

    color: var(--primary-green);

    transition: 0.4s;
}

.feature-box:hover .icon-wrapper {
    transform: scale(1.12) rotate(6deg);
    color: var(--gold-accent);
}
.feature-box:hover .icon-wrapper {
    transform: scale(1.1);
    color: var(--primary-green);
}

/* Adding a subtle number/index background */
.feature-box::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.05); /* Very faint gold circle */
    border-radius: 50%;
    transition: 0.4s;
}

.feature-box:hover::before {
    background: rgba(197, 160, 89, 0.1);
    transform: scale(2);
}

.feature-box h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 14px;
    font-weight: 600;
}

.feature-box p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.8;
}
.feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #d4af37,
        transparent
    );

    transition: 0.6s;
}

.feature-box:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== TESTIMONIALS ===== */

/* Container adjustment */
.testimonials {
    padding: 120px 0;
    background:
        radial-gradient(circle at bottom left,
        rgba(15,61,46,0.05),
        transparent 40%),
        #fbf9f4;
}
.testimonials .container {
    max-width: 1200px; /* Standard luxury width */
    margin: 0 auto;
    padding: 0 20px;
}

/* Slider Grid System */
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 70px;
} 

/* Card Styling - Fixed Height & Alignment */
.testimonial-card {
    position: relative;
    padding: 70px 35px 45px;

    border-radius: 24px;

    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);

    border: 1px solid rgba(212,175,55,0.25);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 340px;

    transition: all 0.45s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 30px 70px rgba(15,61,46,0.15),
        0 0 50px rgba(212,175,55,0.3);

    border-color: var(--gold-accent);
}
/* Quote Icon Fix */
.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    font-size: 5rem;
    font-family: var(--font-heading);

    color: var(--gold-accent);
    opacity: 0.15;
}
.stars {
    color: #d4af37;   /* Rich gold */
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;

    text-shadow:
        0 0 8px rgba(212,175,55,0.5);
}
.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

/* Name & Location Wrapper */
.testimonial-card h4 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 5px;
    font-weight: 600;
}

.location {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
}
.testimonial-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #d4af37,
        transparent
    );

    transition: 0.6s;
}

.testimonial-card:hover::after {
    left: 100%;
}
/* Responsive Fixes */

/* Tablets par 2 cards */
@media (max-width: 1024px) {
    .testimonial-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile par 1 card */
@media (max-width: 768px) {
    .testimonial-slider {
        grid-template-columns: 1fr; /* Single column */
        gap: 20px;
    }
    
    .testimonial-card {
        min-height: auto;
        padding: 40px 20px;
    }
}


/* ===== FOOTER ===== */
/* --- Footer Styling --- */
.main-footer {
    background-color: #0b3d2e; /* Brand Green */
    color: #ffffff;
    padding: 80px 0 30px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 0 20px;
}

.footer-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #c5a059; /* Brand Gold */
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    filter: brightness(0) invert(1); /* Logo ko white karne ke liye agar dark background hai */
}

.footer-logo h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    letter-spacing: 2px;
}

.footer-logo span {
    display: block;
    font-size: 8px;
    letter-spacing: 4px;
    color: #c5a059;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #c5a059;
    padding-left: 5px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    font-size: 12px;
}

.newsletter-form button {
    background: #c5a059;
    color: #0b3d2e;
    border: none;
    padding: 0 20px;
    font-weight: 700;
    cursor: pointer;
    font-size: 11px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #c5a059;
    font-size: 12px;
    text-decoration: none;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 5px 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #c5a059;
    color: #0b3d2e;
}

/* Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    padding-left: 20px;
    padding-right: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .brand-desc {
        margin: 20px auto;
    }
   .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3); /* Suble Gold Border */
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.social-link svg {
    transition: transform 0.4s ease;
}

/* Hover Effect */
.social-link:hover {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--primary-green); /* Green icon on gold background */
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
} /* --- Shop & Page Layouts --- */
.page-banner {
    background: linear-gradient(rgba(11, 61, 46, 0.75), rgba(11, 61, 46, 0.75)),
                url('images/banner.webp');
    background-size: cover;
    background-position: center;
    padding: 140px 20px;
    text-align: center;
    margin-top: -20px;
    color: white;
}

.page-banner h1 {
    font-size: 3rem;
    letter-spacing: 1px;
}

.hero-tag {
    font-size: 1.1rem;
    margin-top: 15px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.filter-sidebar h4 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--gold-accent);
    padding-bottom: 5px;
}

.filter-group { margin-bottom: 30px; }
.filter-group ul { list-style: none; padding: 0; }
.filter-group li { padding: 8px 0; font-size: 14px; font-family: var(--font-body); }

/* --- Product Cards --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.product-img {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 61, 46, 0.9);
    padding: 15px;
    text-align: center;
    transform: translateY(100%);
    transition: 0.4s ease;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}
.product-card:hover .product-img img { transform: scale(1.05); }

.product-info { padding: 20px; text-align: center; }
.product-info h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 10px; }
.price { color: var(--gold-accent); font-weight: 600; font-family: var(--font-body); }

/* Featured Large (What's New) */
.feature-large {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
}
.feature-large img { width: 100%; height: 100%; object-fit: cover; }
.feature-text {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    max-width: 400px;
}

@media (max-width: 768px) {
    .shop-layout { grid-template-columns: 1fr; }
    .filter-sidebar { display: none; } /* Mobile par filters hide kar diye */
}