
:root{
  --maroon:#76315C;
  --gold:#FB9530;
  --cream:#fff;
}

/* RESET */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Poppins',sans-serif}

/* ANNOUNCEMENT */
.announcement{
  background:var(--maroon);
  color:#fff;
  text-align:center;
  padding:8px;
  font-size:14px;
}

/* HEADER */
header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:999;
  transition:.3s;
}
header.sticky{box-shadow:0 4px 15px rgba(0,0,0,.15)}

.header-top{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:14px 24px;
  border-bottom: 1px solid gray;
}

/* LOGO CENTER */
.logo{display:flex;justify-content:center}
.logo img{height:76px; object-fit: contain; width: 300px;}

/* ICONS */
.left-icons,
.right-icons{
  display:flex;
  align-items:center;
  gap:26px;
  color:var(--maroon);
  font-size:15px;
}

.left-icons{justify-content: start;}
.right-icons{justify-content: end;}

.left-icons span{display:flex;gap:6px;align-items:center}
.right-icons i{cursor:pointer;font-size:17px}

/* MENU BUTTON */
.menu-btn{display:none;font-size:22px;cursor:pointer}

/* NAV */
.navbar{border-top:1px solid #eee}
.navbar ul{
  display:flex;
  justify-content:center;
  gap:34px;
  padding:14px 0;
  list-style:none;
}
.navbar li{
  font-size:15px;
  color:var(--maroon);
}
.navbar li::after{
  content:" ";
  color:var(--gold);
  font-size:12px;
}

/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  left:-100%;
  width:85%;
  height:100%;
  background:var(--cream);
  z-index:2000;
  transition:.4s;
  padding:20px;
}
.mobile-menu.active{left:0}

.mobile-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}
.mobile-menu ul{list-style:none}
.mobile-menu li{
  padding:14px 6px;
  border-bottom:1px solid #e3caa0;
  font-size:16px;
}

.mobile-footer{margin-top:25px}
.currency{display:flex;gap:10px;margin-bottom:20px}
.bottom-icons{
  display:flex;
  justify-content:space-between;
  margin-top:25px;
}

/* SEARCH POPUP */
.search-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:3000;
}
.search-box{
  background:#fff;
  width:90%;
  max-width:500px;
  padding:25px;
  border-radius:10px;
}
.search-box input{
  width:100%;
  padding:14px;
  font-size:16px;
  border:1px solid #ccc;
  outline:none;
}

/* WHATSAPP FLOAT */
.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  background:#25D366;
  color:#fff;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  box-shadow:0 5px 15px rgba(0,0,0,.3);
  z-index:4000;
}

/* RESPONSIVE */
@media(max-width:992px){
  .navbar{display:none}
  .menu-btn{display:block}
  .left-icons span{display:none}
}

@media screen and (min-width:320px) and (max-width:768px){
    .demo{
        display: none;
    }
}

/* hero section */
.hero-carousel{
  position:relative;
  width:100%;
  height:90vh;
  overflow:hidden;
}

.hero-track{
  display:flex;
  height:100%;
  transition:transform 0.6s ease;
}

.slide{
  min-width:100%;
  height:100%;
  position:relative;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.slide::after{
  content:'';
  position:absolute;
  inset:0;
  /* background:linear-gradient(to right, rgba(0,0,0,.45), rgba(0,0,0,.1)); */
}

.content{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  color:#fff;
  z-index:2;
}

.content h2{
  font-size:3.2rem;
  line-height:1.2;
  margin-bottom:20px;
}

.btn{
  display:inline-block;
  padding:14px 32px;
  background:#76315C;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
  letter-spacing:1px;
}

.nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,.5);
  border:none;
  color:#fff;
  font-size:28px;
  padding:10px 16px;
  cursor:pointer;
  z-index:5;
}

.prev{left:20px; background-color: transparent; color: transparent;}
.next{right:20px; background-color: transparent; color: transparent;}

.dots{
  position:absolute;
  bottom:20px;
  width:100%;
  text-align:center;
  z-index:5;
}

.dots span{
  display:inline-block;
  width:10px;
  height:10px;
  background:#ccc;
  margin:0 5px;
  border-radius:50%;
  cursor:pointer;
}

.dots span.active{
  background:#76315C;
}

/* MOBILE */
@media(max-width:768px){
  .hero-carousel{height:40vh;}
  .content h2{font-size:2rem;}
  .slide img{object-position: center; object-fit: cover;}
}

/* about section */
.welcome-srv{
  position:relative;
  background:#fbf7f2;
  padding:90px 20px;
  overflow:hidden;
  background-image: url(./asset/abo.png);
  background-position: center;
  background-size: cover;
}

.welcome-content{
  max-width:900px;
  margin:auto;
  text-align:center;
}

.crown{
  font-size:32px;
  color:#d4af37;
  margin-bottom:12px;
}

.welcome-content h2{
  font-size:38px;
  letter-spacing:1px;
  color:#76315C;
  margin-bottom:25px;
}

.welcome-content p{
  font-size:17px;
  line-height:1.9;
  color:#222;
  max-width:820px;
  margin:auto;
}

/* Decorative Mandalas */
.mandala{
  position:absolute;
  width:280px;
  opacity:.25;
}

.mandala.left{
  left:-80px;
  top:50px;
}

.mandala.right{
  right:-80px;
  top:80px;
}

/* Offer Strip */
.offer-strip{
  margin-top:0px;
  background:#FB9530;
  overflow:hidden;
  border-top:1px solid #e5c28a;
}

.offer-track{
  display:flex;
  gap:40px;
  padding:18px 0;
  animation:scroll 25s linear infinite;
  white-space:nowrap;
}

.offer-track span{
  font-weight:600;
  color:#222222;
  font-size:16px;
  letter-spacing:.5px;
}

@keyframes scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}

/* Responsive */
@media(max-width:768px){
  .welcome-srv{
    padding:60px 16px;
  }

  .welcome-content h2{
    font-size:26px;
  }

  .welcome-content p{
    font-size:15px;
  }

  .mandala{
    width:180px;
  }
}

/* collection page  */
.collections{
  background:#76315C;
  padding:80px 30px;
  color:#fff;
}

.section-title{
  text-align:center;
  margin-bottom:50px;
}

.section-title h2{
  font-size:36px;
  color:#fff;
  letter-spacing:1px;
}

.section-title p{
  margin-top:10px;
  color:#f1e2c6;
}

.ornament{
  margin:0 10px;
}

.collection-wrapper{
  position:relative;
}

.collection-track{
  display:flex;
  gap:30px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding-bottom:10px;
}

.collection-track::-webkit-scrollbar{
  display:none;
}

.collection-card{
  min-width:380px;
  height:480px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.3);
}

.collection-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: top;
  transition:transform .5s ease;
}

.collection-card:hover img{
  transform:scale(1.05);
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.15));
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding-bottom:25px;
}

.overlay h3{
  font-size:22px;
  letter-spacing:1px;
  color:#f5e6c8;
}

.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#f5c16c;
  border:none;
  color:#7a0c0c;
  font-size:22px;
  width:42px;
  height:42px;
  cursor:pointer;
  z-index:5;
}

.arrow.left{left:-10px;}
.arrow.right{right:-10px;}

/* MOBILE */
@media(max-width:768px){
  .collections{
    padding:60px 15px;
  }

  .section-title h2{
    font-size:26px;
  }

  .collection-card{
    min-width:260px;
    height:360px;
  }

  .arrow{
    display:none;
  }
}

.product-carousel-section{
  padding:50px 20px;
  background:#fdf8f5;
}

.section-header{
  text-align:center;
  margin-bottom:30px;
}

.section-header h2{
  color:#FB9530;
  font-size:28px;
  margin-bottom:5px;
}

.section-header p{
  color:#333;
}

.carousel-wrapper{
  position:relative;
}

.carousel-track{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding-bottom:10px;
}

.carousel-track::-webkit-scrollbar{
  display:none;
}

.product-card{
  min-width:250px;
  background:#fff;
  border-radius:5px;
  text-align:center;
  box-shadow:0 4px 8px rgba(0,0,0,.1);
  flex-shrink:0;
  cursor:pointer;
  transition:transform .3s;
}

.product-card:hover{
  transform:translateY(-5px);
}

.product-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  border-top-left-radius:5px;
  border-top-right-radius:5px;
}

.product-card h3{
  font-size:16px;
  margin:10px 5px 5px;
  color:#333;
}

.product-card .price{
  font-size:15px;
  margin-bottom:10px;
  color:#222222;
}

.product-card .original{
  text-decoration:line-through;
  color:#999;
  margin-right:5px;
}

.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#f5c16c;
  border:none;
  color:#76315C;
  font-size:22px;
  width:42px;
  height:42px;
  cursor:pointer;
  z-index:5;
  border-radius:50%;
}

.arrow.left{left:-15px;}
.arrow.right{right:-15px;}

@media(max-width:768px){
  .product-card{
    min-width:180px;
  }
  .arrow{
    display:none;
  }
}



.arrs-footer{
  background:#fde6c5;
  font-family:'Poppins',sans-serif;
  color:#222222;
  position:relative;
  overflow:hidden;
}

.footer-top{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1.2fr;
  gap:40px;
  padding:70px 8%;
  position:relative;
  z-index:2;
}

.footer-brand{
  text-align:left;
}

.footer-logo{
  max-width:170px;
  margin-bottom:20px;
}

.social-icons{
  display:flex;
  gap:18px;
}

.social-icons a{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#76315C;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  transition:.3s;
}

.social-icons a:hover{
  background: #76315C;;
}

.footer-col h4{
  font-size:20px;
  margin-bottom:18px;
  color:#76315C;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col li{
  margin-bottom:10px;
  font-size:15px;
  cursor:pointer;
}

.footer-col li:hover{
  color:#76315C;
}

.footer-col p{
  font-size:15px;
  line-height:1.7;
}

.footer-col .muted{
  font-size:13px;
  opacity:.8;
}

.mt{
  margin-top:25px;
}

/* TEMPLE ART BACKGROUND */
.footer-art{
  height:260px;
  background:url('./asset/temple-art.png') repeat-x bottom center;
  background-size:contain;
  opacity:.35;
}

/* COPYRIGHT */
.footer-bottom{
  background:#76315C;
  color:#fff;
  text-align:center;
  padding:14px;
  font-size:14px;
}

/* MOBILE */
@media(max-width:992px){
  .footer-top{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:576px){
  .footer-top{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-brand{
    text-align:center;
  }

  .social-icons{
    justify-content:center;
  }

  .footer-art{
    height:180px;
  }
}

/* shop by cate */
/* SECTION */
.category-section{
    padding:40px 20px;
    text-align:center;
}

.category-section h2{
    font-size:32px;
    margin-bottom:30px;
    position:relative;
}

.category-section h2::after{
    content:'';
    width:50px;
    height:3px;
    background:#FB9530;
    display:block;
    margin:10px auto 0;
}

/* GRID */
.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

/* CARD */
.category-card{
    text-decoration:none;
    color:#000;
}

.category-icon{
    width:120px;
    height:120px;
    margin:auto;
    background:#fff;
    border-radius:50%;
    border: 1px solid #76315C;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
}

.category-icon img{
    width:65%;
    height:auto;
}

.category-card:hover .category-icon{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
}

/* TEXT */
.category-name{
    font-weight:600;
    margin-top:15px;
    font-size:15px;
}

.category-count{
    font-size:13px;
    color:#777;
    margin-top:3px;
}

/* MOBILE */
@media(max-width:600px){
    .category-icon{
        width:95px;
        height:95px;
    }
    .category-name{
        font-size:14px;
    }
}