:root {
    /* ===== Brand Colors ===== */
    --primary-color: #335c67;
    --secondary-color: #4b2e39;
    --tertiary-color: #e8d8df;
    --wine-color: #7a4e5c;
    --pink: #e4ccda;

    --accent-gold: #c6a75e;
    --soft-background: #efe6ea;

    /* ===== Text Colors ===== */
    --text-dark: #111111;
    --text-light: #ffffff;
    --text-muted: #6e6e6e;

    /* ===== Button Colors ===== */
    --btn-primary-bg: #000000;
    --btn-primary-text: #ffffff;
    /* --primary-color: #c6a75e; */

    --btn-secondary-bg: #bfa5af;
    --btn-secondary-text: #000000;
    --btn-secondary-hover: #000000;

    /* ===== Border & Divider ===== */
    --border-light: #e5dadf;
    --border-dark: #1a1a1a;

    /* ===== Shadows ===== */
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* ===== Transition ===== */
    --transition-smooth: all 0.3s ease-in-out;

    --card-bg: rgba(255, 255, 255, 0.5);
    --backdrop-blur: blur(12px);
    --shadow-strong: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    --transition: 0.3s ease-in-out;
    --radius-card: 20px;
    --radius-btn: 16px;
    --radius-input: 14px;

    --sidebar-width: 280px;
    --sidebar-collapsed: 80px;
    --header-height: 80px;
    --card-radius: 18px;
    --transition: 0.3s ease-in-out;
    --shadow-sm: 0 8px 20px -6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 12px 30px -10px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-light: rgba(138, 111, 122, 0.15);
    --shadow-card: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 30px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 0.935rem;
    font-style: normal;
}

/* ========================================
   COMPLETE BUTTON CLASSES
   Based on your refined color palette
   ======================================== */

/* ===== BASE BUTTON RESET ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-btn, 16px);
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    background: transparent;
    color: inherit;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== PRIMARY BUTTONS ===== */
.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: 1px solid transparent;
}

.btn-primary:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--text-light, #111111);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft, 0 4px 12px rgba(0, 0, 0, 0.08));
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

/* ===== SECONDARY BUTTONS ===== */
.btn-secondary {
    background: var(--btn-secondary-bg, #bfa5af);
    color: var(--btn-secondary-text, #000000);
    border: 1px solid transparent;
}

.btn-secondary:hover:not(:disabled) {
    background: var(--btn-secondary-hover, #000000);
    color: var(--text-light, #ffffff);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* ===== OUTLINE BUTTONS ===== */
.btn-outline-primary {
    background: transparent;
    color: var(--primary-color, #335c67);
    border: 1.5px solid var(--primary-color, #335c67);
}

.btn-outline-primary:hover:not(:disabled) {
    background: var(--primary-color, #335c67);
    color: var(--text-light, #ffffff);
    transform: translateY(-2px);
}

.btn-outline-secondary {
    background: transparent;
    color: var(--secondary-color, #4b2e39);
    border: 1.5px solid var(--secondary-color, #4b2e39);
}

.btn-outline-secondary:hover:not(:disabled) {
    background: var(--secondary-color, #4b2e39);
    color: var(--text-light, #ffffff);
    transform: translateY(-2px);
}

.btn-outline-wine {
    background: transparent;
    color: var(--wine-color, #7a4e5c);
    border: 1.5px solid var(--wine-color, #7a4e5c);
}

.btn-outline-wine:hover:not(:disabled) {
    background: var(--wine-color, #7a4e5c);
    color: var(--text-light, #ffffff);
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent-gold, #c6a75e);
    border: 1.5px solid var(--accent-gold, #c6a75e);
}

.btn-outline-gold:hover:not(:disabled) {
    background: var(--accent-gold, #c6a75e);
    color: var(--text-dark, #111111);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light, #ffffff);
    border: 1.5px solid var(--text-light, #ffffff);
}

.btn-outline-light:hover:not(:disabled) {
    background: var(--text-light, #ffffff);
    color: var(--text-dark, #111111);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark, #111111);
    border: 1.5px solid var(--text-dark, #111111);
}

.btn-outline-dark:hover:not(:disabled) {
    background: var(--text-dark, #111111);
    color: var(--text-light, #ffffff);
}

/* ===== GHOST / TEXT BUTTONS ===== */
.btn-ghost {
    background: transparent;
    color: var(--text-dark, #111111);
    border: none;
    padding: 8px 16px;
}

.btn-ghost:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color, #335c67);
}

.btn-ghost-primary {
    background: transparent;
    color: var(--primary-color, #335c67);
    border: none;
    padding: 8px 16px;
}

.btn-ghost-primary:hover:not(:disabled) {
    background: rgba(51, 92, 103, 0.1);
    color: var(--primary-color);
}

.btn-ghost-wine {
    background: transparent;
    color: var(--wine-color, #7a4e5c);
    border: none;
    padding: 8px 16px;
}

.btn-ghost-wine:hover:not(:disabled) {
    background: rgba(122, 78, 92, 0.1);
}

/* ===== CTA BUTTON (high emphasis) ===== */
.btn-cta {
    background: linear-gradient(
        135deg,
        var(--primary-color, #335c67),
        var(--secondary-color, #4b2e39)
    );
    color: var(--text-light, #ffffff);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-cta:hover:not(:disabled) {
    background: linear-gradient(
        135deg,
        var(--secondary-color),
        var(--primary-color)
    );
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-cta:active:not(:disabled) {
    transform: translateY(0);
}

/* ===== BUTTON WITH ICON ONLY ===== */
.btn-icon {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon.btn-primary {
    background: var(--btn-primary-bg);
    color: white;
}

.btn-icon.btn-primary:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.btn-icon.btn-outline {
    background: transparent;
    border: 1.5px solid currentColor;
}

/* ===== SIZE VARIANTS ===== */
.btn-sm {
    padding: 8px 20px;
    font-size: 0.75rem;
    border-radius: calc(var(--radius-btn, 16px) - 2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: calc(var(--radius-btn, 16px) + 4px);
}

.btn-xl {
    padding: 18px 44px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: calc(var(--radius-btn, 16px) + 8px);
}

/* ===== FULL WIDTH BUTTON ===== */
.btn-block {
    width: 100%;
    display: flex;
}

/* ===== ROUNDED PILL BUTTONS ===== */
.btn-pill {
    border-radius: 100px;
}

/* ===== WINE COLOR THEME BUTTONS ===== */
.btn-wine {
    background: var(--wine-color, #7a4e5c);
    color: var(--text-light, #ffffff);
    border: none;
}

.btn-wine:hover:not(:disabled) {
    background: var(--secondary-color, #4b2e39);
    transform: translateY(-2px);
}

/* ===== GOLD / ACCENT BUTTONS ===== */
.btn-gold {
    background: var(--accent-gold, #c6a75e);
    color: var(--text-dark, #111111);
    border: none;
}

.btn-gold:hover:not(:disabled) {
    background: #b8923a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* ===== PINK / TERTIARY BUTTON ===== */
.btn-pink {
    background: var(--pink, #e4ccda);
    color: var(--secondary-color, #4b2e39);
    border: none;
}

.btn-pink:hover:not(:disabled) {
    background: var(--tertiary-color, #e8d8df);
    color: var(--wine-color, #7a4e5c);
}

/* ===== SOFT BACKGROUND BUTTON ===== */
.btn-soft {
    background: var(--soft-background, #efe6ea);
    color: var(--secondary-color, #4b2e39);
    border: none;
}

.btn-soft:hover:not(:disabled) {
    background: var(--tertiary-color, #e8d8df);
    transform: translateY(-1px);
}

/* ===== BLUR / GLASS BUTTON (modern) ===== */
.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-light, #ffffff);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    transform: translateY(-2px);
}

/* ===== DARK BUTTON ===== */
.btn-dark {
    background: var(--text-dark, #111111);
    color: var(--text-light, #ffffff);
    border: none;
}

.btn-dark:hover:not(:disabled) {
    background: var(--primary-color, #c6a75e);
    color: var(--text-dark);
}

/* ===== LIGHT BUTTON ===== */
.btn-light {
    background: var(--text-light, #ffffff);
    color: var(--text-dark, #111111);
    border: 1px solid var(--border-light, #e5dadf);
}

.btn-light:hover:not(:disabled) {
    background: var(--soft-background, #efe6ea);
    border-color: transparent;
}

/* ===== LINK BUTTON (looks like anchor) ===== */
.btn-link {
    background: transparent;
    color: var(--primary-color, #335c67);
    padding: 4px 8px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.btn-link:hover:not(:disabled) {
    color: var(--accent-gold, #c6a75e);
    background: transparent;
}

/* ===== DANGER / WARNING (optional utility) ===== */
.btn-danger {
    background: #c0392b;
    color: white;
}

.btn-danger:hover:not(:disabled) {
    background: #a93226;
    transform: translateY(-1px);
}

/* ===== DISABLED STATE ===== */
.btn:disabled,
.btn.disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== LOADING STATE ===== */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 12px 28px;
    }

    .btn-xl {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* Navbar Styling */
.navbar-luxury {
    background: var(--pink);
    transition: all 0.4s ease;
}

.navbar-luxury .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem;
    position: relative;
    transition: 0.3s ease;
}

.navbar-luxury .nav-link i {
    font-size: 1.5rem;
}

/* Gold underline hover effect */
.navbar-luxury .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: var(--accent-gold);
    transition: 0.3s ease;
}

.navbar-luxury .nav-link:hover {
    color: var(--accent-gold) !important;
}

.navbar-luxury .nav-link:hover::after {
    width: 100%;
}

/* Brand Styling */
.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff !important;
}

.navbar-brand span {
    color: var(--accent-gold);
}

/* CTA Button */
.btn-luxury {
    background: var(--accent-gold);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 20px;
    transition: 0.3s ease;
}

.btn-luxury:hover {
    background: #fff;
    color: #000;
}

/* Mobile Toggle Icon */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.logo {
    height: 120px;
}

.footer-logo {
    height: 150px;
}

.bg-soft {
    background: var(--soft-background) !important;
    color: var(--secondary-color) !important;
}

.bg-secondary {
    background: var(--secondary-color) !important;
}

.bg-pink {
    background: var(--pink) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}
/* Soft Minimalism Login Form - Complete & Self-Contained */

/* Popup Background */
.raya-popup {
    border-radius: 20px !important;
    background: #efe6ea !important; /* soft background */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    padding: 2rem !important;
}

/* Title */
.raya-title {
    font-family: "Playfair Display", serif !important;
    color: #4b2e39 !important; /* secondary color */
    font-size: 24px !important;
    letter-spacing: 1px;
}

/* Confirm Button */
.raya-confirm-btn {
    background: var(--secondary-color) !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 10px 30px !important;
    transition: all 0.3s ease-in-out !important;
    border: 0;
}

.raya-confirm-btn:hover {
    background: #c6a75e !important; /* gold */
    color: #111 !important;
}

.raya-login-btn {
    background: var(--primary-color) !important;
    color: #000 !important;
    border-radius: 30px !important;
    padding: 10px 30px !important;
    transition: all 0.3s ease-in-out !important;
    border: 0;
    margin-left: 0.5rem;
}

.raya-login-btn:hover {
    background: #c6a75e !important; /* gold */
    color: #111 !important;
}
.list-btn .btn {
    display: flex;
    align-items: center;
}
/* Grid System - Complete 1-12 */
.form-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

/* Responsive breakpoints */

.col-span-1 {
    grid-column: span 1;
}
.col-span-2 {
    grid-column: span 2;
}
.col-span-3 {
    grid-column: span 3;
}
.col-span-4 {
    grid-column: span 4;
}
.col-span-5 {
    grid-column: span 5;
}
.col-span-6 {
    grid-column: span 6;
}
.col-span-7 {
    grid-column: span 7;
}
.col-span-8 {
    grid-column: span 8;
}
.col-span-9 {
    grid-column: span 9;
}
.col-span-10 {
    grid-column: span 10;
}
.col-span-11 {
    grid-column: span 11;
}
.col-span-12 {
    grid-column: span 12;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .col-span-5,
    .col-span-6,
    .col-span-7,
    .col-span-8,
    .col-span-9,
    .col-span-10,
    .col-span-11 {
        grid-column: span 12;
    }
    .col-span-1,
    .col-span-2,
    .col-span-3,
    .col-span-4 {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .col-span-1,
    .col-span-2,
    .col-span-3,
    .col-span-4,
    .col-span-5,
    .col-span-6,
    .col-span-7,
    .col-span-8,
    .col-span-9,
    .col-span-10,
    .col-span-11,
    .col-span-12 {
        grid-column: span 12;
    }
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 45px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 8px 12px;
    display: flex;
    align-items: center;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 100%;
    right: 10px;
}

.select2-dropdown {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.select2-results__option {
    padding: 10px 15px;
}

.select2-results__option--highlighted {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: #fff;
}
input[readonly],
textarea[readonly] {
    background: #ececec;
    color: #6c757d;
    pointer-events: none;
}

input[readonly]:focus,
textarea[readonly]:focus {
    outline: none;
    box-shadow: none;
}

.hero-section {
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        url("../images/banner.jpg");
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.btn-gold {
    background: #c6a75e;
    color: #000;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-gold:hover {
    background: #fff;
    color: #000;
}

.section-title {
    font-weight: 700;
    letter-spacing: 2px;
}

.product-card {
    border: none;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-img {
    height: 300px;
    object-fit: cover;
}

.fancy-card {
    height: 350px !important;
    position: relative;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    overflow: hidden;
}

/* Image fills card */
.fancy-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bottom gradient overlay (like your image) */
.fancy-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(120, 30, 20, 0.8), transparent);
}

/* Text on top of gradient */
.card-overlay {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.card-overlay h3 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 1px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: none;
    z-index: 9999;

    background: #000000; /* black */
    color: #ffffff;
    border-radius: 50%;
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);

    transition: all 0.3s ease;
}

/* Hover Effect (Luxury Gold) */
.back-to-top:hover {
    background: #c6a75e; /* gold */
    color: #000;
    transform: translateY(-5px);
}

/* Show button when active */
.back-to-top.show {
    display: flex;
    opacity: 1;
}

/* Smooth fade */
.back-to-top {
    opacity: 0;
}

.back-to-top.show {
    opacity: 1;
}

/* Footer Links */
.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--primary-color); /* gold */
    padding-left: 5px;
}

/* Footer Headings */
footer h5,
footer h6 {
    letter-spacing: 1px;
}

/* Divider */
hr {
    opacity: 0.2;
}
/* hero section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 60px 0 80px 0;
}

.hero-content {
    flex: 1.2;
}

.hero-badge {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #a67b5b;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1rem;
    color: #3e3e3e;
    max-width: 450px;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-image {
    flex: 1;
    background: #f3f0ea;
    min-height: 480px;
    background-image: url("../images/fabric.jpg");
    background-size: cover;
    background-position: center 30%;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
}
.saree-section {
    background: #f8f8f8;
}

/* LEFT */
.saree-left h1 {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}

.saree-left p {
    color: #666;
    margin-bottom: 30px;
}

.btn-shop {
    background: #4b2e39;
    border: none;
    padding: 12px 30px;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
}

/* CARD */
.product-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    border-radius: 15px;
}

/* BADGE */
.product-img .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff5e5e;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}

/* ICONS */
.product-img .icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-img .icons i {
    background: #fff;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
}

/* INFO */
.product-info h6 {
    font-size: 14px;
    margin-bottom: 5px;
}

.price {
    font-size: 14px;
}

.price .new {
    font-weight: bold;
}

.price .old {
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
}

.price .off {
    color: red;
    margin-left: 8px;
}

.size {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.colors {
    margin-top: 8px;
}

.colors span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}
.product-img img {
    transition: 0.3s;
}

.product-img:hover img {
    transform: scale(1.05);
}
.product-category-img {
    /* height: 150px !important;
    width: 150px !important; */
    border-top-right-radius: 60%;
    border-top-left-radius: 60%;

    object-fit: cover;
    display: flex !important;
    margin: auto;
    justify-content: space-around;
}

.product-category-card {
    display: flex;
    justify-content: space-around;
}
.product-category-info h6 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
}

.slick-prev:before,
.slick-next:before {
    color: var(--secondary-color) !important;
}

.dress-section .slick-prev:before,
.dress-section .slick-next:before {
    color: var(--tertiary-color) !important;
}

.sale-banner {
    background: url("../images/desktop-4.png") no-repeat center center / cover;
    height: 70vh;
}

.products-section h2 {
    font-weight: 600;
    letter-spacing: 1px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s;
}

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

.product-img .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 11px;
}

.product-img .icons {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: 0.3s;
}

.product-card:hover .icons {
    opacity: 1;
}

.product-img .icons i {
    background: #fff;
    padding: 6px;
    border-radius: 50%;
    cursor: pointer;
}

.product-info h6 {
    font-size: 14px;
    margin-bottom: 5px;
}

.price .new {
    font-weight: 600;
    color: #000;
}

.price .old {
    text-decoration: line-through;
    color: #999;
    margin-left: 5px;
}

.price .off {
    color: red;
    font-size: 12px;
    margin-left: 5px;
}
.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    column-gap: 0.5rem; /* or 8px */
}

.product-badge .badge-sale {
    background: var(--accent-gold);
}

.product-badge .badge-featured {
    background: var(--primary-color);
    color: #fff;
}
.product-badge .badge-trending {
    background: var(--secondary-color);
    color: #fff;
}
.product-badge .badge-arrival {
    background: var(--wine-color);
    color: #fff;
}
.new-section {
    background: var(--soft-background);
}
.dress-section {
    background: #4b2e39;
}
section {
    padding: 6rem 0;
}
/* Shop Page */
/* Layout */
.shop-container {
    padding: 20px;
}

/* Top Bar */
.shop-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.shop-top select {
    padding: 8px;
}

/* Body */
.shop-body {
    display: flex;
    gap: 20px;
}

/* Sidebar */
.filter-sidebar {
    width: 260px;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h5 {
    margin-bottom: 10px;
}

.apply-btn {
    width: 100%;
    padding: 10px;
    background: #000;
    color: #fff;
    border: none;
}

/* Grid */
.product-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card */
.product-card {
    border: 1px solid #eee;
    background: #fff;
}

.product-img {
    position: relative;
}

.product-img img {
    width: 100%;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: #fff;
    padding: 4px 8px;
}

/* ================= HERO SECTION ================= */
.hero-luxury {
    position: relative;
    height: 70vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--text-light);
}

.hero-luxury-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-luxury-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-luxury h1 {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: "Playfair Display", serif;
}

.hero-luxury h1 .text-gold {
    color: var(--accent-gold);
}

.hero-luxury p {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-luxury {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-gold);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(198, 167, 94, 0.3);
    background: #d4b87a;
    color: #000;
}

.btn-outline-luxury {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-luxury:hover {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: #000;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ================= SECTION HEADER ================= */
.section-header-luxury {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    font-family: "Playfair Display", serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin: 1.5rem auto 0;
}

.section-divider-2 {
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin: 1.5rem 0;
}

.section-description {
    max-width: 600px;
    margin: 1.5rem auto 0;
    color: var(--text-muted);
}

/* ================= CATEGORIES ================= */
.categories-luxury {
    padding: 6rem 0;
    background: white;
}

/* .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 2 fr));
    gap: 2rem;
} */

.category-card-luxury {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.category-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card-luxury:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card-luxury:hover .category-overlay {
    opacity: 1;
}

.category-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-link {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ================= PRODUCTS ================= */
.products-luxury {
    padding: 6rem 0;
    background: var(--soft-background);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.products-grid .slick-slide {
    height: auto;
    display: flex !important;
}

.products-grid .slick-slide > div {
    display: flex;
    width: 100%;
}

.product-card-luxury {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Make content stretch evenly */
.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card-luxury {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card-luxury:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.product-badge span {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
}

.badge-sale {
    background: #ef4444;
    color: white;
}

.badge-new {
    background: var(--accent-gold);
    color: #000;
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card-luxury:hover .hover-img {
    opacity: 1;
}

.product-actions {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
    transition: transform 0.3s ease;
}

.product-card-luxury:hover .product-actions {
    transform: translateX(-50%) translateY(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
}

.product-info {
    padding: 1rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.old-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.discount {
    font-size: 0.8rem;
    color: #ef4444;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.8rem;
}

.product-rating i {
    color: #fbbf24;
}

.product-rating span {
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.products-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary-luxury {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border: 2px solid var(--accent-gold);
    background: transparent;
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-luxury:hover {
    background: var(--accent-gold);
    color: #000;
    transform: translateY(-2px);
}

/* ================= BANNER ================= */
.banner-luxury {
    position: relative;
    padding: 6rem 0;
    background: var(--secondary-color);
    overflow: hidden;
}

.banner-background {
    position: absolute;
    inset: 0;
    background: url("../images/sale-banner-bg.jpg") center/cover no-repeat;
    opacity: 0.3;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 2;
    color: white;
}

.banner-badge {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 600;
    font-family: "Playfair Display", serif;
    margin-bottom: 1rem;
}

.banner-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.banner-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.timer-block {
    text-align: center;
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    min-width: 70px;
}

.timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
    display: block;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* ================= TESTIMONIALS ================= */
.testimonials-luxury {
    padding: 6rem 0;
    background: white;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 2rem;
    text-align: center;
}

.testimonial-quote i {
    font-size: 3rem;
    color: var(--accent-gold);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent-gold);
}

/* ================= INSTAGRAM ================= */
.instagram-luxury {
    padding: 6rem 0 0;
    background: var(--soft-background);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin-top: 3rem;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    font-size: 2rem;
    color: white;
}

/* ================= NEWSLETTER ================= */
.newsletter-luxury {
    padding: 6rem 0;
    background: linear-gradient(
        135deg,
        var(--secondary-color) 0%,
        var(--wine-color) 100%
    );
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
}

.newsletter-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.btn-subscribe {
    padding: 1rem 2rem;
    background: var(--accent-gold);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.form-note {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* ================= FOOTER ================= */
.footer-luxury {
    background: #111;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
}

.footer-logo p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #666;
    font-size: 0.8rem;
}

.footer-payment {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: #666;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .hero-luxury h1 {
        font-size: 4rem;
    }

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

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sale-banner {
        background: url("../images/mobile-6.png") no-repeat center center /
            cover;
        height: 70vh;
    }
    .hero-luxury {
        height: 70vh;
        min-height: 60vh;
    }

    .hero-luxury h1 {
        font-size: 2.5rem;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        flex: unset;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-timer {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .timer-number {
        font-size: 1.2rem;
        min-width: 50px;
    }
}

/* ================= BACK TO TOP ================= */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(198, 167, 94, 0.4);
}

a.active-menu {
    border-bottom: 4px solid var(--accent-gold);
}
input.otp-input.col {
    border: 0;
    border-bottom: 1px solid var(--accent-gold);
    margin: 0.3rem;
    text-align: center;
}

.avatar-circle {
    width: 38px;
    height: 38px;
    background: #e8d5c4;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.avatar-circle.small {
    width: 35px;
    height: 35px;
    font-size: 13px;
}

a.nav-link.d-flex.align-items-center.gap-2.dropdown-toggle.user::after,
a.nav-link.d-flex.align-items-center.gap-2.dropdown-toggle::after {
    content: unset !important;
    display: none;
}

.profile-dropdown {
    /* width: 260px; */
    padding: 15px;
    border-radius: 12px;
}

.profile-header {
    padding-bottom: 10px;
}
.variant-option {
    position: relative;
    margin: 0.5rem 0.2rem;
}

.variant-option input {
    display: none;
}

.variant-option label {
    min-width: 42px;
    padding: 10px 16px;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
    background: #fff;
    color: #5a63b6;
    cursor: pointer;
    text-align: center;
    margin: 0;
    transition: 0.2s ease;
}

.variant-option input:checked + label {
    background: #111;
    color: #fff;
    border-color: #111;
}

.variant-option.disabled label {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f3f3f3;
    color: #999;
}
.badge-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #000;
    color: #fff;
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
    line-height: 1;
}

.badge-count:empty {
    display: none;
}
.user-product-offcanvas {
    width: 560px !important;
    background: #f8f7f4;
}

.user-product-offcanvas .offcanvas-header {
    padding: 22px 26px;
}

.user-product-offcanvas .offcanvas-title {
    font-size: 28px;
    font-weight: 500;
    color: #1d1d1d;
}

.userProductListContainer {
    padding: 0 26px;
    overflow-y: auto;
}

.userProductFooter {
    border-top: 1px solid #ddd;
    padding: 20px 26px 18px;
    background: #f8f7f4;
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 15px;
    letter-spacing: 4px;
    color: #222;
}

.checkout-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 16px;
    letter-spacing: 4px;
    font-weight: 600;
}

.user-cart-item,
.user-wishlist-item {
    padding: 26px 0;
    border-bottom: 1px solid #e2e2e2;
}

.user-cart-item-inner,
.user-wishlist-item-inner {
    display: flex;
    gap: 18px;
}

.user-cart-thumb,
.user-wishlist-thumb {
    width: 95px;
    min-width: 95px;
    height: 126px;
    overflow: hidden;
    background: #eee;
}

.user-cart-thumb img,
.user-wishlist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-cart-content,
.user-wishlist-content {
    flex: 1;
}

.user-cart-title,
.user-wishlist-title {
    font-size: 18px;
    line-height: 1.35;
    color: #222;
    margin-bottom: 10px;
}

.user-cart-meta,
.user-wishlist-meta {
    font-size: 14px;
    color: #222;
    line-height: 1.8;
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}

.user-cart-meta strong,
.user-wishlist-meta strong {
    font-weight: 700;
}

.user-cart-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
}

.qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    height: 40px;
}

.qty-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
}

.qty-value {
    width: 42px;
    text-align: center;
    font-size: 18px;
}

.cart-price-box {
    text-align: right;
    line-height: 1.3;
    display: flex;
    column-gap: 10px;
}

.cart-old-price {
    font-size: 16px;
    color: #222;
    text-decoration: line-through;
}

.cart-sale-price {
    font-size: 18px;
    color: #c01919;
    font-weight: 500;
}

.cart-discount {
    font-size: 16px;
    color: #c01919;
    font-weight: 600;
}

.empty-state {
    padding: 30px 0;
    font-size: 15px;
    color: #666;
}

.wishlist-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.wishlist-btn {
    background: var(--secondary-color) !important;
    color: #fff !important;
}

.wishlist-btn,
.remove-btn {
    border: 1px solid #111;
    background: transparent;
    color: #111;
    padding: 8px 14px;
    font-size: 12px;
}

@media (max-width: 767px) {
    .slick-dots {
        bottom: -55px !important;
    }

    .user-product-offcanvas {
        width: 100% !important;
    }

    .userProductListContainer,
    .userProductFooter,
    .user-product-offcanvas .offcanvas-header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .user-cart-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-price-box {
        text-align: left;
    }
}
/* slides */
.hero-slider .slide {
    /* height: 70vh; */
    width: 100%;
}

.hero-slider img {
    width: 100%;
}
.shop-now-btn {
    display: block;
    margin-top: 14px;
    padding: 10px 14px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.shop-now-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}
.product-card-luxury {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.products-grid,
.slick-slide > div {
    height: 100%;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: auto !important;
    display: flex !important;
}
