/* ============================================
   HAUS OF DESI - MAIN STYLESHEET
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@200;300;400;500&display=swap');

:root {
    --primary: #5f6a67;
    --secondary: #5f6a67;
    --tertiary: #bdac9c;
    --cream: #e8ded5;
    --off-white: #faf1ea;
    --text-dark: #2c2c2c;
    --border: #e0d5cc;
    --gold: #c9a961;
    --dark-overlay: rgba(0, 0, 0, 0.4);
    --ff-d: 'Cormorant Garamond', Georgia, serif;
    --ff-b: 'Jost', system-ui, sans-serif;
    
    /* Haus of Desi - Legacy/Shared Variables */
    --nav-h: 90px;
    --gold-lt: #d8b874;
    --ivory: #fafafa;
    --g: #5f6a67;
    --mid: #555;
    --muted: #888;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--ff-d);

}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background: #f8f9fa;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   HEADER & NAVIGATION
   Dynamic Header - Transparent to Solid on Scroll
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    backdrop-filter: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding: 20px 40px;
}

/* Social Icons (Left Side) */
.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.header.scrolled .social-link {
    color: var(--primary);
}

.social-link:hover {
    color: var(--gold);
}

/* Navigation (Right Side) */
.navbar {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.header.scrolled .nav-link {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

/* Header Icons (Right Side) */
.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}
.page-hero{background:var(--g);padding:calc(var(--nav-h) + 72px) 56px 72px;position:relative;overflow:hidden;}
.page-hero::after{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 80% at 50% 50%,rgba(26,74,58,.18) 0%,transparent 70%);pointer-events:none;}
.page-hero .eyebrow{color:var(--gold-lt);}.page-hero .display{color:#fff;}.page-hero .display em{color:var(--gold-lt);}
.page-hero-sub{color:rgba(255,255,255,.44);font-size:14px;line-height:1.8;max-width:480px;margin-top:14px;position:relative;z-index:1;}


.header.scrolled .cart-btn {
    color: var(--primary);
}

.cart-btn:hover {
    color: var(--gold);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    width: 34px;
    height: 28px;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    pointer-events: auto;
    z-index: 10;
}

.logo-link img {
    display: block;
    max-height: 48px;
    width: auto;
    transition: opacity 0.25s ease;
}

.logo-transparent {
    display: block;
    opacity: 1;
}

.logo-solid {
    display: none;
    opacity: 0;
}

.header.scrolled .logo-transparent,
.header.menu-open .logo-transparent {
    display: none;
    opacity: 0;
}

.header.scrolled .logo-solid,
.header.menu-open .logo-solid {
    display: block;
    opacity: 1;
}

.header-right {
    gap: 16px;
}

@media (max-width: 900px) {
    .header-top {
        grid-template-columns: 1fr auto;
        padding: 16px 24px;
        position: relative;
    }

    .header-left {
        order: 1;
    }

    .logo-link {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        order: 2;
        margin: 0 auto;
    }

    .header-right {
        order: 3;
        width: 100%;
        justify-content: flex-end;
    }

    .social-icons {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0 0 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        z-index: 999;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    }

    .navbar.open {
        max-height: 260px;
    }

    .nav-link {
        width: 100%;
        padding: 16px 0;
        color: var(--text-dark);
        text-align: center;
        font-size: 14px;
        letter-spacing: 1.5px;
        background: transparent;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--gold);
    }

    .header.scrolled .nav-link {
        color: var(--text-dark);
    }

    .header.scrolled .menu-toggle span {
        background: var(--primary);
    }
}

@media (max-width: 600px) {

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--gold);
    }

    .header-icons {
        order: 3;
    }

    .header.scrolled .nav-link {
        color: var(--text-dark);
    }

    .header.scrolled .menu-toggle span {
        background: var(--primary);
    }

    .logo-link {
        color: white;
    }
}

/* ============================================
   HERO SECTION
   Dark Luxury Hero with Centered Serif Typography
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    font-family: var(--ff-d);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 0;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3a4a47 0%, #2c3a37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay Effect */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
    z-index: 1;
}

/* Hero Content - Centered */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    color: white;
    max-width: 800px;
    animation: fadeInUp 1s ease 0.3s backwards;
}

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

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

.logo-main {
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--gold);
    animation: fadeInUp 1s ease 0.5s backwards;
}

.hero-title {
    font-size: 72px;
    font-family: var(--ff-d);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.7s backwards;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.9s backwards;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 14px 40px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: all 0.4s ease;
    cursor: pointer;
    animation: fadeInUp 1s ease 1.1s backwards;
}

.cta-button:hover {
    background: transparent;
    color: var(--gold);
}

/* ============================================
   FEATURED SECTION
   ============================================ */

.featured {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 42px;
    font-family: Georgia, serif;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 1px;
}

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

/* ============================================
   PRODUCT GRID
   Minimalist Product Layout
   ============================================ */

.products-section {
    padding: 80px 0;
    background: #f8f6f0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* Product Card */
.product-card {
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease forwards;
    padding: 0;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

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

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

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    background: #f4f4f4;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.product-image img.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
}

.product-image img.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
}

.product-card:hover .product-image img.main-img {
    opacity: 0;
}

.product-card:hover .product-image img.hover-img {
    opacity: 1;
    transform: scale(1.04);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .image-overlay {
    opacity: 1;
}

.view-piece-btn {
    background: white;
    color: #4a6c6f;
    border: none;
    padding: 12px 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.view-piece-btn:hover {
    background: #4a6c6f;
    color: white;
}

.product-info {
    padding: 25px 20px;
    text-align: left;
}

.product-collection {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a6c6f;
    margin-bottom: 8px;
    font-weight: 500;
}

.product-name {
    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: 400;
    color: #222;
    margin-bottom: 6px;
}

.product-type {
    font-size: 12px;
    color: #888;
    margin-bottom: 18px;
    font-weight: 300;
}

.product-price {
    font-size: 11px;
    letter-spacing: 2px;
    color: #cda87a;
    text-transform: uppercase;
    font-weight: 600;
}

/* ============================================
   FILTERS SECTION
   Horizontal Tab Filter / Category Navigation Tabs
   ============================================ */

.filters-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid var(--border);
}

.filters {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-group label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.filter-group select {
    padding: 10px 15px;
    border: 1px solid var(--border);
    background: white;
    font-size: 13px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.filter-group select:hover,
.filter-group select:focus {
    border-color: var(--primary);
    outline: none;
}

/* ============================================
   PAGE HEADER HERO
   Section Hero / Page Header Hero - Minimal Style
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    font-family: Georgia, serif;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* ============================================
   PRODUCT DETAIL MODAL
   Modal Lightbox / Product Quick View Modal
   ============================================ */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 8px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    width: min(100%, 660px);
    max-width: 100%;
    scrollbar-width: none;
    max-height: 94vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    border-radius: 8px;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    margin-left: 600px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    font-size: 20px;
    color: #111;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #fff;
    color: var(--gold);
    transform: scale(1.03);
}

.modal-close i {
    font-size: 18px;
}

.modal-close,
.close-cart {
    pointer-events: auto;
    position: relative;
    z-index: 9999;
}
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2100;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

/* ============================================
   PRODUCT DETAIL
   Two-Column Product Detail / Split Screen Layout
   ============================================ */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: -12px;
    padding: 12px;
    align-items: start;
}

.product-detail-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-detail-main {
    width: 100%;
    height: 360px;
    background: transparent;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

@media(max-width:900px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 16px;
    }

    .product-detail-main {
        height: 300px;
    }
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    overflow-x: auto;
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 24px 56px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.filter-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.filter-actions .r-count {
    font-family: var(--ff-d);
    font-size: 15px;
    color: var(--ink);
}

.filter-actions .r-sort {
    border: 1px solid rgba(0,0,0,.12);
    background: transparent;
    color: var(--muted);
    padding: 10px 16px;
    font-family: var(--ff-b);
    font-size: 12px;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
}

.fpill {
    padding: 14px 22px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--muted);
    font-family: var(--ff-b);
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: all .25s;
    font-weight: 400;
    margin-bottom: -1px;
}

.fpill:hover {
    color: var(--g);
}

.fpill.on {
    color: var(--g);
    border-bottom-color: var(--g);
}

@media(max-width:900px) {
    .filter-bar {
        padding: 18px 24px;
    }

    .filter-actions {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .filter-pills {
        width: 100%;
        justify-content: flex-start;
    }
}

.product-detail-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-detail-main {
    overflow: hidden;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-btn:hover {
    background: white;
    color: #4a6c6f;
}

.slider-btn.prev-btn {
    left: 10px;
}

.slider-btn.next-btn {
    right: 10px;
}

.product-detail-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: #4a6c6f;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info {
    flex-direction: column;
}

.product-detail-info h2 {
    font-size: 28px;
    font-family: Georgia, serif;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.product-detail-info .product-category {
    margin-bottom: 10px;
}

.product-detail-price {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin: 16px 0;
}

.product-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 18px 0;
}

.variants-section {
    margin: 18px 0;
}

.variant-group {
    margin-bottom: 18px;
}

.variant-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.variant-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.variant-option {
    padding: 10px 16px;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    border-radius: 2px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.variant-option:hover {
    border-color: var(--primary);
}

.variant-option.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.quantity-selector {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 18px 0;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    border-radius: 2px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    border-color: var(--primary);
}

.qty-input {
    width: 60px;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 14px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.4s ease;
    margin-top: 14px;
}

.add-to-cart-btn:hover {
    background: transparent;
    color: var(--primary);
}

/* ============================================
   CART SIDEBAR
   ============================================ */

.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1999;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1998;
    display: none;
}

.cart-overlay.active {
    display: block;
    background: rgba(0, 0, 0, 0.5);
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 18px;
    font-weight: 500;
}

.close-cart {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: #111;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: #fff;
    color: var(--gold);
    transform: scale(1.03);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 15px;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 2px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-qty {
    font-size: 12px;
    color: var(--secondary);
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: var(--secondary);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-preview {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-family: Georgia, serif;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.link-button {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-button:hover {
    color: var(--gold);
}

.about-section {
    padding: 80px 0;
    background: white;
}

.about-block {
    margin-bottom: 60px;
}

.about-block h2 {
    font-size: 32px;
    font-family: Georgia, serif;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.values-grid h2 {
    font-size: 32px;
    font-family: Georgia, serif;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    padding: 30px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    font-family: Georgia, serif;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(95, 106, 103, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: transparent;
    color: var(--primary);
}

.form-message {
    padding: 15px;
    border-radius: 2px;
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.info-block a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: var(--gold);
}

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

.footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
}

/* ============================================
   ADMIN STYLES
   ============================================ */

.admin-body {
    display: flex;
    min-height: 100vh;
    background: #f4f7fe;
    font-family: 'Inter', sans-serif;
}

.admin-sidebar {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: white;
    padding: 30px 20px;
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.admin-logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-nav-btn {
    background: none;
    border: none;
    color: #9ca3af;
    text-align: left;
    padding: 14px 20px;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-nav-btn i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.admin-nav-btn:hover,
.admin-nav-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.admin-main {
    margin-left: 260px;
    padding: 40px;
    flex: 1;
    overflow-y: auto;
    width: calc(100% - 260px);
}

.admin-tab {
    display: none;
}

.admin-tab.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header h2 {
    font-size: 28px;
    font-weight: 400;
}

.add-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 32px;
    color: #4f46e5;
    background: #eef2ff;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.stat-content h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-content p {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
}

/* Forms */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.form-container.hidden {
    display: none;
}

.form-container h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #111827;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.save-btn,
.secondary-btn {
    padding: 12px 24px;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.save-btn:hover,
.secondary-btn:hover {
    background: #4338ca;
    transform: translateY(-1px);
}

.cancel-btn {
    padding: 12px 24px;
    background: white;
    color: #4b5563;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #f3f4f6;
    color: #111827;
}

.secondary-btn {
    background: white;
    color: #4f46e5;
    border: 1px solid #4f46e5;
}

.secondary-btn:hover {
    background: #eef2ff;
    color: #4338ca;
    border-color: #4338ca;
}

.variants-section {
    border-top: 1px solid #e5e7eb;
}

/* Admin Table */
.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.admin-table thead {
    background: #f9fafb;
}

.admin-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    color: #374151;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover {
    background: #f9fafb;
}

.action-btn {
    padding: 6px 14px;
    margin-right: 6px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-btn {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.edit-btn:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.delete-btn {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.delete-btn:hover {
    background: #fee2e2;
    color: #b91c1c;
}

/* Settings */
.settings-block {
    background: white;
    padding: 25px;
    border-radius: 3px;
    border: 1px solid var(--border);
    max-width: 500px;
}

.settings-block h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 52px;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 15px 30px;
    }

    .navbar {
        gap: 30px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .products-grid,
    .featured-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .filters {
        flex-direction: column;
        gap: 15px;
    }

    .filter-group {
        width: 100%;
    }

    .filter-group select {
        width: 100%;
    }

    .footer-content {
        gap: 30px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .modal-content {
        max-width: 95%;
    }

    .admin-body {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        width: 100%;
        height: auto;
        position: static;
        padding: 15px;
    }

    .admin-main {
        margin-left: 0;
        padding: 20px;
    }

    .admin-nav {
        flex-direction: row;
        gap: 5px;
    }

    .admin-nav-btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {
    .modal {
        align-items: flex-start;
        padding: 0;
    }

    .modal-content {
        width: min(100%, calc(100vw - 16px));
        max-width: 100%;
        max-height: 100vh;
        margin: 0 auto;
        border-radius: 0;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        margin-left: 350px;
    }

    .product-detail {
        padding: 10px;
        gap: 12px;
    }

    .product-detail-main {
        height: 260px;
    }

    .product-detail-thumbnails {
        gap: 8px;
    }

    .thumbnail {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 480px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .navbar {
        gap: 15px;
    }

    .nav-link {
        font-size: 11px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .products-grid,
    .featured-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-text h2,
    .about-block h2 {
        font-size: 24px;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 20px;
    }
}

/* ============================================
   HEADER & NAVIGATION (Haus of Desi)
   ============================================ */


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .04);
    height: 80px;
}

.site-header.nav-hidden {
    transform: translateY(-100%);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: flex-end;
}

.nav-soc {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-b);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-header.scrolled .nav-soc {
    color: var(--g);
}

.nav-soc:hover {
    color: var(--gold-lt);
}

.nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 44px;
    transition: all .3s;
}

.nav-logo img { height: 100%; width: auto; object-fit: contain; }
.nav-logo .logo-dark { display: none; }

.site-header.scrolled .nav-logo { height: 50px; }
.site-header.scrolled .nav-logo .logo-light { display: none;  height: 40px;}
.site-header.scrolled .nav-logo .logo-dark { display: block;height: 40px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--ff-b);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    transition: color .3s;
    position: relative;
}

.site-header.scrolled .nav-links a {
    color: var(--g);
}

.nav-links a:hover {
    color: var(--gold-lt);
}

.nav-links a.nav-act::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--gold-lt);
}

.nav-cart {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    transition: color .3s;
}

.site-header.scrolled .nav-cart {
    color: var(--g);
}

.nav-cart:hover {
    color: var(--gold-lt);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold-lt);
    color: #fff;
    font-size: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-b);
    font-weight: 600;
}

.nav-burger {
    display: none;
    width: 28px;
    height: 18px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: all .3s;
}

.site-header.scrolled .nav-burger span {
    background: var(--g);
}

.nav-burger span:nth-child(1) {
    top: 0;
}

.nav-burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-burger span:nth-child(3) {
    bottom: 0;
}

/* Mobile Overlay */
.mob-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 1100;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.mob-overlay.open {
    transform: translateX(0);
}

.mob-close {
    align-self: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--g);
}

.mob-logo {
    margin: 20px 0 60px;
    text-align: center;
}

.mob-logo img {
    height: 60px;
}

.mob-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.mob-nav a {
    font-family: var(--ff-d);
    font-size: 32px;
    text-decoration: none;
    color: var(--g);
    opacity: 0;
    transform: translateY(10px);
    transition: all .4s;
}

.mob-overlay.open .mob-nav a {
    opacity: 1;
    transform: translateY(0);
}

/* FOOTER */
.site-footer {
    background: #5f6a67;
    color: #fff;
    padding: 80px 52px 40px;
    font-family: var(--ff-b);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 14px;
    color:  #faf1ea
;
    margin: 24px 0;
    line-height: 1.8;
    max-width: 300px;
}

.footer-col h5 {
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--gold-lt);
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: #faf1ea;
    font-size: 13px;
    margin-bottom: 12px;
    transition: color .3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bot {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .1em;
}

@media (max-width: 900px) {

    .nav-right,
    .nav-left {
        display: none;
    }

    .nav-burger {
        display: block;
    }

    .site-header {
        padding: 0 24px;
    }

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

/* ============================================
   COMPATIBILITY & LEGACY SUPPORT
   ============================================ */
.card {
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.rise:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.card-media img,
.img-main,
.img-alt {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-ov {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover .card-ov {
    opacity: 1;
}

.card-btn {
    padding: 10px 20px;
    background: white;
    border: none;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
}

.card-info {
    padding: 15px 0;
}

.card-name {
    font-family: var(--ff-d);
    font-size: 18px;
    margin: 5px 0;
}

.card-price {
    color: var(--gold);
    font-weight: 600;
}