*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html, body{
  height:100%;
}


body{
  font-family: 'Poppins', sans-serif;
  background:#ffffff;
}


#pageEffect{
  opacity:0;
  transition:opacity 0.6s ease;
}

#pageEffect.pageLoaded{
  opacity:1;
  animation: hbGlowFlash 0.9s ease-out;
}

@keyframes hbGlowFlash{
  0%{
    filter:brightness(1.25);
    box-shadow:0 0 0 rgba(0,0,0,0);
  }
  40%{
    filter:brightness(1.08);
    box-shadow:0 0 60px rgba(255,255,255,0.35);
  }
  100%{
    filter:brightness(1);
    box-shadow:0 0 0 rgba(0,0,0,0);
  }
}




/* === HEADER MENU BAR START === */
:root{
  --black:#000;
  --white:#ffffff;
  --border:#e5e5e5;
  --text:#111;
}

/* HEADER */

.hauteblack-header{
  width:100%;
  max-width:1920px;
  margin:auto;
  background:#ffffff;
  font-family:'Inter', sans-serif;
}

/* ANNOUNCEMENT */
.hauteblack-announcement{
  height:30px;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.hauteblack-announce-text{
  position:absolute;
  opacity:0;
  color:#fff;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  transition:.6s ease;
  transform:translateY(10px);
}
.hauteblack-announce-text.active{
  opacity:1;
  transform:translateY(0);
}

.hauteblack-topbar{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  height:64px;            /* 🔥 fixed */
  padding:0 18px;         /* 🔥 remove vertical padding */
}

/* common svg icon */
.hb-icon-svg{
  width:22px;
  height:22px;
  cursor:pointer;
  display:block;
  object-fit:contain;
}

/* ONLY cart icon 3D spin */
#cartTrigger{
  transform-style: preserve-3d;
  animation: cart3D 20.8s linear infinite;
}

/* 3D animation */
@keyframes cart3D{
  0%   { transform: perspective(600px) rotateY(0deg); }
  100% { transform: perspective(600px) rotateY(360deg); }
}

/* badge system same */
.cart-icon-wrap{
  position:relative;
  display:inline-block;
}

.cart-badge{
  position:absolute;
  top:-6px;
  right:-8px;
  background:#000;
  color:#fff;
  font-size:11px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  line-height:1;
}




/* LEFT / RIGHT */
.hauteblack-left,
.hauteblack-right{
  display:flex;
  align-items:center;
  height:100%;
}

.hauteblack-right{
  justify-content:flex-end;
  gap:18px;
}


/* LOGO (FIX) */
.hauteblack-logo{
  display:flex;
  align-items:center;    
  justify-content:center;
  height:100%;
}

.hauteblack-logo img{
  height:34px;
  display:block;         
}
/* LINE */
.hauteblack-full-line{
  height:1px;
  background:#000;
}

/* CATEGORY */
.hauteblack-category-bar{
  display:flex;
  justify-content:center;
  padding:10px 0;
}
.hauteblack-category-bar a{
  margin:0 18px;
  font-size:13px;
  letter-spacing:2px;
  color:#000;
  text-decoration:none;
}

/* MENU DRAWER */
.hauteblack-menu{
  position:fixed;
  inset:0;
  background:#fff;
  transform:translateX(-100%);
  transition:.45s cubic-bezier(.4,0,.2,1);
  z-index:9999;
}
.hauteblack-menu.active{
  transform:translateX(0);
}

.hauteblack-menu-content{
  height:100%;
  padding:24px 22px;
  display:flex;
  flex-direction:column;
}

/* MENU TOP */
.hb-menu-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:28px;
}
.hb-menu-top img{
  height:32px;
}

/* MENU LIST */
.hb-menu-list a{
  display:flex;
  justify-content:space-between;
  padding:18px 0;
  border-bottom:1px solid var(--border);
  color:var(--text);
  text-decoration:none;
  letter-spacing:1px;
}

/* SOCIAL */
.hauteblack-social{
  margin-top:auto;
  display:flex;
  gap:22px;
}
.hauteblack-social ion-icon{
  font-size:22px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hauteblack-logo img{ height:30px; }
  .hauteblack-category-bar a{ font-size:12px; margin:0 12px; }
}
/* Desktop Drawer */
@media(min-width:992px){
  .hauteblack-menu{ width:380px; }
}
/* === HEADER MENU BAR END === */






.cartpopup{position:relative;color:#0b0f1a}
.cartpopup *{box-sizing:border-box}
.cartpopup .cartpopup-trigger{display:inline-flex;align-items:center;gap:.55rem;padding:.62rem 1.05rem;border:1px solid rgba(15,23,42,.12);border-radius:9px;background:rgba(255,255,255,.85);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);color:#0b0f1a;font-weight:400;font-size:.92rem;letter-spacing:.2px;cursor:pointer;transition:.18s ease}
.cartpopup .cartpopup-trigger:hover{border-color:rgba(15,23,42,.18);transform:translateY(-1px)}
.cartpopup .cartpopup-badge{background:#0b0f1a;color:#fff;padding:.18rem .55rem;border-radius:999px;font-size:.72rem;font-weight:400}
.cartpopup .cartpopup-overlay{position:fixed;inset:0;background:rgba(10,14,22,.45);opacity:0;pointer-events:none;transition:.22s;z-index:1000}
.cartpopup .cartpopup-panel{position:fixed;top:0;right:0;height:100dvh;width:420px;max-width:100%;background:#fff;color:#0b0f1a;transform:translateX(105%);transition:transform .26s cubic-bezier(.22,.61,.36,1);z-index:1001;display:flex;flex-direction:column;border-bottom-left-radius:18px;box-shadow:-14px 0 40px rgba(0,0,0,.10)}
.cartpopup.is-open .cartpopup-overlay{opacity:1;pointer-events:auto}
.cartpopup.is-open .cartpopup-panel{transform:translateX(0)}
.cartpopup .cartpopup-head{display:flex;align-items:center;justify-content:space-between;padding:1.05rem 1.15rem;border-bottom:1px solid rgba(15,23,42,.08)}
.cartpopup .cartpopup-title{font-size:1rem;margin:0;font-weight:500;letter-spacing:.2px}
.cartpopup .cartpopup-close{border:1px solid rgba(15,23,42,.10);background:rgba(255,255,255,.85);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);font-size:1rem;color:rgba(15,23,42,.65);cursor:pointer;padding:.45rem .55rem;border-radius:12px;transition:.18s ease}
.cartpopup .cartpopup-close:hover{color:#0b0f1a;border-color:rgba(15,23,42,.18);transform:translateY(-1px)}
.cartpopup .cartpopup-items{flex:1;overflow:auto;padding:1rem 1.15rem;display:flex;flex-direction:column;gap:.9rem}
.cartpopup .cartpopup-card{display:grid;grid-template-columns:74px 1fr;gap:.95rem;align-items:flex-start;border:1px solid rgba(15,23,42,.08);border-radius:16px;padding:.85rem;background:#fff;transition:.18s ease}
.cartpopup .cartpopup-card:hover{border-color:rgba(15,23,42,.14)}
.cartpopup .cartpopup-thumb{width:74px;height:92px;border-radius:14px;object-fit:cover;background:linear-gradient(180deg,#f6f7f9,#eef1f6)}
.cartpopup .cartpopup-info{display:flex;flex-direction:column;gap:.35rem}
.cartpopup .cartpopup-name{margin:0;font-weight:400;line-height:1.25;font-size:.92rem;letter-spacing:.15px;color:#0b0f1a}
.cartpopup .cartpopup-meta-row{display:flex;align-items:center;justify-content:space-between;font-size:.78rem;color:rgba(15,23,42,.55)}
.cartpopup .cartpopup-meta{margin:0;font-weight:400}
.cartpopup .cartpopup-price{font-weight:400;color:#0b0f1a;font-size:.86rem;letter-spacing:.2px}
.cartpopup .cartpopup-actions{display:flex;align-items:center;justify-content:space-between;gap:.65rem;margin-top:.25rem}
.cartpopup .cartpopup-qty{display:inline-flex;align-items:center;border:1px solid rgba(15,23,42,.10);border-radius:12px;overflow:hidden;background:#fff}
.cartpopup .cartpopup-qty button{width:30px;height:30px;border:0;background:#fff;color:rgba(15,23,42,.75);cursor:pointer;transition:.16s ease}
.cartpopup .cartpopup-qty button:hover{background:rgba(15,23,42,.05);color:#0b0f1a}
.cartpopup .qty-input{width:38px;border:0;text-align:center;font-weight:400;outline:none;background:#fff;color:#0b0f1a;font-size:.88rem}
.cartpopup .cartpopup-remove{border:1px solid rgba(15,23,42,.10);background:#fff;color:rgba(15,23,42,.55);font-size:.78rem;font-weight:400;padding:.42rem .7rem;border-radius:12px;display:inline-flex;align-items:center;gap:.35rem;cursor:pointer;transition:.18s ease}
.cartpopup .cartpopup-remove i{color:rgba(15,23,42,.7);font-size:.9rem}
.cartpopup .cartpopup-remove:hover{border-color:rgba(220,38,38,.25);background:rgba(220,38,38,.06);color:#b91c1c}
.cartpopup .cartpopup-remove:hover i{color:#b91c1c}
.cartpopup .cartpopup-footer{border-top:1px solid rgba(15,23,42,.08);padding:1rem 1.15rem;background:#fff}
.cartpopup .cartpopup-coupon{display:flex;gap:.6rem;margin:.15rem 0 1rem}
.cartpopup .cartpopup-coupon input{flex:1;padding:.75rem .9rem;border:1px solid rgba(15,23,42,.10);border-radius:14px;background:#fff;font-weight:400;font-size:.9rem;outline:none;transition:.18s ease}
.cartpopup .cartpopup-coupon input:focus{border-color:rgba(15,23,42,.22)}
.cartpopup .cartpopup-coupon button{padding:.78rem 1.05rem;border:1px solid rgba(15,23,42,.10);border-radius:14px;background:#fff;color:rgba(15,23,42,.55);font-weight:400;cursor:not-allowed}
.cartpopup .cartpopup-row{display:flex;align-items:center;justify-content:space-between;margin:.55rem 0;font-size:.9rem;color:rgba(15,23,42,.72)}
.cartpopup .cartpopup-total{font-weight:400;color:#0b0f1a}
.cartpopup .cartpopup-ship-pill{display:inline-flex;align-items:center;gap:.4rem;color:#0b0f1a;border:1px solid rgba(15,23,42,.12);background:rgba(15,23,42,.03);font-weight:400;font-size:.76rem;padding:.25rem .6rem;border-radius:999px}
.cartpopup .cartpopup-ship-pill i{font-size:.85rem;color:rgba(15,23,42,.65)}
.cartpopup a,.cartpopup a:link,.cartpopup a:visited,.cartpopup a:hover,.cartpopup a:active{text-decoration:none!important;color:inherit}
.cartpopup .cartpopup-btn{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;padding:.7rem 1rem;min-height:46px;border:1px solid rgba(15,23,42,.12);border-radius:16px;background:#0b0f1a;color:#fff;font-weight:400;font-size:1rem;cursor:pointer;margin-top:.7rem;transition:.18s ease}
.cartpopup .cartpopup-btn:hover{transform:translateY(-1px);opacity:.95}
.cartpopup .cartpopup-btn:active{transform:translateY(0);opacity:.92}
.cartpopup-upi{height:16px;width:auto;opacity:.95;filter:brightness(1.15)}
.cartpopup .cartpopup-taxnote{color:rgba(15,23,42,.55);font-size:.76rem;margin-top:.35rem;font-weight:400}
@media (max-width:520px){.cartpopup .cartpopup-panel{width:100%;border-radius:0}.cartpopup .cartpopup-card{grid-template-columns:62px 1fr}.cartpopup .cartpopup-thumb{width:62px;height:78px}.cartpopup .cartpopup-name{font-size:.9rem}}







/* ===== OFFER BLACK RUNNING STRIP ===== */

.hb-ticker{
  width:100%;
  background:#000;
  overflow:hidden;
  white-space:nowrap;
}

.hb-ticker-track{
  display:inline-flex;
  align-items:center;
  gap:40px;
  padding:12px 0;
  animation: hb-scroll 18s linear infinite;
}

.hb-ticker-track span{
  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}

/* Animation */
@keyframes hb-scroll{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* Mobile tuning */
@media (max-width:768px){
  .hb-ticker-track{
    gap:26px;
    padding:10px 0;
    animation-duration:14s;
  }

  .hb-ticker-track span{
    font-size:12px;
    letter-spacing:1.5px;
  }
}

/* ===== OFFER BLACK RUNNING STRIP ===== */



/* === NEW ARRIVALS TITLE SECTION START === */

.custom-left-title{
  width:100%;
  padding:20px 12px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Desktop width 1200px */
@media (min-width:1200px){
  .custom-left-title{
    max-width:1840px;
    margin:0 auto;
    padding:22px 0;
  }
}

/* Left title */
.custom-left-title h2{
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
  color:#111;
  margin:0;
  text-transform:uppercase;
}

/* Right button */
.view-all-btn{
  font-size:12px;
  font-weight:500;
  color:#111;
  text-decoration:none;
  letter-spacing:.4px;

  /* Button Look */
  padding:4px 18px;
  background:#f4f4f4;
  border:1px solid rgba(0,0,0,.08);
  border-radius:999px; /* premium pill */
  transition:all .2s ease;
}

.view-all-btn:hover{
  background:#111;
  color:#fff;
  border-color:#111;
}

/* Mobile */
@media (max-width:768px){
  .custom-left-title{
    padding:16px 14px;
  }

  .custom-left-title h2{
    font-size:11px;
  }

  .view-all-btn{
    font-size:11px;
    padding:3px 14px;
  }
}

/* === NEW ARRIVALS TITLE SECTION END === */







/* === PRODCUT SECTION START === */

:root{
  --border:#e5e7eb;
  --text:#111827;
  --sub:#6b7280;
}

/* Section */
.product-1-section{
  width:100%;
  margin:0 auto;
  padding:6px;
  color:var(--text);
}

/* Desktop width limit */
@media (min-width:1200px){
  .product-1-section{
    max-width:1860px;
  }
}


/* Grid */
.product-1-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
}

/* Card */
.product-1-card{
  /* border:1px solid var(--border);*/
  position:relative;
}

/* Wishlist */
.product-1-wishlist{
  position:absolute;
  top:8px;
  right:8px;
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid var(--border);
  background:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:2;
}
.product-1-wishlist svg{
  width:18px;
  height:18px;
  stroke:#111;
}
.product-1-wishlist.is-active svg{
  fill:#ef4444;
  stroke:#ef4444;
}

/* Media */
.product-1-media{
  position:relative;
  aspect-ratio:3/4;
  overflow:hidden;
  background:#f3f4f6;
}
.product-1-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:opacity .6s ease;
}
.product-1-img.secondary{opacity:0;}
.product-1-card:hover .product-1-img.secondary{opacity:1;}
.product-1-card:hover .product-1-img.primary{opacity:0;}

/* Info */
.product-1-info{padding:10px;}
.product-1-title{
  font-size:10px;
  font-weight:400;
  margin:0 0 4px;
}
.product-1-title a{
  color:inherit;
  text-decoration:none;
}
.product-1-subrow{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.product-1-price{font-size:12px;}
.product-1-pill{
  font-size:11px;
  border:1px solid var(--border);
  padding:4px 8px;
  border-radius:999px;
  color:var(--sub);
}

/* Responsive */
@media(max-width:992px){
  .product-1-grid{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:680px){
  .product-1-grid{grid-template-columns:repeat(2,1fr);gap:2px;}
}

/* =====  PRODCUT SECTION END =====  */




/* ===== VIEW ALL PRODUCTS BUTTON  START ===== */

.hb-viewall-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  margin:26px 0 10px;
}

.hb-viewall-btn{
  padding:14px 36px;
  border:1.5px solid #111;
  color:#111;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  letter-spacing:1.2px;
  background:transparent;
  transition:all .3s ease;
}

.hb-viewall-btn:hover{
  background:#111;
  color:#fff;
}

/* Mobile */
@media (max-width:600px){
  .hb-viewall-btn{
    padding:12px 28px;
    font-size:12px;
  }
}

/* ===== VIEW ALL PRODUCTS BUTTON END ===== */




/* ===== HAUTEBLACK IMAGE BANNER START ===== */
.hauteblackofferbanner{
  width:100%;
  max-width:1920px;   /* desktop width limit */
  margin: 80px auto;
  overflow:hidden;
}

/* Image base */
.hauteblackofferbanner picture,
.hauteblackofferbanner img{
  width:100%;
  display:block;
}

/* Desktop size control */
@media (min-width: 769px){
  .hauteblackofferbanner img{
    height:720px;      /* FIXED desktop height */
    object-fit:cover; /* crop safely */
  }
}

/* Mobile responsive */
@media (max-width: 768px){
  .hauteblackofferbanner img{
    height:auto;      /* natural mobile height */
  }
}


/* ===== HAUTEBLACK IMAGE BANNER END ===== */



/* ===== REELS VIDEO SECTION START ===== */
/* ===== IG REELS STRIP (BONKERS STYLE) ===== */

.ig-reels{
  max-width: 1920px;
  margin: 28px auto;
  padding: 0 12px;
  font-family:'Inter', sans-serif;
}

.ig-reels__header{
  text-align:center;
  margin-bottom: 12px;
}

.ig-reels__header h2{
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  color:#0b1220;
}

/* Track */
.ig-reels__wrap{
  position: relative;
}

.ig-reels__track{
  display:flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ig-reels__track::-webkit-scrollbar{ display:none; }

/* Card (DEFAULT = Desktop 7-8 cards) */
.ig-reel{
  flex: 0 0 auto;
  width: 210px;             /* desktop small card */
  border-radius: 14px;
  overflow: hidden;
  background:#000;
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

/* Video ratio like reels */
.ig-reel__frame{
  position: relative;
  width:100%;
  aspect-ratio: 9/16;
  overflow:hidden;
}

.ig-reel__frame video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
}

/* Play overlay */
.ig-reel__overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.28);
  opacity:0;
  transition:.2s ease;
  cursor:pointer;
  z-index: 2;
}

.ig-reel__overlay i{
  font-size: 42px;
  color:#fff;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.45));
}

/* Show overlay on hover desktop */
@media(min-width: 901px){
  .ig-reel:hover .ig-reel__overlay{ opacity:1; }
}

/* When paused (force overlay) */
.ig-reel.paused .ig-reel__overlay{
  opacity:1;
}

/* Mute button */
.ig-reel__mute{
  position:absolute;
  top:10px;
  right:10px;
  z-index: 3;
  width:32px;
  height:32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.90);
  display:grid;
  place-items:center;
  cursor:pointer;
}

.ig-reel__mute i{
  font-size: 15px;
  color:#111;
}

/* ---------- RESPONSIVE ---------- */

/* Big screens: show more reels (8-9) */
@media (min-width: 1600px){
  .ig-reel{ width: 190px; }
}

/* Laptop: 7-8 reels */
@media (max-width: 1400px){
  .ig-reel{ width: 200px; }
}

/* Tablet: 4 reels */
@media (max-width: 1000px){
  .ig-reel{ width: 180px; }
}

/* Mobile: 3 reels in a row */
@media (max-width: 700px){
  .ig-reels{ padding: 0 10px; }

  .ig-reels__track{
    gap: 8px;
  }

  .ig-reel{
    width: calc((100vw - 10px*2 - 8px*2) / 3); 
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
  }

  .ig-reel__overlay i{
    font-size: 30px;
  }

  .ig-reel__mute{
    width: 28px;
    height: 28px;
    top:8px;
    right:8px;
  }
}


/* ===== REELS VIDEO SECTION END ===== */




/* ===== HAUTEBLACK USP SECTION ===== */


.hb-usp-section{
  width:100%;
  background:#fffdf9;
  border-top:1px solid #e5e5e5;
  border-bottom:1px solid #e5e5e5;
   font-family:'Inter', sans-serif;
}

.hb-usp-grid{
  max-width:1920px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.hb-usp-item{
  padding:40px 24px;
  text-align:center;
  border-right:1px solid #e5e5e5;
}

.hb-usp-item:last-child{
  border-right:none;
}

/* Icons */
.hb-usp-item i{
  font-size:26px;
  color:#111;
  margin-bottom:18px;
}

/* Heading */
.hb-usp-item h4{
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  margin:0 0 10px;
  text-transform:uppercase;
  color:#111;
}

/* Text */
.hb-usp-item p{
  font-size:13px;
  line-height:1.6;
  color:#6b7280;
  margin:0;
}

/* ===== RESPONSIVE ===== */
@media (max-width:992px){
  .hb-usp-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .hb-usp-item:nth-child(2){
    border-right:none;
  }
}

@media (max-width:576px){
  .hb-usp-grid{
    grid-template-columns:1fr;
  }
  .hb-usp-item{
    border-right:none;
    border-bottom:1px solid #e5e5e5;
  }
  .hb-usp-item:last-child{
    border-bottom:none;
  }
}

/* ===== HAUTEBLACK USP SECTION END ===== */








 