@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:wght@600&display=swap');


.card-wrap {
    font-family: 'DM Sans', sans-serif;
    /* margin: 2rem auto; */
    border: 1px solid #8080803d;
    border-radius: 18px;
    margin-bottom: 20px;
}

body {
    font-family: "SN Pro", sans-serif;
    font-optical-sizing: auto;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

.product-card {
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s;
    background-color: white;
}

.product-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.11);
}

/* ── Horizontal main row ── */
.card-main {
    display: flex;
    align-items: stretch;
}

.img-wrap {
    flex: 0 0 300px;
    background: #F5F3EF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 150px;
}

.img-wrap img {
    width: 100%;
    object-fit: fill;
    transition: transform 0.3s;
}

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

.badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1D9E75;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 2px 8px;
    border-radius: 20px;
}

.wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #bbb;
    cursor: pointer;
    transition: color 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    color: #E24B4A;
}

.card-content {
    flex: 1;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background-color: white;
}

.top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.product-name {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    color: var(--color-text-primary);
    line-height: 1.3;
    color: #685e5e;
}

.price-now {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text-primary);
    white-space: nowrap;
}

.product-meta {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin: 0;
    font-weight: bold;
    margin-top: 10px;
}

.desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
}

.star-row {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}

.stars {
    color: #EF9F27;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.price-was {
    font-size: 1.4rem;
    color: var(--color-text-secondary);
    text-decoration: line-through;
    font-weight: bold;
}

.price-save {
    font-size: 11px;
    font-weight: 600;
    color: #FFF;
    background: #00A412;
    padding: 2px 7px;
    border-radius: 20px;
}

.action-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.btn-buy {
    padding: 8px 18px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    margin-right: 10px;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #376ce1, #6297ee);
}

.btn-buy:active {
    transform: scale(0.97);
}

.btn-cart:hover {
    background: linear-gradient(135deg, #f99e0f, #ff9d1e);
}


.btn-expand {
    padding: 8px 14px;
    background: transparent;
    color: var(--color-text-secondary);
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: 9px;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.15s, border-color 0.15s;
}

.btn-whatsapp {
    padding: 8px 18px;
    background: linear-gradient(135deg, #32da03, #77c718);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    margin-right: 10px;
    border-color: transparent;
    color: white;
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.3);

}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #269507, #5fa10e);
}

.btn-expand:hover {
    background: var(--color-background-secondary);
    border-color: var(--color-border-secondary);
}

.btn-expand .chevron {
    transition: transform 0.25s;
    display: inline-block;
}

.btn-expand.open .chevron {
    transform: rotate(180deg);
}

/* ── Expand panel ── */
.details-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s;
    opacity: 0;
    border-top: 0.5px solid var(--color-border-tertiary);
}

.details-panel.open {
    max-height: 400px;
    opacity: 1;
}

.details-inner {
    padding: 14px 18px 16px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.detail-col {
    flex: 1;
    min-width: 160px;
}

.detail-col-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 4px 0;
    border-bottom: 0.5px solid var(--color-border-tertiary);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--color-text-secondary);
}

.detail-val {
    font-weight: 500;
    color: var(--color-text-primary);
    text-align: right;
}

.color-swatches {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-top: 4px;
}

.swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.15s;
}

.swatch.active {
    border-color: #1a1a1a;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.tag {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 20px;
    border: 0.5px solid var(--color-border-secondary);
    color: var(--color-text-secondary);
}

.stock-note {
    font-size: 12px;
    color: #E24B4A;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.stock-bar {
    height: 4px;
    background: var(--color-background-secondary);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 4px;
}

.stock-fill {
    height: 100%;
    width: 30%;
    background: #E24B4A;
    border-radius: 4px;
}

.card-footer-inner {
    padding: 8px 18px;
    border-top: 0.5px solid var(--color-border-tertiary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-background-secondary);
}

.shipping-note {
    font-size: 11px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.share-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-secondary);
    font-size: 15px;
}

.share-btn:hover {
    color: var(--color-text-primary);
}

section.s1 {
    padding: 30px 0;
    position: relative;
    background-color: #f4f4f445;
}

.price-p-sect {
    padding: 10px;
}


.col-12.price-wrap {
    min-height: 200px !important;
    display: flex;
}

.img-wrap-sect {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-buy {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    color: white;
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.3);
    transform: translateY(-2px);
}

.btn-cart {
    padding: 8px 18px;
    background: linear-gradient(135deg, #db901a, #ff9d1e);
    color: #fff;
    border: none;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    margin-right: 10px;
    border-color: transparent;
    color: white;
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.3);
    transform: translateY(-2px);
}

.btn-viewmore {
    padding: 8px 18px;
    background: #d4cdcdfc;
    color: #000;
    border: none;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    margin-right: 10px;
}

.view-more-btn-sect {
    text-align: center;
    display: block ruby !important;
    margin-bottom: 16px;
}

.service-image {
    background-image: url('../images/about-s1.png');
    background-size: cover;
}

.btn-viewmore:hover {
    box-shadow: 0 6px 20px rgba(138, 138, 140, 0.3);
    transform: translateY(-2px);
}

.service-det {
    padding: 20px 10px 10px 10px;
}

.img-sect-p {
    display: flex;
    justify-content: center;
    align-items: center;
}

.serv-img-s {
    max-width: 100%;
    height: 100%;
}


.service-includes li {
    padding: 2px 0;
}

.breadcrumb-hero {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    margin-top: 4px;
    font-size: 0.88rem;
    position: relative;
}

.booking-modal .modal-header {
    background: linear-gradient(135deg, #079e3b, #28b600);
    color: white;
    padding: 22px 30px;
}

.btn-book-service.whatsapp {
    width: auto;
    background-color: green !important;
    background: green;
    background-color: green;
    background-color: green;
}

.text-center {
    text-align: center !important;
    display: block ruby;
}

#bookingModal_msg .modal-header.whatsapp-hd {
    background: linear-gradient(135deg, #0050ff, #002eb6);
    color: white;
    padding: 22px 30px;
}

#wa_send_link2 {
    background-color: #0050ff !important;
    background: #0050ff;
    background-color: rgb(0, 80, 255);
}

@media (max-width: 767px) {
    .col-12.price-wrap {
        min-height: 90px !important;
        display: flex;
    }

    .product-name {
        font-size: 13px;
    }

    .page-hero {
        margin-top: 91px;
        padding: 40px 0px 40px 0px;
    }

    .filter-btn {
        padding: 6px 15px;
    }

    a.filter-btn:hover {
        padding: 6px 15px;
        transform: translateY(0px);
        background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
        border-color: transparent;
        color: white;
        box-shadow: 0 6px 20px rgba(26, 86, 219, 0.3) !important;
    }
}

/* ── Add-to-Cart Toast ── */
.cart-toast {
    position: fixed;
    bottom: 90px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    border-left: 4px solid #1D9E75;
    min-width: 260px;
    max-width: 320px;
    transform: translateX(calc(100% + 40px));
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    pointer-events: none;
    z-index: 99999;
}

.cart-toast.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.cart-toast-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4f5ec, #a8edda);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #1D9E75;
}

.cart-toast-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cart-toast-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1D9E75;
}

.cart-toast-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-toast-link {
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary, #1a56db);
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-toast-link:hover {
    text-decoration: underline;
}

.cart-toast.already {
    border-left-color: #f3121d;
}

.cart-toast.already .cart-toast-icon {
    background: #fff6f6;
    color: #f31212;
}

.cart-toast.already .cart-toast-label {
    color: #f31212;
}

.btn-cart.in-cart {
    background: linear-gradient(135deg, #e9e3d9, #e9e1d6);
    color: #2b2929;
}