/* =============================================
   MANASWINI HERO SLIDER v2.0
   - Info bar BELOW image (white bg)
   - Full card is clickable link
   - Empty categories auto hidden
============================================= */

.mhs-wrap {
    display: flex;
    min-height: 560px;
    background: #fdf6f2;
    overflow: hidden;
    width: 100%;
    position: relative;
    align-items: stretch;
}

/* ── LEFT ── */
.mhs-left {
    width: 38%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 52px;
    background: inherit;
}

.mhs-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
    font-weight: 500;
    margin: 0 0 16px;
}

.mhs-heading {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 400;
    color: #1a1410;
    line-height: 1.2;
    margin: 0 0 20px;
}

.mhs-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.85;
    max-width: 300px;
    font-weight: 300;
    margin: 0 0 36px;
}

/* Arrows */
.mhs-arrows {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mhs-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #333;
    font-size: 18px;
    padding: 0;
    outline: none;
    line-height: 1;
}
.mhs-arrow:hover {
    background: #1a1410;
    border-color: #1a1410;
    color: #fff;
}

.mhs-counter {
    margin-left: 4px;
    font-size: 12px;
    color: #aaa;
    letter-spacing: 0.08em;
}
.mhs-cur { color: #1a1410; font-weight: 600; }

/* ── RIGHT ── */
.mhs-right {
    flex: 1;
    overflow: hidden;
    min-width: 0;
    display: flex;
    align-items: stretch;
}

.mhs-swiper {
    width: 100%;
    overflow: visible !important;
}
.mhs-right { overflow: hidden !important; }

/* ── SLIDE CARD — Full link ── */
a.mhs-slide,
.mhs-slide {
    display: flex !important;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit !important;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

a.mhs-slide:hover,
.mhs-slide:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

/* ── IMAGE ── */
.mhs-slide-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}
a.mhs-slide:hover .mhs-slide-img {
    transform: scale(1.03);
}

/* Placeholder BG */
.mhs-slide-bg {
    width: 100%;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}
a.mhs-slide:hover .mhs-slide-bg {
    transform: scale(1.03);
}

/* ── INFO BAR — Below image, white bg ── */
.mhs-slide-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: #fff;
    flex-shrink: 0;
    border-top: 1px solid #f0ece8;
}

.mhs-slide-name {
    font-size: 18px;
    font-weight: 500;
    color: #1a1410;
    line-height: 1.2;
    margin-bottom: 3px;
}

.mhs-slide-count {
    font-size: 13px;
    color: #888;
    font-weight: 300;
}

/* Arrow icon — right side of info bar */
.mhs-slide-arrow {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 13px;
    transition: all 0.2s ease;
    text-decoration: none;
}
a.mhs-slide:hover .mhs-slide-arrow {
    background: #1a1410;
    color: #fff;
    border-color: #1a1410;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    .mhs-wrap { flex-direction: column; }
    .mhs-left {
        width: 100%;
        padding: 36px 24px 28px;
    }
    .mhs-slide-img,
    .mhs-slide-bg { height: 300px !important; }
}
@media (max-width: 480px) {
    .mhs-heading { font-size: 1.7rem; }
    .mhs-slide-img,
    .mhs-slide-bg { height: 240px !important; }
}

/* =============================================
   PRODUCT SHOWCASE SLIDER
   "Hot this week" style
============================================= */

.pss-wrap {
    background: #fff;
    padding: 3rem 4vw 4rem;
    overflow: hidden;
}

/* Header */
.pss-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.pss-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    color: #1a1410;
    margin: 0;
    letter-spacing: -0.01em;
}

.pss-nav {
    display: flex;
    gap: 10px;
}

.pss-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #555;
    padding: 0;
    line-height: 1;
    transition: all 0.2s ease;
    outline: none;
}
.pss-arrow:hover {
    border-color: #1a1410;
    color: #1a1410;
    background: #f5f0eb;
}

/* Swiper */
.pss-swiper {
    overflow: visible !important;
}
.pss-wrap { overflow: hidden !important; }

/* Slide */
.pss-slide {
    display: flex !important;
    align-items: stretch;
    background: #fff;
    gap: 0;
}

/* Image side */
.pss-img-wrap {
    width: 52%;
    flex-shrink: 0;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    background: #f5ede8;
    text-decoration: none;
}

.pss-slide-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.pss-img-wrap:hover .pss-slide-img { transform: scale(1.03); }

.pss-slide-bg {
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

/* Details side */
.pss-details {
    flex: 1;
    padding: 3rem 3rem 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pss-cat {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.pss-name {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: #1a1410;
    line-height: 1.2;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}
.pss-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.pss-name a:hover { color: #c07858; }

/* Price */
.pss-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pss-price-sale {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c07858;
}
.pss-price-sale .woocommerce-Price-amount { color: inherit !important; }

.pss-price-old {
    font-size: 1rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
}
.pss-price-old .woocommerce-Price-amount { color: inherit !important; }

/* Description */
.pss-desc {
    font-size: 14.5px;
    color: #666;
    line-height: 1.85;
    max-width: 400px;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Button */
.pss-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #c07858;
    color: #fff !important;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    letter-spacing: 0.04em;
    transition: all 0.25s ease;
    align-self: flex-start;
}
.pss-btn:hover {
    background: #a06040;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192,120,88,0.3);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    .pss-slide { flex-direction: column; }
    .pss-img-wrap { width: 100%; }
    .pss-slide-img, .pss-slide-bg { height: 300px !important; }
    .pss-details { padding: 24px 20px 28px; }
    .pss-name { font-size: 1.5rem; }
}
