*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {

    /* ======================
       LUXURY CREAM THEME
    =======================*/

    --bg-main: #F8F4EC;
    --bg-section: #FFFDF8;
    --bg-card: #FFFFFF;
    --bg-soft: #EFE8DB;

    /* GOLD */

    --gold: #D4AF37;
    --gold-dark: #B58A1F;
    --gold-light: #F4E2A1;

    /* TEXT */

    --text: #2D2D2D;
    --text-light: #666666;

    /* SHADOW */

    --shadow: 0 15px 35px rgba(0, 0, 0, .08);

    /* BORDER */

    --border: #E7DDCC;

    /* FONT */

    --font-heading: 'Outfit', sans-serif;
    --font-brand: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

}

/* Background & Global overrides */
body {

    background: var(--bg-main);

    color: var(--text);

    font-family: var(--font-body);

    font-size: 15px;

    line-height: 1.7;

    overflow-x: hidden;

    background-repeat: no-repeat;

    background-size: cover;

    -webkit-font-smoothing: antialiased;

}

.luxury-bg {

    background: var(--bg-section);

}

/* ==========================================
   TYPOGRAPHY & HELPER UTILITIES
========================================== */

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--font-heading);

    font-weight: 600;

    letter-spacing: .6px;

    color: #2D2D2D;

}

.playfair-font {
    font-family: var(--font-brand) !important;
}

a {
    color: #D4AF37;
    text-decoration: none;
    transition: all .35s ease;
}

a:hover {
    color: #F4E2A1;
}

/* Helper Utilities */

.text-gold {
    color: #D4AF37 !important;
}

.text-gold-light {
    color: #F4E2A1 !important;
}


.border-gold {
    border-color: #D4AF37 !important;
}

.border-gold-dim {
    border-color: rgba(212, 175, 55, .18) !important;
}

.bg-dark-glow {

    background: #EFE8DB !important;

}

.tracking-wide {
    letter-spacing: 1.6px !important;
}

.small-lettering {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.fs-xsmall {
    font-size: 10px !important;
}

.text-xs {
    font-size: 12px !important;
}

.text-sm {
    font-size: 14px !important;
}


/* ==========================================
   ANNOUNCEMENT BAR
========================================== */

.announcement-bar {

    background: linear-gradient(90deg,
            #B58A1F,
            #D4AF37,
            #B58A1F);

    color: #111;

    font-weight: 700;

    font-size: 12px;

    letter-spacing: .8px;

}


/* ==========================================
   PREMIUM NAVBAR
========================================== */

.luxury-navbar {
    background: #FCFAF5 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

/* Navbar Logo */

.navbar-logo {

    width: 240px !important;

    height: auto !important;

    object-fit: contain;

    transition: .35s;

}

@media (max-width:768px) {
    .navbar-logo {

        width: 170px !important;

        height: auto !important;

        object-fit: contain;

    }
}

.luxury-navbar .nav-link {

    font-family: var(--font-heading);

    font-size: 15px;

    font-weight: 500;

    color: #2D2D2D !important;

    padding: 12px 18px;

    transition: .35s;

}

.luxury-navbar .nav-link:hover {

    color: var(--gold) !important;

}


/* ==========================================
   DROPDOWN
========================================== */



.dropdown-menu {

    background: #FFFFFF !important;

    border: 1px solid #E7DDCC !important;

    border-radius: 16px;

    padding: 10px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.dropdown-item {

    color: #2D2D2D;

    border-radius: 10px;

}

.dropdown-item:hover {

    background: rgba(212, 175, 55, .10) !important;

    color: #D4AF37 !important;

}

/* ===============================
   PREMIUM BUTTONS
================================ */

.btn-gold {

    background: linear-gradient(135deg, #D4AF37, #B58A1F);

    color: #111 !important;

    border: none;

    border-radius: 12px;

    font-family: var(--font-heading);

    font-weight: 600;

    letter-spacing: .5px;

    padding: 12px 24px;

    transition: all .35s ease;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);

}

.btn-gold:hover {

    background: linear-gradient(135deg, #F4E2A1, #D4AF37);

    color: #111 !important;

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(212, 175, 55, .30);

}


/* Buy Now Button */

.btn-buy-now {

    background: linear-gradient(135deg, #D4AF37, #B58A1F) !important;

    color: #111 !important;

    border: none !important;

    border-radius: 12px;

    font-weight: 700;

    padding: 12px 24px;

    transition: all .35s ease;

    box-shadow: 0 10px 25px rgba(212, 175, 55, .25);

}

.btn-buy-now:hover {

    background: linear-gradient(135deg, #F4E2A1, #D4AF37) !important;

    color: #111 !important;

    transform: translateY(-3px);

    box-shadow: 0 18px 35px rgba(212, 175, 55, .35);

}


/* Outline Button */

.btn-outline-gold {

    background: transparent;

    color: #D4AF37;

    border: 1px solid #D4AF37;

    border-radius: 12px;

    font-weight: 600;

    transition: all .35s ease;

}

.btn-outline-gold:hover {

    background: #D4AF37;

    color: #111 !important;

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(212, 175, 55, .25);

}

/* ==========================================
   PREMIUM PRODUCT CARDS
========================================== */

.luxury-card {

    background: #FFFFFF;

    border: 1px solid #E7DDCC;

    border-radius: 22px;

    overflow: hidden;

    transition: .35s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    position: relative;

}

.luxury-card:hover {

    transform: translateY(-8px);

    border-color: #D4AF37;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

}

/* Product Image */

.card-img-wrapper {

    position: relative;

    overflow: hidden;

    background: #FFFFFF;

}

.card-img-wrapper img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    transition: transform .45s ease;

}

.luxury-card:hover .card-img-wrapper img {

    transform: scale(1.06);

}


/* Product Title */

.card-title {
    min-height: 48px;
    /* Sab cards ki height same rahe */
    margin-bottom: 10px;
}

.card-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;

    color: #2D2D2D;
    text-decoration: none;
    transition: .3s ease;
}

.card-title a:hover {
    color: #C9A227;
}


/* Wishlist */

.wishlist-btn-overlay {

    position: absolute;

    top: 12px;

    right: 12px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #FFFFFF;

    border: 2px solid #D4AF37;

    color: #D4AF37 !important;

    font-size: 18px;

    cursor: pointer;

    transition: all .35s ease;

    z-index: 20;

    box-shadow: 0 6px 18px rgba(212, 175, 55, .20);

}

.wishlist-btn-overlay i,
.wishlist-btn-overlay svg {

    color: #D4AF37 !important;
    fill: #D4AF37 !important;

}

.wishlist-btn-overlay:hover {

    background: #D4AF37;

    color: #FFFFFF !important;

    transform: scale(1.08);

}

.wishlist-btn-overlay:hover i,
.wishlist-btn-overlay:hover svg {

    color: #FFFFFF !important;
    fill: #FFFFFF !important;

}

/* Form Inputs */
/* ==========================================
   PREMIUM FORMS
========================================== */

.form-control,
.form-select {

    background: #FFFFFF !important;

    border: 1px solid #E7DDCC !important;

    color: #2D2D2D !important;

    border-radius: 12px;

    box-shadow: none;

}

.form-control:focus,
.form-select:focus {

    background: #FFFFFF !important;

    border-color: #D4AF37 !important;

    color: #2D2D2D !important;

    box-shadow: 0 0 0 4px rgba(212, 175, 55, .15) !important;

    outline: none;

}

.form-control::placeholder {
    color: #999;
}



.form-select option {
    background: #FFFFFF;
    color: #2D2D2D;
}

textarea.form-control {

    min-height: 120px;

    resize: vertical;

}

/* Carousel/Hero Slider */
.luxury-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: 0;
    margin-top: 0;
    box-shadow: none;
    background: transparent;
}

/* ==========================================
   HERO SLIDER + MOBILE RESPONSIVE
========================================== */

/* Mobile Product Cards */

@media (max-width:768px) {

    .product-card {

        height: auto !important;

        min-height: 0 !important;

        max-height: none !important;

        border-radius: 16px;

    }

    .product-card img {

        width: 100% !important;

        aspect-ratio: 4/5 !important;

        height: auto !important;

        object-fit: cover !important;

        transition: .35s;

    }

    .card-badge {

        font-size: 10px;

        padding: 4px 10px;

        border-radius: 0px;

    }

}

/* =========================
   HERO BANNER
========================= */

.carousel-item {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

    .carousel-item {
        height: 290px;
    }

    .carousel-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .carousel-caption-overlay {
        display: none;
    }

}

/* ==========================================
   PREMIUM GLASS CARDS
========================================== */

.glass-card {

    background: #FFFFFF;

    border: 1px solid #E7DDCC;

    border-radius: 20px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);

}

.glass-card:hover {

    transform: translateY(-6px);

    border-color: #D4AF37;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .35),
        0 0 25px rgba(212, 175, 55, .18);

}


/* Gold Border */

.gold-gradient-border-top {

    width: 100%;

    height: 4px;

    border-radius: 20px 20px 0 0;

    background: linear-gradient(90deg,
            #B58A1F 0%,
            #D4AF37 50%,
            #B58A1F 100%);

}


/* ==========================================
   WHATSAPP FLOAT
========================================== */

.whatsapp-float {

    position: fixed;

    width: 60px;

    height: 60px;

    bottom: 28px;

    right: 28px;

    background: #25D366;

    color: #fff !important;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 32px;

    box-shadow: 0 12px 25px rgba(0, 0, 0, .30);

    z-index: 999;

    transition: all .35s ease;

}

.whatsapp-float:hover {

    background: #1EBE5B;

    transform: translateY(-4px) scale(1.08);

    box-shadow: 0 18px 35px rgba(37, 211, 102, .45);

}

.my-float {

    margin: 0;

}

/* ==========================================
   COUPON BOX
========================================== */

.coupon-box {

    background: rgba(212, 175, 55, .05);

    border: 2px dashed #D4AF37;

    border-radius: 14px;

    padding: 18px;

}


/* ==========================================
   TRUST BADGES
========================================== */

.trust-badge-card {

    background: #FFFFFF;

    border: 1px solid #E7DDCC;

    border-radius: 18px;

    padding: 28px 18px;

    text-align: center;

    transition: .35s;

}

.trust-badge-card:hover {

    transform: translateY(-6px);

    border-color: #D4AF37;

    box-shadow: 0 15px 30px rgba(0, 0, 0, .25);

}

.trust-badge-card i {

    font-size: 34px;

    color: #D4AF37;

    margin-bottom: 15px;

}


/* ==========================================
   FOOTER
========================================== */

.luxury-footer {

    background: #2D2D2D;

    border-top: 1px solid rgba(212, 175, 55, .15);

    padding: 70px 0 25px;

    margin-top: 70px;

}


/* Footer Links */

.footer-links li {

    margin-bottom: 12px;

}

.footer-links a {

    color: #d7d7d7;

    transition: .35s;

}

.footer-links a:hover {

    color: #D4AF37;

    padding-left: 8px;

}


/* Social Icons */

.social-link {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #FFFFFF;

    border: 1px solid #E7DDCC;

    color: #D4AF37;

    transition: .35s;

}

.social-link:hover {

    background: #D4AF37;

    color: #111;

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(212, 175, 55, .25);

}

/* ==========================================
   PREMIUM SEARCH BAR
========================================== */

.relative {

    position: relative;

}

.absolute-search {

    position: absolute;

    top: 50%;

    right: 12px;

    transform: translateY(-50%);

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: transparent;

    border: none;

    color: #D4AF37;

    cursor: pointer;

    border-radius: 50%;

    transition: all .35s ease;

}

.absolute-search:hover {

    background: rgba(212, 175, 55, .12);

    color: #F4E2A1;

    transform: translateY(-50%) scale(1.08);

}

.search-input {

    background: #FFFFFF;

    border: 1px solid rgba(212, 175, 55, .18);

    color: #2D2D2D;

    border-radius: 14px;

    padding: 12px 50px 12px 18px;

    transition: .35s;

}

.search-input:focus {

    border-color: #D4AF37;

    box-shadow: 0 0 0 4px rgba(212, 175, 55, .15);

    outline: none;

}

.search-input::placeholder {
    color: #999;
}

/* ==========================================
   PRODUCT DETAIL PAGE
========================================== */

.product-thumbnails {

    display: flex;

    gap: 12px;

    margin-top: 18px;

    flex-wrap: wrap;

}

.thumb-img {

    width: 75px;

    height: 75px;

    object-fit: cover;

    border-radius: 12px;

    cursor: pointer;

    border: 2px solid rgba(212, 175, 55, .15);

    background: #FFFFFF;

    transition: all .35s ease;

}

.thumb-img:hover,
.thumb-img.active {

    border-color: #D4AF37;

    transform: scale(1.08);

    box-shadow: 0 10px 22px rgba(212, 175, 55, .25);

}


/* Main Product Image */

.zoom-container {

    overflow: hidden;

    position: relative;

    border-radius: 18px;

    border: 1px solid rgba(212, 175, 55, .18);

    background: #FFFFFF;

    cursor: zoom-in;

    box-shadow: 0 15px 30px rgba(0, 0, 0, .25);

}

.zoom-container img {

    width: 100%;

    height: auto;

    transition: transform .35s ease;

}

.zoom-container:hover img {

    transform: scale(1.08);

}


/* ==========================================
   REVIEW CARD
========================================== */

.review-card {

    background: #FFFFFF;

    border: 1px solid #E7DDCC;

    border-radius: 20px;

    padding: 22px;

    margin-bottom: 20px;

    transition: all .35s ease;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);

}

.review-card:hover {

    transform: translateY(-6px);

    border-color: #D4AF37;

    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);

}


/* Review Image */

.review-image-attached {

    width: 80px;

    height: 80px;

    object-fit: cover;

    border-radius: 12px;

    margin-top: 12px;

    border: 2px solid rgba(212, 175, 55, .15);

    cursor: pointer;

    transition: .35s;

}

.review-image-attached:hover {

    border-color: #D4AF37;

    transform: scale(1.05);

}

/* ==========================================
   TRACK ORDER
========================================== */

.track-pipeline {

    display: flex;

    justify-content: space-between;

    align-items: center;

    position: relative;

    margin: 45px 0;

}

.track-pipeline::before {

    content: "";

    position: absolute;

    top: 50%;

    left: 0;

    width: 100%;

    height: 4px;

    background: #454B29;

    transform: translateY(-50%);

    z-index: 1;

    border-radius: 20px;

}

.track-step {

    position: relative;

    z-index: 2;

    width: 52px;

    height: 52px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #FFFFFF;

    border: 3px solid #D4AF37;

    color: #999;

    font-size: 18px;

    transition: .35s;

}

.track-step.active {

    border-color: #D4AF37;

    color: #D4AF37;

    box-shadow: 0 0 18px rgba(212, 175, 55, .30);

}

.track-step.completed {

    background: #D4AF37;

    border-color: #D4AF37;

    color: #111;

}


/* ==========================================
   ADMIN PANEL
========================================== */

.admin-sidebar {

    background: #2D2D2D;

    border-right: 1px solid rgba(212, 175, 55, .15);

    min-height: 100vh;

}

.admin-nav-link {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    border-radius: 12px;

    color: #ddd;

    transition: .35s;

    font-weight: 500;

}

.admin-nav-link:hover,
.admin-nav-link.active {

    background: rgba(212, 175, 55, .10);

    color: #D4AF37;

}


/* ==========================================
   LUXURY TABLE
========================================== */

.table-luxury {

    background: #FFFFFF;

    border: 1px solid #E7DDCC;

    color: #2D2D2D;

    border-radius: 16px;

    overflow: hidden;

}

.table-luxury th {

    background: #F4EFE4;

    color: #D4AF37;

    border-bottom: 1px solid rgba(212, 175, 55, .15);

}

.table-luxury td {

    border-color: rgba(212, 175, 55, .08);

}


/* ==========================================
   PRODUCTS GRID
========================================== */

.products-grid {

    display: grid !important;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 24px;

}

.products-grid>* {

    width: 100% !important;

    min-width: 0 !important;

}

@media(max-width:1024px) {

    .products-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}

@media(max-width:768px) {

    .products-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 16px;

    }

}

@media(max-width:480px) {

    .products-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

    }

}


/* ==========================================
   PRODUCT CARD
========================================== */

.product-card {

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #FFFFFF;

    border: 1px solid #E8DFD0;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    transition: all .35s ease;

    padding: 0;

}

.product-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);

    border-color: #D4AF37;

}


.product-card img,
.card-img-top {

    width: 100%;

    height: 300px;

    object-fit: cover;

    transition: .45s;

}

.product-card:hover img {

    transform: scale(1.05);

}

@media(max-width:768px) {

    .product-card img,
    .card-img-top {

        height: 200px;

    }

}

/* ==========================================
   GLOBAL SMOOTH TRANSITIONS
========================================== */

button,
.btn,
a {

    transition: all .3s ease;

}

html {

    scroll-behavior: smooth;

    overflow-x: hidden;

}

img {

    max-width: 100%;

    height: auto;

    display: block;

}

button:focus-visible,
.btn:focus-visible,
a:focus-visible {
    outline: 2px solid #D4AF37;
    outline-offset: 3px;
}


/* ===== FAQ PAGE CSS ===== */

.faq-hero {
    background: #F4EFE4;
    border: 1px solid #E7DDCC;
}

.faq-hero h1 {
    color: #2D2D2D;
}


#faqSearch {
    height: 55px;
    border-radius: 12px;
}

#faqSearch:focus {
    box-shadow: 0 0 15px rgba(212, 175, 55, .4);
}

.faq-item {
    border-radius: 15px;
    overflow: hidden;
    transition: .3s;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, .15);
}

.accordion-button {
    font-weight: 600;
    font-size: 17px;
}

.accordion-button:not(.collapsed) {
    background: #d4af37;
    color: #111;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    line-height: 1.8;
    font-size: 15px;
}

@media(max-width:768px) {
    .faq-hero h1 {
        font-size: 34px;
    }

    .accordion-button {
        font-size: 15px;
    }
}

/* Mobile Sticky Filter Button */
@media (max-width: 991px) {

    .mobile-filter-btn {
        position: sticky;
        top: 75px;
        z-index: 999;
        background: #F8F4EC;
        padding: 10px 0;
        border-bottom: 1px solid #E7DDCC;
    }

}

/* ==========================================
   PREMIUM CATEGORY SWIPER
========================================== */

.categorySwiper {
    padding: 20px 0 35px;
}

.categorySwiper .swiper-slide {
    width: 180px !important;
    text-align: center;
}

.categorySwiper a {
    text-decoration: none;
}

.category-circle {

    width: 140px;
    height: 140px;

    margin: auto;

    border-radius: 50%;

    overflow: hidden;

    background: #FFFFFF;

    border: 2px solid #E7DDCC;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .35s;

}

.category-circle img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .45s;

}

.category-circle:hover {

    transform: translateY(-8px);

    border-color: #D4AF37;

    box-shadow: 0 20px 40px rgba(212, 175, 55, .20);

}

.category-circle:hover img {

    transform: scale(1.08);

}

.categorySwiper h6 {

    color: #2D2D2D;

    font-size: 17px;

    font-weight: 600;

    margin-top: 15px;

    transition: .35s;

}

.categorySwiper a:hover h6 {

    color: #D4AF37;

}

@media(max-width:768px) {

    .categorySwiper .swiper-slide {

        width: 135px !important;

    }

    .category-circle {

        width: 110px;
        height: 110px;

    }

    .categorySwiper h6 {

        font-size: 14px;

    }

}

/* ====================================
   PERFECT MOBILE NAVBAR
==================================== */
@media (max-width:768px) {

    .luxury-navbar {
        padding: 10px 0;
    }

    .luxury-navbar .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        gap: 8px;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
        flex-shrink: 0;
    }

    .navbar-logo {
        width: 90px !important;
        height: auto !important;
        display: block;
    }

    .mobile-nav-actions {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        flex-wrap: nowrap !important;
        flex: 1;
    }

    .mobile-nav-actions .btn {
        padding: 6px 8px;
    }

    .mobile-nav-actions .rounded-pill {
        padding: 6px 12px !important;
        font-size: 13px;
        white-space: nowrap;
    }

    .mobile-nav-actions .dropdown-toggle span {
        display: none !important;
    }

}

/* Navbar Wishlist Heart */

.navbar .bi-heart,
.navbar .bi-heart-fill,
.navbar .fa-heart,
.navbar .fa-regular.fa-heart,
.navbar .fa-solid.fa-heart {

    color: #D4AF37 !important;

    fill: #D4AF37 !important;

    stroke: #D4AF37 !important;


}

/* Premium Product Badges */

.bg-gold {

    background: #D4AF37 !important;

    color: #111 !important;

}

.card-badge {

    position: absolute;

    top: 12px;

    left: 12px;

    padding: 6px 12px;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .5px;

    z-index: 5;

    box-shadow: 0 8px 18px rgba(0, 0, 0, .15);

}

/* ====================================
   PERFECT MOBILE NAVBAR
==================================== */
@media (max-width:768px) {

    .luxury-navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap !important;
    }

    .navbar-brand {
        flex: 0 0 auto;
        margin: 0;
    }

    .navbar-logo {
        width: 85px !important;
        height: auto;
    }

    .mobile-nav-actions {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap !important;
    }

    .mobile-nav-actions .btn {
        padding: 6px 8px;
    }

    .mobile-nav-actions .dropdown-toggle span {
        display: none !important;
    }

    .mobile-nav-actions .rounded-pill {
        padding: 6px 14px !important;
        font-size: 14px;
        white-space: nowrap;
    }

}

/* ==========================================
   RARA JEWELS PREMIUM MOBILE MENU
========================================== */

#mobileMenu {

    /* Size */
    --bs-offcanvas-width: 300px !important;
    width: 300px !important;
    max-width: 300px !important;

    /* Premium Cream Background */
    background: linear-gradient(180deg,
            #FFFDF9 0%,
            #FAF5EC 45%,
            #F5EEE1 100%) !important;

    /* Luxury Border */
    border-right: 2px solid #D4AF37;

    /* Shadow */
    box-shadow: 0 18px 45px rgba(0, 0, 0, .15);

}

/* Header */

#mobileMenu .offcanvas-header {

    padding: 20px;

    background: #FFF8EF;

    border-bottom: 1px solid #E7DDCC;

}

/* Body */

#mobileMenu .offcanvas-body {

    padding: 18px;

}

/* Menu Items */

#mobileMenu .nav-item {

    margin-bottom: 8px;

}

#mobileMenu .nav-link {

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 15px 18px;

    border-radius: 14px;

    color: #2D2D2D !important;

    font-weight: 600;

    transition: all .3s ease;

}

/* Hover */

#mobileMenu .nav-link:hover {

    background: #D4AF37;

    color: #fff !important;

    transform: translateX(4px);

}

/* Dropdown */

#mobileMenu .dropdown-menu {

    position: static !important;

    transform: none !important;

    margin-top: 10px;

    background: #FFF8F0;

    border: 1px solid #E7DDCC;

    border-radius: 14px;

    box-shadow: none;

}

#mobileMenu .dropdown-item {

    padding: 13px 16px;

    border-radius: 10px;

    color: #2D2D2D;

}

#mobileMenu .dropdown-item:hover {

    background: #D4AF37;

    color: #fff !important;

}

/* Backdrop */

.offcanvas-backdrop {

    background: rgba(0, 0, 0, .45);

}

.offcanvas-backdrop.show {

    opacity: 1;

}

/* Prevent Page Scroll */

body.offcanvas-open {

    overflow: hidden;

}

/* ===========================
   PRODUCT SWIPER
=========================== */

.productSwiper {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
}

.productSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.productSwiper .swiper-slide img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Thumbnail Slider */
.thumbSwiper {
    margin-top: 18px;
}

.thumbSwiper .swiper-wrapper {
    align-items: center;
}

.thumbSwiper .swiper-slide {
    width: 90px !important;
    height: 90px !important;
    flex-shrink: 0;
    opacity: .55;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    transition: all .3s ease;
}

.thumbSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid transparent;
}

.thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.thumbSwiper .swiper-slide-thumb-active img {
    border-color: #D4AF37;
    box-shadow: 0 0 12px rgba(212, 175, 55, .35);
}

.category-section {
    padding-bottom: 20px !important;
}

.featured-section {
    padding-top: 20px !important;
}

/* ===============================
   PREMIUM MOBILE CART
================================*/

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

@media (max-width:767px) {

    .cart-table thead {
        display: none;
    }

    .cart-table tbody tr.d-md-table-row {
        display: none !important;
    }

    .cart-mobile-row {
        display: table-row;
    }

    .cart-mobile-card {

        background: #24272c;

        border-radius: 16px;

        padding: 14px;

        margin: 12px 0;

        border: 1px solid rgba(212, 175, 55, .2);
    }

    .cart-mobile-top {

        display: flex;

        gap: 14px;

        align-items: flex-start;
    }

    .cart-mobile-image {

        width: 90px;

        height: 90px;

        border-radius: 10px;

        object-fit: cover;
    }

    .cart-mobile-info {

        flex: 1;
    }

    .cart-mobile-info h6 {

        font-size: 15px;

        margin-bottom: 5px;

        line-height: 1.3;
    }

    .cart-mobile-info h6 a {

        color: #fff;

        text-decoration: none;
    }

    .cart-mobile-info small {

        color: #bbb;
    }

    .cart-mobile-price {

        color: #D4AF37;

        font-size: 20px;

        font-weight: 700;

        margin-top: 8px;
    }

    .cart-mobile-bottom {

        margin-top: 15px;

        display: flex;

        justify-content: space-between;

        align-items: center;
    }

    .cart-mobile-bottom form {

        display: flex;

        gap: 6px;

        align-items: center;
    }

    .cart-mobile-bottom button {

        width: 34px;

        height: 34px;

        border-radius: 8px;

        border: 1px solid #D4AF37;

        background: transparent;

        color: #D4AF37;
    }

    .cart-mobile-bottom input {

        width: 42px;

        height: 34px;

        text-align: center;

        border-radius: 8px;

        border: none;
    }

}

/* Hide category slider dots */
.categorySwiper .swiper-pagination {
    display: none !important;
}

/* ===== Product Detail Action Buttons ===== */

.col-9 .d-flex {
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px !important;
}

.add-cart-btn {
    flex: 0 0 220px !important;
    width: 220px !important;
    max-width: 220px !important;
    height: 54px;
    font-size: 15px;
    padding: 0 18px !important;
    white-space: nowrap;
}

.wishlist-circle {
    flex: 0 0 54px !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px;
}

@media (max-width:768px) {

    .add-cart-btn {
        flex: 1 1 auto !important;
        width: auto !important;
        max-width: none !important;
    }

    .wishlist-circle {
        width: 50px !important;
        height: 50px !important;
        flex: 0 0 50px !important;
    }

}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 32px;
    color: #d8d8d8;
    cursor: pointer;
    transition: all .25s ease;
}

.star-rating-input label:hover,
.star-rating-input label:hover~label {
    color: #FFD700;
    transform: scale(1.12);
}

.star-rating-input input:checked~label {
    color: #FFD700;
}