/* Hide Radio button */

.rate > input{
  display: none;
}

.rate{
  display: inline-block;;
  border: 0;
}

.rate > label{
  float: right;
}

/* Showing the stars */
.rate > label:before{
  display: inline-block;
  font-size: 1.1rem;
  font-family: FontAwesome;
  content: "\f005";
  margin:0;
  padding:0.3rem .2rem;
  cursor: pointer;
}

/* Half star */
.rate .half:before{
  content: "\f089";
  position: absolute;
  padding-right: 0;
}

/* Click and hover */
input:checked ~ label, label:hover ~ label{
  color: #ffb503;
}

/* hover hightlight */
input:checked + label:hover, input:checked ~ label:hover,input:checked ~ label:hover ~ label,
label:hover ~ input:checked ~ label{
  color: #cc9000;
}

.rating-star i{
  color: #ffb503 !important;
}

ul.thumb{
  margin:0 auto;
  padding: 0;
  float: left;
}
ul.thumb li{
  list-style: none;
  margin: 10px;
}
ul.thumb li img{
  width: 80px;
  height: 80px;
  border: 1px solid grey;
}







/* gpt ni heee */

:root{

    --white:#ffffff;

    --sage:#7c9a87;
    --sage-dark:#5f7c68;
    --sage-light:#f3f8f4;

    --gold:#c9a46a;

    --text:#1f1f1f;

    --border:#e8ece8;
}


/* ===================================
   HEADER
=================================== */

.feel-header{

    background:var(--white);

    border-bottom:1px solid var(--border);

    background:white;
    border-bottom:1px solid var(--border);

    z-index:999;

    box-shadow:
    0 10px 35px rgba(0,0,0,.03);
}


/* ===================================
   BRAND
=================================== */

.brand-area{

    text-align:center;

   padding:10px 0 5px;
}

.brand-logo{

    font-family:"Cormorant Garamond", serif;

    font-size:42px;

    letter-spacing:8px;

    color:#2f4f3e;

    text-decoration:none;

    font-weight:500;

    transition:.3s;
}

.brand-logo:hover{

    color:var(--sage);

    text-decoration:none;
}

.brand-subtitle{

    margin-top:2px;

    font-size:10px;

    letter-spacing:3px;

    color:#8d8d8d;

    text-transform:uppercase;
}

.brand-subtitle::after{

    content:"";

    display:block;

    width:70px;

    height:2px;

    background:var(--gold);

    margin:15px auto 0;
}


/* ===================================
   NAVBAR
=================================== */

/* .navbar-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:8px 0 12px;
} */

.navbar-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 18px 0;
}

.brand-logo {

    flex-shrink: 0;

    display: flex;

    align-items: center;
}

.navbar-logo {

    height: 75px;

    width: auto;

    object-fit: contain;
}

.feel-nav {

    flex: 1;

    display: flex;

    justify-content: center;
}

.header-actions {

    flex-shrink: 0;
}

.feel-nav ul{

    display:flex;

    align-items:center;

    gap:40px;

    list-style:none;

    padding:0;

    margin:0;
}

.feel-nav a{

    color:var(--text);

    text-decoration:none;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    position:relative;

    transition:.3s;
}

.feel-nav a:hover{

    color:var(--sage);
}

.feel-nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;
}

.feel-nav a:hover::after{

    width:100%;
}


/* ===================================
   SEARCH
=================================== */

.header-actions{

    display:flex;

    align-items:center;

    gap:18px;
}

.search-form{

    position:relative;
}

.search-form input{

    width:240px;

    height:42px;

    border:none;

    background:var(--sage-light);

    border-radius:50px;

    padding-left:22px;

    padding-right:55px;

    transition:.3s;
}

.search-form input:focus{

    outline:none;

    background:#fff;

    box-shadow:
    0 0 0 4px rgba(124,154,135,.12);
}

.search-form button{

    position:absolute;

    right:20px;

    top:50%;

    transform:translateY(-50%);

    border:none;

    background:none;

    color:var(--sage);

    font-size:18px;
}


/* ===================================
   ICONS
=================================== */

.action-icon{

    width:44px;

    height:44px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:var(--sage-light);

    color:var(--sage);

    font-size:18px;

    position:relative;

    transition:.3s;
}

.action-icon:hover{

    background:var(--sage);

    color:white;

    transform:translateY(-2px);
}

.cart-count{

    position:absolute;

    top:-4px;

    right:-4px;

    width:18px;

    height:18px;

    border-radius:50%;

    background:var(--gold);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:10px;

    font-weight:600;
}


/* ===================================
   SHOP DROPDOWN
=================================== */

.shop-parent{

    position:relative;
}

.shop-dropdown{

    position:absolute;

    top:calc(100% + 15px);

    left:50%;

    transform:translateX(-50%);

    width:330px;

    background:white;

    border-radius:20px;

    padding:15px;

    border:1px solid var(--border);

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9999;
}

.shop-parent:hover .shop-dropdown{

    opacity:1;

    visibility:visible;
}

.dropdown-item-wrap{

    margin-bottom:5px;
}

.dropdown-item-wrap:last-child{

    margin-bottom:0;
}

.dropdown-item-wrap a{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 16px;

    border-radius:12px;

    color:#222;

    text-decoration:none;

    font-size:13px;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:.3s;
}

.dropdown-item-wrap a:hover{

    background:var(--sage-light);

    color:var(--sage);

    padding-left:24px;
}


/* ===================================
   MOBILE
=================================== */

/* Hide mobile navbar by default */

.mobile-navbar,
.mobile-sidebar {
    display: none;
}

/* Mobile */

@media (max-width: 768px) {

    /* Hide desktop navbar completely */

    .navbar-row {
        display: none !important;
    }

    /* Top mobile navbar */

    .mobile-navbar {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        background: #fff;
        border-bottom: 1px solid #eee;
        position: relative;
        z-index: 1000;
    }

    /* Logo */

    .mobile-logo {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .mobile-logo-img {
        height: 50px;
        width: auto;
        object-fit: contain;
    }

    /* Icons */

    .mobile-menu-btn,
    .mobile-cart {
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 50%;
        background: #f3f8f4;
        color: #7c9a87;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        flex-shrink: 0;
    }

    /* Sidebar */

    .mobile-sidebar {
        display: block;
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        padding: 90px 25px 25px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
        transition: left 0.3s ease;
        z-index: 9999;
    }

    .mobile-sidebar.open {
        left: 0;
    }

    .mobile-sidebar a {
        display: block;
        padding: 16px 0;
        color: #222;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-sidebar a:hover {
        color: #7c9a87;
    }
}

@media(max-width:576px){

    .brand-area{
        padding:15px 0 10px;
    }

    .brand-logo{
        font-size:28px;
        letter-spacing:3px;
    }

    .brand-subtitle{
        font-size:9px;
        letter-spacing:2px;
    }

    .navbar-row{
        gap:15px;
        padding:12px 0;
    }

    .feel-nav ul{
        gap:18px;
        justify-content:center;
    }

    .feel-nav a{
        font-size:10px;
        letter-spacing:1px;
    }

    .search-form input{
        width:180px;
        height:40px;
        font-size:13px;
    }

    .header-actions{
        gap:10px;
    }

    .action-icon{
        width:40px;
        height:40px;
        font-size:15px;
    }
}





/* ===================================
   HERO SECTION
=================================== */

.feel-hero{
    /* margin:30px auto 70px; */
     margin-top:0;
}

#feelHeroSlider{
    border-radius:0px;
    overflow:hidden;
}

#feelHeroSlider .carousel-item{
    position:relative;
}

#feelHeroSlider img{
    width:100%;
    height:620px;
    object-fit:cover;
}

.hero-content{
    position:absolute;

    left:8%;
    top:50%;

    transform:translateY(-50%);

    max-width:520px;
}

.hero-content span{
    display:inline-block;

    color:#6f8f7a;

    letter-spacing:3px;

    font-size:12px;

    font-weight:600;

    text-transform:uppercase;

    margin-bottom:20px;
}

.hero-content h1{
    font-size:58px;

    line-height:1.1;

    color:#111;

    font-family:"Cormorant Garamond", serif;

    margin-bottom:20px;
}

.hero-content p{
    font-size:17px;

    color:#555;

    margin-bottom:30px;

    line-height:1.8;
}

.hero-btn{
    display:inline-block;

    background:#6f8f7a;

    color:white;

    padding:14px 34px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.hero-btn:hover{
    background:#c7a977;

    color:white;

    text-decoration:none;
}

.carousel-indicators li{
    width:10px;
    height:10px;
    border-radius:50%;
}

@media(max-width:991px){

    #feelHeroSlider img{
        height:500px;
    }

    .hero-content{
        max-width:400px;
    }

    .hero-content h1{
        font-size:42px;
    }
}
@media(max-width:768px){

    #feelHeroSlider img{
        width:100%;
        height:620px;
        object-fit:cover;
        object-position:center;
    }

    .hero-content{
        left:24px;
        right:24px;
        top:50%;
        transform:translateY(-50%);
        max-width:240px;
        z-index:2;
    }

    .hero-content span{
        font-size:10px;
        letter-spacing:2px;
        margin-bottom:10px;
    }

    .hero-content h1{
        font-size:42px;
        line-height:1.05;
        margin-bottom:14px;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.6;
        margin-bottom:20px;
        max-width:220px;
    }

    .hero-btn{
        padding:14px 30px;
        font-size:14px;
        border-radius:40px;
    }

    .carousel-control-prev,
    .carousel-control-next{
        display:none;
    }

    .carousel-indicators{
        bottom:15px;
    }
}



/* aa bija section ni 6 */
/* .category-section{
    padding:100px 0;
    background:#fff;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header span{
    color:#7c9a87;
    letter-spacing:3px;
    font-size:12px;
    font-weight:600;
}

.section-header h2{
    font-size:48px;
    margin-top:12px;
    font-family:"Cormorant Garamond", serif;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.category-card{
    position:relative;
    overflow:hidden;
    text-decoration:none;
}

.category-card img{
    width:100%;
    height:500px;
    object-fit:cover;
    transition:.6s;
}

.category-card:hover img{
    transform:scale(1.05);
}

.category-overlay{
    position:absolute;
    bottom:30px;
    left:30px;
    color:white;
}

.category-overlay h3{
    font-size:34px;
    margin-bottom:10px;
    font-family:"Cormorant Garamond", serif;
}

.category-overlay span{
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
}


@media(max-width:768px){

    .category-section{
        padding:70px 0;
    }

    .section-header{
        margin-bottom:35px;
    }

    .section-header h2{
        font-size:38px;
    }

    .category-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .category-card{
        border-radius:18px;
        overflow:hidden;
    }

    .category-card img{
        height:420px;
    }

    .category-overlay{
        left:20px;
        bottom:20px;
    }

    .category-overlay h3{
        font-size:30px;
        margin-bottom:8px;
    }

    .category-overlay span{
        font-size:12px;
        letter-spacing:1.5px;
    }
} */

/* ===================================
   SHOP BY CATEGORY
=================================== */

.category-section{
    padding:100px 0;
    background:#fff;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header span{
    display:block;
    color:#7c9a87;
    letter-spacing:3px;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-header h2{
    font-family:"Cormorant Garamond", serif;
    font-size:58px;
    color:#111;
    margin:0;
}

/* ==========================
   GRID
========================== */

.category-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* ==========================
   CARD
========================== */

.category-card{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    text-decoration:none;
    display:block;
    background:#f8f8f8;
}

.category-card img{
    width:100%;
    height:560px;
    object-fit:cover;
    transition:transform .7s ease;
}

.category-card:hover img{
    transform:scale(1.08);
}

/* ==========================
   OVERLAY
========================== */

.category-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,.15),
        rgba(0,0,0,0)
    );
    z-index:1;
}

.category-overlay{
    position:absolute;
    left:30px;
    bottom:28px;
    z-index:2;
    color:white;
}

.category-overlay h3{
    font-family:"Cormorant Garamond", serif;
    font-size:38px;
    font-weight:600;
    margin:0 0 8px;
    color:white;
}

.category-overlay span{
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:white;
    opacity:.95;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .category-section{
        padding:80px 0;
    }

    .section-header{
        margin-bottom:45px;
    }

    .section-header h2{
        font-size:46px;
    }

    .category-grid{
        grid-template-columns:repeat(2,1fr);
        gap:22px;
    }

    .category-card img{
        height:500px;
    }

    .category-overlay h3{
        font-size:32px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .category-section{
        padding:70px 0;
    }

    .section-header{
        margin-bottom:35px;
    }

    .section-header h2{
        font-size:38px;
    }

    .category-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .category-card{
        border-radius:18px;
    }

    .category-card img{
        height:500px;
    }

    .category-overlay{
        left:22px;
        bottom:22px;
    }

    .category-overlay h3{
        font-size:34px;
        margin-bottom:6px;
    }

    .category-overlay span{
        font-size:12px;
        letter-spacing:1.5px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

    .category-card img{
        height:450px;
    }

    .category-overlay h3{
        font-size:30px;
    }

    .section-header h2{
        font-size:34px;
    }
}





/* ===================================
   FEATURED BANNER
=================================== */

.featured-banner{
    position:relative;
    margin:100px 0 0;
    overflow:hidden;
}

.featured-banner img{
    width:100%;
    height:700px;
    object-fit:cover;
    display:block;
}

.featured-overlay{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    max-width:600px;
}

.featured-overlay span{
    display:inline-block;
    color:#7c9a87;
    font-size:13px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.featured-overlay h2{
    font-family:"Cormorant Garamond", serif;
    font-size:72px;
    line-height:1.05;
    color:#111;
    margin-bottom:30px;
}

.featured-overlay p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:35px;
}

.featured-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#7c9a87;
    color:#fff;

    padding:16px 40px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.featured-btn:hover{
    background:#c9a46a;
    color:#fff;
    text-decoration:none;
}

/* Optional luxury overlay */

.featured-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(255,255,255,.88) 0%,
        rgba(255,255,255,.65) 35%,
        rgba(255,255,255,0) 70%
    );
}

/* Make text appear above overlay */

.featured-overlay{
    z-index:2;
}

/* ==========================
   Tablet
========================== */

@media(max-width:991px){

    .featured-banner img{
        height:550px;
    }

    .featured-overlay{
        left:5%;
        max-width:500px;
    }

    .featured-overlay h2{
        font-size:52px;
    }
}

/* ==========================
   Mobile
========================== */
@media(max-width:768px){

    .featured-banner{
        margin:70px 0;
    }

    .featured-banner img{
        height:650px;
        object-fit:cover;
        object-position:center;
    }

    .featured-banner::before{
        background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.82) 0%,
            rgba(255,255,255,.55) 40%,
            rgba(255,255,255,.15) 100%
        );
    }

    .featured-overlay{
        left:24px;
        right:24px;
        top:50%;
        transform:translateY(-50%);
        max-width:260px;
    }

    .featured-overlay span{
        font-size:10px;
        letter-spacing:2px;
        margin-bottom:10px;
    }

    .featured-overlay h2{
        font-size:38px;
        line-height:1.05;
        margin-bottom:18px;
    }

    .featured-btn{
        width:auto;
        padding:14px 28px;
        font-size:14px;
    }
}




/* ===================================
   BEST SELLERS
=================================== */

.best-sellers{
    padding:90px 0 120px;
    background:#fff;
}


/* HEADER */

.best-sellers .section-header{
    text-align:center;
    margin-bottom:70px;
}

.best-sellers .section-header span{
    display:block;
    color:#7c9a87;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:15px;
}

.best-sellers .section-header h2{
    font-family:"Cormorant Garamond", serif;
    font-size:64px;
    color:#111;
    margin-bottom:18px;
}

.best-sellers .section-header p{
    max-width:650px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.8;
}


/* GRID */

.best-seller-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}


/* CARD */

.product-card{
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-8px);
}


/* IMAGE */

.product-image{
    display:block;
    overflow:hidden;
    border-radius:18px;
    background:#f8f8f8;
}

.product-image img{
    width:100%;
    height:430px;
    object-fit:cover;
    transition:.6s;
}

.product-card:hover .product-image img{
    transform:scale(1.05);
}


/* CONTENT */

.product-info{
    padding-top:18px;
    text-align:center;
}


/* STARS */

.rating-star{
    margin-bottom:10px;
}

.rating-star i{
    color:#c9a46a;
    font-size:12px;
    margin:0 1px;
}


/* PRODUCT NAME */

.product-info h3{
    margin-bottom:10px;
}

.product-info h3 a{
    color:#111;
    text-decoration:none;

    font-family:"Cormorant Garamond", serif;
    font-size:28px;
    line-height:1.2;
    font-weight:600;

    transition:.3s;
}

.product-info h3 a:hover{
    color:#7c9a87;
}


/* PRICE */

.product-price{
    color:#7c9a87;
    font-size:22px;
    font-weight:600;
    margin-bottom:14px;
}


/* LINK */

.product-link{
    color:#111;
    text-decoration:none;

    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;

    border-bottom:1px solid #111;
    padding-bottom:3px;

    transition:.3s;
}

.product-link:hover{
    color:#7c9a87;
    border-color:#7c9a87;
    text-decoration:none;
}


/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .best-seller-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .best-sellers .section-header h2{
        font-size:50px;
    }

    .product-image img{
        height:360px;
    }

    .product-info h3 a{
        font-size:24px;
    }
}


/* ==========================
   MOBILE
========================== */

@media(max-width:576px){

    .best-sellers{
        padding:80px 0;
    }

    .best-sellers .section-header{
        margin-bottom:45px;
    }

    .best-sellers .section-header h2{
        font-size:38px;
    }

    .best-sellers .section-header p{
        font-size:15px;
    }

    .best-seller-grid{
        grid-template-columns:repeat(2,1fr);
        gap:16px;
    }

    .product-image{
        border-radius:14px;
    }

    .product-image img{
        height:240px;
    }

    .product-info{
        padding-top:12px;
    }

    .rating-star{
        margin-bottom:6px;
    }

    .rating-star i{
        font-size:10px;
    }

    .product-info h3{
        margin-bottom:6px;
    }

    .product-info h3 a{
        font-size:18px;

        display:-webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

    .product-price{
        font-size:18px;
        margin-bottom:8px;
    }

    .product-link{
        font-size:10px;
        letter-spacing:1px;
    }
}








/* ===================================
   ARRIVAL SHOWCASE
=================================== */

.arrival-showcase{
    padding:80px 0;
    background:#faf9f7;
}

.arrival-showcase .container{
    max-width:1200px;
    margin:auto;
}

/* Header */

.arrival-header{
    text-align:center;
    margin-bottom:50px;
}

.arrival-header span{
    display:block;
    color:#7c9a87;
    font-size:12px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.arrival-header h2{
    font-family:"Cormorant Garamond", serif;
    font-size:52px;
    color:#111;
    margin-bottom:12px;
}

.arrival-header p{
    max-width:600px;
    margin:auto;
    color:#666;
    font-size:15px;
    line-height:1.7;
}

/* Grid */

.arrival-showcase-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:25px;
}

/* Card */

.arrival-showcase-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    transition:0.3s;
}

.arrival-showcase-card:hover{
    transform:translateY(-5px);
}

/* Image */

.arrival-showcase-image{
    position:relative;
    overflow:hidden;
}

.arrival-showcase-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.arrival-showcase-card:hover .arrival-showcase-image img{
    transform:scale(1.05);
}

/* Badge */

.arrival-showcase-badge{
    position:absolute;
    top:12px;
    left:12px;

    background:#7c9a87;
    color:#fff;

    padding:5px 10px;
    border-radius:20px;

    font-size:10px;
    font-weight:600;
    letter-spacing:1px;

    z-index:5;
}

/* Content */

.arrival-showcase-content{
    padding:15px;
    text-align:center;
}

.arrival-showcase-rating{
    margin-bottom:8px;
}

.arrival-showcase-rating i{
    color:#c9a46a;
    font-size:11px;
}

/* Title */

.arrival-showcase-title{
    margin-bottom:8px;
}

.arrival-showcase-title a{
    text-decoration:none;
    color:#111;

    font-size:17px;
    font-weight:500;
    line-height:1.4;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.arrival-showcase-title a:hover{
    color:#7c9a87;
}

/* Price */

.arrival-showcase-price{
    color:#7c9a87;
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}

/* Button */

.arrival-showcase-link{
    text-decoration:none;
    color:#111;

    font-size:11px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;

    border-bottom:1px solid #111;
    padding-bottom:2px;
}

.arrival-showcase-link:hover{
    color:#7c9a87;
    border-color:#7c9a87;
}

/* Tablet */

@media(max-width:991px){

    .arrival-showcase-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .arrival-showcase-image img{
        height:220px;
    }

    .arrival-header h2{
        font-size:42px;
    }
}

/* Mobile */

@media(max-width:576px){

    .arrival-showcase{
        padding:60px 0;
    }

    .arrival-header{
        margin-bottom:35px;
    }

    .arrival-header h2{
        font-size:34px;
    }

    .arrival-header p{
        font-size:14px;
    }

    .arrival-showcase-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .arrival-showcase-image img{
        height:140px;
    }

    .arrival-showcase-content{
        padding:10px;
    }

    .arrival-showcase-title a{
        font-size:14px;
    }

    .arrival-showcase-price{
        font-size:15px;
    }

    .arrival-showcase-link{
        font-size:9px;
    }
}


.arrival-view-all{
    display:inline-block;

    color:#111;
    text-decoration:none;

    font-size:13px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;

    padding-bottom:6px;

    border-bottom:1px solid #111;

    transition:.3s ease;
}

.arrival-view-all:hover{
    color:#7c9a87;
    border-color:#7c9a87;
    text-decoration:none;
}

.arrival-showcase .text-center{
    margin-top:50px;
}




/* ===================================
   CRAFTED WITH ELEGANCE
=================================== */

.crafted-section{
    padding:120px 0;
    background:#fff;
}

.crafted-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/* Image */

.crafted-image{
    overflow:hidden;
    border-radius:24px;
}

.crafted-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
}

/* Content */

.crafted-subtitle{
    display:block;
    color:#7c9a87;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:18px;
}

.crafted-content h2{
    font-family:"Cormorant Garamond", serif;
    font-size:60px;
    line-height:1.1;
    color:#111;
    margin-bottom:25px;
}

.crafted-content p{
    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:35px;
}

/* List */

.crafted-list{
    list-style:none;
    padding:0;
    margin:0 0 40px;
}

.crafted-list li{
    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:18px;

    color:#111;
    font-size:16px;
}

.crafted-list i{
    color:#7c9a87;
}

/* Button */

.crafted-btn{
    display:inline-block;

    padding:14px 32px;

    background:#111;
    color:#fff;

    text-decoration:none;

    border-radius:40px;

    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;

    transition:.3s;
}

.crafted-btn:hover{
    background:#7c9a87;
    color:#fff;
    text-decoration:none;
}

/* Tablet */

@media(max-width:991px){

    .crafted-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .crafted-content h2{
        font-size:48px;
    }

    .crafted-image img{
        height:500px;
    }
}

/* Mobile */

@media(max-width:576px){

    .crafted-section{
        padding:80px 0;
    }

    .crafted-content h2{
        font-size:36px;
    }

    .crafted-content p{
        font-size:15px;
    }

    .crafted-image img{
        height:400px;
    }

    .crafted-list li{
        font-size:14px;
    }

    .crafted-btn{
        width:100%;
        text-align:center;
    }
}





/*====================================
 PREMIUM TESTIMONIALS
====================================*/

.customer-testimonials{

    padding:130px 0;

    background:linear-gradient(to bottom,#fbfaf8,#ffffff);

    overflow:hidden;

}

.testimonial-header{

    text-align:center;

    max-width:760px;

    margin:auto auto 70px;

}

.testimonial-header span{

    color:#7c9a87;

    font-size:13px;

    letter-spacing:4px;

    text-transform:uppercase;

    font-weight:600;

}

.testimonial-header h2{

    font-family:"Cormorant Garamond",serif;

    font-size:64px;

    line-height:1.1;

    margin:18px 0;

    color:#111;

}

.testimonial-header p{

    color:#666;

    font-size:17px;

    line-height:1.9;

    margin-bottom:35px;

}

.testimonial-rating{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.rating-score{

    display:flex;

    align-items:center;

    gap:10px;

    background:#111;

    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

}

.rating-score i{

    color:#d6b35f;

}

.testimonial-rating span{

    color:#777;

    letter-spacing:0;

    text-transform:none;

}

.testimonialSwiper{

    padding-bottom:70px;

}

.review-card{

    position:relative;

    background:#fff;

    border-radius:28px;

    border:1px solid #ece8e2;

    padding:45px;

    box-shadow:0 25px 60px rgba(0,0,0,.05);

    transition:.4s;
    display:flex;
    flex-direction:column;

    height:100%;

}

.review-card:hover{

    transform:translateY(-10px) scale(1.02);

    box-shadow:0 35px 80px rgba(0,0,0,.12);

}

.quote-icon{

    position:absolute;

    top:25px;

    right:30px;

    font-size:130px;

     opacity:.03;

    color:#f2efea;

}

.review-stars{

    margin-bottom:20px;

}

.review-stars i{

    color:#d6b35f;

    margin-right:3px;

}

.review-card h3{

    font-family:"Cormorant Garamond",serif;

    font-size:34px;

    margin-bottom:18px;

    color:#111;

}

.review-text{

    color:#666;

    line-height:2;

    font-size:15px;

    margin-bottom:35px;

    min-height:70px;

    flex:1;

}

.review-product{

    display:flex;

    align-items:center;

    gap:18px;

    background:#faf8f5;

    padding:16px;

    border-radius:18px;

    margin-bottom:35px;

}

.review-product img{

    width:80px;

    height:80px;

    border-radius:15px;

    transition:.4s;

    object-fit:cover;

}

.review-product h5{

    font-size:18px;

    margin-bottom:4px;

    color:#111;

}

.review-product span{

    color:#999;

    font-size:13px;

}

.review-user{

    display:flex;

    align-items:center;

    gap:16px;

}

.review-avatar{

    width:72px;

    height:72px;

    border-radius:50%;

    overflow:hidden;

    background:linear-gradient(135deg,#88a48c,#607866);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:24px;

    font-weight:700;

    flex-shrink:0;

}

.review-avatar img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.review-user h4{

    margin:0;

    font-size:18px;

    color:#111;

}

.review-user small{

    color:#7c9a87;

    font-weight:600;

    font-size:14px;

}

.review-user small i{

    margin-right:5px;

}

.swiper-pagination{

    margin-top:35px;

}

.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#bdbdbd;

    opacity:1;

}

.swiper-pagination-bullet-active{

    width:34px;

    border-radius:20px;

    background:#7c9a87;

}

/*====================================
    SWIPER NAVIGATION
====================================*/

.swiper-button-next,
.swiper-button-prev{

    width:60px;

    height:60px;

    background:#ffffff;

    border-radius:50%;

    border:1px solid #ece8e2;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    color:#111;

    transition:.35s;

}

.swiper-button-next:after,
.swiper-button-prev:after{

    font-size:18px;

    font-weight:700;

}

.swiper-button-next:hover,
.swiper-button-prev:hover{

    background:#111;

    color:#fff;

    transform:scale(1.08);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.swiper-button-prev{

    left:-8px;

}

.swiper-button-next{

    right:-8px;

}

.verified-badge{

    display:inline-flex;

    align-items:center;

    gap:6px;

    padding:6px 12px;

    border-radius:50px;

    background:#eef8f2;

    color:#64846b;

    font-size:12px;

    font-weight:600;

    margin-bottom:6px;

}

.purchase-date{

    display:block;

    color:#999;

    font-size:13px;

    margin-top:4px;

}

.swiper-slide{

    transform: scale(.90);

    opacity: .45;

    transition: all .45s ease;

}

.swiper-slide-active{

    transform: scale(1);

    opacity: 1;

}

.swiper-slide-prev,
.swiper-slide-next{

    transform: scale(.95);

    opacity: .75;

}

@media(max-width:991px){

.testimonial-header h2{

font-size:48px;

}

.review-card{

padding:35px;

}

}

@media(max-width:768px){

.customer-testimonials{

padding:90px 0;

}

.testimonial-header h2{

font-size:36px;

}

.swiper-button-next,
.swiper-button-prev{

        display:none;

  }

.review-card{

padding:28px;

}

.review-product img{

width:65px;

height:65px;

}

.review-card h3{

font-size:28px;

}

}








/*====================================
        INSTAGRAM SECTION
====================================*/

.instagram-section{

    padding:120px 0;

    background:#fff;

}

.instagram-header{

    text-align:center;

    max-width:720px;

    margin:0 auto 60px;

}

.instagram-header span{

    display:block;

    color:#7c9a87;

    font-size:12px;

    font-weight:600;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.instagram-header h2{

    font-family:"Cormorant Garamond", serif;

    font-size:56px;

    color:#111;

    margin-bottom:20px;

}

.instagram-header p{

    color:#666;

    font-size:17px;

    line-height:1.8;

}

.instagram-feed{

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

    max-width:1400px;

    margin:auto;

}

@media(max-width:768px){

    .instagram-section{

        padding:80px 0;

    }

    .instagram-header h2{

        font-size:36px;

    }

}









/*====================================
        NEWSLETTER
====================================*/

.newsletter-section{

    padding:130px 0;

    background:#fbfaf8;

}

.newsletter-box{

    max-width:900px;

    margin:auto;

    background:#ffffff;

    border-radius:32px;

    padding:80px;

    text-align:center;

    box-shadow:0 25px 70px rgba(0,0,0,.06);

}

.newsletter-subtitle{

    display:block;

    color:#7c9a87;

    font-size:13px;

    letter-spacing:4px;

    text-transform:uppercase;

    font-weight:600;

    margin-bottom:20px;

}

.newsletter-box h2{

    font-family:"Cormorant Garamond",serif;

    font-size:62px;

    color:#111;

    margin-bottom:25px;

}

.newsletter-box p{

    max-width:650px;

    margin:0 auto 45px;

    color:#666;

    font-size:18px;

    line-height:1.9;

}

.newsletter-form{

    display:flex;

    gap:15px;

    justify-content:center;

    margin-bottom:40px;

    flex-wrap:wrap;

}

.newsletter-form input{

    width:430px;

    height:62px;

    border:1px solid #ddd;

    border-radius:50px;

    padding:0 28px;

    font-size:16px;

    outline:none;

    transition:.35s;

}

.newsletter-form input:focus{

    border-color:#7c9a87;

}

.newsletter-form button{

    height:62px;

    padding:0 38px;

    border:none;

    border-radius:50px;

    background:#111;

    color:#fff;

    font-size:15px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    cursor:pointer;

    transition:.35s;

}

.newsletter-form button:hover{

    background:#7c9a87;

}

.newsletter-features{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin-bottom:30px;

}

.newsletter-features span{

    color:#64846b;

    font-size:15px;

    font-weight:600;

}

.newsletter-features i{

    margin-right:8px;

}

.newsletter-box small{

    color:#999;

    font-size:14px;

}

@media (max-width:768px){

    .newsletter-box{
        padding:45px 25px;
    }

    .newsletter-box h2{
        font-size:42px;
    }

    .newsletter-form{
        width:100%;
        gap:14px;
    }

    .newsletter-form input{
        width:100%;
        max-width:100%;
        box-sizing:border-box;
        padding:0 20px;
        height:56px;
        font-size:15px;
    }

    .newsletter-form button{
        width:100%;
        height:56px;
    }

    .newsletter-features{
        flex-direction:column;
        gap:15px;
    }
}



.newsletter-section .newsletter-form input{
    display:block !important;
    width:100% !important;
    height:56px !important;

    padding:20px !important;

    border:1px solid #ddd !important;
    border-radius:50px !important;

    box-sizing:border-box !important;

    font-size:15px !important;
}

.newsletter-section .newsletter-form button{
    width:100% !important;
    height:56px !important;
}



.brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}




@media (max-width: 768px) {

    .feel-header {

        padding: 10px 0;
    }

    .navbar-row {

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 12px;

        padding: 10px 0;
    }

    .navbar-logo {

        height: 60px;

        margin-bottom: 5px;
    }

    .feel-nav {

        width: 100%;
    }

    .feel-nav ul {

        display: flex;

        justify-content: center;

        flex-wrap: nowrap;

        gap: 14px;

        overflow-x: auto;

        padding: 0 10px;

        white-space: nowrap;
    }

    .feel-nav ul::-webkit-scrollbar {

        display: none;
    }

    .feel-nav a {

        font-size: 11px;

        letter-spacing: 1px;
    }

    .header-actions {

        width: 100%;

        justify-content: center;

        gap: 10px;
    }

    .search-form {

        flex: 1;

        max-width: 220px;
    }

    .search-form input {

        width: 100%;

        height: 42px;

        font-size: 13px;
    }

    .action-icon {

        width: 40px;

        height: 40px;

        font-size: 15px;
    }
}




.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transition: left 0.35s ease;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
    padding: 0;
}

.mobile-sidebar.open {
    left: 0;
}

.mobile-sidebar-header {
    height: 80px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #f0f0f0;
}

.sidebar-logo {
    height: 42px;
}

.close-sidebar {
    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #f5f8f5;
    color: #7c9a87;

    cursor: pointer;
}

.mobile-user-section {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.user-link {
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.mobile-sidebar a {
    display: block;
    padding: 18px 20px;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #f2f2f2;
}
