:root{
    --bg:#ffffff;
    --fg:#0b0b0b;
    --muted:#6a6a6a;
    --line:#e7e7e7;
    --card:#ffffff;
    --shadow: 0 12px 35px rgba(0,0,0,0.12);
    --radius: 16px;
  }
  
  *{ box-sizing:border-box; }
  html,body{ margin:0; padding:0; }
  body{
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--fg);
  }
  
  /* ===== Layout ===== */
  .container{
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
  }
  
  a{ color:inherit; text-decoration:none; }
  a:hover{ opacity:0.85; }
  
  /* ===== Header / Dashboard ===== */
  .header{
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  
  .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 12px 0;
    gap: 16px;
  }
  
  .brand{
    display:flex;
    align-items:center;
    gap: 10px;
  }
  .brand img{
    width: 42px;
    height: 42px;
    object-fit: contain;
  }
  .brand strong{
    letter-spacing: 0.5px;
  }
  
  .nav{
    display:flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .nav a{
    font-weight: 700;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid transparent;
  }
  .nav a.active{
    border-color: var(--fg);
  }
  .nav a:hover{
    border-color: var(--line);
  }
  
  /* ===== Sections ===== */
  .section{
    padding: 64px 0;
    border-bottom: 1px solid var(--line);
  }
  .section:last-child{ border-bottom: none; }
  
  .kicker{
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 12px;
  }
  
  .h1{
    font-size: clamp(30px, 4vw, 54px);
    margin: 10px 0 12px;
    letter-spacing: 0.2px;
  }
  .p{
    color: #111;
    opacity: 0.92;
    line-height: 1.8;
    font-size: 16px;
    max-width: 70ch;
  }
  
  .grid-2{
    display:grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
  }
  @media (max-width: 900px){
    .grid-2{ grid-template-columns: 1fr; }
  }
  
  /* ===== Buttons ===== */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--fg);
    background: transparent;
    color: var(--fg);
    font-weight: 800;
    cursor: pointer;
    gap: 8px;
  }
  .btn:hover{ opacity: 0.9; }
  .btn.primary{
    background: var(--fg);
    color: var(--bg);
  }
  
  /* ===== Hero (Home) ===== */
  .hero{
    min-height: calc(90vh - 72px);
    display:grid;
    place-items:center;
    padding: 34px 0;
  }
  .hero-card{
    width: min(900px, 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    background: var(--card);
  }
  .hero-center{
    text-align:center;
  }
  .hero-center .p{ margin: 0 auto; }
  
  /* ===== Cards ===== */
  .cards{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
  }
  .card{
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: #fff;
  }
  .card h3{
    margin: 0 0 6px;
    font-size: 16px;
  }
  .card p{
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
  }
  @media (max-width: 900px){
    .cards{ grid-template-columns: 1fr; }
  }
  
  /* ===== Details / Tools animation ===== */
  .tools-row{
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
  }
  .tool-pill{
    border: 1px solid var(--fg);
    border-radius: 999px;
    padding: 10px 12px;
    display:flex;
    gap: 10px;
    align-items:center;
    font-weight: 800;
  }
  .tool-icon{
    width: 18px;
    height: 18px;
    display:inline-block;
    border: 2px solid var(--fg);
    border-radius: 4px;
    transform: rotate(0deg);
    animation: iconWiggle 1.8s ease-in-out infinite;
  }
  @keyframes iconWiggle{
    0%,100%{ transform: rotate(-6deg); }
    50%{ transform: rotate(6deg); }
  }
  
  /* thread line animation */
  .thread{
    margin-top: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    overflow:hidden;
  }
  .thread-line{
    height: 2px;
    background: var(--fg);
    width: 120px;
    animation: sew 2.6s linear infinite;
  }
  @keyframes sew{
    0%{ transform: translateX(-140px); }
    100%{ transform: translateX(calc(100% + 140px)); }
  }
  .thread small{ color: var(--muted); display:block; margin-top: 8px; }
  
  /* ===== Shop ===== */
  .form{
    display:grid;
    gap: 14px;
    margin-top: 16px;
  }
  .field{
    display:grid;
    gap: 8px;
  }
  label{
    font-weight: 800;
  }
  input[type="text"], textarea, select{
    width:100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    outline:none;
    background:#fff;
    color: var(--fg);
  }
  textarea{ min-height: 120px; resize: vertical; }
  
  .upload-box{
    border: 2px dashed var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: #fff;
  }
  .preview{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  .preview img{
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
  }
  
  /* ===== About ===== */
  .about-grid{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
  }
  .about-grid img{
    width:100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
  }
  @media (max-width: 900px){
    .about-grid{ grid-template-columns: 1fr; }
    .about-grid img{ height: 200px; }
  }
  
  /* ===== Legal ===== */
  .legal-list{
    margin-top: 12px;
    padding-left: 18px;
    line-height: 1.9;
    color: #111;
    opacity: 0.92;
  }
  
  /* ===== Contact ===== */
  .contact-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
  }
  @media (max-width: 900px){
    .contact-grid{ grid-template-columns: 1fr; }
  }
  .qr{
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background:#fff;
  }
  .qr img{
    width: 220px;
    height: 220px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 12px;
    display:block;
  }
  
  /* ===== Footer ===== */
  .footer{
    padding: 22px 0;
    color: var(--muted);
    text-align:center;
    border-top: 1px solid var(--line);
  }
  
  /* ===== Chatbot ===== */
  .chat-toggle{
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--fg);
    background: var(--fg);
    color: var(--bg);
    font-size: 22px;
    cursor: pointer;
    z-index: 200;
  }
  
  .chat-widget{
    position: fixed;
    right: 16px;
    bottom: 84px;
    width: 340px;
    max-width: calc(100vw - 32px);
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: none;
    z-index: 201;
  }
  
  .chat-header{
    background: var(--fg);
    color: var(--bg);
    padding: 12px;
    display:flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .chat-header .sub{
    font-size: 12px;
    opacity: 0.85;
    margin-top: 2px;
  }
  .chat-close{
    border: none;
    background: transparent;
    color: var(--bg);
    font-size: 18px;
    cursor:pointer;
  }
  
  .chat-box{
    height: 280px;
    overflow:auto;
    padding: 12px;
    background: #fff;
  }
  
  .msg{
    padding: 10px 12px;
    border-radius: 14px;
    margin: 8px 0;
    max-width: 88%;
    line-height: 1.5;
    font-size: 14px;
  }
  .msg.bot{
    background: #f4f4f4;
    border: 1px solid var(--line);
  }
  .msg.user{
    background: var(--fg);
    color: var(--bg);
    margin-left: auto;
  }
  
  .quick-replies{
    display:flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 12px 10px;
  }
  .quick-replies button{
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 8px 10px;
    cursor:pointer;
    font-weight: 800;
    font-size: 12px;
  }
  .quick-replies button:hover{ border-color: #cfcfcf; }
  
  .chat-form{
    display:flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--line);
  }
  .chat-form input{
    flex:1;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
  }
  .chat-form button{
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--fg);
    background: var(--fg);
    color: var(--bg);
    font-weight: 900;
    cursor:pointer;
  }/* ===== READY-TO-WEAR (SHOP NOW) ===== */
.products-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}
@media (max-width: 1000px){
  .products-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .products-grid{ grid-template-columns: 1fr; }
}

.product-card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  overflow:hidden;
  cursor:pointer;
  transition: transform 0.12s ease;
}
.product-card:hover{ transform: translateY(-2px); }

.product-thumb img{
width:100%;
height:190px;
object-fit:cover;
border-radius:16px;
}

.product-info{
  padding: 12px;
}
.product-title{
  margin:0 0 6px;
  font-weight: 900;
}
.product-price{
  margin: 5px;;
  color: var(--muted);
  font-weight: 800;
}

/* ===== MODAL ===== */
.modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 300;
  padding: 16px;
}
.modal.open{ display:flex; }

.modal-card{
  width: min(520px, 100%);
  background:#fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 16px;
}
.modal-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
}
.modal-head h3{
  margin: 0;
}
.modal-close{
  border: none;
  background: transparent;
  font-size: 18px;
  cursor:pointer;
}
.modal-body{
  margin-top: 12px;
  display:grid;
  gap: 12px;
}
.modal-row{
  display:grid;
  gap: 8px;
}
.modal-row label{ font-weight: 900; }
.modal-price{
  font-weight: 1000;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}/* ===== BACKGROUND SCROLLING IMAGES ===== */

.hero{
position: relative;
overflow: hidden;
}

/* container behind everything */
.bg-scrolling-images{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:0;
pointer-events:none;
}

/* LEFT IMAGE COLUMN */
.scroll-left{
position:absolute;
left:30px;
top:0;

display:flex;
flex-direction:column;
gap:20px;

opacity:0.18;
filter:blur(0.5px);

animation:scrollUp 10s linear infinite;
}

/* RIGHT IMAGE COLUMN */
.scroll-right{
position:absolute;
right:30px;
top:0;

display:flex;
flex-direction:column;
gap:20px;

opacity:0.18;
filter:blur(0.5px);

animation:scrollDown 10s linear infinite;
}

/* image style */
.scroll-left img,
.scroll-right img{
width:220px;
border-radius:16px;
}

/* animation up */
@keyframes scrollUp{
0%{transform:translateY(40%);}
100%{transform:translateY(-40%);}
}

/* animation down */
@keyframes scrollDown{
0%{transform:translateY(-40%);}
100%{transform:translateY(40%);}
}/* ===== BACKGROUND SCROLLING IMAGES (BOTH SIDES + DEPTH) ===== */
.hero{
  position: relative;
  overflow: hidden;
}

/* container behind everything */
.bg-scrolling-images{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* common column style */
.scroll-col{
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;

  /* subtle but visible */
  opacity: 1;

  /* depth */
  transform: translateZ(0);
}

/* left + right placement */
.scroll-col.left{ left: 26px; }
.scroll-col.right{ right: 26px; }

/* image style + depth */
.scroll-col img{
  width: 220px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;

  /* DEPTH */
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.08);

  /* slight “premium” look */
  filter: contrast(1.03);
}

/* keep the two tracks on each side separated */
.scroll-col.left.up{ transform: translateY(20%); }
.scroll-col.left.down{ transform: translateY(-10%); }
.scroll-col.right.up{ transform: translateY(10%); }
.scroll-col.right.down{ transform: translateY(-20%); }

/* animations */
@keyframes scrollUp{
  0%{ transform: translateY(100%); }
  100%{ transform: translateY(-100%); }
}
@keyframes scrollDown{
  0%{ transform: translateY(-100%); }
  100%{ transform: translateY(100%); }
}

/* apply movement */
.scroll-col.up{ animation: scrollUp 12s linear infinite; }
.scroll-col.down{ animation: scrollDown 12s linear infinite; }

/* responsive: make them smaller on phones */
@media (max-width: 720px){
  .scroll-col img{ width: 150px; }
  .scroll-col.left{ left: 10px; }
  .scroll-col.right{ right: 10px; }
}
/* HERO TEXT POP IN / OUT */
.hero-text{
animation: heroPop 8s ease-in-out infinite;
}

/* smooth zoom effect */
@keyframes heroPop{

0%{
transform: scale(1);
}

50%{
transform: scale(1.06);
}

100%{
transform: scale(1);
}

}
/* ===== HEADER SEARCH (USEFUL) ===== */
.search-wrap{
  position: relative;
  display:flex;
  align-items:center;
  gap: 8px;
  flex: 1;
  max-width: 420px;
}

.search-wrap input{
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
}

.search-wrap button{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: var(--bg);
  font-weight: 900;
  cursor: pointer;
}
.search-wrap button:hover{ opacity: 0.9; }

.search-results{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: none;
  z-index: 999;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.search-results.open{ display:block; }

.search-item{
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.search-item:last-child{ border-bottom:none; }
.search-item:hover{ background: #f6f6f6; }

.search-item .title{
  font-weight: 900;
  font-size: 14px;
}
.search-item .meta{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* small screens */
@media (max-width: 900px){
  .search-wrap{ max-width: 100%; }
}
/* ===== CART (DRAWER) ===== */
.cart-fab{
  position: fixed;
  right: 16px;
  bottom: 90px;
  z-index: 260;
  border-radius: 999px;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: var(--bg);
  padding: 12px 14px;
  font-weight: 1000;
  cursor: pointer;
  display:flex;
  align-items:center;
  gap: 8px;
}
.cart-fab span{
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 2px 8px;
  font-weight: 1000;
  font-size: 12px;
}

.cart-drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--line);
  z-index: 261;
  display: none;
  flex-direction: column;
  box-shadow: -18px 0 40px rgba(0,0,0,0.12);
}
.cart-drawer.open{ display:flex; }

.cart-head{
  padding: 14px;
  border-bottom: 1px solid var(--line);
  display:flex;
  justify-content: space-between;
  align-items:center;
}
.cart-close{
  border:none;
  background: transparent;
  font-size: 18px;
  cursor:pointer;
}

.cart-body{
  padding: 14px;
  overflow:auto;
  display:grid;
  gap: 10px;
}

.cart-item{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  display:grid;
  gap: 8px;
}
.cart-item-top{
  display:flex;
  justify-content: space-between;
  gap: 10px;
}
.cart-item-name{ font-weight: 1000; }
.cart-item-meta{ color: var(--muted); font-weight: 800; font-size: 12px; }

.cart-controls{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.qty{
  display:flex;
  align-items:center;
  gap: 8px;
}
.qty button{
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-weight: 1000;
}
.qty span{ min-width: 18px; text-align:center; font-weight: 1000; }

.remove{
  border: 1px solid var(--line);
  background:#fff;
  border-radius: 10px;
  padding: 8px 10px;
  cursor:pointer;
  font-weight: 900;
}

.cart-foot{
  padding: 14px;
  border-top: 1px solid var(--line);
  display:grid;
  gap: 10px;
}
.cart-total{ font-weight: 1100; }
.cart-note{ color: var(--muted); }
/* ===== Floating model inside chatbot ===== */
.chat-widget{
  position: fixed; /* you already have this */
}

.chat-model{
  position: absolute;
  right: 12px;
  top: 62px;              /* below header */
  width: 86px;
  height: auto;
  opacity: 0.95;
  pointer-events: none;   /* doesn't block clicks */
  animation: floatModel 4.5s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.18));
}

/* gentle floating */
@keyframes floatModel{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* on small screens make it smaller */
@media (max-width: 480px){
  .chat-model{
    width: 64px;
    right: 10px;
  }
}/* ===== CUSTOMER REVIEWS SLIDER ===== */
.reviews{
  margin-top: 28px;
}

.reviews-slider{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
}

.reviews-viewport{
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.reviews-track{
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.review-card{
  flex: 0 0 100%;
  padding: 18px;
}

.review-stars{
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #111; /* black/white style */
}

.review-text{
  margin: 0 0 12px;
  line-height: 1.7;
  color: #111;
  opacity: 0.92;
}

.review-name{
  margin: 0;
  font-weight: 900;
  color: var(--muted);
}

.reviews-btn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
}
.reviews-btn:hover{
  border-color: rgba(0,0,0,0.25);
}

.reviews-dots{
  margin-top: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.reviews-dots button{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.reviews-dots button.active{
  background: #111;
  border-color: #111;
}

/* Small screens: make arrows smaller */
@media (max-width: 480px){
  .reviews-slider{ grid-template-columns: 36px 1fr 36px; }
  .reviews-btn{ width: 36px; height: 36px; }
}
/* ===== MOBILE FIXES ===== */
@media (max-width: 720px){

  /* Header becomes stacked */
  .header-inner{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .brand{
    justify-content: center;
  }

  /* Search full width */
  .search-wrap{
    max-width: 100%;
    width: 100%;
  }

  /* Nav wraps and centers */
  .nav{
    justify-content: center;
    gap: 8px;
  }

  .nav a{
    font-size: 13px;
    padding: 7px 10px;
  }
}
@media (max-width: 720px){
  .hero{
    min-height: auto;
    padding: 18px 0;
  }

  .hero-card{
    padding: 18px;
  }

  .slogan, .h1{
    font-size: 30px;   /* less huge on phone */
  }

  .p{
    font-size: 15px;
  }

  /* Buttons stack instead of staying in one line */
  .hero-center > div{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
@media (max-width: 720px){
  .scroll-col img{
    width: 120px;   /* smaller */
  }

  .scroll-col.left{ left: 8px; }
  .scroll-col.right{ right: 8px; }

  /* Make them lighter so they don’t compete with text */
  .scroll-col{
    opacity: 0.18;
  }
}
@media (max-width: 900px){
  .products-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .products-grid{ grid-template-columns: 1fr; }
  .product-thumb{ height: 170px; }
}
@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; }
}
