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

:root{
    --primary:#05295E;
    --secondary:#F57860;
    --heading-color:var(--primary);
    --text-color:var(--primary);
    --text:#05295E;
    --white:#fff;
    background-color: rgb(255, 248, 238);

}

body{
    font-family: Arial, sans-serif;
}
/*.......................BUTTON STYLE.....................*/
.btn{

    display:inline-block;

    padding:14px 32px;

    background:var(--secondary-color);

    color:var(--white);

    text-decoration:none;

    border-radius:30px;

    transition:var(--transition);

}
.btn:hover{

    background:var(--primary-color);

}
/*footer*/
.footer-social {
    display: flex !important;
    width: 100%;
    justify-content: center !important;
    align-items: center;
    gap: 16px;
    margin: 32px auto 0;
    padding: 0;
    text-align: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    padding-top: 12px;
}

.footer-social a i {
    display: block;
    line-height: 1;
    font-size: 16px;
}

.footer-social a:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.footer-social .social-facebook  { background: #1877F2; }
.footer-social .social-instagram {
    background: radial-gradient(circle at 30% 107%,
        #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.footer-social .social-email    { background: #262626; }
.footer-social .social-linkedin { background: var(--secondary); } /* back to the site's pink accent color */
.footer-social .social-youtube  { background: #FF0000; }

nav{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 25px 8%;

    background: transparent;
    z-index: 100;
}
.nav-links{
    display: flex;
    gap: 30px;
    list-style: none;
    justify-self: start;
}
.nav-links a{
    text-decoration: none;
   color:rgb(216, 209, 209);     /* White */
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hover */
.nav-links a:hover{
    color: #F57860;
;      /* Pink */
}

/* Active page */
.nav-links a.active{
    color: #E57860;      /* Pink */
}

/* .............................LOGO ...................*/
.logo{
    justify-self: center;
}
.logo img{
    width:150px;
}
.nav-icons{
    display: flex;
    gap: 20px;
    justify-self: end;
}
/* ..............................hero section.........*/

.hero{
    position: relative;

    width: 100%;
    height: 100vh;

    background: url("../images/Jun\ 9\,\ 2026\,\ 02_41_49\ PM.webp") center center/cover no-repeat;

    display: flex;
    align-items: center;

    padding: 0 8%;
}

.overlay{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.35);
}

.hero-content{

    position: relative;

    z-index:2;

    max-width:600px;

    color:rgb(235, 221, 221);

}
.hero-content h1{

    font-size:30px;

    line-height:1.2;

    margin-bottom:20px;

}

.hero-content p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-btn{

    display:inline-block;

    padding:15px 35px;

    background: #F57860;

    color:#05295E;

    text-decoration:none;

    border-radius:50px;

    transition:.3s;

}

.hero-btn:hover{

    background: #05295E;
     color:white;
}


.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}
.welcome{
    background:#fff;
    padding:70px 0;
    text-align:center;
}
.welcome h2,h3{
    font-size:26px;
    color:var(--primary);
    margin-bottom:20px;
    line-height:1.3;
}
.welcome p{
    max-width:850px;
    margin:0 auto;
    color:var(--primary);
    line-height:1.8;
    font-size:17px;
}

/*.........................top categories..........................................*/
.categories{
    background:var(--secondary);
    padding:80px 0;
}
.categories h2{
    color:var(--primary);
    font-size:36px;
    text-align:center;
    margin-bottom:50px;
}
.category-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}
.category-card, .product-card{
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.category-card img{
    width:100%;
    display:block;
}
.category-card h3{
    padding:15px;
    font-size:16px;
    color:var(--primary);
    text-decoration: none;
}
.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}
.category-btn{
    display:block;
    text-align:center;
    margin-top:40px;

    color:#163D7A;

    text-decoration:none;

    font-weight:bold;
}
.category-card h3 a{
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
}
.category-card h3 a:hover{
    color: var(--secondary);
}

/*..............................PRODUCTS...........................*/
.products{
    padding:90px 0;
    background:var(--background-color);
}
.section-heading{
    text-align:center;
    margin-bottom:50px;
}
.section-heading h2{
    color:var(--heading-color);
    font-size:38px;
    margin-bottom:15px;
}
.section-heading p{
    color:var(--text-color);
    max-width:700px;
    margin:auto;
    line-height:1.8;
}
.products-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}
.product-card{

    background:var(--white);

    border-radius:var(--border-radius);

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}
.product-card:hover{

    transform:translateY(-10px);

}
.product-image{

    overflow:hidden;

}
.product-image img{

    width:100%;

    display:block;

    transition:.4s;

}
.product-card:hover img{

    transform:scale(1.08);

}
.product-info{

    padding:20px;

}
.product-info h3{

    color:var(--heading-color);

    margin-bottom:10px;

}
.price{

    font-size:20px;

    font-weight:bold;

    color:var(--secondary-color);

    margin-bottom:20px;

}
/*............. video section..................*/
.story-video{
    width: 100%;
    display: flex;
    justify-content: center;
}

.story-video iframe{
    width: 80%;
    max-width: 900px;
    height: 500px;
    border: none;
    border-radius: 12px;
}
.story-content{
    width: 80%;
    max-width: 800px;
    text-align: center;
}
.story-content h2{
color:var(--heading-color);
    font-size:38px;
    margin-bottom:15px;
    justify-content: center;
}
.story-content p{
    color:var(--text-color);
    max-width:700px;
    margin:auto;
    line-height:1.8;
}
.story-wrapper a{
    color: var(--primary);
    background-color: var(--secondary);
    margin-top: 15px;
}
.our-story{
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.story-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.cta-banner{
    background: url("../images/Gemini_Generated_Image_lb4ouylb4ouylb4o\ \(1\).png") center center/cover no-repeat;
    position: relative;
}

.cta-overlay{
    background: rgba(0,0,0,0.45);
    padding: 120px 0;
}

.cta-content{
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2{
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}




.footer{
    background: var(--secondary);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    margin-bottom: 50px;
}
.footer-logo{
    max-height: 46px;
    width: auto;
    margin-bottom: 14px;
}

.footer-column h3{
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-column p{
    line-height: 1.8;
    color: #ffffff;
}

.footer-column ul{
    list-style: none;
}

.footer-column ul li{
    margin-bottom: 12px;
}
.footer-column a{
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column a:hover{
    color: var(--secondary);
}
/*.footer-social{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.footer-social a{
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}
.footer-social a:hover{
    background: var(--secondary-color);
    transform: translateY(-5px);
}*/
.footer-bottom{
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

.footer-bottom p{
    color: #ffffff;
}






/* =========================
   MOBILE RESPONSIVE
========================= */

.mobile-menu{
    display:none;
}


@media (max-width:768px){
     body{
        width:100%;
        overflow-x:hidden;
    }
    .container{
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}
     section,
     header,
     main,
     footer{
    width:100%;
}
    /* HEADER */

    nav{
        padding:15px 20px;
        position:relative;
    }

    .mobile-menu{
        display:block;
        font-size:20px;
        color:var(--heading-color);
        cursor:pointer;
    }

    .nav-links{
        display:none;
    }

    .logo img{
        width:110px;
    }

    .nav-icons{
        gap:15px;
    }


    /* HERO */

    .hero{
        height:70vh;
        min-height:500px;
        padding:0 20px;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:15px;
    }


    /* CATEGORIES */

  /* CATEGORIES */

.category-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
}

.category-card{
    width: 100%;
}

.category-card img{
    width: 100%;
    height: auto;
    display: block;
}


    /* STORY */

    .story-video iframe{
        width:100%;
        height:250px;
    }

    .story-content{
        width:90%;
        background:url("../images/Gemini_Generated_Image_lb4ouylb4ouylb4o\ \(1\).png");
    }

    .story-content h2{
        font-size:30px;
    }


    /* CTA */

    .cta-overlay{
        padding:70px 20px;
    }
    
    .cta-content h2{
        font-size:30px;
    }


    /* FOOTER */

    .footer{
        padding:50px 20px 20px;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }
    /* NEW ARRIVALS / PRODUCTS */

.products-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
}

.product-card{
    width: 100%;
    min-width: 0;
}

.product-image{
    width: 100%;
}

.product-image img{
    width: 100%;
    height: auto;
    display: block;
}

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

.product-info h5{
    font-size: 14px;
    line-height: 1.3;
}

.product-info .price{
    font-size: 13px;
}

.product-info .btn{
    font-size: 12px;
    padding: 8px 12px;
}
/* =========================
   OUR STORY
========================= */

.our-story{
    width: 100%;
    padding: 60px 15px;
    display: block;
}

.story-wrapper{
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.story-content{
    width: 100%;
    text-align: center;
}

.story-content h2{
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.story-content p{
    width: 100%;
    max-width: 600px;
    margin: 0 auto 25px;
    font-size: 14px;
    line-height: 1.7;
}

.story-video{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-video iframe{
    width: 100%;
    max-width: 600px;
    height: 250px;
    border: none;
    border-radius: 10px;
}
/* =========================
   CTA BANNER
========================= */

.cta-banner{
    width: 100%;
    min-height: 400px;
}

.cta-overlay{
    width: 100%;
    min-height: 400px;
    padding: 70px 20px;
    display: flex;
    align-items: center;
}

.cta-content{
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2{
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.cta-content p{
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}
/* =========================
   FOOTER
========================= */

.footer{
    width: 100%;
    padding: 50px 15px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
}

/* Logo + About */
.footer-column:first-child {
    grid-column: 1 / -1;
    text-align: center;
}

/* Quick Links + Categories */
.footer-column:nth-child(2),
.footer-column:nth-child(3) {
    text-align: center;
}

/* Contact */
.footer-column:last-child {
    grid-column: 1 / -1;
    text-align: center;
}
}

/* ================================
   CATEGORY PAGE
================================ */

.category-products {
    padding: 80px 0;
    background: #fff8ef;
    min-height: 100vh;
}

.category-products .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-header {
    text-align: center;
    margin-bottom: 45px;
}

.category-header h2 {
    color:white;
    font-size: 40px;
    margin-bottom: 10px;
}

#product-count {
    color: #555;
    font-size: 16px;
    margin: 0;
}


/* Product Grid */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* Product Card */

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}


/* Product Image */

.product-image{

    height:280px;

    overflow:hidden;

}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Product Info */

.product-info {
    padding: 20px;
}

.product-info h3 {
    color: #05295E;
    font-size: 18px;
    margin: 0 0 12px;
    line-height: 1.4;
}

.product-info .price {
    font-size: 17px;
    font-weight: 600;
    color: #F57860;
    margin-bottom: 15px;
}


/* Button */

.product-info .btn {
    display: inline-block;
    background: #05295E;
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.product-info .btn:hover {
    background: #F57860;
}


/* Tablet */

@media (max-width: 992px) {

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* Mobile */

@media (max-width: 768px) {

    .category-products {
        padding: 50px 0;
    }

    .category-header h2 {
        font-size: 30px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-image {
        height: 200px;
    }

}


/* Small Mobile */

@media (max-width: 480px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-image {
        height: 260px;
    }

}
/* CATEGORY BANNER..............*/
/* =========================
   CATEGORY HERO
========================= */

.category-hero {
    position: relative;
    min-height: 220px;

    background: var(--nh-cream-deep);

    display: flex;
    align-items: center;

    color: var(--nh-ink);
}

.category-hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 44px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.category-hero h1 {
    order: 2;
    margin: 12px 0 0;

    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.breadcrumb a {
    color: var(--nh-muted);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb span {
    color: var(--nh-muted);
}
.category-hero .overlay {
    display: none;
}
.category-hero-content .breadcrumb {
    order: 1;
}
/* pRODUCT sECTION..............*/
.category-products{
    padding:80px 0;
    background:#F8F6F3;
}


/* ========================================
   CATEGORY PRODUCT GRID
======================================== */

.category-products {
    padding: 60px 5%;
    background: #fdfaf5;
}

.category-products .container {
    max-width: 1250px;
    margin: 0 auto;
}


/* Product Grid */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

@media (max-width: 992px) {

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 768px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

}

@media (max-width: 480px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Product Card */

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}


/* Hover */

.product-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.14);
}


/* Product Image */

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
}


.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}


/* Image hover */

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


/* Sale Badge */

.sale-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 2;

    background: #F57860;
    color: #ffffff;

    padding: 7px 12px;

    border-radius: 4px;

    font-size: 13px;
    font-weight: 600;
}


/* Product Information */

.product-info {
    padding: 20px;
}


.product-info h3 {
    margin: 0 0 12px;

    color: #05295E;

    font-size: 17px;
    line-height: 1.4;

    min-height: 48px;
}


/* Price */

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;
}


.sale-price {
    color: #05295E;

    font-size: 17px;
    font-weight: 700;
}


.regular-price {
    color: #999999;

    font-size: 14px;

    text-decoration: line-through;
}


/* View Details Button */

.product-info .btn {
    display: inline-block;

    width: 100%;

    padding: 11px 15px;

    text-align: center;

    background: #05295E;
    color: #ffffff;

    text-decoration: none;

    border-radius: 5px;

    font-size: 14px;
    font-weight: 600;

    transition: background 0.3s ease;
}


.product-info .btn:hover {
    background: #F57860;
}


/* pagination........*/
/* ========================================
   SHOP PAGINATION
======================================== */

/* ========================================
   PAGINATION
======================================== */

.pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    padding: 30px 0 60px;
}


/* Page numbers */

.page-number {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #ddd;
    border-radius: 4px;

    background: #fff;
    color: #333;

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* Hover */

.page-number:hover {
    background: #f5f5f5;
    border-color: #c44f2b;
    color: #c44f2b;
}


/* Active page */

.page-number.active {
    background: #c44f2b;
    border-color: #c44f2b;
    color: #fff;
}


/* Keep active orange on hover */

.page-number.active:hover {
    background: #c44f2b;
    border-color: #c44f2b;
    color: #fff;
}


/* Previous / Next */

.pagination-btn {
    height: 42px;

    padding: 0 20px;

    border: 1px solid #ddd;
    border-radius: 4px;

    background: #fff;
    color: #333;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* Hover */

.pagination-btn:hover:not(:disabled) {
    background: #c44f2b;
    border-color: #c44f2b;
    color: #fff;
}


/* Disabled */

.pagination-btn:disabled {
    background: #f8f8f8;
    color: #aaa;
    border-color: #ddd;
    cursor: not-allowed;
}



/* =========================================
   PRODUCT PAGE
========================================= */


/* =========================================
   PRODUCT HERO
========================================= */

.product-hero {

    position: relative;

    min-height: 220px;

    background: var(--nh-cream-deep);

    display: flex;

    align-items: center;

}


.product-hero .overlay {

    display: none;

}


.product-hero-content {

    position: relative;

    z-index: 2;

    width: 90%;

    max-width: 1200px;

    margin: auto;

    padding: 80px 24px 44px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}


.product-hero-content h1 {

    order: 2;

    color: var(--primary);

    font-family: "Playfair Display", Georgia, "Times New Roman", serif;

    font-size: 36px;

    margin: 12px 0 0;

    text-transform: none;

}


.product-hero .breadcrumb {

    order: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-size: 13px;

}


.product-hero .breadcrumb a {

    color: var(--nh-muted);

    text-decoration: none;

    transition: 0.3s;

}


.product-hero .breadcrumb a:hover {

    color: var(--secondary);

}


.product-hero .breadcrumb span {

    color: var(--nh-muted);

}



/* =========================================
   PRODUCT SECTION
========================================= */

.product-section {

    padding: 70px 0;

}


.product-container {

    width: 90%;

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: start;

}



/* =========================================
   PRODUCT GALLERY
========================================= */

.product-gallery {

    width: 100%;

}


.product-main-image {

    width: 100%;

    height: 560px;

    overflow: hidden;

    border-radius: 5px;

}


.product-main-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.product-thumbnails {

    display: flex;

    gap: 12px;

    margin-top: 12px;

}


.product-thumbnail {

    width: 80px;

    height: 80px;

    object-fit: cover;

    cursor: pointer;

    border: 2px solid transparent;

    border-radius: 4px;

    transition: 0.3s;

}


.product-thumbnail:hover {

    border-color: #F57860;

}


.product-thumbnail.active {

    border-color: #05295E;

}



/* =========================================
   PRODUCT DETAILS
========================================= */

.product-details {

    padding-top: 5px;

}


.product-details h1 {

    font-size: 28px;

    color: #222;

    margin-bottom: 15px;

}


.product-price {

    font-size: 22px;

    font-weight: 600;

    color: #05295E;

    margin-bottom: 25px;

}


.product-price .old-price {

    color: #999;

    text-decoration: line-through;

    font-size: 16px;

    margin-left: 10px;

}



/* =========================================
   QUANTITY
========================================= */

.quantity-wrapper {

    display: flex;

    width: 130px;

    height: 42px;

    margin-bottom: 15px;

}


.quantity-wrapper button {

    width: 40px;

    border: 1px solid #ddd;

    background: white;

    cursor: pointer;

    font-size: 18px;

}


.quantity-wrapper input {

    width: 50px;

    border-top: 1px solid #ddd;

    border-bottom: 1px solid #ddd;

    border-left: none;

    border-right: none;

    text-align: center;

}



/* =========================================
   PRODUCT BUTTONS
========================================= */

.product-buttons {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-bottom: 25px;

}


.add-cart-btn,
.buy-now-btn {

    width: 100%;

    height: 45px;

    border: none;

    border-radius: 5px;

    color: white;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;

}


.add-cart-btn {

    background: #05295E;

}


.buy-now-btn {

    background: #F57860;

}


.add-cart-btn:hover {

    background: #031d43;

}


.buy-now-btn:hover {

    background: #d95f49;

}



/* =========================================
   SHORT DESCRIPTION
========================================= */

.product-short-description {

    font-size: 14px;

    line-height: 1.7;

    color: #555;

    margin: 20px 0;

}



/* =========================================
   PRODUCT META
========================================= */

.product-meta {

    font-size: 14px;

    line-height: 1.8;

    border-top: 1px solid #eee;

    padding-top: 15px;

}


.product-meta p {

    margin: 5px 0;

}


.product-meta a {

    color: #05295E;

    text-decoration: none;

}



/* =========================================
   WISHLIST
========================================= */

.wishlist-btn {

    background: none;

    border: none;

    padding: 15px 0;

    cursor: pointer;

    color: #555;

}


.wishlist-btn:hover {

    color: #F57860;

}



/* =========================================
   DESCRIPTION
========================================= */

.product-content {

    width: 90%;

    max-width: 1200px;

    margin: 0 auto 70px;

}


.product-tabs {

    display: flex;

    justify-content: center;

    border-bottom: 1px solid #ddd;

    margin-bottom: 30px;

}


.tab-btn {

    background: none;

    border: none;

    padding: 15px 25px;

    cursor: pointer;

    font-size: 12px;

    color: #777;

}


.tab-btn.active {

    color: #05295E;

    border-bottom: 2px solid #F57860;

}


.description-content {

    font-size: 14px;

    line-height: 1.8;

    color: #555;

}



/* =========================================
   RELATED PRODUCTS
========================================= */

.related-section {

    width: 90%;

    max-width: 1200px;

    margin: 0 auto 70px;

}


.related-section h2 {

    font-size: 24px;

    color: #222;

    margin-bottom: 30px;

}


.related-products {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

}


.related-products .product-card {

    background: white;

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    transition: 0.3s;

}


.related-products .product-card:hover {

    transform: translateY(-5px);

}


.related-products .product-image {

    height: 250px;

    overflow: hidden;

}


.related-products .product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.related-products .product-info {

    padding: 18px;

}


.related-products .product-info h3 {

    font-size: 16px;

    color: #05295E;

}



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

.footer {

    background: var(--primary);

    color: #ffffff;

    padding: 50px 0 20px;

}


.footer-container {

    width: 90%;

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 40px;

}


.footer h3 {

    color: var(--secondary);

    font-size: 14px;

    margin-bottom: 15px;

}


.footer a {

    display: block;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    margin-bottom: 8px;

}


.footer a:hover {

    color: var(--secondary);

}


.footer p {

    font-size: 13px;

    color: #ffffff;

}


.footer-logo img {

    width: 170px;

}


.footer-bottom {

    width: 90%;

    max-width: 1200px;

    margin: 40px auto 0;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.2);

}


.footer-bottom p {

    font-size: 12px;

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .product-hero {

        height: 230px;

    }


    .product-hero-content h1 {

        font-size: 28px;

    }


    .product-container {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .product-main-image {

        height: 400px;

    }


    .related-products {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-container {

        grid-template-columns: 1fr 1fr;

    }

}


@media (max-width: 480px) {

    .product-main-image {

        height: 320px;

    }


    .related-products {

        grid-template-columns: 1fr;

    }


    .footer-container {

        grid-template-columns: 1fr;

    }

}
/* ========================================
   CART
======================================== */

.cart-section {
    padding: 80px 20px;
}


.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}


.cart-items h2,
.cart-summary h2 {
    margin-bottom: 30px;
}


.cart-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}


.cart-item-image {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}


.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.cart-item-details {
    flex: 1;
}


.cart-item-details h3 {
    margin: 0 0 10px;
    font-size: 20px;
}


.cart-item-price {
    font-size: 16px;
    margin-bottom: 15px;
}


.cart-quantity {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid #ccc;
}


.cart-quantity button {
    width: 40px;
    height: 40px;
    border: 0;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 20px;
}


.cart-quantity input {
    width: 50px;
    height: 40px;
    border: 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
}


.cart-item-total {
    margin-top: 15px;
}


.remove-cart-item {
    border: 0;
    background: none;
    cursor: pointer;
    margin-top: 15px;
    padding: 0;
}


.cart-summary {
    padding: 30px;
    border: 1px solid #ddd;
    background: #fafafa;
}


.cart-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
}


.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    margin: 25px 0;
}


.checkout-btn {
    width: 100%;
    padding: 16px;
    border: 0;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 15px;
}


.continue-shopping {
    display: block;
    text-align: center;
}


.empty-cart {
    text-align: center;
    padding: 80px 20px;
}


.empty-cart i {
    font-size: 50px;
    margin-bottom: 20px;
}


.empty-cart h2 {
    margin-bottom: 10px;
}


.empty-cart p {
    margin-bottom: 30px;
}


/* ========================================
   CART HEADER BADGE
======================================== */

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;

    min-width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 11px;
    line-height: 1;

    padding: 2px 5px;

    background: #f57860;
    color: white;
}


/* ========================================
   ADD TO CART MESSAGE
======================================== */

.cart-message {
    position: fixed;

    top: 30px;
    right: 30px;

    background: #05295e;
    color: white;

    padding: 15px 25px;

    border-radius: 5px;

    z-index: 9999;

    opacity: 0;

    transform: translateY(-20px);

    transition:
        opacity .3s ease,
        transform .3s ease;
}


.cart-message.show {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .cart-layout {
        grid-template-columns: 1fr;
    }


    .cart-item {
        flex-direction: column;
    }


    .cart-item-image {
        width: 100%;
        height: 280px;
    }


    .cart-summary {
        margin-top: 30px;
    }


    .cart-message {
        left: 20px;
        right: 20px;
        top: 20px;
        text-align: center;
    }

}

/* ========================================
   CHECKOUT
======================================== */

.checkout-form h2 {
    margin-bottom: 25px;
}

.checkout-form .form-group {
    margin-bottom: 18px;
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkout-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    color: var(--primary);
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.checkout-form textarea {
    resize: vertical;
}

.checkout-error {
    color: #c0392b;
    font-size: 14px;
    margin-bottom: 15px;
    min-height: 18px;
}

.empty-cart .fa-circle-check {
    color: #2e7d32;
}

.checkout-btn {
    background: var(--secondary);
    color: var(--white);
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: var(--primary);
}


@media (max-width: 768px) {

    .checkout-form .form-row {
        grid-template-columns: 1fr;
    }

}

/* ============================================
   NAVBAR DROPDOWNS (Shop / Family Design / More)
   New, distinctly-named rules — appended last so
   they aren't overridden by earlier duplicate blocks.
============================================ */

.nav-item.has-dropdown {
    position: relative;
}

.mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;                 /* was: left:50%; transform:translateX(-50%) — that centered on the (narrow) trigger link and pushed it off-screen */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    padding: 28px 32px;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 32px;
    z-index: 200;
    min-width: 600px;
    max-width: calc(100vw - 32px);   /* never overflow the viewport */
    box-sizing: border-box;
}

.simple-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    padding: 12px 0;
    min-width: 180px;
    z-index: 200;
}

.simple-dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--primary);
    font-size: 14px;
    white-space: nowrap;
}

.simple-dropdown a:hover {
    background: #f5f2ec;
    color: var(--secondary);
}

/* ---- Desktop: open on hover ---- */
.nav-item.has-dropdown:hover .mega-dropdown {
    display: grid;
}

.nav-item.has-dropdown:hover .simple-dropdown {
    display: block;
}

/* ---- Mobile: open on tap (navbar.js adds "dropdown-open") ---- */
.nav-item.has-dropdown.dropdown-open .mega-dropdown {
    display: grid;
}

.nav-item.has-dropdown.dropdown-open .simple-dropdown {
    display: block;
}

.mega-col h4 {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 700;
}

.mega-col h4 a {
    color: var(--primary);
}

.mega-col h4 a:hover {
    color: var(--secondary);
}

.mega-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-col ul li {
    margin-bottom: 8px;
}

.mega-col ul li a {
    color: #444;
    font-size: 13.5px;
}

.mega-col ul li a:hover {
    color: var(--secondary);
}

.menu-item-disabled {
    color: #b9b3a8;
    font-size: 13.5px;
    margin-bottom: 8px;
    cursor: default;
}

/* ---- Mobile: collapse to a single column that flows
        naturally inside the slide-out menu ---- */
@media (max-width: 900px) {

    .mega-dropdown {
        position: static;
        min-width: 0;
        max-width: none;
        width: 100%;
        grid-template-columns: 1fr;
        box-shadow: none;
        padding: 12px 16px;
    }

    .simple-dropdown {
        position: static;
        min-width: 0;
        width: 100%;
        box-shadow: none;
    }

}
/* ============================================
   SEARCH OVERLAY
============================================ */

.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 41, 94, 0.85);
    z-index: 999;
    padding: 80px 20px;
}

.search-overlay.open {
    display: block;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

.search-box-header {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-box-header input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.search-box-header input:focus {
    outline: none;
    border-color: var(--secondary);
}

.search-close-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
}

#search-results {
    margin-top: 16px;
    max-height: 400px;
    overflow-y: auto;
}

.search-group h5 {
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.04em;
    margin: 16px 0 8px;
}

.search-result-item {
    display: block;
    padding: 10px 8px;
    border-radius: 6px;
    color: var(--primary);
    font-size: 14px;
}

.search-result-item:hover {
    background: #f5f2ec;
}

.search-result-product {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-result-product img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 4px;
}

.search-empty {
    color: #999;
    font-size: 14px;
    padding: 10px 0;
}

/* ============================================
   MOBILE NAV
============================================ */

@media (max-width: 900px) {

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .mega-dropdown,
    .simple-dropdown {
        display: none;
        position: static;
        transform: none;
        box-shadow: none;
        grid-template-columns: 1fr;
        min-width: unset;
        width: 100%;
        padding: 10px 0 10px 16px;
    }

    .nav-item.has-dropdown.dropdown-open .mega-dropdown,
    .nav-item.has-dropdown.dropdown-open .simple-dropdown {
        display: grid;
    }

    .search-box {
        margin-top: 40px;
    }
}

/* ============================================
   ABOUT / CONTACT PAGE SHARED LAYOUT
============================================ */

.info-page-hero {
    background: var(--nh-cream-deep);
    color: var(--nh-ink);
    padding: 80px 24px 44px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-page-hero h1 {
    order: 2;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 36px;
    margin: 12px 0 0;
    color: var(--primary);
}

.info-page-hero .breadcrumb {
    order: 1;
    justify-content: center;
}

.info-page-hero .breadcrumb a,
.info-page-hero .breadcrumb span {
    color: var(--nh-muted);
    font-size: 13px;
}

.info-page-hero .breadcrumb a:hover {
    color: var(--secondary);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 24px;
    text-align: center;
}

.stats-row .stat-icon {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.stats-row h4 {
    color: var(--secondary);
    margin: 0 0 8px;
}

.stats-row p {
    font-size: 13.5px;
    color: #555;
    margin: 0;
}
.story-block p{
    padding-bottom: 30px;
}
.story-block {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 24px;
    line-height: 1.7;
    color: #333;
}

.story-block h2 {
    color: var(--primary);
}

.split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 24px;
    align-items: center;
}

.split-feature img {
    width: 100%;
    border-radius: 10px;
}
.split-feature p{
    padding-bottom: 30px;
}
.split-feature h3 {
    color: var(--primary);
}

.contact-layout {
    display: grid;
    padding-top: 30px;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.contact-form-panel {
    background: #f2ede4;
    padding: 60px 48px;
}

.contact-form-panel h2 {
    color: var(--primary);
    margin-top: 0;
    padding-bottom: 10px;
}
.contact-form-panel p {
   
    padding-bottom: 10px;
}
.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
}

.contact-info-panel {
    background: linear-gradient(rgba(150, 172, 204, 0.55), rgba(5,41,94,0.55)),
                url("../images/bowl.webp") center/cover;
    color: #fff;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-panel h3 {
    font-size: 26px;
    padding-bottom: 10px;
}
.contact-info-panel p {
   
    padding-bottom: 10px;
}


.contact-topline {
    display: flex;
    padding-top: 30px;
    justify-content: space-around;
    padding: 40px 24px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-topline div h5 {
    color: var(--primary);
    margin: 0 0 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-topline div a {
    color: var(--secondary);
}

.form-status-msg {
    font-size: 13.5px;
    margin-top: 6px;
}

.form-status-msg.success { color: #2e7d32; }
.form-status-msg.error { color: #c0392b; }

@media (max-width: 900px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .split-feature { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
}

/* ============================================
   ALL CATEGORIES PAGE
============================================ */

.all-categories-section {
    background: var(--nh-cream);
    padding: 60px 0;
}

.all-categories-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.all-categories-section h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 36px;
}

.all-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-tile {
    text-align: center;
    text-decoration: none;
    color: var(--primary);
}

.category-tile-image {
    aspect-ratio: 1;
    border-radius: 10px;
    background: #f2ede4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 10px;
}

.category-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tile-image i {
    font-size: 28px;
    color: var(--secondary);
}

.category-tile span {
    font-size: 13.5px;
    font-weight: 600;
}

.category-tile.disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 900px) {
    .all-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

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

    .product-image img {
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    .product-info h3 {
        font-size: 13px;
        line-height: 1.3;
    }
}


/* ============================================================
   HOMEPAGE REDESIGN — scoped entirely to <body class="home-redesign">
   (index.html only). Every rule below is prefixed with
   "body.home-redesign" so nothing here can ever affect shop.html,
   product.html, cart.html, checkout.html, or any other page — they
   keep using the original rules above, untouched.
   ============================================================ */

:root {
    --nh-cream: #faf5ec;
    --nh-cream-deep: #f2ead9;
    --nh-white: #ffffff;
    --nh-green: #05295e;
    --nh-green-light: #0d3f7a;
    --nh-ink: #2a251e;
    --nh-muted: #837a6c;
    --nh-border: #e6dcc7;
    --nh-badge: #b3502f;
}

body.home-redesign {
    background: var(--nh-cream);
    color: var(--nh-ink);
    font-family: "Poppins", Arial, sans-serif;
}

body.home-redesign h1,
body.home-redesign h2,
body.home-redesign h3 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    color: var(--nh-green);
    font-weight: 700;
    margin: 0;
}

body.home-redesign .nav-links a,
body.home-redesign .nh-hero-eyebrow,
body.home-redesign .nh-btn-primary,
body.home-redesign .nh-btn-secondary,
body.home-redesign .nh-hero-badge,
body.home-redesign .nh-section-heading a,
body.home-redesign .nh-view-btn {
    font-family: "Poppins", Arial, sans-serif;
}

body.home-redesign a {
    text-decoration: none;
}

/* ---- Top announcement bar ---- */
body.home-redesign .nh-topbar {
    background: var(--nh-green);
    color: var(--nh-cream);
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.03em;
    padding: 11px 16px;
    position: relative;
    z-index: 2;
}

/* ---- Header ---- */
body.home-redesign header {
    background: var(--nh-cream);
    border-bottom: 1px solid var(--nh-border);
    position: relative;
    z-index: 1;
}

body.home-redesign .navbar {
    background: transparent;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px;
    align-items: center;
    min-height: 64px;
}

body.home-redesign .nav-links {
    gap: 34px;
}

body.home-redesign .nav-links a {
    color: var(--nh-ink);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

body.home-redesign .nav-links a:hover,
body.home-redesign .nav-links a.active {
    color: var(--nh-badge);
}

body.home-redesign .logo img {
    width: auto;
    max-height: 56px;
}

body.home-redesign .nav-icons {
    gap: 22px;
    align-items: center;
}

body.home-redesign .nav-icons a {
    color: var(--nh-ink);
    font-size: 17px;
}

body.home-redesign .nav-icons a:hover {
    color: var(--nh-green);
}

body.home-redesign .cart-count {
    background: var(--nh-badge);
}

/* ---- Hero ---- */
body.home-redesign .nh-hero-wrap {
    background: var(--nh-cream-deep);
}

body.home-redesign .nh-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 88px 24px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

body.home-redesign .nh-hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    color: var(--nh-badge);
    font-weight: 700;
    margin-bottom: 14px;
}

body.home-redesign .nh-hero h1 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 18px;
}

body.home-redesign .nh-hero h1 em {
    font-style: italic;
    color: var(--nh-badge);
}

body.home-redesign .nh-hero p {
    font-size: 16px;
    color: var(--nh-muted);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 28px;
}

body.home-redesign .nh-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
}

body.home-redesign .nh-btn-primary,
body.home-redesign .nh-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

body.home-redesign .nh-btn-primary {
    background: var(--nh-green);
    color: var(--nh-white);
}

body.home-redesign .nh-btn-primary:hover {
    background: var(--nh-green-light);
}

body.home-redesign .nh-btn-secondary {
    background: transparent;
    color: var(--nh-green);
    border: 1px solid var(--nh-green);
}

body.home-redesign .nh-btn-secondary:hover {
    background: var(--nh-green);
    color: var(--nh-white);
}

body.home-redesign .nh-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

body.home-redesign .nh-hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--nh-green);
    font-weight: 600;
}

body.home-redesign .nh-hero-badge i {
    color: var(--nh-badge);
}

body.home-redesign .nh-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.home-redesign .nh-hero-image::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 88%;
    background: var(--nh-cream);
    border-radius: 50%;
    z-index: 0;
}

body.home-redesign .nh-hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    border: 10px solid var(--nh-white);
    box-shadow: 0 20px 50px rgba(5, 41, 94, 0.18);
}

/* ---- Shared section wrapper ---- */
body.home-redesign .nh-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 24px;
}

body.home-redesign .nh-section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

body.home-redesign .nh-section-heading h2 {
    font-size: 28px;
}

body.home-redesign .nh-section-heading a {
    font-size: 14px;
    font-weight: 600;
    color: var(--nh-green);
    border-bottom: 1px solid var(--nh-green);
    padding-bottom: 2px;
}

/* ---- Shop by Category (circles) ---- */
body.home-redesign .nh-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

body.home-redesign .nh-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

body.home-redesign .nh-category-card .nh-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--nh-border);
    background: var(--nh-white);
    transition: 0.2s ease;
}

body.home-redesign .nh-category-card:hover .nh-circle {
    border-color: var(--nh-green);
    transform: translateY(-3px);
}

body.home-redesign .nh-category-card .nh-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.home-redesign .nh-category-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--nh-ink);
}

/* ---- Featured Collections ---- */
body.home-redesign .nh-collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

body.home-redesign .nh-collection-card {
    display: block;
}

body.home-redesign .nh-collection-card .nh-collection-image {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: var(--nh-cream-deep);
    margin-bottom: 12px;
}

body.home-redesign .nh-collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

body.home-redesign .nh-collection-card:hover img {
    transform: scale(1.06);
}

body.home-redesign .nh-collection-card h3 {
    font-size: 15px;
    color: var(--nh-ink);
    font-weight: 600;
    font-family: inherit;
}

body.home-redesign .nh-collection-card span {
    font-size: 12px;
    color: var(--nh-muted);
}

/* ---- Product grids (Best Selling / New Arrivals) ---- */
body.home-redesign .nh-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

body.home-redesign .nh-product-card {
    background: var(--nh-white);
    border: 1px solid var(--nh-border);
    border-radius: 14px;
    overflow: hidden;
    transition: 0.2s ease;
}

body.home-redesign .nh-product-card:hover {
    box-shadow: 0 16px 32px rgba(5, 41, 94, 0.1);
    transform: translateY(-4px);
}

body.home-redesign .nh-product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--nh-cream-deep);
}

body.home-redesign .nh-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.home-redesign .nh-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--nh-badge);
    color: var(--nh-white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 20px;
}

body.home-redesign .nh-product-info {
    padding: 16px;
}

body.home-redesign .nh-product-info h3 {
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--nh-ink);
    margin-bottom: 8px;
    line-height: 1.35;
    min-height: 38px;
}

body.home-redesign .nh-product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

body.home-redesign .nh-product-price .nh-sale-price {
    font-weight: 700;
    color: var(--nh-green);
    font-size: 15px;
}

body.home-redesign .nh-product-price .nh-regular-price {
    text-decoration: line-through;
    color: var(--nh-muted);
    font-size: 13px;
}

body.home-redesign .nh-product-info .nh-view-btn {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 24px;
    background: var(--nh-green);
    color: var(--nh-white);
    font-size: 13px;
    font-weight: 600;
}

body.home-redesign .nh-product-info .nh-view-btn:hover {
    background: var(--nh-green-light);
}

body.home-redesign .nh-empty-note {
    color: var(--nh-muted);
    font-size: 14px;
}

/* ---- Promo banner ---- */
body.home-redesign .nh-promo {
    background: var(--nh-green);
    color: var(--nh-cream);
    margin: 24px auto;
    max-width: 1280px;
    border-radius: 20px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    overflow: hidden;
}

body.home-redesign .nh-promo h2 {
    color: var(--nh-white);
    font-size: 30px;
    margin-bottom: 14px;
}

body.home-redesign .nh-promo p {
    color: var(--nh-cream-deep);
    max-width: 440px;
    margin: 0 0 26px;
    line-height: 1.7;
}

body.home-redesign .nh-promo .nh-btn-primary {
    background: var(--nh-white);
    color: var(--nh-green);
}

body.home-redesign .nh-promo .nh-btn-primary:hover {
    background: var(--nh-cream);
}

body.home-redesign .nh-promo-image {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

body.home-redesign .nh-promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Our Story (existing section, lightly recolored for cohesion) ---- */
body.home-redesign .our-story {
    background: var(--nh-cream-deep);
}

body.home-redesign .our-story h2 {
    font-size: 28px;
}

body.home-redesign .our-story p {
    color: var(--nh-muted);
    line-height: 1.7;
}

body.home-redesign .our-story .btn {
    display: inline-flex;
    padding: 14px 28px;
    border-radius: 30px;
    background: var(--nh-green);
    color: var(--nh-white);
    font-size: 14px;
    font-weight: 600;
}

body.home-redesign .our-story .btn:hover {
    background: var(--nh-green-light);
}

/* ---- Footer ---- */
body.home-redesign .footer {
    background: var(--nh-green);
    color: var(--nh-white);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

body.home-redesign .footer-column h3 {
    color: var(--secondary);
    font-family: inherit;
    font-size: 15px;
    margin-bottom: 14px;
}

body.home-redesign .footer-column p,
body.home-redesign .footer-column a {
    color: var(--nh-white);
}

body.home-redesign .footer-column a:hover {
    color: var(--secondary);
}

body.home-redesign .footer-logo {
    max-height: 46px;
    margin-bottom: 14px;
}

body.home-redesign .footer-social a {
    color: var(--nh-white);
    border-color: rgba(255, 255, 255, 0.3);
}

body.home-redesign .footer-social a:hover {
    color: var(--nh-white);
    background: var(--secondary);
    border-color: var(--secondary);
}

body.home-redesign .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

body.home-redesign .footer-bottom p {
    color: var(--nh-white);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
    body.home-redesign .nh-hero {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }

    body.home-redesign .nh-hero-image {
        order: -1;
    }

    body.home-redesign .nh-promo {
        grid-template-columns: 1fr;
        text-align: center;
    }

    body.home-redesign .nh-promo p {
        margin: 0 auto 26px;
    }

    body.home-redesign .nh-promo-image {
        order: -1;
        max-width: 420px;
        margin: 0 auto;
    }

    body.home-redesign .nh-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    body.home-redesign .nh-category-card .nh-circle {
        width: 120px;
        height: 120px;
    }

    body.home-redesign .nh-collections-grid,
    body.home-redesign .nh-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    body.home-redesign .nh-hero h1 {
        font-size: 32px;
    }

    body.home-redesign .nh-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    body.home-redesign .nh-category-card .nh-circle {
        width: 96px;
        height: 96px;
    }

    body.home-redesign .nh-collections-grid,
    body.home-redesign .nh-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    body.home-redesign .nh-promo {
        padding: 40px 22px;
        border-radius: 12px;
    }

}