<style>
:root{
  --primary:#7d1f1f;
  --primary-dark:#5d1313;
  --secondary:#c89b6d;
  --bg:#f8f3ee;
  --card:#ffffff;
  --text:#2c2c2c;
  --muted:#777;
  --border:#e6ddd4;
  --shadow:0 2px 12px rgba(0,0,0,.08);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  color:var(--text);
  background:#faf7f3;
}

/* Top Bar */
.top-bar{
  background:#990000;
  color:#fff;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px;
  font-size:14px;
}

/* Header */
.header{
  background:#fff;
  padding:20px 40px;
  border-bottom:1px solid var(--border);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo h1{
  color:var(--primary);
  font-size:42px;
  font-family:Georgia,serif;
}

.search-box{
  width:500px;
  position:relative;
}

.search-box input{
  width:100%;
  height:50px;
  border:1px solid #ddd;
  border-radius:30px;
  padding:0 20px;
}

.nav-icons{
  display:flex;
  gap:25px;
}

/* Menu */
.main-nav{
  background:#fff;
  display:flex;
  justify-content:center;
  gap:50px;
  padding:8px;
  border-bottom:1px solid var(--border);
}

.main-nav a{
  text-decoration:none;
  color:#333;
  font-weight:500;
}

.main-nav a.active{
  color:var(--primary);
  border-bottom:3px solid var(--primary);
  padding-bottom:15px;
}

/* Hero */
.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  background:#efe2d4;
  min-height:350px;
}

.hero-content{
  padding:70px;
}

.hero h2{
  font-size:58px;
  color:var(--primary-dark);
  margin-bottom:20px;
  font-family:Georgia,serif;
}

.hero p{
  line-height:1.8;
  color:#555;
}

.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Features */
.features{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  background:#f7efe7;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.feature{
  text-align:center;
  padding:25px;
}

.feature h4{
  margin-top:10px;
  font-size:15px;
}

/* Category Slider */
.category-row{
  display:flex;
  justify-content:center;
  gap:30px;
  padding:25px;
  background:#fff;
}

.category{
  text-align:center;
}

.category img{
  width:90px;
  height:90px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid #ead7c5;
}

/* Shop Layout */
.shop-wrapper{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:30px;
  padding:30px;
}

/* Sidebar */
.sidebar{
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:25px;
}

.filter-group{
  margin-bottom:30px;
}

.filter-group h4{
  margin-bottom:15px;
  color:var(--primary);
}

/* Products */
.products{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.product-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  overflow:hidden;
  transition:.3s;
}

.product-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}

.product-card img{
  width:100%;
  height:280px;
  object-fit:cover;
}

.product-info{
  padding:15px;
}

.product-title{
  font-size:16px;
  font-weight:600;
  margin-bottom:8px;
}

.product-price{
  color:var(--primary);
  font-size:24px;
  font-weight:700;
}

.product-buttons{
  display:flex;
  gap:10px;
  margin-top:15px;
}

.btn{
  flex:1;
  height:40px;
  border:none;
  cursor:pointer;
  border-radius:6px;
  font-weight:600;
}

.btn-cart{
  background:#fff;
  border:1px solid var(--primary);
  color:var(--primary);
}

.btn-buy{
  background:var(--primary);
  color:#fff;
}

/* Pagination */
.pagination{
  display:flex;
  justify-content:center;
  gap:10px;
  margin:40px 0;
}

.pagination button{
  width:40px;
  height:40px;
  border:none;
  background:#fff;
  border:1px solid var(--border);
}

.pagination .active{
  background:var(--primary);
  color:#fff;
}

/* Footer Features */
.footer-features{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  background:#f7efe7;
  padding:30px;
  border-top:1px solid var(--border);
}

/* Footer */
footer{
  background:var(--primary-dark);
  color:#fff;
  padding:20px 40px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr 1.5fr;
  gap:40px;
}

.footer-grid h4{
  margin-bottom:20px;
}

.footer-grid ul{
  list-style:none;
}

.footer-grid li{
  margin-bottom:12px;
}

.newsletter input{
  width:100%;
  height:45px;
  border:none;
  padding:0 15px;
  border-radius:5px;
  margin-bottom:10px;
}

.newsletter button{
  width:100%;
  height:45px;
  background:#b96b39;
  color:#fff;
  border:none;
  border-radius:5px;
}

/* Responsive */
@media(max-width:1200px){
  .products{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:992px){
  .shop-wrapper{
    grid-template-columns:1fr;
  }

  .products{
    grid-template-columns:repeat(2,1fr);
  }

  .hero{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .products{
    grid-template-columns:1fr;
  }

  .main-nav{
    flex-wrap:wrap;
    gap:20px;
  }

  .features,
  .footer-features{
    grid-template-columns:1fr 1fr;
  }
}

/* ====================================
   LARGE DESKTOP
==================================== */

@media (max-width:1400px){

    .products{
        grid-template-columns:repeat(4,1fr);
    }

    .hero-content{
        padding:50px;
    }

    .hero h2{
        font-size:48px;
    }

}

/* ====================================
   TABLET LANDSCAPE
==================================== */

@media (max-width:1200px){

    .header{
        padding:15px 20px;
    }

    .header-row{
        gap:20px;
    }

    .search-box{
        width:350px;
    }

    .main-nav{
        gap:25px;
    }

    .hero{
        min-height:300px;
    }

    .hero h2{
        font-size:42px;
    }

    .shop-wrapper{
        grid-template-columns:260px 1fr;
        gap:20px;
        padding:20px;
    }

    .products{
        grid-template-columns:repeat(3,1fr);
        gap:20px;
    }

    .footer-grid{
        grid-template-columns:
        repeat(3,1fr);
    }

}

/* ====================================
   TABLET PORTRAIT
==================================== */

@media (max-width:992px){

    .top-bar{
        flex-direction:column;
        height:auto;
        padding:10px;
        gap:10px;
        text-align:center;
    }

    .header-row{
        flex-wrap:wrap;
        justify-content:center;
    }

    .logo{
        width:100%;
        justify-content:center;
    }

    .search-box{
        width:100%;
        max-width:600px;
    }

    .nav-icons{
        width:100%;
        justify-content:center;
    }

    .main-nav{
        flex-wrap:wrap;
        gap:15px;
        padding:15px;
    }

    .hero{
        grid-template-columns:1fr;
    }

    .hero-image{
        order:-1;
        height:350px;
    }

    .hero-image img{
        height:100%;
        object-fit:cover;
    }

    .hero-content{
        padding:40px;
        text-align:center;
    }

    .hero h2{
        font-size:38px;
    }

    .features{
        grid-template-columns:
        repeat(3,1fr);
    }

    .category-row{
        overflow-x:auto;
        justify-content:flex-start;
        padding:20px;
        gap:20px;
    }

    .category{
        min-width:90px;
    }

    .shop-wrapper{
        grid-template-columns:1fr;
    }

    .sidebar{
        width:100%;
    }

    .products{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-features{
        grid-template-columns:
        repeat(3,1fr);
    }

    .footer-grid{
        grid-template-columns:
        repeat(2,1fr);
    }

}

/* ====================================
   MOBILE
==================================== */

@media (max-width:768px){

    body{
        overflow-x:hidden;
    }

    .top-bar{
        font-size:12px;
    }

    .languages{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .header{
        padding:15px;
    }

    .logo{
        flex-direction:column;
        text-align:center;
    }

    .logo h1{
        font-size:28px;
    }

    .logo p{
        font-size:12px;
    }

    .search-box{
        width:100%;
    }

    .search-box input{
        height:46px;
        font-size:14px;
    }

    .nav-icons{
        gap:15px;
        flex-wrap:wrap;
    }

    .main-nav{
        justify-content:flex-start;
        overflow-x:auto;
        white-space:nowrap;
        padding-bottom:10px;
    }

    .main-nav a{
        flex-shrink:0;
    }

    .hero{
        min-height:auto;
    }

    .hero-content{
        padding:30px 20px;
    }

    .hero h2{
        font-size:32px;
    }

    .hero h4{
        font-size:18px;
    }

    .hero p{
        font-size:14px;
        line-height:1.7;
    }

    .features{
        grid-template-columns:
        repeat(2,1fr);
    }

    .feature{
        padding:20px 10px;
    }

    .feature h4{
        font-size:14px;
    }

    .feature p{
        font-size:12px;
    }

    .category-row{
        padding:15px;
    }

    .category img{
        width:70px;
        height:70px;
    }

    .category h5{
        font-size:12px;
    }

    .shop-wrapper{
        padding:15px;
    }

    .sidebar{
        padding:20px;
    }

    .product-toolbar{
        flex-direction:column;
        gap:15px;
        align-items:flex-start;
    }

    .products{
        grid-template-columns:
        repeat(2,1fr);
        gap:15px;
    }

    .product-card img{
        height:220px;
    }

    .product-info{
        padding:12px;
    }

    .product-title{
        font-size:14px;
    }

    .product-price{
        font-size:20px;
    }

    .btn{
        height:38px;
        font-size:12px;
    }

    .footer-features{
        grid-template-columns:
        repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    footer{
        padding:40px 20px;
    }

}

/* ====================================
   SMALL MOBILE
==================================== */

@media (max-width:576px){

    .hero-image{
        height:250px;
    }

    .hero h2{
        font-size:28px;
    }

    .hero-content{
        padding:25px 15px;
    }

    .features{
        grid-template-columns:1fr;
    }

    .feature{
        border-bottom:1px solid #e6ddd4;
    }

    .category-row{
        gap:15px;
    }

    .sidebar{
        display:none;
    }

    .mobile-filter-btn{
        display:flex;
    }

    .products{
        grid-template-columns:1fr;
    }

    .product-card{
        max-width:420px;
        margin:auto;
    }

    .product-card img{
        height:280px;
    }

    .footer-features{
        grid-template-columns:1fr;
        text-align:center;
    }

    .pagination{
        flex-wrap:wrap;
    }

}

/* ====================================
   EXTRA SMALL MOBILE
==================================== */

@media (max-width:400px){

    .logo h1{
        font-size:24px;
    }

    .hero h2{
        font-size:24px;
    }

    .hero h4{
        font-size:16px;
    }

    .hero p{
        font-size:13px;
    }

    .search-box input{
        height:42px;
        font-size:13px;
    }

    .nav-icons{
        font-size:13px;
    }

    .category img{
        width:60px;
        height:60px;
    }

    .product-card img{
        height:240px;
    }

    .product-price{
        font-size:18px;
    }

    .btn{
        font-size:11px;
    }

}

/* ====================================
   MOBILE FILTER DRAWER
==================================== */

.mobile-filter-btn{
    display:none;
    width:100%;
    height:50px;
    background:#7d1f1f;
    color:#fff;
    border:none;
    border-radius:8px;
    align-items:center;
    justify-content:center;
    font-weight:600;
    margin-bottom:15px;
}

.mobile-sidebar{
    position:fixed;
    top:0;
    left:-100%;
    width:320px;
    max-width:90%;
    height:100vh;
    background:#fff;
    z-index:9999;
    overflow-y:auto;
    transition:.3s;
    padding:25px;
    box-shadow:0 0 25px rgba(0,0,0,.2);
}

.mobile-sidebar.active{
    left:0;
}

.mobile-sidebar-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    opacity:0;
    visibility:hidden;
    z-index:9998;
    transition:.3s;
}

.mobile-sidebar-overlay.active{
    opacity:1;
    visibility:visible;
}

/* ====================================
   HORIZONTAL CATEGORY SCROLLBAR
==================================== */

.category-row::-webkit-scrollbar{
    height:5px;
}

.category-row::-webkit-scrollbar-thumb{
    background:#7d1f1f;
    border-radius:10px;
}

.category-row::-webkit-scrollbar-track{
    background:#eee;
}

/* ====================================
   TOUCH OPTIMIZATION
==================================== */

button,
a,
input,
select{
    touch-action:manipulation;
}

button{
    -webkit-tap-highlight-color:transparent;
}

input,
select{
    font-size:16px;
}

/* ====================================
   IMAGE OPTIMIZATION
==================================== */

img{
    max-width:100%;
    display:block;
}

.hero-image img,
.product-card img{
    width:100%;
    object-fit:cover;
}

/* ====================================
   SAFE AREA SUPPORT
==================================== */

@supports(padding:max(0px)){

    body{
        padding-left:env(safe-area-inset-left);
        padding-right:env(safe-area-inset-right);
    }

}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

/* HEADER */

.site-header{
    width:100%;
    background:#fff;
    border-top:2px solid #6f1d1b;
}

/* TOP */

.header-top{
    max-width:1400px;
    margin:auto;
    padding:18px 25px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* LOGO */

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-area img{
    width:55px;
}

.logo-text h1{
    color:#6f1d1b;
    font-size:34px;
    font-family:Georgia,serif;
    font-weight:500;
    line-height:1;
}

.logo-text span{
    font-size:13px;
    color:#555;
}

/* SEARCH */

.search-wrapper{
    flex:1;
    max-width:520px;
    position:relative;
}

.search-wrapper input{
    width:100%;
    height:46px;
    border:1px solid #ddd;
    border-radius:40px;
    padding:0 50px 0 20px;
    outline:none;
}

.search-wrapper button{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    background:none;
    border:none;
    cursor:pointer;
    font-size:18px;
}

/* ICONS */

.header-icons{
    display:flex;
    align-items:center;
    gap:30px;
}

.header-icons a{
    text-decoration:none;
    color:#333;
    display:flex;
    align-items:center;
    gap:5px;
    font-size:14px;
}

.cart-link{
    position:relative;
}

.cart-count{
    position:absolute;
    top:-10px;
    left:12px;
    width:18px;
    height:18px;
    background:#d39a25;
    color:#fff;
    border-radius:50%;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* NAV */

.main-nav{
    border-top:1px solid #eee;
}

.main-nav ul{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:center;
    list-style:none;
}

.main-nav li{
    position:relative;
}

.main-nav a{
    display:block;
    padding:8px 24px;
    text-decoration:none;
    color:#333;
    font-size:15px;
    font-weight:500;
}

.main-nav a.active{
    color:#7d1f1f;
}

.main-nav a.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:#7d1f1f;
}

/* MOBILE */

.mobile-menu-btn{
    display:none;
    background:none;
    border:none;
    font-size:30px;
    cursor:pointer;
}

@media(max-width:991px){

    .search-wrapper{
        display:none;
    }

    .main-nav{
        display:none;
    }

    .mobile-menu-btn{
        display:block;
    }

    .logo-text h1{
        font-size:34px;
    }

    .header-icons{
        gap:15px;
    }
	.main-nav a{
    display:block;
    padding:18px 24px;
    text-decoration:none;
    color:#fff;
    font-size:15px;
    font-weight:500;
}
.main-nav a.active{
    color:#FFFF00;
}

}

@media(max-width:768px){

    .header-top{
        padding:15px;
    }

    .logo-area img{
        width:40px;
    }

    .logo-text h1{
        font-size:26px;
    }

    .logo-text span{
        display:none;
    }

    .header-icons{
        display:none;
    }
	.main-nav a{
    display:block;
    padding:18px 24px;
    text-decoration:none;
    color:#fff;
    font-size:15px;
    font-weight:500;
}
.main-nav a.active{
    color:#FFFF00;
}


}

.hero-slider{
    background:url(images/dhoti-banner-1.jpg);
	background-size:cover;
	width:100%;
	height:350px;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    min-height:420px;
}

.hero-left{
    padding:60px;
}

.breadcrumb{
    font-size:14px;
    color:#666;
    margin-bottom:20px;
}

.hero-left h1{
    font-size:58px;
    color:#6f1d1b;
    margin-bottom:15px;
    font-family:Georgia, serif;
}

.hero-left h3{
    font-size:28px;
    margin-bottom:20px;
    color:#333;
}

.hero-left p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    max-width:500px;
}

.hero-btn{
    display:inline-block;
    margin-top:25px;
    background:#7d1f1f;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:4px;
}

.hero-right img{
    width:100%;
    height:420px;
    object-fit:cover;
}

.swiper-pagination-bullet-active{
    background:#7d1f1f !important;
}

/* FEATURES */

.feature-strip{
    background:#f7efe7;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    border-top:1px solid #e6ddd4;
}

.feature-item{
    text-align:center;
    padding:22px;
}

.feature-item h4{
    font-size:15px;
    color:#4d4d4d;
    margin-bottom:6px;
}

.feature-item span{
    font-size:13px;
    color:#777;
}

/* TABLET */

@media(max-width:991px){

    .hero-content{
        grid-template-columns:1fr;
    }

    .hero-right{
        order:-1;
    }

    .hero-left{
        padding:40px;
        text-align:center;
    }

    .hero-left h1{
        font-size:42px;
    }

    .feature-strip{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */

@media(max-width:768px){

    .hero-left{
        padding:25px;
    }

    .hero-left h1{
        font-size:32px;
    }

    .hero-left h3{
        font-size:20px;
    }

    .hero-left p{
        font-size:14px;
    }

    .hero-right img{
        height:260px;
    }

    .feature-strip{
        grid-template-columns:1fr;
    }

}

.filter-sidebar{
    width:220px;
    background:#fff;
    border:1px solid #e7e0d7;
    padding:18px;
    font-family:Poppins,sans-serif;
}

.filter-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.filter-header h3{
    font-size:14px;
    letter-spacing:1px;
}

.filter-header a{
    font-size:11px;
    text-decoration:none;
    color:#7b1e1e;
}

.filter-group{
    padding-bottom:18px;
    margin-bottom:18px;
    border-bottom:1px solid #eee;
}

.group-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.group-title span:first-child{
    font-size:11px;
    font-weight:600;
    color:#333;
}

.category-list{
    list-style:none;
    padding:0;
}

.category-list li{
    font-size:12px;
    padding:7px 0;
    cursor:pointer;
    color:#444;
}

.checkbox{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:10px;
    font-size:12px;
    color:#555;
}

.checkbox input{
    width:14px;
    height:14px;
}

.price-slider{
    width:100%;
    accent-color:#7b1e1e;
}

.price-values{
    display:flex;
    justify-content:space-between;
    margin-top:10px;
    font-size:11px;
}

.colors{
    display:flex;
    gap:10px;
}

.color{
    width:18px;
    height:18px;
    border-radius:50%;
    cursor:pointer;
    border:1px solid #ccc;
}

.white{
    background:#f6f1e8;
}

.cream{
    background:#e8d8c2;
}

.yellow{
    background:#d6a32f;
}

.orange{
    background:#c45424;
}

.green{
    background:#2f7b2f;
}

.gray{
    background:#9d9d9d;
}

.custom-card{
    background:url("images/custom-weaves.jpg");
    background-size:cover;
    background-position:center;
    height:140px;
    border-radius:4px;
    overflow:hidden;
    position:relative;
}

.custom-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(60,30,10,.55);
}

.custom-content{
    position:relative;
    z-index:2;
    color:#fff;
    padding:15px;
}

.custom-content h4{
    margin-bottom:10px;
}

.custom-content p{
    font-size:12px;
    line-height:1.5;
    margin-bottom:15px;
}

.custom-content button{
    background:#f5e5c5;
    border:none;
    padding:8px 12px;
    font-size:11px;
    cursor:pointer;
}

/* MOBILE FILTER BUTTON */

.mobile-filter-btn{
    display:none;
}

.filter-overlay{
    display:none;
}

/* TABLET */

@media(max-width:991px){

    .filter-sidebar{
        width:250px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .mobile-filter-btn{
        display:block;
        width:100%;
        background:#7b1e1e;
        color:#fff;
        border:none;
        padding:12px;
        margin-bottom:15px;
        font-weight:600;
        border-radius:6px;
    }

    .filter-sidebar{
        position:fixed;
        top:0;
        left:-100%;
        width:300px;
        max-width:90%;
        height:100vh;
        overflow-y:auto;
        z-index:9999;
        transition:.35s;
        background:#fff;
    }

    .filter-sidebar.active{
        left:0;
    }

    .filter-overlay{
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.45);
        z-index:9998;
        opacity:0;
        visibility:hidden;
        transition:.35s;
        display:block;
    }

    .filter-overlay.active{
        opacity:1;
        visibility:visible;
    }

}

.shop-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
    border-bottom:1px solid #eee;
    font-family:Arial, sans-serif;
}

.results-count{
    font-size:14px;
    color:#666;
}

.toolbar-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.sort-box{
    display:flex;
    align-items:center;
    gap:8px;
}

.sort-box label{
    font-size:14px;
    color:#666;
}

.sort-box select{
    padding:8px 12px;
    border:1px solid #ddd;
    border-radius:4px;
    background:#fff;
    cursor:pointer;
}

.view-box{
    display:flex;
    align-items:center;
    gap:8px;
}

.view-box span{
    font-size:14px;
    color:#666;
}

.view-btn{
    width:34px;
    height:34px;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
    border-radius:4px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    line-height:1;
}

.view-btn.active{
    background:#8B5E3C;
    color:#fff;
    border-color:#8B5E3C;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:20px;
}

.product-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:8px;
    overflow:hidden;
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.product-image{
    position:relative;
    height:auto;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.wishlist{
    position:absolute;
    top:10px;
    right:10px;
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
    cursor:pointer;
    font-size:18px;
}

.product-content{
    padding:15px;
}

.product-content h3{
    font-size:16px;
    margin:0 0 6px;
    color:#222;
    font-weight:600;
}

.material{
    color:#777;
    font-size:13px;
    margin-bottom:8px;
}

.rating{
    color:#d4a017;
    font-size:14px;
    margin-bottom:10px;
}

.rating span{
    color:#666;
    margin-left:5px;
}

.price{
    font-size:24px;
    font-weight:700;
    color:#8b1e12;
    margin-bottom:15px;
}

.product-buttons{
    display:flex;
    gap:10px;
}

.cart-btn,
.buy-btn{
    flex:1;
    height:40px;
    border-radius:4px;
    font-size:8px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.cart-btn{
    background:#fff;
    border:1px solid #8b1e12;
    color:#8b1e12;
}

.cart-btn:hover{
    background:#f8f3f2;
}

.buy-btn{
    background:#8b1e12;
    border:1px solid #8b1e12;
    color:#fff;
}

.buy-btn:hover{
    background:#6f170e;
}

.product-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:10px;
    overflow:hidden;
    transition:.3s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.product-img{
    position:relative;
    overflow:hidden;
}

.product-img img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.wishlist-btn{
    position:absolute;
    top:12px;
    right:12px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
    color:#7a1e14;
}

.product-title{
    font-size:16px;
    font-weight:600;
    color:#222;
    margin-bottom:5px;
}

.product-type{
    color:#888;
    font-size:13px;
    margin-bottom:8px;
}

.rating{
    color:#d4a017;
    font-size:13px;
}

.rating span{
    color:#666;
    margin-left:5px;
}

.price{
    color:#7a1e14;
    font-size:24px;
    font-weight:700;
    margin-top:8px;
}

.product-buttons{
    display:flex;
    gap:8px;
    margin-top:12px;
}

.cart-btn,
.buy-btn{
    flex:1;
    height:34px;
    font-size:10px;
    font-weight:700;
    border-radius:2px;
    text-transform:uppercase;
    transition:.3s;
}

.cart-btn{
    background:#fff;
    color:#7d2218;
    border:1px solid #7d2218;
}

.cart-btn:hover{
    background:#f8f3f2;
    color:#7d2218;
}

.buy-btn{
    color:#fff;
    border:none;
    background:linear-gradient(
        to bottom,
        #8f2d1d,
        #6f1d12
    );
    box-shadow:0 2px 6px rgba(111,29,18,.3);
}

.buy-btn:hover{
    background:linear-gradient(
        to bottom,
        #a33422,
        #7d2218
    );
    color:#fff;
}

@media(max-width:576px){

    .cart-btn,
    .buy-btn{
        height:30px;
        font-size:9px;
        padding:0;
    }

    .product-buttons{
        gap:6px;
    }
}

.heritage-footer{
    background:linear-gradient(
        90deg,
        #7a0907,
        #8d0d09,
        #6e0505
    );
    color:#fff;
    padding-top:40px;
    font-family:'Poppins',sans-serif;
}

.footer-brand h3{
    font-size:32px;
    font-weight:600;
    margin:10px 0;
    font-family:serif;
}

.footer-brand p{
    font-size:14px;
    line-height:1.8;
    color:#f0d6d6;
}

.footer-logo{
    width:70px;
}

.heritage-footer h5{
    font-size:15px;
    font-weight:700;
    margin-bottom:18px;
    color:#fff;
}

.heritage-footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.heritage-footer ul li{
    margin-bottom:8px;
}

.heritage-footer ul li a{
    color:#f5dada;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.heritage-footer ul li a:hover{
    color:#fff;
    padding-left:5px;
}

.contact-list li{
    color:#f5dada;
    font-size:14px;
    margin-bottom:10px;
}

.contact-list i{
    width:20px;
    margin-right:8px;
}

.social-icons{
    margin-top:20px;
}

.social-icons a{
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin-right:8px;
    color:#fff;
    text-decoration:none;
    background:rgba(255,255,255,.15);
    transition:.3s;
}

.social-icons a:hover{
    background:#fff;
    color:#8d0d09;
}

.footer-bottom{
    margin-top:0px;
    border-top:1px solid rgba(255,255,255,.15);
    padding:12px 0;
    font-size:13px;
    color:#f0d6d6;
}

.footer-bottom a{
    color:#f0d6d6;
    text-decoration:none;
}

.category-section{
    background:#fff;
    border:1px solid #eee;
}

.category-item{
    border-right:1px solid #ececec;
}

.category-item:last-child{
    border-right:none;
}

.category-item a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    padding:8px 10px;
    min-height:85px;
    transition:.3s;
}

.category-item img{
    width:64px;
    height:64px;
    object-fit:contain;
    margin-bottom:8px;
    transition:.3s;
}

.category-item span{
    font-size:14px;
    font-weight:500;
    color:#4d2a1e;
    text-align:center;
    line-height:1.3;
}

.category-item:hover{
    background:#faf7f4;
}

.category-item:hover img{
    transform:translateY(-3px) scale(1.08);
}

.category-item:hover span{
    color:#8a2c1a;
}
.featured-section{
    background:#fff;
}

.section-title h2{
    font-size:32px;
    font-weight:600;
    color:#5b2c1e;
    letter-spacing:1px;
    font-family:serif;
}

.divider{
    color:#8b5a2b;
    font-size:22px;
}

.featured-wrapper{
    position:relative;
}

.featured-slider{
    display:flex;
    gap:12px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:5px;
}

.featured-slider::-webkit-scrollbar{
    display:none;
}

.collection-card{
    min-width:240px;
    height:420px;
    position:relative;
    overflow:hidden;
    border-radius:6px;
    flex-shrink:0;
}

.collection-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.collection-card:hover img{
    transform:scale(1.08);
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.9),
        rgba(0,0,0,.15)
    );
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:18px;
    color:#fff;
}

.overlay h5{
    font-size:20px;
    margin-bottom:8px;
}

.overlay p{
    margin:0;
    font-size:14px;
}

.overlay span{
    font-size:13px;
    margin-bottom:10px;
    display:block;
}

.overlay a{
    display:inline-block;
    width:max-content;
    padding:7px 14px;
    font-size:11px;
    text-decoration:none;
    background:#000;
    color:#fff;
    border:1px solid #fff;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
    z-index:99;
    cursor:pointer;
}

.prev{
    left:-15px;
}

.next{
    right:-15px;
}

@media(max-width:768px){

    .collection-card{
        min-width:180px;
        height:320px;
    }

    .overlay h5{
        font-size:15px;
    }

    .slider-btn{
        display:none;
    }

    .section-title h2{
        font-size:24px;
    }
}

.featured-slider{
    display:flex;
    gap:15px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
    padding:10px;
}

.featured-slider::-webkit-scrollbar{
    display:none;
}

/* Desktop */
.collection-card{
    flex:0 0 calc(12.5% - 14px); /* 8 cards per row */
    min-width:220px;
    height:420px;
    position:relative;
    overflow:hidden;
    border-radius:8px;
}

/* Tablet */
@media(max-width:991px){

    .collection-card{
        flex:0 0 240px;
        min-width:240px;
        height:380px;
    }

    .slider-btn{
        display:none;
    }
}

/* Mobile */
@media(max-width:576px){

    .featured-slider{
        gap:10px;
        padding:5px;
    }

    .collection-card{
        flex:0 0 160px;
        min-width:160px;
        height:260px;
    }

    .overlay{
        padding:12px;
    }

    .overlay h5{
        font-size:13px;
        margin-bottom:4px;
    }

    .overlay p{
        font-size:11px;
    }

    .overlay span{
        font-size:10px;
        margin-bottom:6px;
    }

    .overlay a{
        padding:4px 8px;
        font-size:9px;
    }

    .section-title h2{
        font-size:22px;
    }
}

.featured-slider{
    scroll-snap-type:x mandatory;
}

.collection-card{
    scroll-snap-align:start;
}

.container,
.row,
.featured-section,
.featured-wrapper{
    overflow:hidden;
}

.featured-slider{
    display:flex;
    overflow-x:auto;
    flex-wrap:nowrap;
}

@media(max-width:576px){

    .collection-card{
        min-width:160px;
        width:160px;
    }
}

.featured-slider{
    display:flex;
    overflow-x:auto;
    flex-wrap:nowrap;
    gap:10px;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
}

.featured-slider::-webkit-scrollbar{
    display:none;
}

.collection-card{
    flex:0 0 auto;
    width:160px;
    height:260px;
}


#heroSlider{
    overflow:hidden;
}

.carousel-item{
    position:relative;
}

.carousel-item img{
    width:100%;
    height:650px;
    object-fit:cover;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,.65),
        rgba(0,0,0,.15)
    );
    display:flex;
    align-items:center;
}

.banner-content{
    max-width:600px;
    margin-left:8%;
    color:#fff;
}

.banner-content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
}

.banner-content p{
    font-size:22px;
    margin-bottom:25px;
}

.shop-btn{
    display:inline-block;
    padding:14px 35px;
    background:#8b1e12;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.shop-btn:hover{
    background:#6f170e;
    color:#fff;
    transform:translateY(-2px);
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
}

@media(max-width:991px){

    .carousel-item img{
        height:450px;
    }

    .banner-content h1{
        font-size:40px;
    }

    .banner-content p{
        font-size:18px;
    }
}

@media(max-width:576px){

    .carousel-item img{
        height:260px;
    }

    .banner-overlay{
        justify-content:center;
        text-align:center;
    }

    .banner-content{
        margin:0 20px;
    }

    .banner-content h1{
        font-size:24px;
        margin-bottom:8px;
    }

    .banner-content p{
        font-size:13px;
        margin-bottom:15px;
    }

    .shop-btn{
        padding:8px 20px;
        font-size:12px;
    }

    .carousel-control-prev,
    .carousel-control-next{
        display:none;
    }
}

/* Mobile */
@media (max-width: 768px){

    .header-top{
        padding:10px 15px;
        flex-wrap:wrap;
        gap:10px;
    }

    .logo-area{
        width:70%;
    }

    .logo-text h1{
        font-size:20px;
        line-height:1.2;
    }

    .logo-text span{
        font-size:10px;
        display:block;
    }

    .mobile-menu-btn{
        display:block;
        font-size:28px;
        background:none;
        border:none;
        color:#7a1e14;
        cursor:pointer;
    }

    .header-icons{
        display:none;
    }

    .search-wrapper{
        width:100%;
        max-width:100%;
        order:3;
    }

    .search-wrapper input{
        height:42px;
        font-size:14px;
    }

    .search-wrapper button{
        width:50px;
        height:42px;
    }

    .main-nav{
        display:none;
        width:100%;
        background:#7a1e14;
    }

    .main-nav.show{
        display:block;
    }

    .main-nav ul{
        flex-direction:column;
    }

    .main-nav ul li{
        width:100%;
    }

    .main-nav ul li a{
        display:block;
        padding:12px 15px;
        border-bottom:1px solid rgba(255,255,255,.1);
    }
}

.mobile-menu-btn{
    display:none;
}

@media(max-width:768px){
    .mobile-menu-btn{
        display:block;
    }
}

.custom-pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin:40px 0;
    flex-wrap:wrap;
}

.page-btn{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border:1px solid #e5e5e5;
    background:#fff;
    color:#444;
    font-weight:600;
    border-radius:8px;
    transition:.3s ease;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
}

.page-btn:hover{
    background:#7a1e14;
    color:#fff;
    border-color:#7a1e14;
    transform:translateY(-2px);
}

.page-btn.active{
    background:linear-gradient(
        135deg,
        #8b2c1b,
        #6d150e
    );
    color:#fff;
    border:none;
    box-shadow:0 5px 15px rgba(122,30,20,.3);
}

.prev,
.next{
    width:46px;
}

.dots{
    font-weight:700;
    color:#888;
    padding:0 5px;
}

@media(max-width:576px){

    .custom-pagination{
        gap:5px;
    }

    .page-btn{
        width:36px;
        height:36px;
        font-size:13px;
    }

    .prev,
    .next{
        width:36px;
    }
}

.featured-wrapper{
    position:relative;
}

.featured-slider{
    display:flex;
    gap:15px;
    overflow-x:auto;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding:10px 5px;
}

.featured-slider::-webkit-scrollbar{
    display:none;
}

.collection-card{
    flex:0 0 240px;
    height:420px;
    position:relative;
    border-radius:10px;
    overflow:hidden;
    scroll-snap-align:start;
}

.collection-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.featured-slider{
    scroll-snap-type:x mandatory;
}

/* Tablet */
@media(max-width:991px){

    .collection-card{
        flex:0 0 220px;
        height:360px;
    }

    .slider-btn{
        display:none;
    }

    .section-title h2{
        font-size:28px;
    }
}

/* Mobile */
@media(max-width:768px){

    .featured-section{
        padding:25px 0 !important;
    }

    .featured-slider{
        gap:10px;
        padding:5px 10px;
    }

    .collection-card{
        flex:0 0 170px;
        height:280px;
    }

    .overlay{
        padding:12px;
    }

    .overlay h5{
        font-size:14px;
        margin-bottom:4px;
    }

    .overlay p{
        font-size:11px;
        margin-bottom:2px;
    }

    .overlay span{
        font-size:11px;
        margin-bottom:8px;
        display:block;
    }

    .overlay a{
        font-size:10px;
        padding:6px 10px;
    }

    .section-title h2{
        font-size:22px;
    }

    .divider{
        font-size:18px;
    }

    .slider-btn{
        display:none;
    }
}

/* Small Mobile */
@media(max-width:480px){

    .collection-card{
        flex:0 0 150px;
        height:250px;
    }

    .overlay h5{
        font-size:12px;
    }

    .overlay p,
    .overlay span{
        font-size:10px;
    }

    .overlay a{
        font-size:9px;
        padding:5px 8px;
    }
}

.product-details{
    background:#fff;
}

.main-image{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:10px;
    border:1px solid #eee;
}

.thumbs{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.thumbs img{
    width:90px;
    height:90px;
    object-fit:cover;
    border:2px solid #eee;
    border-radius:8px;
    cursor:pointer;
}

.product-title{
    font-size:32px;
    font-weight:700;
    margin-bottom:15px;
}

.rating{
    color:#f5a623;
    margin-bottom:15px;
}

.rating span{
    color:#666;
}

.price-box{
    margin-bottom:20px;
}

.sale-price{
    font-size:36px;
    font-weight:700;
    color:#7a1e14;
}

.old-price{
    text-decoration:line-through;
    color:#999;
    margin-left:10px;
}

.discount{
    color:green;
    font-weight:600;
    margin-left:10px;
}

.short-desc{
    color:#666;
    line-height:1.8;
}

.stock{
    color:green;
    font-weight:600;
    margin:20px 0;
}

.qty-box{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:5px;
	padding:10px;
}

.qty-control{
    display:flex;
    border:1px solid #ddd;
}

.qty-control button{
    width:40px;
    border:none;
    background:#f7f7f7;
}

.qty-control input{
    width:60px;
    text-align:center;
    border:none;
}

.action-buttons{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}



.features{
    list-style:none;
    padding:0;
}

.features li{
    margin-bottom:10px;
}

.cart-page{
    background:#f8f8f8;
}

.cart-card,
.summary-card{
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.cart-title{
    margin-bottom:25px;
    font-weight:700;
}

.cart-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:20px 0;
    border-bottom:1px solid #eee;
}

.cart-item img{
    width:110px;
    height:110px;
    object-fit:cover;
    border-radius:10px;
}

.item-details{
    flex:1;
}

.item-details h5{
    font-size:18px;
    margin-bottom:8px;
}

.item-details p{
    color:#777;
    margin-bottom:8px;
}

.item-price{
    color:#7a1e14;
    font-weight:700;
    font-size:20px;
}

.qty-box{
    display:flex;
    border:1px solid #ddd;
    border-radius:6px;
    overflow:hidden;
}

.qty-box button{
    width:40px;
    border:none;
    background:#f5f5f5;
}

.qty-box input{
    width:50px;
    text-align:center;
    border:none;
}

.remove-btn{
    border:none;
    background:#ffe5e5;
    color:#d32f2f;
    padding:10px 15px;
    border-radius:6px;
}

.summary-card h4{
    margin-bottom:20px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.total{
    font-size:22px;
    font-weight:700;
}

.coupon-box{
    display:flex;
    margin:20px 0;
}

.coupon-box input{
    flex:1;
    height:45px;
    border:1px solid #ddd;
    padding:0 15px;
}

.coupon-box button{
    width:100px;
    border:none;
    background:#7a1e14;
    color:#fff;
}

.checkout-btn{
    width:100%;
    height:50px;
    border:none;
    border-radius:8px;
    background:#7a1e14;
    color:#fff;
    font-weight:600;
    margin-bottom:15px;
}

.continue-shopping{
    text-decoration:none;
    color:#7a1e14;
    font-weight:600;
}

@media(max-width:768px){

    .cart-item{
        flex-direction:column;
        align-items:flex-start;
    }

    .cart-item img{
        width:100%;
        height:220px;
    }

    .qty-box{
        margin-top:10px;
    }

    .remove-btn{
        width:100%;
        margin-top:10px;
    }

    .summary-card{
        margin-top:20px;
    }
}

.checkout-section{
    background:#f7f7f7;
}

.checkout-card,
.summary-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 25px rgba(0,0,0,.05);
}

.checkout-card h3,
.summary-card h4{
    font-weight:700;
    margin-bottom:25px;
}

.checkout-card label{
    font-weight:500;
    margin-bottom:6px;
    display:block;
}

.form-control{
    height:50px;
    border-radius:10px;
    border:1px solid #ddd;
}

.payment-method{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.payment-option{
    border:1px solid #eee;
    padding:15px;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

.payment-option:hover{
    border-color:#7a1e14;
    background:#faf6f5;
}

.product-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:15px;
}

.total{
    font-size:24px;
    font-weight:700;
    color:#7a1e14;
}

.coupon-box{
    display:flex;
    margin-top:20px;
    margin-bottom:20px;
}

.coupon-box input{
    flex:1;
    height:48px;
    border:1px solid #ddd;
    padding:0 15px;
}

.coupon-box button{
    width:100px;
    border:none;
    background:#7a1e14;
    color:#fff;
}

.place-order-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:10px;
    background:#7a1e14;
    color:#fff;
    font-size:18px;
    font-weight:600;
}

.place-order-btn:hover{
    background:#61150e;
}

.secure-text{
    text-align:center;
    margin-top:15px;
    color:#28a745;
    font-weight:600;
}

@media(max-width:768px){

    .checkout-card,
    .summary-card{
        padding:20px;
    }

    .checkout-card h3{
        font-size:24px;
    }

    .summary-card{
        margin-top:20px;
    }

    .coupon-box{
        flex-direction:column;
        gap:10px;
    }

    .coupon-box button{
        width:100%;
        height:45px;
    }
}

.wishlist-section{
    background:#f8f8f8;
}

.wishlist-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.wishlist-header h2{
    font-weight:700;
    margin:0;
}

.wishlist-header span{
    color:#777;
}

.wishlist-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    position:relative;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    transition:.3s;
    height:100%;
}

.wishlist-card:hover{
    transform:translateY(-5px);
}

.remove-btn{
    position:absolute;
    top:12px;
    right:12px;
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#dc3545;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    z-index:10;
}

.wishlist-image img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.wishlist-content{
    padding:15px;
}

.wishlist-content h5{
    font-size:16px;
    margin-bottom:10px;
    min-height:45px;
}

.rating{
    color:#f5a623;
    font-size:14px;
}

.rating span{
    color:#666;
}

.price-box{
    margin:10px 0;
}

.sale-price{
    color:#7a1e14;
    font-size:22px;
    font-weight:700;
}

.old-price{
    color:#999;
    text-decoration:line-through;
    margin-left:8px;
}

.stock{
    color:#28a745;
    font-size:14px;
    margin-bottom:12px;
}

.cart-btn{
    width:100%;
    height:45px;
    border:none;
    border-radius:8px;
    background:#7a1e14;
    color:#fff;
    font-weight:600;
}

@media(max-width:768px){

    .wishlist-header{
        flex-direction:column;
        align-items:flex-start;
        gap:5px;
    }

    .wishlist-image img{
        height:180px;
    }

    .wishlist-content{
        padding:10px;
    }

    .wishlist-content h5{
        font-size:14px;
        min-height:auto;
    }

    .sale-price{
        font-size:18px;
    }

    .cart-btn{
        height:40px;
        font-size:13px;
    }
}

.empty-wishlist{
    text-align:center;
    padding:80px 20px;
}

.empty-wishlist i{
    font-size:80px;
    color:#ddd;
}

.empty-wishlist h3{
    margin-top:20px;
}

.shop-btn{
    display:inline-block;
    padding:12px 25px;
    background:#7a1e14;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
}

.contact-section{
    background:#f8f8f8;
}

.section-heading h2{
    font-size:38px;
    font-weight:700;
    color:#7a1e14;
}

.section-heading p{
    color:#666;
}

.contact-card,
.info-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 25px rgba(0,0,0,.06);
    height:100%;
}

.contact-card h4,
.info-card h4{
    margin-bottom:25px;
    font-weight:700;
}

.form-control{
    height:52px;
    border-radius:10px;
    border:1px solid #ddd;
}

textarea.form-control{
    height:auto;
}

.send-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:10px;
    background:#7a1e14;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.send-btn:hover{
    background:#61150e;
}

.info-item{
    display:flex;
    gap:15px;
    margin-bottom:25px;
}

.info-item i{
    width:50px;
    height:50px;
    background:#7a1e14;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.info-item h6{
    margin-bottom:4px;
    font-weight:600;
}

.info-item p{
    margin:0;
    color:#666;
}

.social-links{
    display:flex;
    gap:10px;
    margin-top:20px;
}

.social-links a{
    width:45px;
    height:45px;
    background:#7a1e14;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.map-section iframe{
    width:100%;
    height:400px;
    border:none;
    border-radius:15px;
}

@media(max-width:768px){

    .section-heading h2{
        font-size:28px;
    }

    .contact-card,
    .info-card{
        padding:20px;
    }

    .map-section iframe{
        height:250px;
    }

    .info-item{
        gap:10px;
    }

    .info-item i{
        width:40px;
        height:40px;
    }
}

.about-hero{
    background:
    linear-gradient(rgba(0,0,0,.55),
    rgba(0,0,0,.55)),
    url(images/about-banner.jpg);
    background-size:cover;
    background-position:center;
    min-height:300px;
    display:flex;
    align-items:center;
    text-align:center;
}

.about-content{
    max-width:850px;
    margin:auto;
    color:#fff;
}

.sub-title{
    color:#d4af37;
    letter-spacing:3px;
    font-weight:600;
}

.about-content h1{
    font-size:60px;
    font-weight:700;
    margin:20px 0;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
}

.about-image{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.about-text span{
    color:#a67c00;
    font-weight:600;
    letter-spacing:2px;
}

.about-text h2{
    font-size:42px;
    margin:15px 0;
}

.about-text p{
    color:#666;
    line-height:1.9;
}

.about-values{
    background:#faf8f5;
    padding:80px 0;
}

.value-card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:15px;
    transition:.4s;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.value-card:hover{
    transform:translateY(-8px);
}

.value-card i{
    font-size:45px;
    color:#8b6b00;
    margin-bottom:15px;
}

.value-card h4{
    margin-bottom:10px;
}

.about-counter{
    background:#3b2c24;
    color:#fff;
}

.about-counter h2{
    color:#d4af37;
    font-size:48px;
    font-weight:700;
}

@media(max-width:768px){

    .about-content h1{
        font-size:34px;
    }

    .about-content p{
        font-size:15px;
    }

    .about-text h2{
        font-size:28px;
        margin-top:20px;
    }

    .value-card{
        padding:25px;
    }

    .about-counter h2{
        font-size:30px;
    }
}

.testimonial-section{
    padding:100px 0;
    background:#faf8f5;
}

.section-heading{
    text-align:center;
    max-width:700px;
    margin:auto auto 60px;
}

.section-heading span{
    color:#b08b2e;
    letter-spacing:3px;
    font-weight:600;
}

.section-heading h2{
    font-size:48px;
    font-weight:700;
    margin:15px 0;
    color:#222;
}

.section-heading p{
    color:#777;
    line-height:1.8;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    position:relative;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.quote-icon{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#d4af37,#b08b2e);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    font-size:20px;
}

.testimonial-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.rating{
    color:#f4b400;
    font-size:20px;
    margin-bottom:20px;
}

.customer{
    display:flex;
    align-items:center;
    gap:15px;
}

.customer img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #d4af37;
}

.customer h5{
    margin:0;
    font-size:18px;
    font-weight:600;
}

.customer span{
    color:#888;
    font-size:14px;
}

.customer-stats{
    background:#3b2c24;
    color:#fff;
    padding:70px 0;
}

.customer-stats h2{
    color:#d4af37;
    font-size:50px;
    font-weight:700;
}

.customer-stats p{
    margin-top:10px;
    color:#ddd;
}

.heritage-footer{
    background:#660000;
    color:#fff;
    padding:80px 0 20px;
    position:relative;
    overflow:hidden;
}

.heritage-footer::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        #d4af37,
        #f4d03f,
        #d4af37
    );
}

.footer-brand h1{
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
    letter-spacing:1px;
}

.footer-brand span{
    color:#d4af37;
    font-size:13px;
    display:block;
    margin-bottom:15px;
}

.footer-brand p{
    color:#cfcfcf;
    line-height:1.8;
    margin-top:15px;
}

.heritage-footer h5{
    color:#d4af37;
    font-weight:700;
    margin-bottom:25px;
    font-size:16px;
    letter-spacing:1px;
    position:relative;
}

.heritage-footer h5::after{
    content:'';
    width:40px;
    height:2px;
    background:#d4af37;
    position:absolute;
    left:0;
    bottom:-8px;
}

.heritage-footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.heritage-footer ul li{
    margin-bottom:12px;
}

.heritage-footer ul li a{
    color:#d8d8d8;
    text-decoration:none;
    transition:.3s;
}

.heritage-footer ul li a:hover{
    color:#d4af37;
    padding-left:6px;
}

.contact-list li{
    display:flex;
    gap:12px;
    align-items:flex-start;
    color:#ddd;
}

.contact-list i{
    color:#d4af37;
    margin-top:4px;
    min-width:18px;
}

.social-icons{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    border:1px solid rgba(212,175,55,.4);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d4af37;
    text-decoration:none;
    transition:.4s;
}

.social-icons a:hover{
    background:#d4af37;
    color:#1d1611;
    transform:translateY(-4px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:0px;
    padding-top:20px;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#aaa;
    font-size:14px;
}

.footer-bottom a{
    color:#d4af37;
    text-decoration:none;
}
@media(max-width:991px){

    .heritage-footer{
        padding:60px 0 20px;
    }

    .footer-brand{
        text-align:center;
        margin-bottom:20px;
    }

    .social-icons{
        justify-content:center;
    }

    .heritage-footer h5{
        margin-top:15px;
    }

}

@media(max-width:768px){

    .footer-brand h1{
        font-size:26px;
    }

    .footer-brand span{
        font-size:12px;
    }

    .heritage-footer{
        text-align:center;
    }

    .heritage-footer h5::after{
        left:50%;
        transform:translateX(-50%);
    }

    .contact-list li{
        justify-content:center;
        text-align:left;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-bottom p{
        font-size:12px;
        line-height:1.8;
    }

}

.luxury-sidebar{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    border:1px solid #f2f2f2;
}

.sidebar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:1px solid #eee;
}

.sidebar-header h3{
    font-size:22px;
    font-weight:700;
    color:#222;
}

.sidebar-header h3 i{
    color:#b08b2e;
    margin-right:8px;
}

.sidebar-header a{
    color:#b08b2e;
    text-decoration:none;
    font-weight:600;
}

.filter-box{
    margin-bottom:28px;
}

.filter-title{
    font-size:17px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
    position:relative;
}

.filter-title::after{
    content:'';
    width:35px;
    height:2px;
    background:#d4af37;
    position:absolute;
    left:0;
    bottom:-6px;
}

.filter-box label{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
    color:#555;
    cursor:pointer;
    font-size:15px;
}

.filter-box input[type="checkbox"]{
    margin-right:10px;
    accent-color:#b08b2e;
}

.filter-box span{
    color:#999;
    font-size:13px;
}

.price-range{
    width:100%;
    accent-color:#b08b2e;
}

.price-label{
    margin-top:10px;
    color:#666;
    font-weight:600;
}

.color-list{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.color{
    width:34px;
    height:34px;
    border-radius:50%;
    cursor:pointer;
    border:2px solid #fff;
    box-shadow:0 0 0 1px #ddd;
    transition:.3s;
}

.color:hover{
    transform:scale(1.15);
}

.beige{background:#e4d3b2;}
.cream{background:#f8f4e8;}
.yellow{background:#f4d03f;}
.red{background:#c0392b;}
.green{background:#2e8b57;}
.gray{background:#8e8e8e;}

.sidebar-banner{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.sidebar-banner img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-align:center;
}

.banner-overlay h5{
    font-size:22px;
    font-weight:700;
}

.banner-overlay p{
    margin:0;
    color:#f4d03f;
}

@media(max-width:991px){

    .luxury-sidebar{
        margin-bottom:25px;
    }

}

@media(max-width:768px){

    .luxury-sidebar{
        padding:18px;
        border-radius:12px;
    }

    .sidebar-header h3{
        font-size:18px;
    }

    .filter-title{
        font-size:15px;
    }

    .filter-box label{
        font-size:14px;
    }

    .sidebar-banner img{
        height:180px;
    }

}

.luxury-product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    position:relative;
    height:100%;
}

.luxury-product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:.6s;
}

.luxury-product-card:hover img{
    transform:scale(1.08);
}

.product-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:linear-gradient(135deg,#d4af37,#b08b2e);
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.wishlist-btn{
    position:absolute;
    top:15px;
    right:15px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 4px 15px rgba(0,0,0,.12);
    color:#b08b2e;
    font-size:18px;
    transition:.3s;
}

.wishlist-btn:hover{
    background:#b08b2e;
    color:#fff;
}

.product-content{
    padding:20px;
}

.product-category{
    color:#a67c00;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.product-title{
    font-size:20px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

.product-rating{
    color:#f4b400;
    margin-bottom:15px;
}

.product-rating span{
    color:#777;
    font-size:13px;
    margin-left:5px;
}

.price-section{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.sale-price{
    font-size:28px;
    font-weight:700;
    color:#2b2119;
}

.old-price{
    text-decoration:line-through;
    color:#999;
}

.discount{
    color:#2e8b57;
    font-size:13px;
    font-weight:600;
}

.buy-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:12px;
    background:linear-gradient(
        135deg,
        #2b2119,
        #4b3728
    );
    color:#fff;
    font-weight:700;
    letter-spacing:1px;
    transition:.4s;
}

.buy-btn:hover{
    background:linear-gradient(
        135deg,
        #d4af37,
        #b08b2e
    );
}

@media(max-width:768px){

    .product-image img{
        height:220px;
    }

    .product-content{
        padding:15px;
    }

    .product-title{
        font-size:16px;
    }

    .sale-price{
        font-size:22px;
    }

    .buy-btn{
        height:45px;
        font-size:14px;
    }

    .wishlist-btn{
        width:36px;
        height:36px;
        font-size:15px;
    }

}
.luxury-gallery{
    background:#faf8f5;
}

.gallery-heading{
    margin-bottom:60px;
}

.gallery-heading span{
    color:#b08b2e;
    letter-spacing:3px;
    font-weight:600;
}

.gallery-heading h2{
    font-size:50px;
    font-weight:700;
    margin:15px 0;
    color:#222;
}

.gallery-heading p{
    max-width:700px;
    margin:auto;
    color:#777;
    line-height:1.8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}

.gallery-item.large{
    grid-row:span 2;
}

.gallery-item img{
    width:100%;
    height:100%;
    min-height:320px;
    object-fit:cover;
    transition:.8s;
}

.gallery-item:hover img{
    transform:scale(1.12);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.8),
        rgba(0,0,0,.1)
    );
    display:flex;
    align-items:flex-end;
    padding:25px;
    opacity:0;
    transition:.4s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay h4{
    color:#fff;
    font-size:24px;
    margin:0;
    font-weight:600;
}.gallery-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

.gallery-modal img{
    max-width:90%;
    max-height:90vh;
    border-radius:15px;
}

.close-gallery{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}
@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .gallery-heading h2{
        font-size:32px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .gallery-item.large{
        grid-row:auto;
    }

    .gallery-item img{
        min-height:250px;
    }

}

.luxury-wishlist-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    position:relative;
    height:100%;
}

.luxury-wishlist-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.wishlist-image{
    position:relative;
    overflow:hidden;
}

.wishlist-image img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.6s;
}

.luxury-wishlist-card:hover img{
    transform:scale(1.08);
}

.wishlist-remove{
    position:absolute;
    top:15px;
    right:15px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#c0392b;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    z-index:2;
}

.wishlist-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:linear-gradient(
        135deg,
        #d4af37,
        #b08b2e
    );
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.wishlist-content{
    padding:22px;
}

.product-category{
    color:#a67c00;
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:1px;
    font-weight:600;
}

.wishlist-content h5{
    margin:10px 0;
    font-size:20px;
    font-weight:700;
    color:#222;
}

.wishlist-rating{
    color:#f4b400;
    margin-bottom:12px;
}

.wishlist-rating span{
    color:#777;
    font-size:13px;
    margin-left:6px;
}

.price-box{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:15px;
}

.sale-price{
    font-size:28px;
    font-weight:700;
    color:#222;
}

.old-price{
    text-decoration:line-through;
    color:#999;
}

.discount{
    color:#2e8b57;
    font-size:13px;
    font-weight:600;
}

.stock{
    color:#2e8b57;
    font-weight:600;
    margin-bottom:18px;
}

.stock i{
    margin-right:5px;
}

.wishlist-buttons{
    display:flex;
    gap:10px;
}

.cart-btn{
    flex:1;
    height:48px;
    border:none;
    border-radius:10px;
    background:#f5f5f5;
    color:#222;
    font-weight:600;
    transition:.3s;
}

.cart-btn:hover{
    background:#e9e9e9;
}

.buy-btn{
    flex:1;
    height:48px;
    border:none;
    border-radius:10px;
    background:linear-gradient(
        135deg,
        #2b2119,
        #4b3728
    );
    color:#fff;
    font-weight:700;
}

.buy-btn:hover{
    background:linear-gradient(
        135deg,
        #d4af37,
        #b08b2e
    );
}

@media(max-width:768px){

    .wishlist-image img{
        height:220px;
    }

    .wishlist-content{
        padding:15px;
    }

    .wishlist-content h5{
        font-size:16px;
    }

    .sale-price{
        font-size:22px;
    }

    .wishlist-buttons{
        flex-direction:column;
    }

    .cart-btn,
    .buy-btn{
        width:100%;
        height:45px;
    }

}

.about-counter{
    background:#3b2c24;
    color:#fff;
}

.about-counter h2{
    font-size:52px;
    font-weight:700;
    color:#d4af37;
    margin-bottom:10px;
}

.about-counter p{
    color:#ddd;
    font-size:16px;
    letter-spacing:1px;
}

@media(max-width:768px){

    .about-counter h2{
        font-size:32px;
    }

    .about-counter .col-6{
        margin-bottom:25px;
    }

}

.account-section{
    background:#faf8f5;
}

.account-sidebar{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.user-profile{
    background:linear-gradient(
        135deg,
        #2b2119,
        #4b3728
    );
    text-align:center;
    padding:35px 20px;
    color:#fff;
}

.user-profile img{
    width:90px;
    height:90px;
    border-radius:50%;
    border:4px solid #d4af37;
    object-fit:cover;
}

.user-profile h4{
    margin-top:15px;
}

.user-profile span{
    color:#d4af37;
}

.account-sidebar ul{
    list-style:none;
    padding:0;
    margin:0;
}

.account-sidebar ul li{
    padding:16px 25px;
    border-bottom:1px solid #eee;
    cursor:pointer;
    transition:.3s;
    font-weight:500;
}

.account-sidebar ul li:hover,
.account-sidebar ul li.active{
    background:#faf5e9;
    color:#b08b2e;
}

.account-sidebar ul li i{
    margin-right:10px;
}

.welcome-card{
    background:linear-gradient(
        135deg,
        #fff,
        #faf5e9
    );
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.welcome-card h2{
    font-weight:700;
}

.dashboard-card{
    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:30px 20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.4s;
}

.dashboard-card:hover{
    transform:translateY(-8px);
}

.dashboard-card i{
    font-size:32px;
    color:#d4af37;
    margin-bottom:15px;
}

.dashboard-card h3{
    font-weight:700;
}

.dashboard-card p{
    color:#777;
    margin:0;
}

.recent-orders{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.section-header{
    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
}

.section-header a{
    color:#b08b2e;
    text-decoration:none;
}

.order-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.order-item img{
    width:70px;
    height:70px;
    border-radius:10px;
    object-fit:cover;
}

.status{
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.delivered{
    background:#eaf8ef;
    color:#198754;
}

.processing{
    background:#fff3cd;
    color:#856404;
}

@media(max-width:991px){

    .account-sidebar{
        margin-bottom:25px;
    }

}

@media(max-width:768px){

    .welcome-card{
        padding:20px;
        text-align:center;
    }

    .welcome-card h2{
        font-size:24px;
    }

    .dashboard-card{
        padding:20px 10px;
    }

    .dashboard-card h3{
        font-size:20px;
    }

    .recent-orders{
        padding:20px;
    }

    .order-item{
        flex-wrap:wrap;
    }

    .status{
        margin-top:10px;
    }

}

.orders-page{
    background:#faf8f5;
    min-height:100vh;
}

.orders-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.orders-header h2{
    font-size:42px;
    font-weight:700;
    color:#222;
}

.orders-header p{
    color:#777;
}

.order-search{
    display:flex;
    overflow:hidden;
    border-radius:12px;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.order-search input{
    border:none;
    padding:12px 18px;
    width:250px;
    outline:none;
}

.order-search button{
    border:none;
    width:55px;
    background:#d4af37;
    color:#fff;
}

.order-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.4s;
}

.order-card:hover{
    transform:translateY(-5px);
}

.order-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:20px;
    border-bottom:1px solid #eee;
}

.order-label{
    color:#888;
    font-size:13px;
}

.order-top h6{
    margin-top:5px;
    font-weight:700;
}

.order-product{
    display:flex;
    align-items:center;
    gap:20px;
    padding:25px 0;
}

.order-product img{
    width:110px;
    height:110px;
    object-fit:cover;
    border-radius:15px;
}

.product-info{
    flex:1;
}

.product-info h5{
    font-weight:700;
}

.product-info p{
    color:#777;
    margin-bottom:5px;
}

.product-price{
    font-size:26px;
    font-weight:700;
    color:#2b2119;
}

.status{
    padding:10px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.delivered{
    background:#e9f8ee;
    color:#198754;
}

.processing{
    background:#fff4d7;
    color:#856404;
}

.cancelled{
    background:#fdeaea;
    color:#dc3545;
}

.order-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.order-actions button{
    border:none;
    height:46px;
    padding:0 25px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.btn-track{
    background:#2b2119;
    color:#fff;
}

.btn-track:hover{
    background:#000;
}

.btn-invoice{
    background:#f4f4f4;
}

.btn-review{
    background:#d4af37;
    color:#fff;
}

.btn-cancel{
    background:#dc3545;
    color:#fff;
}

@media(max-width:768px){

    .orders-header{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .orders-header h2{
        font-size:30px;
    }

    .order-search{
        width:100%;
    }

    .order-search input{
        width:100%;
    }

    .order-top{
        flex-wrap:wrap;
        gap:15px;
    }

    .order-product{
        flex-direction:column;
        text-align:center;
    }

    .product-price{
        font-size:22px;
    }

    .order-actions{
        flex-direction:column;
    }

    .order-actions button{
        width:100%;
    }

}
.change-password-section{
    background:#faf8f5;
    min-height:100vh;
}

.password-card{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-top:5px solid #d4af37;
}

.password-header{
    text-align:center;
    margin-bottom:35px;
}

.icon-box{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #d4af37,
        #b08b2e
    );
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    margin-bottom:20px;
}

.password-header h2{
    font-size:36px;
    font-weight:700;
    color:#222;
}

.password-header p{
    color:#777;
    margin-top:10px;
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    font-weight:600;
    margin-bottom:8px;
    display:block;
    color:#333;
}

.input-group-custom{
    position:relative;
}

.input-group-custom i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#b08b2e;
}

.input-group-custom input{
    width:100%;
    height:58px;
    border:1px solid #ddd;
    border-radius:12px;
    padding-left:50px;
    outline:none;
    transition:.3s;
}

.input-group-custom input:focus{
    border-color:#d4af37;
    box-shadow:0 0 0 4px rgba(212,175,55,.15);
}

.save-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:12px;
    background:linear-gradient(
        135deg,
        #2b2119,
        #4b3728
    );
    color:#fff;
    font-size:16px;
    font-weight:700;
    transition:.4s;
}

.save-btn i{
    margin-right:8px;
}

.save-btn:hover{
    background:linear-gradient(
        135deg,
        #d4af37,
        #b08b2e
    );
}
@media(max-width:768px){

    .password-card{
        padding:25px;
        border-radius:18px;
    }

    .password-header h2{
        font-size:28px;
    }

    .icon-box{
        width:70px;
        height:70px;
        font-size:28px;
    }

    .input-group-custom input{
        height:52px;
    }

}

.tribal-section {
    padding: 20px 0;
    background: #faf8f5;
}

.tribal-section .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 25px;
}

/* CARD DESIGN */
.region-box,
.why-box {
    background: #fff;
    border: 1px solid #e7e1d8;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
}

/* LEFT */
.region-box {
    display: flex;
    gap: 20px;
}

.region-content {
    width: 40%;
}

.region-content h2 {
    font-size: 26px;
    color: #5a2d1a;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.region-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.region-content ul li {
    margin-bottom: 10px;
    color: #333;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

.region-content ul li:before {
    content: "";
    color: #8b5e3c;
    position: absolute;
    left: 0;
}

.region-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-region {
    display: inline-block;
    background: #7a1f1f;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: .3s;
}

.btn-region:hover {
    background: #5e1414;
}

/* IMAGE GALLERY */
.region-gallery {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}

.region-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: .4s;
}

.region-gallery img:hover {
    transform: scale(1.05);
}

/* RIGHT */
.why-box h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #5a2d1a;
    font-size: 28px;
    font-family: Georgia, serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.feature {
    text-align: center;
}

.feature i {
    font-size: 25px;
    color: #9a6a43;
    margin-bottom: 12px;
}

.feature span {
    display: block;
    font-size: 14px;
    color: #444;
    line-height: .8;
    font-weight: 500;
}

/* MOBILE */
@media(max-width:991px){

    .tribal-section .container{
        grid-template-columns:1fr;
    }
	

    .region-box{
        flex-direction:column;
    }

    .region-content,
    .region-gallery{
        width:100%;
    }

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .region-gallery{
        grid-template-columns:1fr;
    }

    .region-gallery img{
        height:220px;
    }

    .features-grid{
        grid-template-columns:1fr;
    }

    .region-content h2,
    .why-box h2{
        font-size:22px;
    }
}

.community-section{
    padding:10px 0;
    background:#f9f7f4;
}

.community-section .container{
    display:grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap:20px;
}

/* COMMON CARD */

.community-card{
    background:#fff;
    border:1px solid #e8e0d7;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

/* SOCIAL CARD */

.social-card{
    padding:20px;
}

.social-card h2{
    text-align:center;
    color:#6f2017;
    font-size:28px;
    margin-bottom:20px;
    font-weight:700;
}

.social-icons{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.social-item{
    text-align:center;
}

.social-item i{
    width:50px;
    height:50px;
    line-height:50px;
    border-radius:50%;
    color:#fff;
    font-size:22px;
}

.social-item:nth-child(1) i{
    background:#e1306c;
}

.social-item:nth-child(2) i{
    background:#1877f2;
}

.social-item:nth-child(3) i{
    background:#ff0000;
}

.social-item:nth-child(4) i{
    background:#25d366;
}

.social-item:nth-child(5) i{
    background:#b08b63;
}

.social-item span{
    display:block;
    margin-top:8px;
    font-size:13px;
    color:#444;
}

.community-gallery{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:8px;
}

.community-gallery img{
    width:100%;
    height:60px;
    object-fit:cover;
    border-radius:6px;
    transition:.4s;
}

.community-gallery img:hover{
    transform:scale(1.05);
}

/* STORIES CARD */

.stories-card{
    display:flex;
    align-items:center;
}

.story-image{
    width:45%;
    position:relative;
}

.story-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:55px;
    height:55px;
    background:#7c0d0d;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.story-content{
    width:55%;
    padding:20px;
}

.story-content h3{
    color:#6f2017;
    margin-bottom:10px;
    font-size:28px;
}

.story-content p{
    color:#666;
    margin-bottom:20px;
}

.gallery-btn{
    background:#7c0d0d;
    color:#fff;
    text-decoration:none;
    padding:12px 25px;
    border-radius:5px;
    display:inline-block;
    font-size:13px;
    font-weight:600;
}

.gallery-btn:hover{
    background:#5d0606;
}

/* SUBSCRIBE CARD */

.subscribe-card{
    background:linear-gradient(135deg,#7b0000,#a40d0d);
    color:#fff;
    padding:25px;
}

.subscribe-card h3{
    font-size:26px;
    margin-bottom:15px;
}

.subscribe-card p{
    opacity:.9;
    line-height:1.8;
    margin-bottom:25px;
}

.subscribe-form{
    display:flex;
    overflow:hidden;
    border-radius:5px;
}

.subscribe-form input{
    flex:1;
    border:none;
    padding:15px;
    outline:none;
}

.subscribe-form button{
    border:none;
    background:#d9a027;
    color:#fff;
    padding:0 25px;
    cursor:pointer;
    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:991px){

    .community-section .container{
        grid-template-columns:1fr;
    }

    .stories-card{
        flex-direction:column;
    }

    .story-image,
    .story-content{
        width:100%;
    }
}

@media(max-width:576px){

    .community-gallery{
        grid-template-columns:repeat(3,1fr);
    }

    .social-icons{
        flex-wrap:wrap;
        gap:15px;
        justify-content:center;
    }

    .subscribe-form{
        flex-direction:column;
    }

    .subscribe-form button{
        height:50px;
    }
}