/* =========================================
   RESET
========================================= */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: "DM Sans", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    --light-pink: #fac9de;
    --dark-pink:  #8B1A3A;
    --pink-btn:   #ff5fa2;
}

.clean-link {
    text-decoration: none;
    color: inherit;
}

.cursor-pointer {
    cursor: pointer;
}

/* =========================================
   HEADER
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9995;
    transition: background .4s ease, box-shadow .4s ease;
}

.transparent-header {
    background: transparent;
}

.site-header.scrolled {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.header-logo {
    width: 120px;
}

body {
    padding-top: 0;
}

/* =========================================
   HERO SLIDER
========================================= */

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#abHeroWrap {
    position: relative;
    width: 100%;
}

.ab-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.ab-slide.ab-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-img {
    width: 100%;
    height: clamp(220px, 55vw, 700px);
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.hero-content {
    position: absolute;
    bottom: clamp(16px, 5vw, 48px);
    left: clamp(16px, 6vw, 64px);
    z-index: 5;
}

/* Hero button — reuse .hero-btn for the SHOP NOW CTA */
.hero-btn {
    background: #fff;
    color: #333;
    border: none;
    padding: clamp(8px, 1.5vw, 14px) clamp(20px, 4vw, 48px);
    font-size: clamp(11px, 1.4vw, 16px);
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s, color .3s;
}

.hero-btn:hover {
    background: var(--dark-pink);
    color: #fff;
}

.hero-btn-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(30px, 4vw, 44px);
    height: clamp(30px, 4vw, 44px);
    border-radius: 50%;
    border: 1px solid #000 !important;
    background: rgba(255, 255, 255, .85) !important;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(13px, 1.6vw, 18px);
    cursor: pointer;
    transition: background .2s;
}

.hero-btn-nav:hover {
    background: #fff !important;
}

.hero-btn-nav.prev { left: clamp(8px, 2vw, 20px); }
.hero-btn-nav.next { right: clamp(8px, 2vw, 20px); }

.hero-dots {
    position: absolute;
    bottom: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    border: 1px solid #fff;
    cursor: pointer;
    transition: background .2s;
    padding: 0;
}

.hero-dot.active {
    background: #fff;
}

/* =========================================
   CATEGORY SECTION
========================================= */

.category-section {
    padding: 20px 0;
    overflow: hidden;
}

/* Desktop: grid; mobile: horizontal scroll — see media queries below */
.category-slider {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: clamp(8px, 2vw, 24px);
    padding: 10px clamp(8px, 2vw, 16px);
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.category-item {
    text-align: center;
    cursor: pointer;
}

.category-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    transition: transform .3s;
}

.category-item img:hover {
    transform: scale(1.05);
}

.category-item p {
    margin-top: 8px;
    font-size: clamp(10px, 1.1vw, 13px);
    line-height: 1.4;
    color: #333;
}

/* =========================================
   BEST SELLERS
========================================= */

.best-sellers {
    background: #fff;
}

.best-title {
    font-size: clamp(22px, 3.5vw, 42px);
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
}

.product-card {
    margin-bottom: 30px;
    width: 100%;
}

.product-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

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

.product-info {
    text-align: center;
    padding-top: 10px;
}

.product-name {
    font-size: clamp(12px, 1.2vw, 15px);
    line-height: 1.5;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 4px;
    color: #222;
}

.sizes {
    font-size: clamp(10px, 1vw, 12px);
    color: #888;
    margin: 0 0 4px;
}

.price {
    font-size: clamp(11px, 1.1vw, 14px);
    color: #444;
    margin: 0;
}

.view-all-btn {
    border: 1px solid #333;
    background: transparent;
    color: #333;
    padding: 12px 48px;
    font-size: 13px;
    letter-spacing: 2px;
    display: inline-block;
    transition: background .2s, color .2s, border-color .2s;
}

.view-all-btn:hover {
    background: var(--dark-pink);
    color: #fff;
    border-color: var(--dark-pink);
}

/* =========================================
   QUICK VIEW (kept for future use)
========================================= */

.quick-view-btn {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .3s;
}

.product-img-wrap:hover .quick-view-btn {
    opacity: 1;
}

.quickview-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.quickview-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quickview-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 850px;
    background: #fff;
    padding: 25px;
    z-index: 9999;
    max-height: 90vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
}

.quickview-modal.active {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   CART SIDEBAR
========================================= */

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9998;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #2f2f2f;
    color: #fff;
    z-index: 9999;
    transition: right .4s ease;
    overflow-y: auto;
}

.cart-sidebar.active {
    right: 0;
}

.cart-count {
    background: var(--pink-btn);
    color: #fff;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 12px;
}

/* =========================================
   SHOP BY COLLECTION
========================================= */

.shop-by-collection {
    padding: clamp(24px, 4vw, 60px) clamp(12px, 3vw, 40px);
}

.shop-by-collection img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .4s;
}

.shop-by-collection img:hover {
    transform: scale(1.02);
}

.shop-by-collection p {
    font-size: clamp(13px, 1.4vw, 17px);
    margin-top: 10px;
    text-align: center;
}

/* =========================================
   SHOP BY CATEGORY
========================================= */

.shop-by-category {
    background: #fafafa;
}

.shop-by-category-title {
    font-size: clamp(20px, 3.5vw, 44px) !important;
}

.shop-by-category .col-lg-3 img,
.shop-by-category .col-6 img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform .4s;
}

.shop-by-category .col-lg-3 img:hover,
.shop-by-category .col-6 img:hover {
    transform: scale(1.03);
}

.shop-by-category p {
    font-size: clamp(12px, 1.3vw, 16px);
    text-align: center;
    margin-top: 10px;
}

.primary-hover {
    transition: color .2s;
}

.primary-hover:hover {
    color: var(--dark-pink);
}

/* =========================================
   BRAND BANNER
========================================= */

.brand-banner-section {
    overflow: hidden;
}

.brand-banner-inner {
    width: 100%;
    background: #FDF0F4;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Georgia, serif;
}

.brand-top-band {
    width: 100%;
    background: #F2C4CE;
    padding: clamp(14px, 3vw, 22px) 0 clamp(10px, 2vw, 14px);
    text-align: center;
}

.brand-name {
    font-size: clamp(24px, 5vw, 42px);
    letter-spacing: clamp(6px, 2vw, 14px);
    color: #8B1A3A;
}

.brand-sub {
    font-size: clamp(12px, 2vw, 20px);
    letter-spacing: clamp(8px, 3vw, 20px);
    color: #C05070;
    margin-top: 4px;
}

.brand-hr {
    width: 80%;
    border: none;
    border-top: 1px solid #D4879A;
    margin: 12px auto;
}

.brand-images {
    display: flex;
    flex-direction: row;
    width: 90%;
    gap: clamp(10px, 2vw, 20px);
    padding: 10px 0;
}

.brand-img-wrap {
    flex: 1;
    border: 2px solid #E8A0B4;
    border-radius: 10px;
    overflow: hidden;
}

.brand-img-wrap img {
    width: 100%;
    height: clamp(140px, 25vw, 340px);
    object-fit: cover;
    display: block;
}

.brand-tagline {
    text-align: center;
    padding: clamp(10px, 2vw, 14px) 0 6px;
}

.brand-tagline-main {
    font-size: clamp(13px, 2.2vw, 22px);
    letter-spacing: clamp(3px, 1.5vw, 8px);
    color: #8B1A3A;
}

.brand-tagline-sub {
    font-size: clamp(11px, 1.4vw, 16px);
    color: #C05070;
    font-style: italic;
    margin-top: 5px;
    letter-spacing: clamp(1px, 0.5vw, 2px);
}

.brand-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 6px 0;
}

.brand-deco-line {
    height: 1px;
    width: clamp(60px, 15vw, 180px);
    background: #D4879A;
    display: inline-block;
}

.brand-deco-dot {
    width: 7px;
    height: 7px;
    background: #D4879A;
    border-radius: 50%;
    display: inline-block;
}

.brand-bottom-band {
    width: 100%;
    background: #F2C4CE;
    padding: clamp(12px, 2vw, 16px) 0 clamp(14px, 2.5vw, 20px);
    text-align: center;
}

.brand-bottom-name {
    font-size: clamp(16px, 3vw, 30px);
    letter-spacing: clamp(4px, 1.5vw, 10px);
    color: #8B1A3A;
}

.brand-bottom-url {
    font-family: Arial, sans-serif;
    font-size: clamp(11px, 1.3vw, 15px);
    letter-spacing: clamp(2px, 0.8vw, 4px);
    color: #C05070;
    margin-top: 5px;
}

/* =========================================
   OUR STORES
========================================= */

.our-stores h3 {
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
}

.our-stores h4 {
    font-size: clamp(24px, 3.5vw, 40px) !important;
}

.our-stores p {
    font-size: clamp(13px, 1.3vw, 16px);
    color: #555;
    line-height: 1.7;
}

.our-stores img {
    width: 100%;
    height: clamp(200px, 30vw, 440px);
    object-fit: cover;
}

/* =========================================
   POPULAR SEARCHES
========================================= */

.popular-search-section h3 {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 500;
}

.sleep {
    font-size: clamp(12px, 1.2vw, 15px);
    line-height: 2;
    color: #333;
}

.sleep a {
    color: #555;
    transition: color .2s;
}

.sleep a:hover {
    color: var(--dark-pink);
}

/* =========================================
   NEWSLETTER
========================================= */

.newsletter {
    background: #FDF0F4;
}

.newsletter h4 {
    font-size: clamp(20px, 3vw, 40px) !important;
}

.newsletter p {
    font-size: clamp(13px, 1.3vw, 16px);
    color: #666;
}

.newsletter input {
    font-size: clamp(13px, 1.2vw, 15px);
    outline: none;
}

.newsletter button {
    background: var(--dark-pink) !important;
    font-size: clamp(12px, 1.2vw, 15px);
    white-space: nowrap;
    transition: opacity .2s;
}

.newsletter button:hover {
    opacity: .85;
}

/* =========================================
   FOOTER
========================================= */

.footer-section {
    background: #f7d6e3;
    padding: 50px 0;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-row a {
    text-decoration: none;
    color: #333;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   WOOCOMMERCE
========================================= */

.single_add_to_cart_button {
    background: var(--pink-btn) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 25px !important;
}

.quantity input {
    width: 70px !important;
}

.bg-dark-pink {
    background-color: var(--dark-pink) !important;
}

/* =========================================
   UTILITY
========================================= */

/* =========================================
   RESPONSIVE — TABLET  (≤ 992px)
========================================= */

@media (max-width: 992px) {

    .category-slider {
        grid-template-columns: repeat(5, 1fr);
    }

    .best-title {
        font-size: 34px;
    }

    .our-stores .w-50 {
        width: 70% !important;
    }

}

/* =========================================
   RESPONSIVE — MOBILE  (≤ 768px)
========================================= */

@media (max-width: 768px) {

    body {
        padding-top: 70px;
    }

    /* prevent double-overflow from Bootstrap */
    .container,
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Hero */
    .hero-content {
        bottom: 16px;
        left: 16px;
    }

    .hero-btn {
        font-size: 12px;
        padding: 8px 18px;
    }

    .hero-btn-nav {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    /* Category — switch to horizontal scroll */
    .category-slider {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 0 16px 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .category-item {
        min-width: 90px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .category-item img {
        width: 80px;
        height: 80px;
    }

    .category-item p {
        font-size: 12px;
    }

    /* Best sellers */
    .best-title {
        font-size: 28px;
    }

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

    .price {
        font-size: 13px;
    }

    /* Shop by Collection — stack to 1 col */
    .shop-by-collection .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Our Stores */
    .our-stores .w-50 {
        width: 85% !important;
    }

    /* Cart */
    .cart-sidebar {
        width: 100%;
    }

    /* Footer */
    .footer-row {
        justify-content: center;
    }

    section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

}

/* =========================================
   RESPONSIVE — SMALL MOBILE  (≤ 576px)
========================================= */

@media (max-width: 576px) {

    /* Hero */
    .hero-btn-nav {
        display: none; /* use swipe instead */
    }

    .hero-btn {
        font-size: 11px;
        padding: 7px 15px;
    }

    /* Category */
    .category-item {
        min-width: 80px;
    }

    .category-item img {
        width: 70px;
        height: 70px;
    }

    /* Best sellers */
    .best-title {
        font-size: 22px;
    }

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

    .price {
        font-size: 12px;
    }

    /* Header */
    .header-logo {
        width: 80px;
    }

    /* Shop by Category — 2 cols on mobile */
    .shop-by-category .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Newsletter — stack input + button */
    .newsletter .col-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .newsletter .col-2,
    .newsletter .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .newsletter .row {
        flex-direction: column;
        align-items: stretch !important;
        gap: 8px;
    }

    .newsletter button {
        width: 100%;
        padding: 10px;
    }

    /* Our Stores */
    .our-stores .row {
        flex-direction: column;
    }

    .our-stores .d-flex {
        margin-bottom: 20px;
    }

}

/* =========================
   PREMIUM HEADER
========================= */

.site-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#fff;
    box-shadow:0 2px 20px rgba(0,0,0,0.05);
}

/* TOP BAR */

.header-top{
    background:#c96f93 !important;
    font-size:13px;
    letter-spacing:0.5px;
    font-weight:500;
}

/* DESKTOP HEADER */

.header-desktop{
    background:#fff;
}

.header-logo img{
    transition:0.3s;
}

.header-logo img:hover{
    transform:scale(1.05);
}

/* NAV */

.nav-list{
    gap:34px !important;
}

.nav-item{
    position:relative;
    font-size:14px;
    font-weight:500;
    letter-spacing:0.5px;
    transition:0.3s;
}

.nav-item:hover{
    color:#c96f93;
}

/* UNDERLINE EFFECT */

.nav-item::after{
    content:'';
    position:absolute;
    bottom:-8px;
    left:0;
    width:0;
    height:2px;
    background:#c96f93;
    transition:0.3s;
}

.nav-item:hover::after{
    width:100%;
}

/* ICONS */

.header-icons i{
    font-size:18px;
    transition:0.3s;
}

.header-icons i:hover{
    color:#c96f93;
    transform:translateY(-2px);
}

/* CART COUNT */

.cart-count{
    background:#c96f93;
    color:#fff;
    width:20px;
    height:20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    position:relative;
    left:-12px;
    top:-10px;
}

/* MOBILE */

.header-mobile{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

/* MOBILE MENU */

.mobile-menu-sidebar{
    background:#111;
}

.mobile-menu-list li{
    border-bottom:1px solid rgba(255,255,255,0.08);
}

/* SEARCH BOX */

.search-input-wrap{
    border:1px solid #ddd;
    border-radius:40px;
    padding:14px 18px;
    background:#fff;
}

/* CART SIDEBAR */

.cart-sidebar{
    background:#111;
    color:#fff;
}

.cart-item{
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding-bottom:16px;
}

.cart-img{
    width:85px;
    border-radius:6px;
}

.qty-btn{
    width:32px;
    height:32px;
}

/* BUTTONS */

.btn-pink{
    background:#ef5b9c;
    color:#fff;
    border:none;
    font-weight:600;
    padding:14px;
}

.btn-pink:hover{
    background:#d94b89;
    color:#fff;
}

/* VIEW CART */

.btn-dark{
    background:#1d1d1d;
    border:none;
}

/* MOBILE HEADER */

@media(max-width:768px){

    .header-mobile .header-logo img{
        width:65px !important;
    }

    .mobile-menu-sidebar{
        width:85%;
    }
	
	

}



