/* =========================================================
   TOP BAR
   ========================================================= */

.top-bar {
    width: 100%;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: var(--burgundy, #701421);
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(10px, 0.85vw, 12px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(251, 248, 241, 0.96);
    border-bottom: 1px solid rgba(117, 86, 54, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.header-scrolled {
    background: rgba(251, 248, 241, 0.985);
    border-bottom-color: rgba(117, 86, 54, 0.15);
    box-shadow: 0 8px 35px rgba(65, 42, 28, 0.07);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--deep-burgundy, #701421);
    text-decoration: none;
    padding: 5px 0 8px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-main {
    display: block;
    font-family: var(--auth-serif, Georgia, "Times New Roman", serif);
    font-size: clamp(28px, 2.5vw, 38px);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -1.5px;
}

.logo-sub {
    display: block;
    margin-top: 7px;
    color: var(--varka-muted, #887c74);
    font-size: clamp(6px, 0.5vw, 7.5px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.27em;
    text-transform: uppercase;
}

.logo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold, #c9a45c), rgba(201, 164, 92, 0.1));
}


/* =========================================================
   MAIN NAV
   ========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 31px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: var(--varka-text-soft, #665d59);
    font-size: clamp(12px, 0.9vw, 13.5px);
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 18px;
    height: 1px;
    background: var(--gold, #c9a45c);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}

.main-nav a:hover {
    color: var(--varka-primary, #7e1824);
}

.main-nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
}


/* =========================================================
   HEADER ACTIONS & CART ICON
   ========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.header-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(117, 86, 54, 0.13);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.50);
    color: var(--varka-primary, #7e1824);
    font-size: 19px;
    line-height: 1;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.header-action:hover {
    background: #ffffff;
    border-color: rgba(126, 24, 36, 0.20);
    color: var(--deep-burgundy, #701421);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(75, 44, 27, 0.08);
}

.cart-header {
    position: relative;
    font-size: 17px;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--varka-cream, #fbf8f1);
    border-radius: 50%;
    background: var(--varka-primary, #7e1824);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

.mobile-menu {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-icon {
    width: 19px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-icon span {
    display: block;
    width: 100%;
    height: 1.5px;
    border-radius: 10px;
    background: var(--varka-primary, #7e1824);
    transition: transform 0.3s ease, opacity 0.25s ease;
}

.mobile-menu-active .mobile-menu-icon span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.mobile-menu-active .mobile-menu-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-active .mobile-menu-icon span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(38, 24, 18, 0.34);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-body-lock {
    overflow: hidden;
}


/* =========================================================
   HERO BANNER
   ========================================================= */

.hero {
    position: relative;
    width: 100%;
    background: #201315;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    display: none;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    display: block;
}

.hero-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 620;
    object-fit: cover;
}

.hero-fallback-backdrop {
    width: 100%;
    aspect-ratio: 1920 / 620;
    background: radial-gradient(circle at center, #8a1a28 0%, #4a0d15 100%);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    width: 26px;
    border-radius: 20px;
    background: #ffffff;
}


/* =========================================================
   CATEGORY NAVIGATION
   ========================================================= */

.category-section {
    background: var(--cream, #fbf8f1);
    border-bottom: 1px solid rgba(201, 164, 92, 0.18);
    padding: 22px 0 20px;
}

.category-scroll {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 2px 8px 5px;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex: 0 0 auto;
    width: 130px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.35s ease;
}

.category-item:hover {
    transform: translateY(-4px);
}

.category-circle {
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    border-radius: 50%;
    padding: 4px;
    border: 1px solid rgba(201, 164, 92, 0.45);
    background: linear-gradient(145deg, #fffdf8, #f2e6d2);
    box-shadow: 0 7px 20px rgba(91, 46, 22, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.category-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f2e4ce;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy, #701421);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 700;
}

.category-name {
    font-size: clamp(12px, 0.95vw, 14px);
    font-weight: 700;
    line-height: 1.25;
    color: #302923;
}


/* =========================================================
   CATEGORY PRODUCT SECTION & GRID
   ========================================================= */

.category-products {
    background: var(--ivory, #fffdfa);
}

.product-section {
    padding: clamp(50px, 6vw, 85px) 0;
    border-top: 1px solid rgba(126, 24, 36, 0.07);
}

.product-section:nth-child(even) {
    background: var(--cream, #fbf8f1);
}

.product-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.product-heading-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-category-label {
    color: var(--gold, #c9a45c);
    font-size: clamp(9px, 0.7vw, 11px);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.product-category-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(26px, 2.5vw, 38px);
    color: var(--burgundy, #701421);
    margin: 0;
}

.view-all {
    color: var(--burgundy, #701421);
    border-bottom: 1px solid var(--gold, #c9a45c);
    padding-bottom: 4px;
    font-size: clamp(11px, 0.8vw, 12.5px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.view-all:hover {
    color: var(--gold, #c9a45c);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


/* =========================================================
   ULTRA-PREMIUM PRODUCT CARD
   ========================================================= */

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(201, 164, 92, 0.22);
    box-shadow: 0 4px 20px rgba(74, 32, 38, 0.04);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 164, 92, 0.6);
    box-shadow: 0 16px 36px rgba(112, 20, 33, 0.12);
}

.product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #faf7f2 0%, #f4ede2 100%);
    overflow: hidden;
}

.product-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.product-image {
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-quick-view {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    color: var(--burgundy, #701421);
    border: 1px solid rgba(201, 164, 92, 0.4);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: clamp(11px, 0.8vw, 12px);
    font-weight: 700;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover .product-quick-view {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.product-quick-view:hover {
    background: var(--burgundy, #701421);
    color: #ffffff;
    border-color: var(--burgundy, #701421);
}

.product-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: clamp(16px, 1.5vw, 22px);
}

.product-category-small {
    font-size: clamp(9px, 0.7vw, 10.5px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9d7837;
    margin-bottom: 6px;
}

.product-name-link {
    text-decoration: none;
    color: inherit;
}

.product-name {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(16px, 1.2vw, 19px);
    font-weight: 600;
    line-height: 1.35;
    color: #2c1b18;
    margin: 0;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s ease;
}

.product-card:hover .product-name {
    color: var(--burgundy, #701421);
}

.product-bottom {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-price {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(17px, 1.4vw, 21px);
    font-weight: 700;
    color: var(--burgundy, #701421);
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.add-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 16px;
    background: var(--burgundy, #701421);
    color: #ffffff;
    border: 1px solid var(--burgundy, #701421);
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(12px, 0.85vw, 13.5px);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s ease;
}

.add-cart-btn:hover {
    background: #8b1c2b;
    border-color: #8b1c2b;
    box-shadow: 0 6px 16px rgba(112, 20, 33, 0.22);
    transform: translateY(-2px);
}

.add-cart-btn:active {
    transform: translateY(0);
}

.cart-btn-text {
    line-height: 1;
}

.cart-btn-icon {
    font-size: 16px;
    line-height: 1;
}

.no-products {
    text-align: center;
    padding: 45px 20px;
    background: rgba(201, 164, 92, 0.08);
    border-radius: 16px;
    border: 1px dashed rgba(201, 164, 92, 0.35);
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #5c4e47;
}

.no-products span {
    font-size: clamp(13px, 1vw, 15px);
}

.no-products strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(16px, 1.2vw, 18px);
    color: var(--burgundy, #701421);
}


/* =========================================================
   FESTIVAL / OCCASION
   ========================================================= */

.festival-section {
    background: var(--burgundy, #701421);
    color: #ffffff;
    padding: clamp(60px, 7vw, 95px) 0;
}

.festival-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.festival-label {
    color: var(--soft-gold, #dfc08a);
    font-size: clamp(10px, 0.75vw, 11px);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.festival-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 3.6vw, 54px);
    line-height: 1.1;
    margin: 15px 0;
}

.festival-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: clamp(13.5px, 1vw, 15.5px);
    max-width: 520px;
}

.festival-image {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.festival-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}


/* =========================================================
   TRUST SECTION
   ========================================================= */

.trust-section {
    background: #ffffff;
    padding: clamp(60px, 7vw, 90px) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.eyebrow {
    color: var(--gold, #c9a45c);
    font-size: clamp(10px, 0.75vw, 11px);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3vw, 42px);
    color: #29201c;
    line-height: 1.15;
    margin: 0;
}

.section-description {
    margin-top: 13px;
    color: var(--muted, #7a6f68);
    font-size: clamp(13px, 0.95vw, 14.5px);
    line-height: 1.7;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.trust-card {
    text-align: center;
    padding: 25px 15px;
}

.trust-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 1px solid var(--soft-gold, #dfc08a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--burgundy, #701421);
    background: var(--cream, #fbf8f1);
}

.trust-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(16px, 1.2vw, 19px);
    color: #29201c;
    margin: 0 0 6px;
}

.trust-card p {
    color: var(--muted, #7a6f68);
    font-size: clamp(11.5px, 0.85vw, 13px);
    line-height: 1.5;
    margin: 0;
}


/* =========================================================
   INSTAGRAM SECTION
   ========================================================= */

.instagram-section {
    background: var(--deep-burgundy, #4a0d15);
    color: #ffffff;
    padding: clamp(60px, 6vw, 85px) 0;
}

.instagram-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 35px;
}

.instagram-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3vw, 44px);
    margin: 0;
}

.instagram-link {
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 10px 20px;
    font-size: clamp(11px, 0.8vw, 12px);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.instagram-link:hover {
    background: #ffffff;
    color: var(--deep-burgundy, #4a0d15);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.instagram-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.07);
}


/* =========================================================
   PRODUCT MODAL (POPUP)
   ========================================================= */

.product-modal-wrap {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal-wrap.is-open {
    display: flex;
}

.product-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(32, 19, 21, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.product-modal-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from {
        transform: scale(0.95) translateY(12px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4ede2;
    border: none;
    color: var(--burgundy, #701421);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.2s ease, color 0.2s ease;
}

.modal-close-btn:hover {
    background: var(--burgundy, #701421);
    color: #ffffff;
}

.modal-image-side {
    background: var(--cream, #fbf8f1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-image-side img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
}

.modal-content-side {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-cat {
    font-size: clamp(9px, 0.7vw, 10.5px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9d7837;
}

.modal-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(20px, 1.6vw, 24px);
    color: #2c1b18;
    margin: 6px 0 10px;
}

.modal-desc {
    font-size: clamp(12px, 0.85vw, 13.5px);
    color: var(--muted, #7a6f68);
    line-height: 1.5;
    margin: 0 0 14px;
}

.modal-weights-title {
    font-size: clamp(10px, 0.75vw, 11px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a3c36;
    margin-bottom: 8px;
}

.modal-weights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.weight-option {
    border: 1px solid #dfd5c7;
    padding: 8px 10px;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.weight-option span {
    font-size: 11.5px;
    font-weight: 500;
    color: #443c39;
}

.weight-option strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--burgundy, #701421);
}

.weight-option.selected {
    border-color: var(--burgundy, #701421);
    background: #faf4ea;
}

.modal-action-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.modal-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dfd5c7;
    border-radius: 10px;
    height: 42px;
}

.modal-qty-box button {
    width: 34px;
    height: 100%;
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: var(--burgundy, #701421);
}

.modal-qty-box input {
    width: 38px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #2c1b18;
}

.modal-add-btn {
    flex-grow: 1;
    height: 42px;
    background: var(--burgundy, #701421);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.modal-add-btn:hover {
    background: #8b1c2b;
}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #20c86b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
}

/* ============================================================
   VARKA SWEETS & BAKERS — WISHLIST SYSTEM
   ============================================================ */

/* Wishlist Button on Product Cards & Quick View */
.product-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 6;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(201, 164, 92, 0.35);
    background: rgba(255, 255, 255, 0.92);
    color: var(--varka-primary, #701421);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.product-wishlist-btn:hover {
    background: var(--varka-primary, #701421);
    color: #ffffff;
    border-color: var(--varka-primary, #701421);
    transform: scale(1.1);
}

.product-wishlist-btn.is-active {
    background: var(--varka-primary, #701421);
    color: #ffffff;
    border-color: var(--varka-primary, #701421);
}

/* Wishlist Header Badge */
.wishlist-count-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--varka-primary, #701421);
    color: #ffffff;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    border: 2px solid var(--varka-cream, #fbf8f1);
}

/* Wishlist Page Hero */
.wishlist-page {
    background: linear-gradient(180deg, #fffdf9 0%, #fffaf5 45%, #ffffff 100%);
    min-height: 70vh;
}

.wishlist-hero {
    position: relative;
    padding: clamp(40px, 6vw, 75px) 0 clamp(30px, 4vw, 50px);
    background: #701421;
    color: #ffffff;
    overflow: hidden;
}

.wishlist-hero-inner {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.wishlist-kicker {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold, #c9a45c);
    font-weight: 700;
}

.wishlist-hero h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3.5vw, 48px);
    margin: 8px 0 12px;
    line-height: 1.15;
}

.wishlist-hero h1 em {
    font-style: italic;
    color: var(--soft-gold, #dfc08a);
}

.wishlist-hero p {
    font-size: clamp(13px, 1vw, 15px);
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    line-height: 1.6;
    margin: 0;
}

.wishlist-hero-art {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.wishlist-art-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(201, 164, 92, 0.4);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold, #c9a45c);
}

.wishlist-art-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 800;
    text-align: center;
    color: var(--soft-gold, #dfc08a);
}

/* Wishlist Cards Grid */
.wishlist-list-section {
    width: min(1240px, calc(100% - 48px));
    margin: 40px auto 70px;
}

.wishlist-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 25px;
}

.wishlist-section-kicker {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold, #c9a45c);
    font-weight: 800;
    text-transform: uppercase;
}

.wishlist-section-heading h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(24px, 2.5vw, 34px);
    color: var(--varka-text, #2c1b18);
    margin: 4px 0 0;
}

.wishlist-count-pill {
    background: #faf4ea;
    border: 1px solid rgba(201, 164, 92, 0.35);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #701421;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.wishlist-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(201, 164, 92, 0.22);
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(70, 20, 33, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.wishlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(112, 20, 33, 0.1);
}

.wishlist-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #faf7f2 0%, #f4ede2 100%);
    overflow: hidden;
    display: block;
}

.wishlist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.wishlist-card:hover .wishlist-card-image img {
    transform: scale(1.05);
}

.wishlist-favourite-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #701421;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(201, 164, 92, 0.3);
}

.wishlist-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wishlist-card-meta {
    font-size: 9.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9d7837;
    margin-bottom: 4px;
}

.wishlist-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.wishlist-card-title-row h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 16px;
    line-height: 1.3;
}

.wishlist-card-title-row h3 a {
    color: #2c1b18;
    text-decoration: none;
    transition: color 0.25s ease;
}

.wishlist-card-title-row h3 a:hover {
    color: #701421;
}

.wishlist-remove-button {
    background: transparent;
    border: none;
    color: #b42335;
    font-size: 18px;
    cursor: pointer;
    padding: 2px 4px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.wishlist-remove-button:hover {
    transform: scale(1.25);
}

.wishlist-card-description {
    font-size: 12.5px;
    color: #7a6f68;
    line-height: 1.5;
    margin: 8px 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wishlist-card-footer {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(201, 164, 92, 0.15);
}

.wishlist-card-price {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #701421;
}

.wishlist-view-button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #701421;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.wishlist-view-button:hover {
    gap: 7px;
}

/* Empty Wishlist State */
.wishlist-empty {
    width: min(600px, calc(100% - 32px));
    margin: 60px auto 80px;
    text-align: center;
    padding: 40px 24px;
    border-radius: 20px;
    background: #fffdfa;
    border: 1px dashed rgba(201, 164, 92, 0.35);
}

.wishlist-empty-symbol {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #faf4ea;
    border: 1px solid rgba(201, 164, 92, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #701421;
    margin: 0 auto 15px;
}

.wishlist-empty-kicker {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold, #c9a45c);
    font-weight: 800;
    text-transform: uppercase;
}

.wishlist-empty h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    margin: 6px 0 10px;
    color: #2c1b18;
}

.wishlist-empty h2 em {
    font-style: italic;
    color: #701421;
}

.wishlist-empty p {
    font-size: 13.5px;
    color: #7a6f68;
    line-height: 1.6;
    margin: 0 0 24px;
}

.wishlist-empty-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.wishlist-primary-button,
.wishlist-secondary-button {
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.wishlist-primary-button {
    background: #701421;
    color: #ffffff;
    border: 1px solid #701421;
}

.wishlist-primary-button:hover {
    background: #8b1c2b;
}

.wishlist-secondary-button {
    background: transparent;
    color: #701421;
    border: 1px solid rgba(112, 20, 33, 0.3);
}

.wishlist-secondary-button:hover {
    background: rgba(112, 20, 33, 0.05);
}

/* Promise Bar */
.wishlist-promise {
    background: #ffffff;
    border-top: 1px solid rgba(201, 164, 92, 0.18);
    padding: 35px 0;
}

.wishlist-promise-inner {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wishlist-promise-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wishlist-promise-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #faf4ea;
    border: 1px solid rgba(201, 164, 92, 0.3);
    color: #701421;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.wishlist-promise-item strong {
    display: block;
    font-size: 12.5px;
    color: #2c1b18;
}

.wishlist-promise-item span {
    display: block;
    font-size: 11px;
    color: #887c74;
}

.wishlist-promise-divider {
    display: none;
}

/* Wishlist Removal Animation */
.wishlist-card-removing {
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
}


/* Wishlist Header Icon & Counter Badge */
.wishlist-header-action {
    position: relative;
    font-size: 16px;
}

.wishlist-count-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--varka-cream, #fbf8f1);
    border-radius: 50%;
    background: var(--varka-primary, #701421);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

/* Hide in-menu wishlist link on desktop */
.mobile-only-link {
    display: none;
}

.product-wishlist-btn {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    color: #999999;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-wishlist-btn.is-active {
    color: #e53935;
    background: #ffebee;
    border-color: #e53935;
}