/* CATALOGUE HERO */
.catalogue-hero {
    position: relative;
    padding: 140px 5% 70px;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1605651202774-98e3fd60d2b6?auto=format&fit=crop&q=80&w=1600') center/cover;
    color: white;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #013220;
    backdrop-filter: blur(4px) brightness(0.85);
    -webkit-backdrop-filter: blur(4px) brightness(0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: 600;
}

.catalogue-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 15px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* MODAL CORE */
html.modal-open,
body.modal-open {
    overflow: hidden;
}

body.modal-open {
    position: fixed;
    inset: 0;
    width: 100%;
}

.product-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: clamp(16px, 3vw, 28px);
    z-index: 4000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease;
}

.product-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(246, 226, 179, 0.14), transparent 38%),
        rgba(7, 10, 9, 0.72);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
}

/* MODAL ENHANCEMENTS */
.modal-content {
    position: relative;
    width: min(1000px, 100%);
    height: auto;
    max-height: min(90vh, 800px);
    background: linear-gradient(135deg, #fffdf8 0%, #ffffff 58%, #f7f3ea 100%);
    border: 1px solid rgba(246, 226, 179, 0.4);
    border-radius: 28px;
    box-shadow: 0 38px 110px rgba(0, 0, 0, 0.26);
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transform: translate3d(0, 20px, 0) scale(0.975);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}

.product-modal.is-open .modal-content {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.modal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    width: 100%;
    min-height: min(70vh, 680px);
}

.modal-gallery {
    background:
        radial-gradient(circle at top right, rgba(246, 226, 179, 0.5), transparent 34%),
        linear-gradient(180deg, #fbf8f2 0%, #f2ece0 100%);
    padding: clamp(22px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.main-image-container {
    width: 100%;
    height: min(54vh, 520px);
    min-height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(1, 50, 32, 0.06);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
    font-size: 18px;
    color: var(--primary);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.gallery-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.is-hidden,
.gallery-nav[hidden] {
    opacity: 0;
    pointer-events: none;
}

.gallery-nav.prev {
    left: 18px;
}

.gallery-nav.next {
    right: 18px;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.24s ease;
}

.thumbnail-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(1, 50, 32, 0.35) transparent;
}

.thumbnail-grid::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-grid::-webkit-scrollbar-thumb {
    background: rgba(1, 50, 32, 0.28);
    border-radius: 999px;
}

.thumbnail-button {
    width: 82px;
    height: 82px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    overflow: hidden;
    flex: 0 0 auto;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.thumbnail-button:hover {
    transform: translateY(-2px);
}

.thumbnail-button.active {
    border-color: rgba(1, 50, 32, 0.7);
    box-shadow: 0 12px 24px rgba(1, 50, 32, 0.14);
}

.modal-details {
    padding: clamp(28px, 3vw, 46px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), #ffffff);
    scrollbar-gutter: stable;
}

.details-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.details-body {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.details-footer {
    margin-top: auto;
}

.modal-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b38b2d;
    font-weight: 700;
    display: block;
}

.modal-details h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    line-height: 1.1;
    margin: 0;
}

.modal-price {
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.specs-card {
    background: linear-gradient(180deg, rgba(248, 246, 241, 0.95), #f8f4ea);
    border: 1px solid rgba(1, 50, 32, 0.08);
    border-radius: 20px;
    padding: 24px;
}

.sku-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(1, 50, 32, 0.08);
}

.sku-value {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
}

.spec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--primary);
    opacity: 0.55;
}

.spec-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.modal-cta-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, opacity 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 16px 30px rgba(1, 50, 32, 0.22);
}

.modal-cta-btn:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(1, 50, 32, 0.2);
}

.modal-cta-btn.is-disabled,
.modal-cta-btn.is-disabled:hover {
    background: #bababa;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.modal-note {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 16px;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: none;
    font-size: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    transition: transform 0.25s ease, background 0.25s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    background: var(--bg-light);
}

@media (max-width: 992px) {
    .modal-content {
        max-height: calc(100dvh - 32px);
    }

    .modal-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .main-image-container {
        height: min(42vh, 400px);
    }

    .modal-details {
        max-height: none;
    }
}

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

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

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(1, 50, 32, 0.06), rgba(1, 50, 32, 0.52));
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.view-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.product-card:hover .view-text {
    transform: translateY(0);
}

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

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    opacity: 0.6;
    margin-bottom: 8px;
    display: block;
}

.product-info h3 {
    font-size: 18.5px;
    margin-bottom: 10px;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.product-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.price-on-request {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    font-style: italic;
}

.catalogue-hero p {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 300;
}

/* FILTER SECTION */
.collection-filter {
    padding: 36px 5% 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.98));
    position: sticky;
    top: 80px;
    z-index: 100;
    scroll-margin-top: 120px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(1, 50, 32, 0.08);
    padding-bottom: 28px;
}

.filter-btn {
    padding: 12px 26px;
    border: 1px solid rgba(1, 50, 32, 0.1);
    background: rgba(255, 255, 255, 0.86);
    color: var(--primary);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.8px;
    box-shadow: 0 10px 24px rgba(1, 50, 32, 0.04);
}

.filter-btn:hover {
    border-color: rgba(1, 50, 32, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(1, 50, 32, 0.1);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
    box-shadow: 0 16px 34px rgba(1, 50, 32, 0.18);
}

/* PRODUCTS GRID */
.products-section {
    padding: 40px 5% 120px;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px 20px;
    max-width: 1240px;
    margin: 0 auto;
}

.product-item-wrapper {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item-wrapper[hidden] {
    display: none !important;
}

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

    /* -- CATALOGUE HERO -- */
    .catalogue-hero {
        padding: 150px 5% 70px;
    }

    .catalogue-hero h1 {
        font-size: clamp(32px, 8vw, 52px);
    }

    /* -- FILTER BAR -- */
    .collection-filter {
        position: static;
        padding: 20px 5% 0;
        scroll-margin-top: 90px;
    }

    .filter-container {
        gap: 8px;
        padding-bottom: 20px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-container::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        padding: 9px 18px;
        font-size: 12px;
        flex-shrink: 0;
    }

    /* -- PRODUCTS GRID -- */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .products-section {
        padding: 30px 5% 100px;
    }

    /* -- PRODUCT CARDS -- */
    .product-image-wrapper {
        height: 300px;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h3 {
        font-size: 20px;
    }

    /* -- MODAL: bottom sheet on mobile -- */
    .product-modal {
        padding: 0;
        align-items: flex-end;
    }

    .modal-content {
        border-radius: 28px 28px 0 0;
        max-height: 92dvh;
        max-height: 92vh;
        width: 100%;
        transform: translate3d(0, 30px, 0);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .product-modal.is-open .modal-content {
        transform: translate3d(0, 0, 0);
    }

    .modal-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        flex: 1;
        height: 100%;
    }

    .modal-gallery {
        padding: 18px;
    }

    .main-image-container {
        height: min(40vh, 320px);
        min-height: 200px;
    }

    .modal-details {
        padding: 24px 20px;
        gap: 20px;
        max-height: none;
        overflow-y: visible;
    }

    .modal-details h2 {
        font-size: clamp(24px, 6vw, 36px);
    }

    .specs-card {
        padding: 18px;
    }

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

    .modal-cta-btn {
        padding: 18px 16px;
        font-size: 12px;
        letter-spacing: 1.6px;
    }
}

@media (max-width: 480px) {
    .catalogue-hero {
        padding: 130px 5% 50px;
    }

    .product-image-wrapper {
        height: 260px;
    }

    .products-grid {
        gap: 20px;
    }

    .modal-content {
        border-radius: 22px 22px 0 0;
        max-height: 95dvh;
        max-height: 95vh;
    }

    .main-image-container {
        height: min(35vh, 260px);
    }
}


/* ===================== WISHLIST & BADGES ===================== */
.wishlist-btn {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wishlist-heart-svg {
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.product-card:hover .wishlist-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border-color: white;
    transform: translateY(0);
}

.wishlist-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.wishlist-btn.is-active {
    background: var(--white);
    color: #c6a769;
    /* A soft premium gold for active state */
    border-color: var(--white);
}

.wishlist-btn.is-active .wishlist-heart-svg {
    fill: currentColor;
    transform: scale(1.1);
}

.wishlist-btn.is-pulsing {
    animation: wishlistPulse 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.wishlist-product-card {
    cursor: pointer;
}

.wishlist-product-card .wishlist-btn {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.wishlist-card-badge {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #C6A769;
    font-weight: 700;
}

.wishlist-card-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: rgba(3, 38, 28, 0.52);
    font-weight: 700;
}

.wishlist-card-enter {
    animation: wishlistCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes wishlistPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.16);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes wishlistCardIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* Out of Stock Overlay */
.stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: grayscale(1) blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.stock-badge {
    background: #000;
    color: #fff;
    padding: 8px 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Navbar Wishlist */
.wishlist-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.wishlist-nav svg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wishlist-nav:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.wishlist-nav.has-items svg {
    color: #f6e2b3;
    fill: rgba(246, 226, 179, 0.2);
}

#wishlistCount {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #013220;
    color: #f6e2b3;
    font-size: 9px;
    min-width: 16px;
    height: 16px;
    padding: 0 5px;
    border-radius: 999px;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border: 2px solid #ffffff;
    box-shadow: 0 6px 12px rgba(11, 15, 14, 0.16);
}

.navbar--wishlist.dark-navbar {
    background: rgba(1, 50, 32, 0.92);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid rgba(246, 226, 179, 0.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    z-index: 1100;
}

.navbar--wishlist.dark-navbar .logo,
.navbar--wishlist.dark-navbar .nav-item,
.navbar--wishlist.dark-navbar .mobile-toggle,
.navbar--wishlist.dark-navbar .wishlist-nav {
    color: #f6e2b3;
}

.navbar--wishlist.dark-navbar .wishlist-nav.has-items svg {
    color: #c9a84c;
    fill: rgba(246, 226, 179, 0.3);
}

.navbar--wishlist.dark-navbar #wishlistCount {
    background: #c9a84c;
    color: #013220;
    border-color: #01291b;
}

/* Wishlist Page */
.wishlist-hero {
    padding: 110px 5% 36px;
    background: #013220;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(246, 226, 179, 0.15);
    overflow: hidden;
}

.wishlist-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(246, 226, 179, 0.09) 0%, transparent 65%);
    pointer-events: none;
}

.wishlist-hero-inner {
    max-width: 860px;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    text-align: left;
}

.wishlist-hero-text {
    flex: 1;
    min-width: 220px;
}

.wishlist-hero h1 {
    font-size: clamp(26px, 3.5vw, 38px);
    color: #ffffff;
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
}

.wishlist-hero p {
    display: none;
}

.wishlist-hero-link,
.wishlist-empty-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 99px;
    background: #f6e2b3;
    color: #013220;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    border: none;
}

.wishlist-hero-link:hover,
.wishlist-empty-cta:hover {
    background: #ffffff;
    color: #013220;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.wishlist-content {
    padding: 40px 5% 100px;
    background: #01291b;
}

.wishlist-shell {
    max-width: 1400px;
    margin: 0 auto;
}

.wishlist-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    padding: 25px 40px;
    border: 1px solid rgba(246, 226, 179, 0.15);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.wishlist-toolbar-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wishlist-toolbar-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a84c;
    font-weight: 700;
}

.wishlist-summary {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.wishlist-enquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 32px;
    border: none;
    border-radius: 99px;
    background: #f6e2b3;
    color: #013220;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist-enquiry-btn i {
    color: #013220;
    font-size: 16px;
}

.wishlist-enquiry-btn:hover {
    background: #013220;
    color: #f6e2b3;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(246, 226, 179, 0.4);
}

.wishlist-enquiry-btn:hover i {
    color: #f6e2b3;
}

.wishlist-enquiry-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.wishlist-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showroom-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(246, 226, 179, 0.12);
    border-radius: 16px;
    height: 180px;
    /* Fixed height */
    overflow: hidden;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.showroom-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(246, 226, 179, 0.28);
    box-shadow: 0 14px 36px rgba(246, 226, 179, 0.08);
}

.showroom-card-left {
    width: 180px;
    /* Exact same as height for a perfect SQUARE */
    height: 180px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.showroom-card-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.showroom-card-center {
    flex: 1;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.showroom-title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    margin: 0 0 10px 0;
    color: #ffffff;
    line-height: 1.1;
    font-weight: 700;
}

.showroom-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c9a84c;
    opacity: 0.85;
    margin-bottom: 8px;
    font-weight: 700;
}

.showroom-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 520px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.showroom-card-right {
    width: 320px;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
}

.showroom-price {
    font-size: 32px;
    font-weight: 700;
    color: #f6e2b3;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

.btn-showroom-view {
    background: transparent;
    border: 1px solid rgba(246, 226, 179, 0.3);
    color: #f6e2b3;
    padding: 12px 28px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-showroom-view:hover {
    background: #f6e2b3;
    color: #013220;
    border-color: #f6e2b3;
    transform: translateY(-2px);
}

/* Custom styles for wishlist showroom button to ensure it renders premium */
.showroom-wishlist-btn {
    border: 1px solid rgba(246, 226, 179, 0.2) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(6px);
}

.showroom-wishlist-btn:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #c9a84c !important;
    border-color: rgba(201, 168, 76, 0.4) !important;
    transform: scale(1.1) !important;
}

.showroom-wishlist-btn.is-active {
    background: rgba(201, 168, 76, 0.15) !important;
    color: #c9a84c !important;
    border-color: rgba(201, 168, 76, 0.5) !important;
}

.wishlist-product-card .product-info {
    padding: 20px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.wishlist-product-card .product-desc {
    margin-bottom: 15px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.wishlist-product-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 0;
    flex: 1;
}

.wishlist-product-card .price {
    color: #f6e2b3;
    font-size: 20px;
    font-weight: 700;
    min-width: 120px;
    text-align: right;
}

.wishlist-product-card .product-desc {
    display: none;
    /* Keep it ultra horizontal and clean */
}

.wishlist-card-link {
    color: rgba(246, 226, 179, 0.7);
    text-decoration: underline;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.wishlist-card-link:hover {
    color: #f6e2b3;
}

.wishlist-card-badge {
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
    padding: 4px 10px;
    font-size: 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.wishlist-empty {
    text-align: center;
    padding: 110px 0 80px;
    background: transparent;
}

.wishlist-empty-icon {
    font-size: 56px;
    color: rgba(246, 226, 179, 0.4);
    margin-bottom: 20px;
}

.wishlist-empty h2 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: clamp(28px, 4vw, 38px);
    font-family: 'Playfair Display', serif;
}

.wishlist-empty p {
    max-width: 520px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

@media (hover: none) {
    .wishlist-btn {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .wishlist-hero {
        padding: 132px 5% 56px;
    }

    .wishlist-content {
        padding-bottom: 90px;
    }

    .wishlist-toolbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .wishlist-enquiry-btn {
        width: 100%;
    }

    .wishlist-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wishlist-empty {
        padding: 90px 0 60px;
    }

    /* Wishlist Showroom Cards mobile styling */
    .showroom-card {
        flex-direction: column;
        height: auto;
    }

    .showroom-card-left {
        width: 100%;
        height: 240px;
    }

    .showroom-card-center {
        padding: 20px 20px 12px;
    }

    .showroom-title {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .showroom-card-right {
        width: 100%;
        padding: 0 20px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }
}
