* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

/* ================= Top Strip ================= */
.top-strip {
    background: #fff;
    overflow: hidden;
    width: 100%;
    height: 44px;              /* ⬅ slightly taller */
    display: flex;
    align-items: center;       /* ⬅ vertical centering */
    justify-content: center;
    padding-top: 2px;          /* ⬅ gentle push down */
}


/* Slider wrapper */
.strip-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 40px;
}

/* Each message */
.strip-item {
    margin-top: 10px;
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.6px;
    opacity: 0;
    transform: translateY(8px); /* ⬅ smoother vertical motion */
    animation: stripFade 9s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    line-height: 1.4;          /* ⬅ prevents top squeeze */
}


/* Animation delays */
.strip-item:nth-child(1) { animation-delay: 0s; }
.strip-item:nth-child(2) { animation-delay: 3s; }
.strip-item:nth-child(3) { animation-delay: 6s; }

/* Gold star */
.star {
    color: #c79a3d;
    font-size: 15px;
}

/* Purple text */
.strip-text {
    color: purple; /* your brand purple */
    font-weight: 500;
}

/* Smooth luxury animation */
@keyframes stripFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(0);
    }
    40% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 0;
    }
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
    .top-strip {
        height: 36px;
    }

    .strip-item {
        font-size: 12.5px;
        letter-spacing: 0.4px;
    }
}

@media (max-width: 480px) {
    .strip-item {
        font-size: 11.5px;
        padding: 0 10px;
        text-align: center;
        white-space: normal;
    }
}

/* ================= Top Strip Layout ================= */
.top-strip {
    background: linear-gradient(to right, #fff, #faf6ef);
    height: 44px;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.top-strip-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Keep slider perfectly centered */
.strip-slider {
    position: relative;
    width: 100%;
    text-align: center;
}

/* Right Side Icons */
.top-icons {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 10px;
}

/* Icon Style */
.top-icons a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    color: #7a2e8a; /* brand purple */
    border: 1px solid #e6d3b3;
    transition: all 0.3s ease;
}

/* Hover Effect (Luxury Gold Glow) */
.top-icons a:hover {
    background: #c79a3d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(199,154,61,0.3);
}

/* Improve strip text */
.strip-text {
    color: #6a1b9a;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

/* Star polish */
.star {
    color: #c79a3d;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .top-icons {
        display: none; /* Hide icons on mobile for clean look */
    }
}

 /* Hide the entire topstrip on small screens */
@media (max-width: 768px) {
    .top-strip {
        display: none;
    }
}
/* ================= Navbar ================= */
.navbar {
    background: #6f2c6b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 60px;
    flex-wrap: wrap; /* allow wrapping on small screens */
    gap: 10px;
    position: relative;          /* ✅ ADD */
    transition: all 0.3s ease;   /* ✅ ADD */
    z-index: 998;                /* ✅ ADD */
}

/* ===== STICKY NAVBAR ON SCROLL ===== */
.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: navSlideDown 0.35s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}


.nav-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1 1 auto; /* grow/shrink */
}

.logo {
    height: 60px !important;
}

.category-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-icon rect {
    fill: #f2c97d;
}

.category-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    font-size: 15px;
    flex: 2 1 auto; /* allow shrink/grow */
    justify-content: center;
    flex-wrap: wrap; /* wrap on small screens */
    margin: 0;
    padding: 0;
}

.nav-menu li {
    cursor: pointer;
    opacity: 0.9;
    white-space: nowrap;
}


.nav-icons {
    display: flex;
    gap: 22px;
    font-size: 18px;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.nav-icons a {
  color: inherit;          /* prevents blue link color */
  text-decoration: none;   /* removes underline */
  display: inline-flex;
  align-items: center;
}

.nav-icons a:hover {
  color: #c79a3d;          /* optional luxury hover */
}

.mobile-icons a {
  color: inherit;        /* keep icon color */
  text-decoration: none;
}

.mobile-icons a i {
  font-size: 18px;
  cursor: pointer;
}

/* Navbar links */
.nav-menu li a {
    color: #ffffff; /* white text */
    text-decoration: none; /* remove underline */
    transition: color 0.3s ease;
}

/* Hover effect */
.nav-menu li a:hover {
    color: #f2c97d; /* gold color */
}

/* Active state */
.nav-menu li a.active {
    color: #f2c97d; /* gold color */
    font-weight: 500;
}

/* Mobile menu links */
.mobile-menu li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Mobile menu hover */
.mobile-menu li a:hover {
    color: #f2c97d;
}

/* Mobile menu active */
.mobile-menu li a.active {
    color: #f2c97d;
    font-weight: 500;
}


/* =====================================
SIDEBAR OVER LAY STYLE 
===================================== */

/* Overlay */
.category-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
}

.category-overlay.active {
    opacity: 1;
    visibility: visible;
}
/* ================================
   new css for side bar start  
      ================================ */

/* Show category button in nav-icons (desktop) */
.nav-icons .category-btn {
    display: inline-flex;
}

/* Hide category button in nav-left on desktop */
.nav-left .category-btn {
    display: none;
}


/* ================================
   MOBILE / RESPONSIVE
   ================================ */
@media (max-width: 768px) {

    /* Show category button near logo (nav-left) */
    .nav-left .category-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: transparent;
        border: none;
        color: #fff; /* adjust if needed */
        font-weight: 500;
    }

    /* Hide desktop category button */
    .nav-icons .category-btn {
        display: none;
    }
    
        .category-sidebar {
        left: -360px;   /* hide to the left */
        right: auto;    /* remove right positioning */
    }

    .category-sidebar.active {
        left: 0;        /* slide in from left */
    }

    /* Optional: hide text, keep icon only on very small screens */
    /*
    .category-text {
        display: none;
    }
    */
}

/* Sidebar */
.category-sidebar {
    position: fixed;
    top: 0;
   right: -380px;   /* 👈 hide to the right instead of left */
    left: auto;      /* 👈 remove left positioning */
    width: 360px;
    max-width: 90%; /* responsive width */
    height: 100vh;
    background: #faf7f2;
    z-index: 1000;
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
}
.category-sidebar.active {
    right: 0;
}
/* ================================
   new css for side bar end
      ================================ */

/* Header */
.cat-header {
    background: #7a1f5c;
    color: #fff;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cat-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

/* Sidebar text color */
.cat-list li {
    color: #7a1f5c;   /* main text */
}

/* Arrow icon color */
.cat-list li i {
    color: #7a1f5c;
}

/* Collections pills text */
.pill {
    color: #7a1f5c;
}

/* Collections subtitle already purple, but force it */
.cat-subtitle {
    color: #7a1f5c;
}

/* Body */
.cat-body {
    padding: 16px;
    overflow-y: auto;
}

/* Category List */
.cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-list li {
    background: #f1efe9;
    margin-bottom: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 500;
}
.cat-list li:hover {
    background: hsl(41, 54%, 93%);
}

/* Collections */
.cat-collections {
    margin-top: 20px;
}
.cat-subtitle {
    font-size: 12px;
    letter-spacing: 1px;
    color: #7a1f5c;
    margin-bottom: 10px;
    font-weight: 600;
}

.pill-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    background: #f1efe9;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}
.pill:hover {
    background: #e0d8cc;
}
.cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7a1f5c;
    font-weight: 500;
}

/* EXACT icon look */
.cat-icon {
    width: 18px;          /* exact size like your image */
    height: 18px;
    fill: none;
    stroke: #7a1f5c;      /* exact color */
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* Arrow color */
.cat-list li i {
    color: #7a1f5c;
    font-size: 14px;
}
.cat-header {
    background: #7a1f5c;          /* exact purple */
    color: #ffffff;
    height: 48px;                 /* exact bar height look */
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Title group */
.cat-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;              /* matches screenshot */
    font-weight: 600;
}

/* Icon: exact size + color like image */
.cat-header-icon {
    width: 18px;                  /* exact visual size */
    height: 18px;
    fill: none;
    stroke: #f5c46b;              /* gold/yellow like image */
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* Close button */
.cat-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}
/* ================================
   EXACT FONT MATCH TO IMAGE 2
   (NO DESIGN CHANGES)
================================ */

/* Header: "Shop by Category" */
.cat-title,
.cat-title span {
    font-style: normal!important;  
    font-size: 15px !important;     /* matches Image 2 */
    font-weight: 500 !important;    /* NOT too bold, elegant like Image 2 */
    letter-spacing: 0.2px !important;
}

/* List text: Rings, Necklaces, etc. */
.cat-item {

    font-size: 14px !important;     /* matches Image 2 */
    font-weight: 400 !important; 
     font-style: normal!important;
    letter-spacing: 0.2px !important;
}

/* Ensure LI also follows same font */
.cat-list li {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

/* Collections title (if visible) */
.cat-subtitle {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}
/* =====================================
   FORCE FONT TO MATCH IMAGE 2 EXACTLY
   (NO DESIGN / SIZE / COLOR CHANGES)
===================================== */

/* Header text: "Shop by Category" */
.cat-title,
.cat-title span {
    font-family: 'Roboto Slab', 'Merriweather', serif !important;
    font-size: 25px !important;        /* matches visual size in image */
    font-weight: 400 !important;       /* bold like the screenshot */
    letter-spacing: 0px !important;    /* tight spacing like image */
    line-height: 1.2 !important;
    color: #ffffff;
}

/* List item text: Rings, Necklaces, etc. */
.cat-item {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 14px !important;     /* matches Image 2 */
    font-weight: 400 !important;    /* regular (lighter like Image 2) */
    letter-spacing: 0.15px !important;
}

/* Ensure LI also follows same font */
.cat-list li {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

/* Collections title (if enabled later) */
.cat-subtitle {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
}
/* ================================
   FIX DROPDOWN POSITION (UNDER RINGS)
   Do NOT change any other design
================================ */

/* Make sure sublist flows vertically under Rings */
.cat-parent {
    display: block;
}

/* Force sublist to stay under the Rings header */
.cat-parent .cat-sublist {
    position: relative;      /* NOT absolute */
    width: 100%;
    margin: 8px 0 12px 12px; /* small indent like your image */
    padding: 0 0 0 12px;
    border-left: 1px solid #e0c9d6;
    display: none;           /* hidden by default */
}

/* Show when active */
.cat-parent.active .cat-sublist {
    display: block;
}

/* Make sure it does NOT create side-by-side layout */
.cat-parent .cat-row,
.cat-parent .cat-sublist {
    float: none;
    clear: both;
}

/* Sub items style stays same */
.cat-sublist li {
    padding: 6px 0;
    font-size: 13px;
    color: #7a1f5c;
    background: transparent;
}
/* ===== FIX: Make Rings look like Image 2 ===== */

/* Make the Rings header full width like other items */
.cat-parent {
    background: transparent;
    margin-bottom: 10px;
}

/* Rings clickable row = purple full-width pill */
.cat-parent .cat-row {
    background: #7a1f5c;
    color: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Make icon + text white inside Rings header */
.cat-parent .cat-row .cat-item {
    color: #fff;
}

.cat-parent .cat-row .cat-icon {
    stroke: #fff;
}

.cat-parent .cat-row i {
    color: #fff;
}

/* Sublist */
.cat-sublist {
    list-style: none;
    margin: 8px 0 12px 12px;
    padding-left: 12px;
    border-left: 1px solid #e0c9d6;
    display: none;
}

.cat-parent.active .cat-sublist {
    display: block;
}


/* Sub items style */
.cat-sublist li {
    padding: 6px 0;
    font-size: 13px;
    color: #7a1f5c;
    background: transparent;
}

/* View all */
.cat-sublist .view-all {
    font-weight: 500;
    margin-top: 6px;
}

/* Arrow rotate animation */
.cat-parent .fa-chevron-down {
    transition: 0.3s ease;
}

.cat-parent.active .fa-chevron-down {
    transform: rotate(180deg);
}
/* ================================
   FINAL FIX: EXACT LIKE IMAGE
================================ */

/* IMPORTANT: Override flex row layout for Rings block */
.cat-parent {
    display: block !important;
}

/* Make Rings header full width purple bar */
.cat-parent .cat-row {
    width: 100%;
    background: #7a1f5c;
    color: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* White text + icon inside header */
.cat-parent .cat-row .cat-item {
    color: #fff;
}

.cat-parent .cat-row .cat-icon {
    stroke: #fff;
}

.cat-parent .cat-row i {
    color: #fff;
}

/* FORCE sublist to appear UNDER the header (not side) */
.cat-parent .cat-sublist {
    position: static !important;   /* not absolute */
    display: none;
    width: 100%;
    margin: 8px 0 12px 12px;
    padding-left: 12px;
    border-left: 1px solid #e0c9d6;
}

/* Show when active */
.cat-parent.active .cat-sublist {
    display: block;
}

/* Make sure no side-by-side layout happens */
.cat-parent .cat-row,
.cat-parent .cat-sublist {
    float: none !important;
    clear: both !important;
}

/* Sub item look (same as your image) */
.cat-sublist li {
    padding: 6px 0;
    font-size: 13px;
    color: #7a1f5c;
    background: #fff;
}

/* Arrow rotation */
.cat-parent .fa-chevron-down {
    transition: 0.3s ease;
}

.cat-parent.active .fa-chevron-down {
    transform: rotate(180deg);
}
/* =====================================
   FIX: Only HEADER should be purple
   Sub items must stay normal
===================================== */

/* Keep only the header (cat-row) purple */
.cat-parent .cat-row {
    background: #7a1f5c;
    color: #fff;
}

/* FORCE sublist items to NEVER get purple bg */
.cat-sublist li {
    background: transparent !important;
    color: #7a1f5c;
}

/* Specifically fix "View All Rings" row */
.cat-sublist .view-all {
    background: transparent !important;
    color: #7a1f5c !important;
}

/* On hover also keep it normal (not purple) */
.cat-sublist li:hover {
    background: transparent !important;
}
/* =====================================
   ONLY ACTIVE DROPDOWN HEADER = PURPLE
   Inactive headers look like "Gifts"
===================================== */

/* Default (inactive) state: look like Gifts */
.cat-parent .cat-row {
    background: #f1efe9 !important;
    color: #7a1f5c !important;
}

/* Default icon + arrow color */
.cat-parent .cat-row .cat-item {
    color: #7a1f5c !important;
}

.cat-parent .cat-row .cat-icon {
    stroke: #7a1f5c !important;
}

.cat-parent .cat-row i {
    color: #7a1f5c !important;
}

/* ACTIVE (opened) dropdown header = purple */
.cat-parent.active .cat-row {
    background: #7a1f5c !important;
    color: #ffffff !important;
}

/* White text + icon + arrow when active */
.cat-parent.active .cat-row .cat-item {
    color: #ffffff !important;
}

.cat-parent.active .cat-row .cat-icon {
    stroke: #ffffff !important;
}

.cat-parent.active .cat-row i {
    color: #ffffff !important;
}


/* ================= MEDIA QUERIES ================= */
@media (max-width: 1200px) {
    .navbar {
        padding: 12px 40px;
    }

    .nav-menu {
        gap: 25px;
    }

    .nav-icons {
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 20px;
    }

    .nav-menu {
        justify-content: flex-start;
        gap: 15px;
    }

    .nav-icons {
        justify-content: flex-start;
        margin-top: 8px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .nav-left {
        gap: 12px;
    }

    .category-btn {
        gap: 5px;
    }

    .category-text {
        font-size: 13px;
    }

    .nav-menu {
        gap: 10px;
        flex-wrap: wrap;
        font-size: 14px;
    }

    .nav-icons {
        gap: 12px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo {
        height: 35px;
    }

    .nav-menu {
        gap: 8px;
        font-size: 13px;
    }

    .nav-icons {
        gap: 10px;
        font-size: 14px;
    }

    .category-sidebar {
        width: 280px;
    }
}

/* ===== FIX ANCHOR STYLE INSIDE CATEGORY LIST ===== */

.cat-sublist li a {
    text-decoration: none;
    color: inherit;          /* inherit purple color */
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    display: block;          /* clickable full row */
}

/* Prevent blue / purple visited links */
.cat-sublist li a:visited {
    color: inherit;
}

/* Optional hover effect (same as text) */
.cat-sublist li a:hover {
    color: #7a1f5c;
}
.cat-sublist li:hover a {
    font-weight: 500;
}


/* ================= HAMBURGER ================= */

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #f2c97d;
    border-radius: 2px;
    transition: 0.3s;
}

/* ================= MOBILE NAV ================= */

.mobile-nav {
    display: none;
    background: #6f2c6b;
    width: 100%;
    padding: 15px 20px;
    animation: slideDown 0.4s ease;
}

.mobile-nav.active {
    display: block;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.mobile-menu li {
    padding: 10px 0;
    color: #fff;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.mobile-menu .active {
    color: #f2c97d;
}

.mobile-icons {
    display: flex;
    gap: 18px;
    font-size: 18px;
    color: #fff;
}

/* ================= ANIMATION ================= */

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    /* hide desktop menu */
    .nav-menu,
    .nav-icons {
        display: none;
    }

    /* show hamburger */
    .hamburger {
        display: flex;
    }

    /* navbar layout fix */
    .navbar {
        flex-direction: row;
        align-items: center;
    }
}

/* ===== NAV MENU HOVER ===== */

.nav-menu li {
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f2c97d;
    transition: width 0.35s ease;
}

.nav-menu li:hover {
    color: #f2c97d;
}

.nav-menu li:hover::after {
    width: 100%;
}

/* ===== NAV ICON HOVER ===== */

.nav-icons i {
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-icons i:hover {
    color: #f2c97d;
    transform: translateY(-2px);
}
.mobile-menu li {
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu li:hover {
    color: #f2c97d;
    padding-left: 6px;
}
.mobile-icons i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-icons i:hover {
    color: #f2c97d;
    transform: scale(1.1);
}

/* ===== NAV ACTIVE + HOVER ===== */

.nav-menu li {
    position: relative;
    cursor: pointer;
    color: #ffffff;
    transition: color 0.3s ease;
}

/* underline base */
.nav-menu li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f2c97d;
    transition: width 0.35s ease;
}

/* hover */
.nav-menu li:hover {
    color: #f2c97d;
}

.nav-menu li:hover::after {
    width: 100%;
}

/* active (Home) */
.nav-menu li.active {
    color: #f2c97d;
    font-weight: 500;
}

.nav-menu li.active::after {
    width: 100%;
}

/* ================= Hero Section  ================= */
.hero {
    position: relative;
    height: 88vh;
    background: url("../images/hero.png") center/cover no-repeat;
    overflow: hidden;
}

/* Soft cinematic overlay animation */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.25),
        rgba(0,0,0,0.55)
    );
    animation: overlayGlow 8s ease-in-out infinite;
}

/* Content */
.hero-content {
    position: relative;
    max-width: 620px;
    padding: 140px 60px;
    animation: heroFadeUp 1.4s ease forwards;
}

/* Subtitle */
.hero-sub {
    font-size: 18px;
    color: #f2c97d;
    letter-spacing: 1px;
    display: inline-block;
    opacity: 0;
    animation: slideReveal 1s ease forwards;
    animation-delay: 0.2s;
}

/* Heading */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    margin: 18px 0;
    line-height: 1.2;
    color: #fff;
}

/* Line one */
.hero-line-one {
    display: block;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(40px);
    animation: textReveal 1s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: 0.5s;
}

/* Line two */
.hero-line-two {
    display: block;
    color: #f2c97d;
    opacity: 0;
    transform: translateY(40px);
    animation: textReveal 1s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: 0.75s;
}

/* Paragraph */
.hero p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0;
    max-width: 520px;
    color: #fff;
    animation: fadeSoft 1s ease forwards;
    animation-delay: 1.1s;
}

/* Buttons */
.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 18px;
    opacity: 0;
    animation: fadeSoft 1s ease forwards;
    animation-delay: 1.4s;
}

/* Base Button */
.btn {
    position: relative;
    padding: 13px 34px;
    border-radius: 14px;
    font-size: 15px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.4s ease;
    transform-style: preserve-3d;
}

.btn span {
    position: relative;
    z-index: 2;
}

/* PRIMARY BUTTON */
.btn.primary {
    background: linear-gradient(135deg, #6f2c6b, #9b4b95);
    color: #fff;
    box-shadow: 0 15px 35px rgba(111,44,107,0.35);
}

.btn.primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transform: translateX(-120%);
    transition: 0.7s ease;
}

.btn.primary:hover::before {
    transform: translateX(120%);
}

.btn.primary:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 25px 55px rgba(242,201,125,0.45);
}

/* OUTLINE BUTTON */
.btn.outline {
    background: transparent;
    color: #f2c97d;
    border: 2px solid rgba(242,201,125,0.6);
}

.btn.outline::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(
        120deg,
        transparent,
        #f2c97d,
        transparent
    );
    opacity: 0;
    transition: 0.6s ease;
}

.btn.outline:hover::before {
    opacity: 1;
}

.btn.outline:hover {
    color: #fff;
    background: rgba(242,201,125,0.08);
    transform: translateY(-5px);
}

/* ================= ANIMATIONS ================= */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideReveal {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes textReveal {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSoft {
    to { opacity: 1; }
}

@keyframes overlayGlow {
    0%,100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ================================================= */
/* =============== RESPONSIVE ONLY ================= */
/* ================================================= */

/* Tablets */
@media (max-width: 992px) {
    .hero-content {
        padding: 110px 40px;
        max-width: 560px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero p {
        font-size: 15px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Mobiles */
@media (max-width: 600px) {
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        padding: 100px 24px 80px;
        max-width: 100%;
    }

    .hero-sub {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.25;
    }

    .hero-line-one,
    .hero-line-two {
        white-space: normal;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 13px;
    }
}

/* ================= Featured Section ================= */
.featured-section {
    padding: 80px 60px;
    text-align: center;
    background: #fffaf7;
    overflow: hidden;
}

/* Headings with smooth entrance (VISIBLE always) */
.section-subtitle {
    color: #c79a3d;
    font-size: 16px;
    letter-spacing: 0.5px;
    animation: fadeUp 1s ease forwards;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #6f2c6b;
    margin: 10px 0;
    animation: fadeUp 1.2s ease forwards;
}

.section-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 50px;
    animation: fadeUp 1.4s ease forwards;
}

/* Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 430px);
    gap: 35px;
    justify-content: center;
}

/* Card */
.collection-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 560px;
    transform: translateY(40px);
    opacity: 0;
    animation: cardReveal 1.2s ease forwards;
}

/* stagger effect */
.collection-card:nth-child(1) { animation-delay: 0.2s; }
.collection-card:nth-child(2) { animation-delay: 0.4s; }
.collection-card:nth-child(3) { animation-delay: 0.6s; }

/* Image */
.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

/* Overlay (text ALWAYS visible) */
.card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    text-align: left;
    transition: background 0.6s ease;
}

/* Text */
.card-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 6px;
}

.card-overlay p {
    font-size: 14px;
    color: #eeeeee;
    margin-bottom: 10px;
}

.card-overlay a {
    font-size: 14px;
    color: #f2c97d;
    text-decoration: none;
    position: relative;
}

/* underline animation */
.card-overlay a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #f2c97d;
    transition: width 0.4s ease;
}

/* ================= HOVER EFFECTS ================= */
.collection-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 45px 90px rgba(111,44,107,0.25);
}

.collection-card:hover img {
    transform: scale(1.14) rotate(0.5deg);
}

.collection-card:hover .card-overlay a::after {
    left: 120%;
}
/* GOLD SWEEP BUTTON EFFECT */
.card-overlay a::after {
    content: '';
    position: absolute;
    left: -120%;
    top: 0;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,215,130,0.9),
        transparent
    );
    transition: left 0.7s ease;
}
.card-overlay a {
    font-size: 14px;
    font-weight: 500;
    color: #f2c97d;
    text-decoration: none;
    position: relative;
    width: fit-content;
    overflow: hidden;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-card {
        height: 520px;
    }
}

/* Mobiles */
@media (max-width: 640px) {
    .featured-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-desc {
        font-size: 14px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .collection-card {
        height: 460px;
    }

    .card-overlay h3 {
        font-size: 18px;
    }
}

/* ================= Best Sellers Section ================= */
/*.best-sellers-section {*/
/*    padding: 80px 60px;*/
/*    background: #f4efea;*/
/*}*/

/* ---------- Heading Animation ---------- */
/*.section-subtitle {*/
/*    display: inline-block;*/
/*    animation: fadeSlide 0.8s ease forwards;*/
/*}*/

/*.section-title {*/
/*    animation: fadeSlide 1s ease forwards;*/
/*}*/

/*@keyframes fadeSlide {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(25px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/*.best-seller-header {*/
/*    max-width: 1350px;*/
/*    margin: auto;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    margin-bottom: 40px;*/
/*}*/

/*.view-link {*/
/*    color: #c79a3d;*/
/*    font-size: 18px;*/
/*    text-decoration: none;*/
/*    transition: transform 0.3s ease;*/
/*}*/

/*.view-link:hover {*/
/*    transform: translateX(6px);*/
/*}*/

/* ---------- Product Grid ---------- */
/*.product-grid {*/
/*    max-width: 1450px;*/
/*    margin: auto;*/
/*    display: grid;*/
/*    grid-template-columns: repeat(4, 1fr);*/
/*    gap: 25px;*/
/*}*/

/* ---------- Product Card ---------- */
/*.product-card {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    border-radius: 18px;*/
/*    animation: cardFade 0.9s ease forwards;*/
/*}*/

/*@keyframes cardFade {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(30px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/* ---------- Image Area ---------- */
/*.product-img {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.product-img::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: rgba(0,0,0,0.18);*/
/*    opacity: 0;*/
/*    transition: opacity 0.4s ease;*/
/*    z-index: 1;*/
/*}*/

/*.product-img img {*/
/*    width: 100%;*/
/*    height: 330px;*/
/*    object-fit: cover;*/
/*    display: block;*/
/*    border-radius: 18px 18px 0 0;*/
/*    transition: transform 0.6s ease;*/
/*}*/

/* ---------- Hover Effects ---------- */
/*.product-card:hover img {*/
/*    transform: scale(1.12);*/
/*}*/

/*.product-card:hover .product-img::after {*/
/*    opacity: 1;*/
/*}*/

/* ---------- Hover Icons ---------- */
/*.hover-actions {*/
/*    position: absolute;*/
/*    top: 14px;*/
/*    right: 14px;*/
/*    display: flex;*/
/*    gap: 10px;*/
/*    opacity: 0;*/
/*    transform: translateX(20px);*/
/*    transition: all 0.4s ease;*/
/*    z-index: 2;*/
/*}*/

/*.hover-actions span {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    background: rgba(255,255,255,0.95);*/
/*    border-radius: 50%;*/
/*    display: grid;*/
/*    place-items: center;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.hover-actions i {*/
/*    color: #c79a3d;*/
/*    font-size: 16px;*/
/*}*/

/*.hover-actions span:hover {*/
/*    background: #c79a3d;*/
/*}*/

/*.hover-actions span:hover i {*/
/*    color: #fff;*/
/*}*/

/*.product-card:hover .hover-actions {*/
/*    opacity: 1;*/
/*    transform: translateX(0);*/
/*}*/

/* ---------- Info Box ---------- */
/*.product-info {*/
/*    background: #fff;*/
/*    padding: 16px 14px 18px;*/
/*    margin-top: -18px;*/
/*    border-radius: 0 0 18px 18px;*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/

/* ---------- Offer Badge ---------- */
/*.offer-badge {*/
/*    position: absolute;*/
/*    top: 12px;*/
/*    left: 12px;*/
/*    background: #FCD493;*/
/*    color: #000;*/
/*    font-size: 11px;*/
/*    padding: 4px 8px;*/
/*    border-radius: 8px;*/
/*    z-index: 3;*/
/*}*/

/* ---------- Text ---------- */
/*.product-info small {*/
/*    color: #999;*/
/*    font-size: 14px;*/
/*}*/

/*.product-info h4 {*/
/*    font-size: 16px;*/
/*    margin: 6px 0;*/
/*    color: #333;*/
/*    font-weight: 500;*/
/*}*/

/*.price {*/
/*    color: #a9782a;*/
/*    font-weight: 600;*/
/*    font-size: 16px;*/
/*}*/

/*.price span {*/
/*    text-decoration: line-through;*/
/*    color: #999;*/
/*    font-weight: 400;*/
/*    font-size: 14px;*/
/*    margin-left: 6px;*/
/*}*/

/*.rating {*/
/*    font-size: 12px;*/
/*    color: #c79a3d;*/
/*}*/

/*.rating span {*/
/*    color: #999;*/
/*}*/

/* ---------- Responsive ---------- */
/*@media (max-width: 1200px) {*/
/*    .product-grid {*/
/*        grid-template-columns: repeat(3, 1fr);*/
/*    }*/
/*}*/

/*@media (max-width: 900px) {*/
/*    .product-grid {*/
/*        grid-template-columns: repeat(2, 1fr);*/
/*    }*/
/*}*/

/*@media (max-width: 600px) {*/
/*    .best-sellers-section {*/
/*        padding: 60px 20px;*/
/*    }*/

/*    .product-grid {*/
/*        grid-template-columns: 1fr;*/
/*    }*/

/*    .product-img img {*/
/*        height: 280px;*/
/*    }*/
/*}*/


/* ================= Best Sellers Section ================= */
.best-sellers-section {
    padding: 80px 60px;
    background: #f4efea;
}

/* ---------- Heading Animation ---------- */
.section-subtitle {
    display: inline-block;
    animation: fadeSlide 0.8s ease forwards;
}

.section-title {
    animation: fadeSlide 1s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.best-seller-header {
    max-width: 1350px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-link {
    color: #c79a3d;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.view-link:hover {
    transform: translateX(6px);
}

/* ---------- Product Grid ---------- */
.product-grid {
    max-width: 1450px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ---------- Product Card ---------- */
.product-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    animation: cardFade 0.9s ease forwards;
}

@keyframes cardFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================================== */
/* ========== UPDATED IMAGE AREA LIKE LUX DESIGN ======= */
/* ===================================================== */

.product-img {
    position: relative;
    padding: 20px;
    background-image: url("/images/bg-img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 18px 18px 0 0;
    overflow: hidden;
}

/* Dark Overlay */
.product-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.18);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Product Image */
.product-img img {
    width: 100%;
    height: 330px;
    /* object-fit: contain;    */
    display: block;
    background: transparent;
    border-radius: 15px;
    transition: transform 0.6s ease;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

/* Hover Zoom */
.product-card:hover .product-img img {
    transform: scale(1.08);
}

/* Show Overlay */
.product-card:hover .product-img::after {
    opacity: 1;
}

/* ---------- Hover Icons ---------- */
.hover-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    z-index: 3;
}

.hover-actions span {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hover-actions i {
    color: #c79a3d;
    font-size: 16px;
}

.hover-actions span:hover {
    background: #c79a3d;
}

.hover-actions span:hover i {
    color: #fff;
}

/* Slide in on Hover */
.product-card:hover .hover-actions {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- Offer Badge ---------- */
.offer-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FCD493;
    color: #000;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 8px;
    z-index: 4;
}

/* ---------- Info Box ---------- */
.product-info {
    background: #fff;
    padding: 16px 14px 18px;
    margin-top: -18px;
    border-radius: 0 0 18px 18px;
    position: relative;
    z-index: 5;
}

/* ---------- Text ---------- */
.product-info small {
    color: #999;
    font-size: 14px;
}

.product-info h4 {
    font-size: 16px;
    margin: 6px 0;
    color: #333;
    font-weight: 500;
}

.price {
    color: #a9782a;
    font-weight: 600;
    font-size: 16px;
}

.price span {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    font-size: 14px;
    margin-left: 6px;
}

.rating {
    font-size: 12px;
    color: #c79a3d;
}

.rating span {
    color: #999;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .best-sellers-section {
        padding: 60px 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-img img {
        height: 280px;
    }
}


/* ================= Promise Section ================= */
.promise-section {
    padding: 80px 60px;
    text-align: center;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

/* ================= Headings ================= */
.section-subtitle {
    font-size: 27px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #c79a3d;
    display: block;
    margin-bottom: 10px;
    animation: fadeSlideDown 0.9s ease forwards;
}

.section-title {
    font-size: 45px;
    font-weight: 600;
    color: #6f2c6b;
    margin-bottom: 12px;
    animation: fadeSlideUp 1s ease forwards;
}

.section-desc {
    font-size: 14px;
    color: #000;
    line-height: 1.7;
    animation: fadeIn 1.2s ease forwards;
}

/* ================= Grid ================= */
.promise-grid {
    max-width: 1100px;
    margin: 55px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* ================= Card ================= */
.promise-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    position: relative;
    transition: all 0.45s ease;

    /* ENTRY ANIMATION */
    opacity: 0;
    transform: translateY(22px);
    animation: cardReveal 0.45s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Stagger animation */
.promise-card:nth-child(1) { animation-delay: 0.2s; }
.promise-card:nth-child(2) { animation-delay: 0.4s; }
.promise-card:nth-child(3) { animation-delay: 0.6s; }
.promise-card:nth-child(4) { animation-delay: 0.8s; }

/* Soft background hover */
.promise-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #f7f1eb, #ffffff);
    opacity: 0;
    transition: 0.45s ease;
    z-index: -1;
}

.promise-card:hover::after {
    opacity: 1;
}

/* ================= Icon ================= */
.promise-icon {
    width: 120px;
    height: 120px;
    background: #f7f1eb;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.45s ease;

    /* Icon entry */
    transform: scale(0.85);
    animation: iconPop 0.8s ease forwards;
    animation-delay: inherit;
}

.promise-icon svg {
    width: 105px;
    height: 52px;
    fill: none;
    stroke: #c79a3d;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.45s ease;
}

/* ================= Text ================= */
.promise-card h4 {
    font-size: 20px;
    font-weight: 500;
    color: #6f2c6b;
    margin-bottom: 8px;
    transition: color 0.4s ease;
}

.promise-card p {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    max-width: 230px;
    margin: auto;
}

/* ================= Hover Effects ================= */
.promise-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.08);
}

.promise-card:hover .promise-icon {
    background: #6f2c6b;
    transform: scale(1.08) rotate(4deg);
}

.promise-card:hover svg {
    stroke: #ffffff;
}

.promise-card:hover h4 {
    color: #c79a3d;
}

/* ================= Animations ================= */
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconPop {
    to {
        transform: scale(1);
    }
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .promise-section {
        padding: 60px 20px;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 22px;
    }
}

/* ================= LUX PROMISE ================= */
.lux-promise-wrap {
    background: #f6f0ec;
    padding: 80px 20px;
    overflow: hidden;
}

.lux-promise-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE */
.lux-promise-media {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    flex-shrink: 0;
}

.lux-promise-media img {
    width: 625px;
    height: 485px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 1.1s cubic-bezier(0.19, 1, 0.22, 1),
                filter 0.8s ease;
}

.lux-promise-media:hover img {
    transform: scale(1.12) rotate(0.6deg);
    filter: saturate(1.05) contrast(1.05);
}

.lux-promise-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: radial-gradient(
        circle at center,
        rgba(212,162,79,0.25),
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.8s ease;
}

.lux-promise-media:hover::after {
    opacity: 1;
}

.lux-offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f3d48b;
    color: #6f2c6b;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 600;
}

/* CONTENT */
.lux-promise-content {
    max-width: 520px;
}

.lux-promise-sub {
    font-size: 30px;
    color: #d4a24f;
}

.lux-promise-title {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    color: #6f2c6b;
    margin: 10px 0 15px;
}

.lux-promise-desc {
    color: #0E4039;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 18px;
}

.lux-promise-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.lux-promise-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #0E4039;
}

.lux-promise-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #d4a24f;
    font-size: 12px;
}

/* BUTTON */
.lux-promise-btn {
    position: relative;
    display: inline-block;
    background: #6f2c6b;
    color: #fff;
    padding: 13px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    overflow: hidden;
}

.lux-promise-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
}

.lux-promise-btn:hover::after {
    left: 100%;
}

/* ================= ANIMATION ================= */
.lux-animate {
    animation: luxFadeUp 1.2s ease forwards;
}

@keyframes luxFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE FIXES ================= */

/* TABLET */
@media (max-width: 1024px) {
    .lux-promise-inner {
        gap: 40px;
    }

    .lux-promise-media img {
        width: 480px;
        height: auto;
    }

    .lux-promise-title {
        font-size: 38px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .lux-promise-inner {
        flex-direction: column;
        text-align: center;
    }

    .lux-promise-media {
        width: 100%;
    }

    .lux-promise-media img {
        width: 100%;
        height: auto;
    }

    .lux-promise-content {
        max-width: 100%;
        margin-top: 30px;
    }

    .lux-promise-sub {
        font-size: 22px;
    }

    .lux-promise-title {
        font-size: 32px;
    }

    .lux-promise-desc {
        font-size: 16px;
    }

    .lux-promise-list li {
        padding-left: 0;
    }

    .lux-promise-list li::before {
        display: none;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .lux-promise-title {
        font-size: 26px;
    }

    .lux-promise-btn {
        width: 100%;
        text-align: center;
    }
}

/* Product ID same design as product page */
.hover-actions .lux-bs-product-id{
  background: rgba(255,255,255,0.95);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #6a2966;
  border: 1px solid #e6d3e6;
  backdrop-filter: blur(4px);

  width:auto;
  height:auto;
  border-radius:8px;
  display:inline-block;
}

/* remove icon circle styling */
.hover-actions .lux-bs-product-id:hover{
  background: rgba(255,255,255,0.95);
  color:#6a2966;
}
/* ================= TESTIMONIALS ================= */
.lux-testimonial-wrap {
    background: #f8f8f2;
    padding: 90px 20px;
    text-align: center;
    overflow: hidden;
}

/* Heading Animation */
.lux-testimonial-sub {
    font-size: 25px;
    color: #d4a24f;
    display: inline-block;
    animation: fadeDown 1s ease forwards;
}

.lux-testimonial-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #6f2c6b;
    margin: 12px 0 45px;
    animation: fadeUp 1.1s ease forwards;
}

/* Grid */
.lux-testimonial-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.lux-testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 40px 28px 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    text-align: left;

    display: flex;
    flex-direction: column;

    animation: cardFade 1s ease forwards;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}


.lux-testimonial-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 30px 60px rgba(111,44,107,0.2);
}

/* Quote */
.lux-quote-icon {
    position: absolute;
    top: 18px;
    left: 18px;
    font-size: 34px;
    color: #dcdcdc;
}

/* Text */
.lux-testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a3a2f;
    margin: 25px 0 18px;

    flex-grow: 1;
}


.lux-stars {
    color: #f3b93f;
    font-size: 18px;
    margin-bottom: 12px;
}

.lux-user {
    display: flex;
    align-items: center;
    gap: 12px;
}


.lux-user img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4a24f;
}

.lux-user strong {
    font-size: 14px;
    color: #000;
}

.lux-user span {
    font-size: 12px;
    color: #777;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .lux-testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .lux-testimonial-title {
        font-size: 30px;
    }

    .lux-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .lux-testimonial-card {
        padding: 32px 22px;
    }
}

/* ================= FOOTER ================= */
.lux-footer {
    background: linear-gradient(135deg, #6a2966, #74306f);
    color: #f3e8d8;
    font-family: 'Poppins', sans-serif;
}

/* ================= NEWSLETTER ================= */
.lux-footer-newsletter {
    text-align: center;
    padding: 70px 20px 55px;
}

.lux-footer-newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #f6d88b;
    margin-bottom: 10px;
}

.lux-footer-newsletter p {
    font-size: 16px;
    margin-bottom: 28px;
    color: #f1e6d6;
}

.lux-newsletter-form {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.lux-newsletter-form input {
    width: 360px;
    padding: 14px 16px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 14px;
    transition: box-shadow 0.3s ease;
}

.lux-newsletter-form input:focus {
    box-shadow: 0 0 0 2px rgba(246, 216, 139, 0.4);
}

.lux-newsletter-form button {
    background: linear-gradient(135deg, #f6d88b, #f2c96b);
    color: #74306f;
    border: none;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lux-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(246, 216, 139, 0.35);
}

/* ================= FOOTER CONTENT ================= */
.lux-footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    padding: 60px 100px;
}

.brand-col {
    margin-right: 40px;
}

/* Headings */
.lux-footer-col h4 {
    font-size: 18px;
    color: #f6d88b;
    margin-bottom: 14px;
    position: relative;
}

/* .lux-footer-col h4::after {
    content: '';
    width: 35px;
    height: 2px;
    background: #f6d88b;
    position: absolute;
    bottom: -6px;
    left: 0;
    transition: width 0.4s ease;
} */

.lux-footer-col:hover h4::after {
    width: 55px;
}

/* Text */
.lux-footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #f1e6d6;
    margin-bottom: 6px;
}

/* Lists */
.lux-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lux-footer-col ul li {
    margin-bottom: 8px;
}

/* 🔥 RICH LINK HOVER */
.lux-footer-col ul li a,
.lux-footer-links a {
    color: #f1e6d6;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    padding-left: 0;
    transition: color 0.35s ease, padding-left 0.35s ease;
}

.lux-footer-col ul li a::before,
.lux-footer-links a::before {
    content: '›';
    position: absolute;
    left: -12px;
    opacity: 0;
    transition: all 0.35s ease;
    color: #f6d88b;
}

.lux-footer-col ul li a:hover,
.lux-footer-links a:hover {
    color: #f6d88b;
    padding-left: 10px;
}

.lux-footer-col ul li a:hover::before,
.lux-footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* ================= FOOTER BOTTOM ================= */
.lux-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.18);
    padding: 22px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .lux-footer-content {
        grid-template-columns: repeat(2, 1fr);
        padding: 50px 60px;
    }
}

@media (max-width: 768px) {
    .lux-footer-newsletter h2 {
        font-size: 32px;
    }

    .lux-newsletter-form input {
        width: 100%;
        max-width: 380px;
    }

    .lux-footer-content {
        grid-template-columns: 1fr;
        padding: 45px 30px;
        text-align: center;
    }

    .lux-footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .lux-footer-bottom {
        padding: 20px 30px;
        text-align: center;
        justify-content: center;
    }
}


/* ================= Necklace Page ================= */



/* ================= LUX BEST SELLERS ================= */
.lux-bs-section {
  padding: 80px 60px;
  background: #f4efea;
}

/* ---------- Header Bar ---------- */
.lux-bs-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Filter Button ---------- */
.lux-bs-filter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #FCD493;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  background: #f4efea;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.lux-bs-filter-btn:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.lux-bs-filter-icon {
  width: 14px;
  height: 14px;
  /* Proper purple #800080 for PNG using filter */
  filter: invert(16%) sepia(100%) saturate(5500%) hue-rotate(300deg) brightness(70%) contrast(90%);
  transition: filter 0.3s ease;
}




/* ---------- Custom Sort Dropdown ---------- */
.lux-bs-sort-btn {
  width: auto;
  min-width: max-content;
  max-width: 100%;

  padding: 6px 26px 6px 12px;
  border: 1px solid #FCD493;
  border-radius: 8px;

  background-color: #fff;
  background-image: url("https://cdn-icons-png.flaticon.com/512/271/271210.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;

  font-size: 13px;
  appearance: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);

  white-space: nowrap;
}
@media (max-width: 480px) {
  .lux-bs-sort-btn {
    min-width: 150px;   /* compact but safe */
    font-size: 12px;
    padding: 6px 24px 6px 10px;
  }
}


.lux-bs-sort-btn:hover {
  border-color: #c79a3d;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.lux-bs-sort-btn:focus {
  outline: none;
  border-color: #c79a3d;
  box-shadow: 0 0 0 2px #c79a3d;
  background-color: #fff;
}

.lux-bs-sort-btn option {
  padding: 10px 12px;
  font-size: 14px;
  color: #333;
  background: #fff; /* only works in some browsers */
}

/* ---------- Content Wrapper ---------- */
.lux-bs-content {
  display: flex;
  gap: 30px;
}

/* ---------- Filters Panel ---------- */
.lux-bs-filters {
  width: 250px;
  max-height: 500px;
  background: #fff0dc;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.lux-bs-filter-option {
  color: #5e2b75;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Hover */
.lux-bs-filter-option:hover {
  background: #fde4a8;
}

.lux-bs-filter-option.active {
  background: #f3c875;
  font-weight: 600;
  color: #3b0a52;
}

.lux-bs-view-all {
  margin-top: 10px;
  padding: 8px 0;
  background: #5e2b75;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
}

.lux-bs-filter-close {
  align-self: flex-end;
  font-size: 20px;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* ---------- Product Grid ---------- */
.lux-bs-product-grid {
  flex: 1; /* take remaining space */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ---------- Product Card ---------- */
.lux-bs-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  animation: luxBsFade 0.9s ease forwards;
}

@keyframes luxBsFade {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Image ---------- */

/* ---------- OLD DESIGN ---------- */
/*.lux-bs-product-img {*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*}*/

/*.lux-bs-product-img img {*/
/*  width: 100%;*/
/*  height: 330px;*/
/*  object-fit: cover;*/
/*  border-radius: 18px 18px 0 0;*/
/*  transition: transform 0.6s ease;*/
/*}*/


/* ---------- NEW DESIGN (CLIENT ASKED)---------- */
.lux-bs-product-img { 
  position: relative;
  padding: 20px;
  background-image: url("/images/bg-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 18px 18px 0 0 !important;   /* 👈 ADD THIS */
  overflow: hidden;               /* 👈 IMPORTANT */
}


.lux-bs-product-img img {
  width: 100%;
  height: 330px;
  /* object-fit: contain;  */
  /* change from cover to contain */
  background: transparent;
  border-radius: 15px !important;
}

/* ---------- Hover Icons ---------- */
.lux-bs-hover-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateX(20px);
  transition: 0.4s;
  z-index: 2;
}

/* ---------- Image Overlay ---------- */
.lux-bs-product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  border-radius: 18px 18px 0 0;
}

.lux-bs-product-card:hover .lux-bs-product-img img {
  transform: scale(1.8);
}

.lux-bs-product-card:hover .lux-bs-product-img::after {
  opacity: 1;
}

.lux-bs-product-id {
  background: rgba(255,255,255,0.95);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #6a2966;
  border: 1px solid #e6d3e6;
  backdrop-filter: blur(4px);
}

.lux-bs-hover-actions i {
  color: #c79a3d;
  font-size: 16px;
}

.lux-bs-hover-actions span:hover {
  background: #c79a3d;
}

.lux-bs-hover-actions span:hover i {
  color: #fff;
}

.lux-bs-product-card:hover .lux-bs-hover-actions {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Info Box ---------- */
.lux-bs-product-info {
  background: #fff;
  padding: 16px 14px 18px;
  margin-top: -18px;
  border-radius: 0 0 18px 18px;
}

.lux-bs-offer-badge {
  color: purple;
  position: absolute;
  top: 12px;
  left: 12px;
  background: #FCD493;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 8px;
  z-index: 3;
}

.lux-bs-product-info small {
  color: #999;
  font-size: 14px;
}

.lux-bs-product-info h4 {
  font-size: 16px;
  margin: 6px 0;
  color: #333;
}

.lux-bs-price {
  color: #a9782a;
  font-weight: 600;
  font-size: 16px;
}

.lux-bs-price span {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-left: 6px;
}

.lux-bs-rating {
  font-size: 12px;
  color: #c79a3d;
}

.lux-bs-rating span {
  color: #999;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .lux-bs-product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .lux-bs-content {
    flex-direction: column;
  }

  /* 🔥 RESTORE OLD SCROLL BEHAVIOR */
  .lux-bs-filters {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 14px 10px;
    border-radius: 10px;

    /* smooth scroll */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  /* Make all filter items, including View all, inline */
  .lux-bs-filter-option,
  .lux-bs-view-all {
    flex-shrink: 0;
    padding: 8px 14px;
    margin: 0;
  }


  .lux-bs-product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .lux-bs-section { padding: 60px 20px; }
  .lux-bs-product-grid { grid-template-columns: 1fr; }
  .lux-bs-product-img img { height: 280px; }

  .lux-bs-filter-btn {
    font-size: 12px;
    padding: 6px 10px;
  }
  .lux-bs-sort-btn {
    font-size: 12px;
    padding: 6px 10px 6px 8px;
  }

  /* View all button adjustments for mobile */
  .lux-bs-view-all {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* Bangle page */

/* Toggle Wrapper */
.lux-bs-toggle {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid #d9a25f;
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  max-width: 100%;
  flex-wrap: nowrap;
}

/* Toggle Buttons */
.lux-bs-toggle-btn {
  border: none;
  background: transparent;
  padding: 6px 22px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  color: #6b4b1f;
  white-space: nowrap;
  transition: all 0.25s ease;
}

/* Active State */
.lux-bs-toggle-btn.active {
  background: linear-gradient(135deg, #f6d69a, #e9b35e);
  color: #4b2e00;
  box-shadow: inset 0 0 0 1px #e0a84f;
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 480px) {
  .lux-bs-toggle {
    padding: 3px;
    gap: 3px;
  }

  .lux-bs-toggle-btn {
    padding: 5px 14px;
    font-size: 12px;
  }
}

/* ---------------- SMALL TABLETS ---------------- */
@media (max-width: 768px) {
  .lux-bs-toggle-btn {
    padding: 6px 18px;
    font-size: 12.5px;
  }
}


.lux-bs-header-bar.no-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.lux-bs-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #6f2c6b; /* royal purple */
  letter-spacing: 0.5px;
}



/* ===== EMPTY STATE (Wishlist / Cart) ===== */
.empty-state {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf6f3;
}

.empty-box {
  text-align: center;
  max-width: 420px;
  padding: 40px 20px;
}

.empty-icon {
  font-size: 40px;
  color: #7a4a6a;
  margin-bottom: 10px;
}

.empty-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: #5b2b45;
  margin-bottom: 10px;
}

.empty-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #8b7a84;
  margin-bottom: 22px;
}

.empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: #7a1f4b;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.empty-btn:hover {
  background: #5e1738;
}


/* ===== WISHLIST PAGE ===== */
.wishlist-page {
  padding: 60px;
  background: #faf6f3;
}

.wishlist-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #5b2b45;
  margin-bottom: 30px;
}

/* GRID */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD (NO WHITE BG) */
.wishlist-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

/* IMAGE */
.wishlist-img {
  position: relative;
  overflow: hidden;
}

.wishlist-img img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

/* REMOVE ICON */
.wishlist-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.wishlist-remove i {
  font-size: 14px;
  color: #7a1f4b;
}

/* INFO (WHITE ONLY HERE) */
.wishlist-info {
  background: #fff;
  padding: 16px 14px 18px;
  margin-top: -18px;
  border-radius: 0 0 18px 18px;
}

.wishlist-info small {
  color: #999;
  font-size: 14px;
}

.wishlist-info h4 {
  font-size: 16px;
  margin: 6px 0;
  color: #333;
}

.wishlist-price {
  color: #a9782a;
  font-weight: 600;
  font-size: 16px;
}

.wishlist-price span {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-left: 6px;
}

/* MOVE TO CART */
.wishlist-move {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: #6b1f4b;
  color: #fff;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.wishlist-move {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* 👈 THIS is the spacing */
}

.wishlist-move:hover {
  background: #531536;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wishlist-page {
    padding: 30px 16px;
  }
}


/* ================= CART PAGE ================= */
.cart-page {
  background: #fbf7f4;
  padding: 60px 80px;
  font-family: 'Poppins', sans-serif;
}

.cart-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* ================= LEFT SIDE ================= */
.cart-left {
  width: 100%;
}

.cart-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 22px;
  color: #2e1a24;
}

/* ---------- CART ITEM ---------- */
.cart-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

/* IMAGE */
.cart-img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 12px;
}

/* INFO */
.cart-info {
  flex: 1;
}

.cart-info small {
  font-size: 11px;
  letter-spacing: 0.8px;
  color: #b38b5d;
  text-transform: uppercase;
}

.cart-info h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 4px 0 8px;
  color: #2e1a24;
}

/* QTY */
.qty-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #eadfda;
  border-radius: 22px;
  padding: 4px 12px;
}

.qty-box button {
  background: none;
  border: none;
  font-size: 16px;
  color: #6b1f4b;
  cursor: pointer;
}

.qty-box span {
  font-size: 14px;
  min-width: 14px;
  text-align: center;
}

/* PRICE + REMOVE */
.cart-price {
  text-align: right;
  font-weight: 600;
  color: #b38b5d;
  font-size: 15px;
}

.cart-price button {
  display: block;
  margin-top: 10px;
  background: none;
  border: none;
  font-size: 18px;
  color: #999;
  cursor: pointer;
}

.cart-price button:hover {
  color: #6b1f4b;
}

/* CONTINUE SHOPPING */
.cart-continue {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: #b38b5d;
  text-decoration: none;
}

/* ================= RIGHT SIDE ================= */
.cart-right {
  background: #fff;
  border-radius: 18px;
  padding: 26px 26px 28px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

.cart-right h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 20px;
  color: #2e1a24;
}

/* SUMMARY ROWS */
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 14px;
  color: #6b5b63;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  font-size: 16px;
  font-weight: 600;
  color: #2e1a24;
}

/* COUPON */
.coupon-box {
  display: flex;
  gap: 10px;
  margin: 22px 0;
}

.coupon-box input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #eadfda;
  font-size: 13px;
}

.coupon-box button {
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #b38b5d;
  color: #b38b5d;
  border-radius: 10px;
  font-size: 13px;
  cursor: pointer;
}

.coupon-box button:hover {
  background: #b38b5d;
  color: #fff;
}

/* CHECKOUT */
.checkout-btn {
  width: 100%;
  padding: 14px;
  background: #6b1f4b;
  color: #fff;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
}

.checkout-btn:hover {
  opacity: 0.95;
}



/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .cart-page {
    padding: 40px 20px;
  }

  .cart-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ================= Contact Us ================= */

/* MAIN SECTION */
.cu-contact-section {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

/* LEFT */
.cu-contact-left {
    width: 35%;
}

.cu-contact-title {
    font-size: 22px;
    margin-bottom: 25px;
    color: #7b2b82;
}

/* INFO CARD */
.cu-info-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cu-info-icon {
    font-size: 20px;
    color: #7b2b82;
    margin-top: 5px;
}

.cu-info-text h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #7b2b82;
}

.cu-info-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* RIGHT */
.cu-contact-right {
    width: 65%;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.cu-form-title {
    font-size: 20px;
    color: #7b2b82;
    margin-bottom: 20px;
}

/* FORM */
.cu-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cu-contact-form input,
.cu-contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #e0cfe3;
    outline: none;
    font-size: 14px;
}

.cu-contact-form textarea {
    height: 120px;
    resize: none;
    margin-bottom: 20px;
}

.cu-contact-form input:focus,
.cu-contact-form textarea:focus {
    border-color: #7b2b82;
}

/* BUTTON */
.cu-submit-btn {
    background: #7b2b82;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.cu-submit-btn:hover {
    background: #612167;
}

/* LOCATION MAP */
.cu-location-section {
    width: 100%;
    margin-top: 40px;
}

.cu-location-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* FIX FOR LONG EMAIL / TEXT OVERFLOW (320px) */
.cu-info-text p {
    word-break: break-word;
    overflow-wrap: break-word;
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .cu-contact-section {
        flex-direction: column;
    }

    .cu-contact-left,
    .cu-contact-right {
        width: 100%;
    }

    .cu-form-row {
        flex-direction: column;
    }
}

/* ================= Single Product Page ================= */
/* ================= Luxury Jewellery Product Page ================= */

.pjsp-product-wrapper {
  max-width: 1200px;
  margin: 70px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 0 20px;
}

/* IMAGE */
/*.pjsp-main-image {*/
/*  aspect-ratio: 1 / 1;*/
/*  border-radius: 14px;*/
/*  overflow: hidden;*/
/*  box-shadow: 0 25px 60px rgba(0,0,0,0.18);*/
/*}*/

/*.pjsp-main-image img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*}*/

/* ================= PRODUCT IMAGE LUXURY STYLE ================= */

.pjsp-main-image {
  aspect-ratio: 1 / 1;
  padding: 25px;   /* space around product image */

  background-image: url("/images/bg-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* Main Image */
.pjsp-main-image img {
  width: 100%;
  height: 100%;
  /* object-fit: contain;   */
   /* IMPORTANT */
  background: transparent;
  border-radius: 14px;
}

/* THUMBNAILS */
.pjsp-thumbnail-row {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.pjsp-thumbnail-row img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  /* opacity: 0.65; */
}

.pjsp-thumb-active {
  opacity: 1;
  outline: 2px solid #d4af37;
}

/* DETAILS */
.pjsp-category {
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #9d7a3e;
}

.pjsp-product-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin: 14px 0;
  color: purple;
}

/* RATING */
.pjsp-rating-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.pjsp-stars {
  color: #d4af37;
}

.pjsp-review {
  color: #7d6b72;
  font-size: 14px;
}

/* PRICE */
.pjsp-price-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.pjsp-current-price {
    font-family:'Times New Roman', Times, serif;
  font-size: 28px;
  font-weight: 600;
  color: #d4af37;
}

.pjsp-old-price {
  text-decoration: line-through;
  color: #9a8b8f;
}

.pjsp-discount-badge {
  background: linear-gradient(
    135deg,
    #b8860b,
    #ffd700,
    #fff1b8,
    #d4af37,
    #a67c00
  );

  color: #5a3a00; /* rich dark brown */
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}


/* DESCRIPTION */
.pjsp-description {
  font-size: 15px;
  line-height: 1.7;
  color: #6e555c;
  margin-bottom: 28px;
}

/* LUXURY PANEL */
.pjsp-luxury-panel {
  background: linear-gradient(180deg, #fffaf2, #fff);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #f0e0c8;
  box-shadow: 0 15px 45px rgba(212,175,55,0.18);
}

.pjsp-luxury-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 24px;
  color: purple;
  position: relative;
}

.pjsp-luxury-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, #d4af37, transparent);
  margin-top: 10px;
}

/* GRID */
.pjsp-luxury-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.pjsp-luxury-item span {
  font-size: 13px;
  color: #8b7a62;
}

.pjsp-luxury-item strong {
  display: block;
  font-size: 15px;
  margin-top: 6px;
  color: purple;
}

/* AUTH BADGE */
.pjsp-auth-badge {
  margin-top: 26px;
  text-align: center;
  font-size: 13px;
  color: #6f5a30;
  background: rgba(212,175,55,0.12);
  padding: 12px;
  border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pjsp-product-wrapper {
    grid-template-columns: 1fr;
  }

  .pjsp-product-title {
    font-size: 30px;
  }

  .pjsp-luxury-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= About Page ================= */
.pj-about-wrapper {
  width: 100%;
  overflow-x: hidden;
}

/* COMMON */
.pj-about-section {
  padding: 80px 8%;
  background: #fcfcf4;
}

.pj-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.pj-about-image img {
  width: 100%;
  border-radius: 12px;
}

.pj-about-content h3 {
  font-size: 13px;
  letter-spacing: 2px;
  color: #9b6b6b;
  margin-bottom: 10px;
}

.pj-about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #6f2c6b;
}

.pj-about-content h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, transparent);
}

.pj-about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

/* PROMISE */
.pj-promise-section {
  padding: 90px 8%;
  text-align: center;
  background: #fcfcf4;
}

.pj-promise-section h3 {
  font-size: 13px;
  letter-spacing: 2px;
  color: #c79a3d;
}

.pj-promise-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin: 15px 0 50px;
  color: #6f2c6b;
}

.pj-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.pj-promise-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.pj-promise-card span {
  font-size: 34px;
}

.pj-promise-card h4 {
  margin: 15px 0 10px;
  font-size: 18px;
  color: #2b2b2b;
}

.pj-promise-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* COUNTERS */
.pj-counter-section {
  background: #6f2c6b;
  padding: 70px 8%;
}

.pj-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.pj-counter-box h2 {
  font-size: 34px;
  color: #f6d88b;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 6px;
}

.pj-counter-box p {
  font-size: 15px;
  color: #f1d6de;
}

/* ART */
.pj-art-section {
  padding: 90px 8%;
  text-align: center;
  background: #fcfcf4;
}

.pj-art-section h3 {
  font-size: 13px;
  letter-spacing: 2px;
  color: #c79a3d;
  margin-bottom: 10px;
}

.pj-art-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #6f2c6b;
}

.pj-art-section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 12px auto 0;  /* ✅ auto centers underline */
  background: linear-gradient(90deg, #d4af37, transparent);
}


.pj-art-section p {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.pj-art-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.pj-art-step h4 {
  font-size: 28px;
  color: rgba(199, 154, 61, 0.6); /* 0.6 = 60% opacity */
}


.pj-art-step h5 {
  font-size: 18px;
  margin: 10px 0;
  color: #6f2c6b;
}

.pj-art-step p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pj-about-grid {
    grid-template-columns: 1fr;
  }

  .pj-promise-grid,
  .pj-counter-grid,
  .pj-art-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .pj-promise-grid,
  .pj-counter-grid,
  .pj-art-steps {
    grid-template-columns: 1fr;
  }

  .pj-about-section,
  .pj-promise-section,
  .pj-art-section {
    padding: 60px 6%;
  }

  .pj-about-content h2,
  .pj-promise-section h2,
  .pj-art-section h2 {
    font-size: 28px;
  }

  .pj-about-content p,
  .pj-art-section p {
    font-size: 15px;
  }
}

/* ================= GROUP OF COMPANIES ================= */
.pj-group-section {
  padding: 60px 8% 100px; 
  background: #fcfcf4;
  text-align: center;
  position: relative;
}

/* HEADER */
.pj-group-header h3 {
  font-size: 12px;
  letter-spacing: 3px;
  color: #c9a24d;
  font-weight: 600;
}

.pj-group-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin: 12px 0 20px;
  color: #6f2c6b;
}

/* GOLD DIVIDER */
.pj-gold-divider {
  display: block;
  width: 90px;
  height: 3px;
  margin: 0 auto 70px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 10px;
}

/* GRID */
.pj-group-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: stretch;
}

/* CARD */
.pj-group-card {
  background: linear-gradient(180deg, #ffffff, #fffaf0);
  padding: 55px 45px;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.10),
    inset 0 0 25px rgba(212,175,55,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* GOLD SHEEN */
.pj-group-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(212,175,55,0.15),
    transparent 70%
  );
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pj-group-card:hover::before {
  opacity: 1;
}

.pj-group-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.18),
    inset 0 0 35px rgba(212,175,55,0.12);
}

/* LOGO */
.pj-logo-wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: radial-gradient(circle, #fffdf7, #f6edd8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 18px rgba(212,175,55,0.25);
}

.pj-logo-wrap img {
  max-width: 95px;
}

/* TITLE */
.pj-group-card h4 {
  font-size: 24px;
  margin-bottom: 18px;
  color: #6f2c6b;
  font-family: 'Playfair Display', serif;
}

/* TEXT */
.pj-group-card p {
  font-size: 15.8px;
  line-height: 1.85;
  color: #555;
  max-width: 420px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pj-group-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .pj-group-header h2 {
    font-size: 32px;
  }

  .pj-group-card {
    padding: 45px 30px;
  }
}
/* ABOUT PAGE MAIN HEADING */
.pj-about-page-title {
  background-color: #fcfcf4;
  padding: 60px 8% 0;
  text-align: center;   /* ✅ centers the heading */
}

.pj-about-page-title h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: #6f2c6b;
  margin: 0;
  position: relative;
}

/* subtle gold underline – centered */
.pj-about-page-title h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 12px auto 0;  /* ✅ auto centers underline */
  background: linear-gradient(90deg, #d4af37, transparent);
}

.product-meta {
    margin-top: 5px;
    display: block;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.8;
    color: #6c2b68!important; /* data color (brand & size value) */
}

.product-meta-label {
    color: #000; /* label color: Brand / Size */
}

.product-cat-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product-subcat-name {
    color: rgb(199, 154, 61);
    font-size: 12px;
    white-space: nowrap;
}

/* ================= Mail Pop Up ================= */
.cu-alert-success {
    background: #e6fffa;
    color: #065f46;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid #99f6e4;
}

.cu-alert-error {
    background: #ffe6e6;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid #fecaca;
}

.pjsp-product-title a {
    margin-left: 10px;
    background-color: #25D366;
    color: #fff !important;
    font-size: 15px !important;
    text-decoration: none;
    border-radius: 50%;
    
    width: 32px;
    height: 32px;
    line-height: 32px;   /* centers single icon/text vertically */
    text-align: center;  /* centers horizontally */
    
    display: inline-block;
    
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.pjsp-product-title a {
    vertical-align: middle;
    position: relative;
    top: -2px;   /* adjust -1px / -2px / -3px if needed */
}



.pjsp-product-title a:hover {
    transform: scale(1.1);
}

/* ================= Floating Contact Buttons ================= */

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Button Style */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Image inside */
.float-btn img {
    width: 35px;
    height: 35px;
}

/* WhatsApp Color */
.whatsapp {
    background: #ffffff;
}

/* Call Color */
.call {
    background: #ffffff; /* your brand purple */
}

/* Hover Effect */
.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Optional: Slight Pulse Animation for WhatsApp */
.whatsapp {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 768px) {
    .float-btn {
        width: 50px;
        height: 50px;
    }
}

/* Scroll To Top Button */
.scroll-top {
    background-color: #fff;
    color: purple;
    font-size: 22px;
    font-weight: bold;
    border: none;
    cursor: pointer;

    opacity: 0;              /* Hidden by default */
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Show when active */
.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover */
.scroll-top:hover {
    background-color: #f3e8d8;
    color: #000;
}


