/* =========================================
   1. GLOBAL SETTINGS & RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0c0c0c;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   2. NAVIGATION (fixed Glassmorphism)
   ========================================= */

   /* Align logo container elements side-by-side */
.logo {
    display: flex;
    align-items: center;
    gap: 8px; 
}

/* Control logo size */
.nav-logo-img {
    height: 40px; /* Adjust size to match your navbar height */
    width: auto;
    object-fit: contain;
    padding-right: 30px;
}

nav,
.inner-nav {
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 12, 12, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo {
    text-align: center;
}

.BRR {
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem;
    letter-spacing: 10px;
    color: #d4af37;
    display: block;
    font-weight: 700;
}

.p-text {
    font-size: 0.9rem;
    letter-spacing: 5px;
    opacity: 0.6;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.6;
    transition: 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
    opacity: 1;
    color: #d4af37;
}

/* =========================================
   3. HERO SECTION (Home Page)
   ========================================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
        url('https://images.unsplash.com/photo-1592945403244-b3fbafd7f539?q=80&w=2000');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin: 20px 0;
    letter-spacing: 5px;
}

.home-explore-btn {
    text-decoration: none;
    background: #fff;
    color: #000;
    padding: 18px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    display: inline-block;
    transition: 0.4s;
}

.home-explore-btn:hover {
    background: #d4af37;
    color: #fff;
}

/* =========================================
   4. PRODUCT GRID & QUANTITY SELECTOR
   ========================================= */
.product-section,
.all-products {
    padding: 120px 8% 80px;
}

.section-title,
.page-header h1 {
    text-align: center;
    font-family: 'Bodoni Moda', serif;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: #111;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

.product-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.product-img {
    height: 350px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.p-info h3 {
    font-family: 'Bodoni Moda', serif;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.p-desc {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-bottom: 15px;
}

.p-price {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Qty Buttons Styling */
.qty-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 15px;
    padding: 5px;
}

.qty-selector button {
    background: none;
    border: none;
    color: #d4af37;
    width: 40px;
    height: 35px;
    cursor: pointer;
    font-size: 1.2rem;
}

.qty-selector input {
    width: 50px;
    text-align: center;
    background: none;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    color: #fff;
    border: 1px solid #d4af37;
    cursor: pointer;
    letter-spacing: 2px;
    font-weight: 600;
    transition: 0.3s;
}

.add-to-cart-btn:hover {
    background: #d4af37;
    color: #000;
}

/* =========================================
   5. ABOUT PAGE (Our Story)
   ========================================= */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.pexels.com/photos/1961795/pexels-photo-1961795.jpeg?auto=compress&cs=tinysrgb&w=1200');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.story-section {
    padding: 100px 8%;
}

.story-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d4af37;
}

.story-text p {
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid #d4af37;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 60px 8%;
    text-align: center;
    background: #080808;
}

/* =========================================
   6. CONTACT PAGE (Social Cards)
   ========================================= */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px 8%;
}

.social-card {
    background: #111;
    padding: 40px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.social-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.icon-box {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.action-text {
    display: block;
    margin-top: 20px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #d4af37;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    padding: 80px 8%;
    background: #080808;
    text-align: center;
}

/* =========================================
   7. CART PAGE (Shopping Bag)
   ========================================= */
.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 150px 8% 100px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #111;
    padding: 20px;
    margin-bottom: 20px;
}

.cart-item img {
    width: 100px;
    height: 120px;
    object-fit: cover;
}

.cart-summary {
    background: #111;
    padding: 30px;
    height: fit-content;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.checkout-btn {
    display: block;
    width: 100%;
    background: #d4af37;
    color: #000;
    text-align: center;
    padding: 20px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 30px;
}

/* =========================================
   8. FOOTER & UTILS (FIXED FOR HOME)
   ========================================= */
footer,
.footer {
    padding: 80px 0;
    text-align: center;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    clear: both;
}

footer p,
.footer p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.5;
}

.fade-in {
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Style for X Button in Cart */
.remove-x-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.remove-x-btn:hover {
    color: #ff4444;
    transform: scale(1.2);
}

/* Horizontal Scroll Fixes */
.horizontal-scroll-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.product-grid.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 50px;
    scrollbar-width: none;
}

.product-grid.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.product-grid.horizontal-scroll .product-card {
    min-width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: center;
}

.view-all-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.05) !important;
    border: 1px dashed #d4af37 !important;
    min-height: 500px;
}

.view-all-link {
    text-decoration: none;
    color: #d4af37;
}

/* Responsive */
@media (max-width: 900px) {

    .story-container,
    .cart-container {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Payment Specific Styling */
.payment-box .checkout-btn:hover {
    transform: scale(1.02);
    background: #7b39cc !important;
}

/* Rest of your existing CSS stays exactly the same... */

.buy-now-btn {

    width: 100%;
    padding: 14px;
    margin-bottom: 10px;

    background: linear-gradient(135deg, #d4af37, #f5e6a8);
    color: #000;

    border: none;
    border-radius: 8px;

    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;

    cursor: pointer;
    transition: 0.3s;

    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.35);

}

.product-img {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

/* hover effect */

.buy-now-btn:hover {

    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f5e6a8, #d4af37);

}

/* click effect */

.buy-now-btn:active {

    transform: scale(0.97);

}

/* =========================================
   PREMIUM FOOTER STYLING
   ========================================= */
.main-footer {
    background: #080808;
    padding: 80px 8% 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: #fff;
    margin-top: 100px;
    /* Space from content */
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-family: 'Bodoni Moda', serif;
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-about {
    font-size: 0.85rem;
    line-height: 1.8;
    opacity: 0.7;
    margin-top: 20px;
    max-width: 300px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 0.85rem;
    opacity: 0.6;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: #d4af37;
    padding-left: 5px;
}

/* Social Icons */
.footer-socials {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

/* Footer Social Icons - Perfect Circle Alignment */
.footer-socials a {
    color: #fff;
    font-size: 1.1rem;
    opacity: 0.7;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);

    /* Yeh lines icons ko perfect center mein layengi */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50%;
    text-decoration: none !important;
    /* Underline hatane ke liye */
}

/* Hover effect */
.footer-socials a:hover {
    opacity: 1;
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-3px);
    text-decoration: none !important;
}

/* Footer links se bhi underline hatane ke liye */
.footer-col ul li a {
    text-decoration: none !important;
}

.footer-socials a:hover {
    opacity: 1;
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-3px);
}

/* Subscription Form */
.footer-subscribe {
    display: flex;
    margin-top: 20px;
}

.footer-subscribe input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    color: #fff;
    width: 100%;
    outline: none;
    font-size: 0.8rem;
}

.footer-subscribe button {
    background: #d4af37;
    border: none;
    padding: 0 20px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.footer-subscribe button:hover {
    background: #f5e6a8;
}

/* Bottom Copyright */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.7rem;
    letter-spacing: 1px;
    opacity: 0.4;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about {
        margin: 20px auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-subscribe {
        flex-direction: column;
        gap: 10px;
    }

    .footer-subscribe button {
        height: 30px;
    }

}

/* Footer icons aur links se underline hatane ke liye */
.footer-socials a,
.footer-col ul li a {
    text-decoration: none !important;
    /* Yeh underline ko remove kar dega */
    display: inline-block;
    /* Behtar alignment ke liye */
}

/* Agar hover karne par bhi underline aa rahi ho, toh ise bhi add karein */
.footer-socials a:hover,
.footer-col ul li a:hover {
    text-decoration: none !important;
}

/* Premium Contact Details Styling */
.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 8%;
    flex-wrap: wrap;
    background: #0c0c0c;
}

.detail-box-premium {
    flex: 1;
    min-width: 320px;
    background: linear-gradient(145deg, #161616, #0c0c0c);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.4s ease;
    position: relative;
}

.detail-box-premium:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.detail-icon {
    font-size: 1.5rem;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.detail-text h4 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: #d4af37;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #fff;
}

.gold-sep {
    flex-grow: 1;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    margin: 0 15px;
}

.address-line {
    font-family: 'Bodoni Moda';
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #fff;
    font-style: italic;
}

.address-sub {
    font-size: 0.9rem;
    opacity: 0.6;
    line-height: 1.6;
    margin: 0;
}

/* Form & FAQ Styling */
.contact-form-section {
    padding: 60px 8%;
    background: #111;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#contact-form input,
#contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px;
    color: #fff;
    font-family: inherit;
    outline: none;
    width: 100%;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #d4af37;
}

.faq-section {
    padding: 80px 8%;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.faq-item h4 {
    color: #d4af37;
    margin-bottom: 10px;
    font-family: 'Bodoni Moda';
    font-size: 1.2rem;
}

.faq-item p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .input-group {
        grid-template-columns: 1fr;
    }

    .detail-box-premium {
        padding: 30px;
    }
}

/* New Sections Styling */
.process-section {
    padding: 80px 8%;
    background: #0c0c0c;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-item {
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: 0.4s;
}

.process-item:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.02);
}

.process-item i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.process-item h3 {
    font-family: 'Bodoni Moda';
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.process-item p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.testimonials {
    padding: 80px 8%;
    background: #111;
    text-align: center;
}

.testimonial-card {
    max-width: 700px;
    margin: 40px auto;
    font-style: italic;
}

.testimonial-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #eee;
}

.testimonial-card span {
    display: block;
    margin-top: 20px;
    color: #d4af37;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.8rem;
}

.section-title {
    font-family: 'Bodoni Moda';
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #d4af37;
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 40px;
    display: block;
}

/* New Premium Sections Styling */
.process-section {
    padding: 80px 8%;
    background: #0c0c0c;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-item {
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: 0.4s;
    background: rgba(255, 255, 255, 0.02);
}

.process-item:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
}

.process-item i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.process-item h3 {
    font-family: 'Bodoni Moda';
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.process-item p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* Updated Values Section */
.values-section-premium {
    padding: 80px 8%;
    background: #111;
    text-align: center;
}

.values-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    transition: 0.3s;
}

.value-card i {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    letter-spacing: 3px;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.value-card p {
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.5;
}

.value-card:hover {
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Fragrance Pyramid Section */
.pyramid-section {
    padding: 80px 8%;
    background: #0c0c0c;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.pyramid-content {
    flex: 1;
    min-width: 300px;
}

.pyramid-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pyramid-tier {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 25px;
    text-align: center;
    transition: 0.3s;
}

.pyramid-tier:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

.pyramid-tier h4 {
    color: #d4af37;
    letter-spacing: 3px;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.pyramid-tier p {
    font-size: 0.8rem;
    opacity: 0.7;
}

.testimonials {
    padding: 80px 8%;
    background: #111;
    text-align: center;
}

.testimonial-card {
    max-width: 700px;
    margin: 40px auto;
    font-style: italic;
}

.testimonial-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #eee;
}

.testimonial-card span {
    display: block;
    margin-top: 20px;
    color: #d4af37;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.8rem;
}

.section-title {
    font-family: 'Bodoni Moda';
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #d4af37;
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .pyramid-section {
        text-align: center;
    }
}

/* --- Layout & Search --- */
.product-page-body {
    background: #0c0c0c;
    color: #fff;
}

.search-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
}

.search-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 25px;
    border-radius: 4px;
    color: #fff;
    font-family: 'Montserrat';
    outline: none;
    transition: 0.3s;
}

.search-box:focus {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

/* --- Filter Navigation --- */
.filter-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

/* --- Fixed Product Grid & Cards --- */
.all-products {
    padding: 0 8% 80px;
}

.product-grid {
    display: grid;
    /* Yahan cards ki width fix kar di hai taaki stretch na ho */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
}

.product-img {
    width: 100%;
    height: 400px;
    /* Perfect height for perfume bottles */
    background-size: cover;
    background-position: center;
    transition: 0.5s;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.p-info {
    padding: 25px;
    text-align: center;
}

.notes-preview {
    font-size: 0.65rem;
    color: #d4af37;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.product-card h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.6rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.p-desc {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 15px;
    font-weight: 200;
}

.p-price {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Bodoni Moda';
}

/* --- Buttons & Selector --- */
.qty-selector {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    justify-content: center;
}

.qty-selector button {
    background: none;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
}

.qty-selector input {
    width: 50px;
    background: none;
    border: none;
    color: #fff;
    text-align: center;
    font-family: 'Montserrat';
}

.buy-now-btn {
    width: 100%;
    padding: 15px;
    background: #d4af37;
    color: #000;
    border: none;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: 0.3s;
}

.buy-now-btn:hover {
    background: #fff;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.add-to-cart-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
}

/* Responsive */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .product-img {
        height: 350px;
    }
}

/* =========================================================
   MOBILE & TABLET RESPONSIVE FIX
   (Desktop design untouched)
   ========================================================= */

/* ---------- TABLET (1024px and below) ---------- */
@media (max-width:1024px) {

    nav,
    .inner-nav {
        padding: 15px 5%;
    }

    .product-section,
    .all-products {
        padding: 100px 5% 60px;
    }

    .story-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .story-image img {
        height: 400px;
    }

    .cart-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 120px 5% 80px;
    }

    .contact-details {
        flex-direction: column;
        align-items: center;
    }

}


/* ---------- MOBILE (768px and below) ---------- */
@media (max-width:768px) {

    /* NAV */
    .nav-links {
        display: none;
    }

    .logo .BRR {
        font-size: 1.5rem;
        letter-spacing: 6px;
    }

    /* HERO */
    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .home-explore-btn {
        padding: 14px 30px;
        font-size: 0.7rem;
    }

    /* PRODUCT GRID */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-img {
        height: 300px;
    }

    /* CART */
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cart-item img {
        width: 80px;
        height: 100px;
    }

    /* CONTACT */
    .detail-box-premium {
        min-width: 100%;
    }

    /* PYRAMID SECTION */
    .pyramid-section {
        flex-direction: column;
        text-align: center;
    }

    /* FOOTER */
    .main-footer {
        padding: 60px 5% 20px;
    }

}


/* ---------- SMALL MOBILE (480px and below) ---------- */
@media (max-width:480px) {

    .section-title {
        font-size: 1.8rem;
    }

    .product-card h3 {
        font-size: 1.3rem;
    }

    .p-price {
        font-size: 1.1rem;
    }

    .footer-container {
        gap: 30px;
    }

}

.mobile-cart-btn {
    display: none;
}

@media (max-width:768px) {

    .mobile-cart-btn {
        display: block;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #d4af37;
        color: #000;
        padding: 14px 35px;
        border-radius: 40px;
        font-weight: 600;
        text-decoration: none;
        z-index: 999;
    }

}

@media (max-width:768px) {

    .product-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        scroll-snap-type: x mandatory;
    }

    .product-card {
        min-width: 280px;
        scroll-snap-align: start;
    }

}

/* =========================================
   HAMBURGER MENU (Mobile Only)
   Desktop design unchanged
   ========================================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* Mobile Navigation */
@media (max-width:768px) {

    .menu-toggle {
        display: block;
        margin-left: 80%;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0c0c0c;
        flex-direction: column;
        text-align: center;
        display: none;
        padding: 20px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links a {
        display: block;
        padding: 15px;
        font-size: 0.8rem;
    }

    .nav-links.active {
        display: flex;
    }

}

/* Hamburger Menu */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

@media (max-width:768px) {

    .menu-toggle {
        display: block;
        position: absolute;
        left: 20px;
        top: 20px;
        margin-left: 80%;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0c0c0c;
        flex-direction: column;
        text-align: center;
        display: none;
        padding: 20px 0;
    }

    .nav-links li {
        list-style: none;
        padding: 12px 0;
    }

    .nav-links.active {
        display: flex;
    }

}

/* MOBILE HAMBURGER MENU */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

/* Mobile layout */
@media (max-width:900px) {

    .menu-toggle {
        display: block;
        position: absolute;
        left: 20px;
        top: 25px;
        margin-left: 80%;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0c0c0c;
        flex-direction: column;
        text-align: center;
        display: none; 
        padding: 20px 0;
    }

    .nav-links li {
        padding: 12px 0;
    }

    .nav-links.active {
        display: flex;
    }
}
