/* Preloader */
.ez-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-primary, #141210);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.ez-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.ez-preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ez-logo-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.ez-logo-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ez-ring-bg {
    fill: none;
    stroke: var(--border-color-new, #33302b);
    stroke-width: 2;
}

.ez-ring-fill {
    fill: none;
    stroke: var(--color-gold, #c4a876);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 339.3;
    stroke-dashoffset: 339.3;
    transition: stroke-dashoffset 0.2s linear;
}

.ez-logo-text {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.16em;
    color: var(--text-primary, #f5f2eb);
}

.ez-preloader-tagline {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary, #b8afa0);
    margin-bottom: 26px;
}

.ez-preloader-progress {
    font-family: "DM Sans", sans-serif;
    display: flex;
    align-items: baseline;
}

.ez-progress-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-gold, #c4a876);
    min-width: 24px;
    text-align: right;
}

.ez-progress-percent {
    font-size: 12px;
    color: var(--text-secondary, #b8afa0);
    margin-left: 2px;
}

@media (max-width: 480px) {
    .ez-logo-wrap {
        width: 96px;
        height: 96px;
    }

    .ez-logo-text {
        font-size: 16px;
    }
}

/* Social Icon */
.floating-social-wrap {
    position: fixed;
    left: 20px;
    bottom: 90px;
    /* sits above your mobile bottom-menu; use 20px if no bottom nav */
    z-index: 999;
}

.floating-social-btn {
    display: flex;
    align-items: center;
    height: 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    transition:
        box-shadow 0.3s ease,
        transform 0.2s ease;
}

.floating-social-btn:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    transform: translateY(-2px);
}

.floating-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
}

.floating-label {
    padding-right: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

/* WhatsApp — brand green gradient */
.whatsapp-float {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Gentle pulse on the icon to draw the eye without being annoying */
.floating-icon i {
    animation: floatPulse 2.4s ease-in-out infinite;
}

@keyframes floatPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .floating-social-wrap {
        left: 14px;
        bottom: 78px;
    }

    .floating-social-btn {
        height: 40px;
    }

    .floating-icon {
        flex-basis: 46px;
        width: 46px;
        height: 40px;
        font-size: 20px;
    }

    .floating-label {
        font-size: 12px;
        padding-right: 16px;
    }
}

@media (max-width: 380px) {
    .floating-label {
        font-size: 11px;
    }
}

/* Whatsapp Popup */

.ez-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.ez-popup-overlay.is-visible {
    display: flex;
    opacity: 1;
}

.ez-popup-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    line-height: 0;
}

.ez-popup-overlay.is-visible .ez-popup-card {
    transform: translateY(0) scale(1);
}

.ez-popup-image-link {
    display: block;
}

.ez-popup-image {
    width: 100%;
    height: auto;
    display: block;
}

.ez-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(20, 18, 16, 0.65);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.2s ease;
    z-index: 2;
}

.ez-popup-close:hover {
    background: rgba(196, 168, 118, 0.9);
    transform: scale(1.08);
}

@media (max-width: 480px) {
    .ez-popup-card {
        max-width: 340px;
        border-radius: 16px;
    }

    .ez-popup-close {
        top: 10px;
        right: 10px;
        width: 28px;
        height: 28px;
        font-size: 15px;
    }
}

/* Product Details */

/* ---- Order on WhatsApp / wishlist ---- */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 24px -8px rgba(18, 140, 126, 0.55);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(18, 140, 126, 0.65);
    color: #fff;
}

.btn-whatsapp i {
    font-size: 20px;
}

@media (max-width: 575px) {
    .btn-whatsapp {
        padding: 13px 18px;
        font-size: 14.5px;
    }
}

/* Testimonials */

.avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    margin-left: -14px;
}

.avatar-img:first-child {
    margin-left: 0;
}

/* ---- Review screenshot slider ---- */
.review-screens-wrap {
    position: relative;
    max-width: 420px;
    width: 100%;
}

.review-screens-slider {
    overflow: hidden;
}

.review-screens-slider .swiper-slide {
    width: 130px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-screen-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: transform 0.25s ease;
}

.review-screen-img:hover {
    transform: translateY(-4px);
}

.review-screens-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.review-screens-nav button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ---- Lightbox ---- */
.review-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.review-lightbox.active {
    display: flex;
}

.review-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.review-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.review-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.review-lightbox-prev {
    left: 20px;
}

.review-lightbox-next {
    right: 20px;
}

.review-lightbox-arrow:hover,
.review-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
    .review-screens-slider .swiper-slide {
        width: 100px !important;
    }

    .review-lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Products Coloumn */
.section-capture {
    margin-bottom: 28px;
}

.sub-title {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 10px;
}

.sub-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 1px;
    background: var(--color-gold);
}

.section-heading {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.25;
    color: var(--text-primary);
    margin: 0;
}

/* ---------- Carousel shell ---------- */
.collection-wrap {
    position: relative;
}

.ez-carousel {
    overflow: hidden;
    /* breathing room so hover shadows / focus rings don't clip */
    margin: 0 -2px;
    padding: 2px;
}

.ez-track {
    display: flex;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.ez-slide {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 12px;
}

@media (max-width: 1100px) {
    .ez-slide {
        flex-basis: 33.3333%;
        max-width: 33.3333%;
    }
}

@media (max-width: 860px) {
    .ez-slide {
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media (max-width: 560px) {
    .ez-slide {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0 6px;
    }
}

/* ---------- Nav arrows ---------- */
.ez-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gold);
    border: 1px solid var(--border-color-new);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 1;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
    box-shadow: 0 6px 18px rgba(44, 36, 27, 0.08);
}

.ez-nav-btn:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-black);
}

.ez-nav-btn:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.ez-nav-btn.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}

.ez-nav-btn.is-disabled:hover {
    background: var(--color-white);
    color: var(--text-primary);
    border-color: var(--border-color-new);
}

.ez-prev {
    left: -24px;
}

.ez-next {
    right: -24px;
}

@media (max-width: 1340px) {
    .ez-prev {
        left: 4px;
    }

    .ez-next {
        right: 4px;
    }
}

@media (max-width: 560px) {
    .ez-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
        top: 32%;
    }

    .ez-prev {
        left: 2px;
    }

    .ez-next {
        right: 2px;
    }
}

/* ---------- Dots ---------- */
.ez-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
}

.ez-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color-new);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ez-dot.is-active {
    width: 24px;
    border-radius: 5px;
    background: var(--color-gold);
}

/* ---------- Product card ---------- */
.enzaro-card {
    background: var(--bg-primary, #f5f2eb);
    border: 1px solid var(--border-color-new, #d1cab8);
    border-radius: 12px;
    overflow: hidden;
    /* max-width: 320px; */
}

.product-image-wrap {
    position: relative;
}

.product-image-wrap img {
    display: block;
    /* aspect-ratio: 4/5; */
    object-fit: cover;
}

.new-launch-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--bg-primary, #f5f2eb);
    color: var(--text-primary, #2c241b);
    font-size: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.product-content {
    padding: 18px 20px 20px;
}

.product-ratting {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.review-star i {
    color: var(--product-review-color, #ffa500);
    font-size: 14px;
}

.review-average {
    font-size: 14px;
    color: var(--text-secondary, #6e5d4b);
}

.review-count {
    color: var(--text-secondary, #6e5d4b);
}

.product-title a {
    display: block;
    font-family: var(--body-font-family);
    font-size: 20px;
    color: var(--text-primary, #2c241b);
    text-decoration: none;
    margin-bottom: 10px;
}

.product-variants {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}

.variant-pill {
    border: 1px solid var(--border-color-new, #d1cab8);
    border-radius: 20px;
    padding: 6px 10px;
    font-size: 12px;
    color: var(--text-secondary, #6e5d4b);
    cursor: pointer;
}

.variant-pill.active,
.variant-pill:hover {
    border-color: var(--color-gold, #8c7a6b);
    color: var(--text-primary, #2c241b);
    background: var(--bg-secondary, #ebe6da);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.new-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary, #2c241b);
}

.old-price {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--text-secondary, #6e5d4b);
}

.discount-badge {
    background: var(--bg-secondary, #ebe6da);
    color: var(--color-gold, #8c7a6b);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.product-action-wrap {
    display: flex;
    gap: 10px;
}

.btn-select-size,
.btn-buy-now {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.btn-select-size {
    background: var(--color-gold, #8c7a6b);
    color: #ffffff;
    border: none;
}

.btn-select-size:hover {
    background: var(--color-gold-hover, #706155);
}

.btn-buy-now {
    background: transparent;
    color: var(--text-primary, #2c241b);
    border: 1px solid var(--border-color-new, #d1cab8);
}

.btn-buy-now:hover {
    background: var(--bg-secondary, #ebe6da);
}

.ez-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .ez-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 860px) {
    .ez-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .ez-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Keep card styling as-is from before, just tighten padding slightly for the 2-col mobile view */
@media (max-width: 600px) {
    .section-heading {
        font-size: 28px;
    }

    .product-content {
        padding: 14px 14px 16px;
    }

    .product-title a {
        font-size: 15px;
        min-height: 42px;
        margin-bottom: 6px;
    }

    .new-price {
        font-size: 18px;
    }

    .old-price {
        font-size: 12px;
    }

    .variant-pill {
        padding: 4px 8px;
        font-size: 8px;
    }

    .btn-buy-now {
        padding: 10px 0;
        font-size: 11px;
    }
}

.ez-img-slider {
    position: relative;
    overflow: hidden;
}

.ez-img-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.ez-img-slide {
    flex: 0 0 100%;
    max-width: 100%;
}

.ez-img-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.ez-img-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(20, 18, 16, 0.55);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transition:
        opacity 0.25s ease,
        background 0.25s ease;
    z-index: 1;
}

.ez-img-slider:hover .ez-img-nav {
    opacity: 1;
}

.ez-img-nav:hover {
    background: var(--color-gold, #c4a876);
}

.ez-img-prev {
    left: 10px;
}
.ez-img-next {
    right: 10px;
}

.ez-img-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 3;
}

.ez-img-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ez-img-dot.is-active {
    width: 16px;
    border-radius: 4px;
    background: var(--color-gold, #c4a876);
}

@media (max-width: 768px) {
    .ez-img-nav {
        opacity: 1;
        width: 26px;
        height: 26px;
        font-size: 15px;
    }
}

/* Bottom bar */
.bottom-menu {
    background: var(--bg-primary, #f5f2eb);
    border-top: 1px solid var(--border-color-new, #d1cab8);
    box-shadow: 0 -8px 24px rgba(44, 36, 27, 0.08);
}

.bottom-menu-element {
    width: 100%;
}

.bottom-menu-element .col {
    flex: 1;
}

.bottom-menu-link {
    text-decoration: none;
    padding-top: 10px;
    padding-bottom: 8px;
    position: relative;
}

.bottom-menu-icon-wrap {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 4px;
    font-size: 17px;
    color: var(--text-secondary, #6e5d4b);
    background: transparent;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.bottom-menu-title {
    color: var(--text-secondary, #6e5d4b);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

/* Active / selected tab */
.bottom-menu-link.active .bottom-menu-icon-wrap {
    background: var(--color-gold, #8c7a6b);
    color: #ffffff;
}

.bottom-menu-link.active .bottom-menu-title {
    color: var(--text-primary, #2c241b);
}

/* Small top indicator dot on active */
.bottom-menu-link.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-gold, #8c7a6b);
}

/* Brand-tinted icons for social ordering actions */
.bottom-menu-icon-wrap.whatsapp i {
    color: inherit;
}

.bottom-menu-link:hover .bottom-menu-icon-wrap.whatsapp {
    background: #25d36622;
    color: #25d366;
}

.bottom-menu-link:hover .bottom-menu-icon-wrap.instagram {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    color: #ffffff;
}

.bottom-menu-link:hover .bottom-menu-icon-wrap:not(.whatsapp):not(.instagram) {
    background: var(--bg-secondary, #ebe6da);
    color: var(--color-gold, #8c7a6b);
}

.bottom-menu-link:hover .bottom-menu-title {
    color: var(--text-primary, #2c241b);
}
