@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cinzel:wght@400..900&family=DM+Serif+Text:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&family=Play:wght@400;700&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*******************TERMS AND CONDITIONS MODAL STYLES*****************/
:root{
    /* ✅ border color variable (edit as you like) */
    --myterms-border-color: #d8b08c;
    --myterms-bg: rgba(255,255,255,1);
    --myterms-card: rgba(255,255,255,.92);
    --myterms-text: #1c1c22;
    --myterms-muted: #6b7280;
    --myterms-shadow: 0 24px 70px rgba(0,0,0,.05);
    
    /************************ contact page *************/
     --mycontact-bg: #ffffff;
    --mycontact-card-bg: #ffffff;
    --mycontact-text: #0f2a3a;
    --mycontact-muted: #7b8ea3;
    --mycontact-link: #111111;
    --mycontact-icon: #111;
    --mycontact-icon-bg: #ffffff;
    --mycontact-shadow: 0 18px 45px rgba(10, 25, 45, 0.12);
    --mycontact-border: rgba(10, 25, 45, 0.06);
    /*************************BUTTON*************/
  --mybtn-bg: #111;      
  --mybtn-color: #fff;
  
  /***************PAGINATION***************/
  --mypagination-color: rgb(252,176,63); /* change anytime */
  --mypagination-border: rgba(0,0,0,.15);
  --mypagination-text: #111;
  }

  .myterms-btn{
    padding: 10px 14px;
    border: 1px solid var(--myterms-border-color);
    background: #fff;
    cursor: pointer;
  }

  .myterms-overlay{
    position: fixed;
    inset: 0;
    background: var(--myterms-bg);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
    backdrop-filter: blur(6px);
  }

  .myterms-overlay.myterms-show{
    display: flex;
    animation: mytermsFadeIn .18s ease-out;
  }

  @keyframes mytermsFadeIn{
    from{opacity:0}
    to{opacity:1}
  }

  .myterms-modal{
    width: min(920px, 100%);
    max-height: min(86vh, 860px);
    background: var(--myterms-card);
    color: var(--myterms-text);
    border: 1px solid var(--myterms-border-color);
    box-shadow: var(--myterms-shadow);
    overflow: hidden;
    border-radius: 1px;
    transform: translateY(10px);
    animation: mytermsPop .2s ease-out forwards;
  }

  @keyframes mytermsPop{
    to{transform: translateY(0)}
  }

  .myterms-header{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(0,0,0,.06);
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.86));
  }

  .myterms-brand{
    display:flex;
    align-items:center;
    gap: 12px;
    min-width: 0;
  }

  .myterms-badge{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--myterms-border-color);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight: 800;
    letter-spacing: .5px;
    background: rgba(255,255,255,.9);
    flex: 0 0 auto;
  }

  .myterms-title{
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
  }

  .myterms-subtitle{
    margin: 2px 0 0;
    font-size: 12px;
    color: var(--myterms-muted);
  }

  .myterms-close{
    border: 1px solid var(--myterms-border-color);
    background: rgba(255,255,255,.9);
    width: 40px;
    height: 40px;
    border-radius: 1px;
    cursor: pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    flex: 0 0 auto;
    transition: transform .12s ease, box-shadow .12s ease;
  }
  .myterms-close:hover{ transform: scale(1.03); box-shadow: 0 10px 22px rgba(0,0,0,.10); }
  .myterms-close-x{ font-size: 24px; line-height: 0; }

  .myterms-body{
    padding: 16px;
    overflow: auto;
    max-height: calc(86vh - 140px);
  }

  .myterms-note{
    border: 1px dashed rgba(0,0,0,.12);
    background: rgba(255,255,255,.75);
    padding: 12px 12px;
    border-radius: 1px;
    margin-bottom: 14px;
  }
  .myterms-note p{ margin: 6px 0; color: #2a2a33; }
  .myterms-note strong{ font-weight: 700; }

  .myterms-section{
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }

  .myterms-h3{
    margin: 0 0 6px;
    font-size: 15px;
  }

  .myterms-section p{
    margin: 0;
    color: #2a2a33;
    font-size: 14px;
    line-height: 1.6;
  }

  .myterms-list{
    margin: 8px 0 0 18px;
    color: #2a2a33;
    font-size: 14px;
    line-height: 1.6;
  }
  .myterms-list li{ margin: 6px 0; }

  .myterms-footer{
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(0,0,0,.06);
    display:flex;
    justify-content:flex-end;
    background: linear-gradient(0deg, rgba(255,255,255,.98), rgba(255,255,255,.86));
  }

  .myterms-action{
    border: 1px solid var(--myterms-border-color);
    background: #111;
    color: #fff;
    padding: 10px 14px;
    border-radius: 0px;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
    font-weight: 700;
  }
  .myterms-action:hover{ transform: translateY(-1px); box-shadow: 0 12px 26px rgba(0,0,0,.16); }
  .myterms-action:active{ transform: translateY(0); opacity: .9; }

  /* Mobile tweaks */
  @media (max-width: 520px){
    .myterms-title{ font-size: 16px; }
    .myterms-modal{ border-radius: 16px; }
    .myterms-body{ padding: 14px; }
    .myterms-badge{ width: 40px; height: 40px; border-radius: 1px; }
    .myterms-close{ width: 38px; height: 38px; border-radius: 1px; }
  }
  /*************************CONTACT PAGE******************/
  
  .mycontact-section{
    background: var(--mycontact-bg);
  }

  .mycontact-card{
    position: relative;
    background: var(--mycontact-card-bg);
    box-shadow: var(--mycontact-shadow);
    border: 1px solid var(--mycontact-border);
    border-radius: 0;
    padding: 20px 12px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform .18s ease, box-shadow .18s ease;
    overflow: hidden;
  }

  .mycontact-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(10, 25, 45, 0.16);
  }

  /* Icon circle */
  .mycontact-iconWrap{
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: var(--mycontact-icon-bg);
    display: grid;
    place-items: center;
    margin: 0 auto 8px auto;
  }

  .mycontact-icon{
    font-size: 34px;
    color: var(--mycontact-icon);
  }

  .mycontact-title{
    font-weight: 600;
    color: var(--mycontact-text);
    margin: 0 0 14px 0;
    letter-spacing: .2px;
    font-size: 22px;
    line-height: 26px
  }

  .mycontact-lines{
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mycontact-line,
  .mycontact-line a{
    color: var(--mycontact-link);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    word-break: break-word;
  }

  .mycontact-line a:hover{
    text-decoration: underline;
  }

  /* Spacing + font scaling for smaller screens */
  @media (max-width: 992px){
    .mycontact-card{ padding: 40px 22px; }
    .mycontact-title{ font-size: 26px; }
    .mycontact-line, .mycontact-line a{ font-size: 20px; }
  }
  @media (max-width: 576px){
    .mycontact-card{ padding: 34px 18px; }
    .mycontact-iconWrap{ width: 84px; height: 84px; }
    .mycontact-icon{ font-size: 32px; }
    .mycontact-title{ font-size: 24px; }
    .mycontact-line, .mycontact-line a{ font-size: 18px; }
  }
  
  /******************MY BUTTON*************/
  .mybtn-wrap{
  display:flex;
  justify-content:center;   /* center inside container */
  align-items:center;
  width:100%;
}

.mybtn{
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:9px 12px;
  border:0;
  border-radius:0;          /* ✅ no radius */
  cursor:pointer;
  user-select:none;

  background: var(--mybtn-bg);
  color: var(--mybtn-color);

  font-size:15px;
  font-weight:500;
  letter-spacing:.2px;
  text-transform:none;

  position:relative;
  overflow:hidden;          /* ✅ wave stays inside */
  outline:none;

  transition: transform .12s ease, filter .12s ease;
  margin: 10px auto;
}

.mybtn i{
  font-size:20px;
  line-height:1;
  color: inherit;
}

.mybtn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.mybtn:active{
  transform: translateY(0px);
}

/* wave overlay */
.mybtn-wave{
  position:absolute;
  inset:0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
    rgba(255,255,255,.35) 0%,
    rgba(255,255,255,.18) 25%,
    rgba(255,255,255,0) 60%);
  transform: scale(0);
  opacity:0;
  transition: transform .55s ease, opacity .55s ease;
  pointer-events:none;
}

.mybtn:hover .mybtn-wave{
  transform: scale(2.2);
  opacity:1;
}

/* focus visible for accessibility */
.mybtn:focus-visible{
  box-shadow: 0 0 0 3px rgba(0,0,0,.18);
}
/*****************PAGINATION*****************/

.mypaginationMeta{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.mypaginationInfo{
  font-size:14px;
  opacity:.85;
}

.mypaginationWrap{
  width:100%;
  display:flex;
  justify-content:center;
}

.mypaginationBar{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
  padding:8px 10px;
  border:1px solid var(--mypagination-border);
  border-radius:1px;
  background:#fff;
}

.mypaginationBtn{
  height:35px;
  min-width:35px;
  padding:0 12px;
  border:1px solid var(--mypagination-border);
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:var(--mypagination-text);
  border-radius:1px;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
  user-select:none;
}

.mypaginationBtn i{ font-size:22px; }

.mypaginationBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.mypaginationActive{
  background: var(--mypagination-color);
  border-color: var(--mypagination-color);
  font-weight:800;
}

.mypaginationDisabled{
  opacity:.45;
  cursor:not-allowed;
  pointer-events:none;
  transform:none !important;
  box-shadow:none !important;
}

.mypaginationDots{
  padding:0 6px;
  opacity:.7;
}

@media (max-width:520px){
  .mypaginationBtn{ padding:0 10px; }
}
/******************************PRODUCT OPTIONS*****************/
.myoptions-wrap{
  width:100%;
  margin-top:14px;
  display:none;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.myoptions-group{
  margin-bottom:10px;
  padding:6px;
  border:1px solid rgba(241, 207, 199,0.2);
  background:rgba(241, 207, 199,0.2);
}

.myoptions-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.myoptions-label{
  font-weight:700;
  font-size:14px;
  color:#111;
}

.myoptions-selected{
  font-weight:600;
  font-size:13px;
  color:#444;
}

.myoptions-selected b{ color:#111; }

.myoptions-help{
  font-size:12px;
  color:#666;
}

/* SELECT */
.myoptions-selectwrap{ position:relative; }
.myoptions-select{
  width:100%;
  height:44px;
  border:1px solid #FF99CCF2;
  background:rgba(241, 207, 199,0.1);
  padding:0 12px;
  outline:none;
  font-size:14px;
  appearance:none;
  border-radius:1px;
}
.myoptions-select:focus{
  border-color:#111;
  box-shadow:0 0 0 3px rgba(0,0,0,.08);
}
.myoptions-selectwrap:after{
  content:"▾";
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  pointer-events:none;
  color:#444;
}

/* TILE (checkbox style, but single-select) */
.myoptions-tilegrid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.myoptions-tile{
  position:relative;
  border:1px solid #d8d8e2;
  background:#fff;
  padding:6px 10px;
  border-radius:1px;
  cursor:pointer;
  user-select:none;
  display:flex;
  align-items:center;
  gap:10px;
  min-height:35px;
  transition:transform .06s ease, box-shadow .15s ease, border-color .15s ease;
}

.myoptions-tile:hover{
  border-color:#111;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}

.myoptions-tile:active{ transform:scale(.99); }

.myoptions-tile.is-active{
  border-color:#111;
  background:#111;
  color:#fff;
}

.myoptions-tileprice{
  font-size:12px;
  opacity:.85;
  font-weight:600;
}

/* hide real inputs */
.myoptions-input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

/* RADIO swatches */
.myoptions-swatchgrid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.myoptions-swatch{
  width:42px;
  height:42px;
  border-radius:999px;
  border:2px solid #d8d8e2;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  background:#fff;
  transition:transform .06s ease, box-shadow .15s ease, border-color .15s ease;
}

.myoptions-swatch:hover{
  border-color:#111;
  box-shadow:0 6px 16px rgba(0,0,0,.10);
}

.myoptions-swatch:active{ transform:scale(.99); }

.myoptions-swatch.is-active{
  border-color:#111;
}

.myoptions-swatch.is-active:after{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.9);
  box-shadow:0 0 0 2px rgba(0,0,0,.20);
}

.myoptions-swatchbg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* Responsive */
@media (max-width: 520px){
  .myoptions-group{ padding:12px; }
  .myoptions-head{ flex-direction:column; align-items:flex-start; }
}
/*************************WHATSAPP BUTTON******************/
.buy-via-whatsapp{
    --wa: #25D366;         /* WhatsApp green */
    --wa-dark: #1ebe5a;    /* hover tone */
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:14px 16px;
    background: var(--wa);
    color:#fff;
    text-decoration:none;
    border:0;
    border-radius:0;       /* no border radius */
    font-weight:700;
    font-size:15px;
    line-height:1;
    cursor:pointer;
    user-select:none;
    position:relative;
    overflow:hidden;       /* required for wave */
    box-shadow: 0 6px 18px rgba(37,211,102,.25);
    transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  }

  .buy-via-whatsapp:hover{
    background: var(--wa-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(37,211,102,.30);
  }

  .buy-via-whatsapp:active{
    transform: translateY(0);
  }

  /* icon */
  .buy-via-whatsapp .wa-icon{
    width:22px;
    height:22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
  }
  .buy-via-whatsapp .wa-icon svg{
    display:block;
    color:#fff; /* svg uses currentColor */
  }

  /* Wave effect (on hover) */
  .buy-via-whatsapp::after{
    content:"";
    position:absolute;
    inset:-40%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.28), rgba(255,255,255,0) 60%);
    transform: translateX(-60%) rotate(10deg);
    transition: transform .6s ease;
    pointer-events:none;
  }
  .buy-via-whatsapp:hover::after{
    transform: translateX(60%) rotate(10deg);
  }

  /* Make sure text is readable on small screens */
  .buy-via-whatsapp .wa-text{
    letter-spacing:.2px;
    white-space:nowrap;
  }
  /*********************VIDEO WIDEGET****************/
 
  .myvideo-wrap{ width:100%; }
  .myvideo-card{
    border:1px solid rgba(0,0,0,.2);
    border-radius:0;
    background:#fff;
    overflow:hidden;
  }
  .myvideo-head{
    display:flex; align-items:center; justify-content:space-between;
    gap:12px;
    padding:12px 14px;
    border-bottom:1px solid rgba(0,0,0,.12);
  }
  .myvideo-title{ font-weight:800; font-size:15px; color:#111; }
  .myvideo-sub{ font-size:12px; color:#444; margin-top:4px; }

  .myvideo-open{
    font-size:13px;
    text-decoration:none;
    color:#111;
    border:1px solid rgba(0,0,0,.25);
    padding:6px 10px;
    border-radius:0;
    display:inline-flex; align-items:center; gap:6px;
    white-space:nowrap;
  }
  .myvideo-open:hover{ background:#111; color:#fff; }

  .myvideo-body{
    position:relative;
    width:100%;
    background:#000;
  }

  /* Responsive video area (16:9 default) */
  .myvideo-ratio{
    position:relative;
    width:100%;
    padding-top:56.25%;
  }
  .myvideo-iframe,
  .myvideo-ratio iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
  }

  /* Portrait-ish embeds (TikTok/IG) */
  .myvideo-ratio.myvideo-portrait{
    padding-top:125%;
    background:#fff;
  }

  /* Skeleton loader */
  .myvideo-skeleton{
    position:relative;
    width:100%;
    padding-top:56.25%;
    background:#111;
    overflow:hidden;
  }
  .myvideo-shimmer{
    position:absolute; inset:0;
    background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.18), rgba(255,255,255,.06));
    transform: translateX(-100%);
    animation: myvideoShimmer 1.2s infinite;
  }
  @keyframes myvideoShimmer{
    0%{ transform: translateX(-100%); }
    100%{ transform: translateX(100%); }
  }

  .myvideo-foot{
    padding:10px 14px;
    border-top:1px solid rgba(0,0,0,.12);
    font-size:13px;
    color:#333;
    background:#fafafa;
  }

  @media (max-width:520px){
    .myvideo-open{ padding:6px 8px; }
  }
  .about-us-page::before{
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      top: 0px;
      left:0px;
      right: 0px;
      background: rgba(0,0,0,0.6);
      z-index: 1;
  }
  .about-us-page .box-content{
      position: absolute;
      z-index: 5;
  }
  .tf-slideshow.about-us-page img{
      max-height: 600px;
  }
  
  
  
  /****************button resusable*******/
  .btn-store{
  /* defaults (will be overridden by data attrs via JS) */
  --btn-bg:#111827;
  --btn-fg:#ffffff;
  --btn-pad:12px 18px;

  appearance:none;
  border:none;
  cursor:pointer;
  user-select:none;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;

  padding: var(--btn-pad);
  background: var(--btn-bg);
  color: var(--btn-fg);

  font: 600 14px/1.1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing:.2px;

  border-radius: 2px;
  position: relative;
  overflow: hidden;

  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  
  min-height: 44px; /* touch-friendly */
}

.btn-store i{
  font-size: 1.15em;
  line-height: 1;
}

.btn-store span{
  white-space: nowrap;
}

.btn-store:focus-visible{
  outline: 3px solid rgba(99,102,241,.35);
  outline-offset: 3px;
}

.btn-store:active{
  transform: translateY(1px) scale(.99);
  filter: brightness(.98);
}

.btn-store:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* ---- Animated wave layer ---- */
.btn-store::before{
  content:"";
  position:absolute;
  left:-60%;
  top:-120%;
  width: 220%;
  height: 260%;
  border-radius: 45%;

  /* wave tint derived from font color (slightly transparent) */
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.28), rgba(255,255,255,0) 55%),
              rgba(255,255,255,.14);

  transform: translateY(35%) rotate(0deg);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events:none;
}

.btn-store:hover::before{
  opacity: 1;
  animation: btnWave 1.2s linear infinite;
}

@keyframes btnWave{
  0%   { transform: translateY(35%) rotate(0deg); }
  100% { transform: translateY(35%) rotate(360deg); }
}

/* ---- Mobile responsiveness tweaks ---- */
@media (max-width: 480px){
  .btn-store{
    font-size: 13px;
    border-radius: 11px;
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
  }
}

/********************HERO SECTION********/
.my-hero-section{
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0b0f14;
  }

  /* Desktop: cover full viewport */
  .my-hero-section,
  .my-hero-section__swiper,
  .my-hero-section__slide{
    height: 100vh;
  }

  /* Mobile: 90vh height */
  @media (max-width: 768px){
    .my-hero-section,
    .my-hero-section__swiper,
    .my-hero-section__slide{
      height: 90vh;
    }
  }

  .my-hero-section__swiper{ width: 100%; }
  .my-hero-section__slide{ position: relative; }

  /* Video fits container always */
  .my-hero-section__video{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Overlay on each slide */
  .my-hero-section__overlay{
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.55) 55%,
      rgba(0,0,0,.70) 100%
    );
    z-index: 2;
  }

  /* Center content (per slide) */
  .my-hero-section__content{
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    gap: 14px;
  }

  /* =========================
     OUTLINED TITLE (like your screenshot)
  ========================== */
  .my-hero-section__title{
    font-family: "Domaine Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;

    font-size: clamp(26px, 4.2vw, 72px);
    line-height: 1.06;

    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,.72);
    text-shadow: 0 0 22px rgba(255,255,255,.06);
  }

  .my-hero-section__subtitle{
    font-family: "Domaine Text", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(13px, 1.15vw, 18px);
    line-height: 1.6;
    color: rgba(255,255,255,.86);
    margin: 0;
    max-width: 820px;
  }

  /* =========================
     BUTTON (data-driven + icon + wave hover)
  ========================== */
  .my-hero-section__btn{
    --btn-bg:#6d28d9;
    --btn-fg:#ffffff;
    --btn-pad:14px 22px;

    font-family: "Domaine Text", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;

    padding: var(--btn-pad);
    background: var(--btn-bg);
    color: var(--btn-fg);

    text-decoration: none;
    border: 0;
    border-radius: 12px;
    min-height: 44px;

    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,.25);

    transition: transform .18s ease, filter .18s ease;
  }

  .my-hero-section__btn i{ font-size: 1.2em; line-height: 1; }
  .my-hero-section__btn:hover{ transform: translateY(-1px); filter: brightness(1.03); }
  .my-hero-section__btn:active{ transform: translateY(1px) scale(.99); }

  /* Wave animation layer */
  .my-hero-section__btn::before{
    content:"";
    position:absolute;
    left:-60%;
    top:-120%;
    width: 220%;
    height: 260%;
    border-radius: 45%;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,.30), rgba(255,255,255,0) 55%),
      rgba(255,255,255,.14);
    transform: translateY(35%) rotate(0deg);
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events:none;
  }
  .my-hero-section__btn:hover::before{
    opacity: 1;
    animation: myHeroWave 1.15s linear infinite;
  }
  @keyframes myHeroWave{
    0%   { transform: translateY(35%) rotate(0deg); }
    100% { transform: translateY(35%) rotate(360deg); }
  }

  /* =========================
     CLICKABLE NUMBERED PAGINATION (bottom-right)
     Styled like outlined characters
  ========================== */
  .my-hero-section__pagination{
    position: absolute;
    z-index: 5;
    right: 18px !important;
    bottom: 18px !important;
    left: auto !important;
    top: auto !important;

    width: auto !important;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
  }

  .my-hero-section__pagination .swiper-pagination-bullet{
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    margin: 0 !important;
    cursor: pointer;

    font-family: "Domaine Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;

    color: transparent;
    -webkit-text-stroke: 1.8px rgba(255,255,255,.72);
    text-shadow: 0 0 18px rgba(255,255,255,.06);

    font-size: clamp(16px, 1.4vw, 22px);
    line-height: 1;
    padding: 6px 8px;
    border-radius: 10px;

    transition: transform .15s ease, filter .15s ease, background .15s ease;
  }

  .my-hero-section__pagination .swiper-pagination-bullet:hover{
    transform: translateY(-1px);
    filter: brightness(1.06);
    background: rgba(0,0,0,.18);
  }

  /* Active bullet becomes filled */
  .my-hero-section__pagination .swiper-pagination-bullet-active{
    color: rgba(255,255,255,.92);
    -webkit-text-stroke: 0px transparent;
    background: rgba(0,0,0,.28);
    backdrop-filter: blur(6px);
  }

  /* Tiny screens */
  @media (max-width: 480px){
    .my-hero-section__subtitle{ max-width: 92vw; }
    .my-hero-section__pagination{ right: 12px !important; bottom: 12px !important; gap: 8px; }
  }

  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce){
    .my-hero-section__btn,
    .my-hero-section__pagination .swiper-pagination-bullet{
      transition: none;
    }
    .my-hero-section__btn:hover::before{
      animation: none;
    }
  }
  
  /***********************HERO IMAGE*****************/
  .my-image-hero-section{
    position: relative;
    width: 100%;
    overflow: hidden;
    
  }

  .my-image-hero-section,
  .my-image-hero-section__swiper,
  .my-image-hero-section__slide{
    height: 100vh;
  }

  @media (max-width: 768px){
    .my-image-hero-section,
    .my-image-hero-section__swiper,
    .my-image-hero-section__slide{
      height: 80vh;
    }
  }

  .my-image-hero-section__swiper{ width: 100%; }
  .my-image-hero-section__slide{ position: relative; }

  /* =========================
     BACKGROUND IMAGE + "KEN BURNS"
  ========================== */
  .my-image-hero-section__bg{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    filter: saturate(1.03) contrast(1.02);
    will-change: transform;
  }

  /* Ken burns triggers only for active slide */
  .swiper-slide-active .my-image-hero-section__bg{
    animation: myImageHeroKenBurns 9s ease-in-out both;
  }

  @keyframes myImageHeroKenBurns{
    0%   { transform: scale(1.05) translate3d(0,0,0); }
    100% { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
  }

  /* Smooth slide crossfade feel */
  .my-image-hero-section__slide{
    opacity: .9;
    transition: opacity .9s ease;
  }
  .swiper-slide-active.my-image-hero-section__slide{ opacity: 1; }

  /* Overlay + subtle moving glow */
  .my-image-hero-section__overlay{
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(900px 450px at 50% 25%, rgba(255,255,255,.07), rgba(255,255,255,0) 55%),
      linear-gradient(180deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.72) 100%);
    z-index: 2;
  }
  .swiper-slide-active .my-image-hero-section__overlay{
    animation: myImageHeroOverlayPulse 5s ease-in-out infinite;
  }
  @keyframes myImageHeroOverlayPulse{
    0%,100%{ filter: brightness(1); }
    50%{ filter: brightness(1.04); }
  }

  /* =========================
     CONTENT
  ========================== */
  .my-image-hero-section__content{
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    gap: 10px;
  }

  /* Eyebrow */
  .my-image-hero-section__eyebrow{
    font-family: "Domaine Text", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: clamp(11px, 1vw, 13px);
    color: rgba(255,255,255,.84);
    margin: 0;
  }

  /* Title - outlined like your screenshot */
  .my-image-hero-section__title{
    font-family: "Domaine Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;

    font-size: clamp(26px, 4.2vw, 72px);
    line-height: 1.2;

    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,.72);
    text-shadow: 0 0 22px rgba(255,255,255,.06);
  }

  .my-image-hero-section__subtitle{
    font-family: "Domaine Text", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 500;
    font-size: clamp(13px, 1.15vw, 18px);
    line-height: 1.6;
    color: rgba(255,255,255,.86);
    margin: 0;
    max-width: 820px;
  }

  /* =========================
     BUTTON (data-driven + icon + wave + "revolution" pop)
  ========================== */
  .my-image-hero-section__btn{
    --btn-bg:#6d28d9;
    --btn-fg:#ffffff;
    --btn-pad:14px 22px;

    font-family: "Domaine Text", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 750;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;

    padding: var(--btn-pad);
    background: var(--btn-bg);
    color: var(--btn-fg);

    text-decoration: none;
    border: 0;
    border-radius: 1px;
    min-height: 44px;

    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0,0,0,.28);

    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  }

  .my-image-hero-section__btn i{
    font-size: 1.2em;
    line-height: 1;
    transition: transform .2s ease;
  }

  .my-image-hero-section__btn:hover{
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 18px 40px rgba(0,0,0,.33);
  }
  .my-image-hero-section__btn:hover i{ transform: translateX(2px); }
  .my-image-hero-section__btn:active{ transform: translateY(1px) scale(.99); }

  /* Wave hover */
  .my-image-hero-section__btn::before{
    content:"";
    position:absolute;
    left:-60%;
    top:-120%;
    width: 220%;
    height: 260%;
    border-radius: 45%;
    background:
      radial-gradient(circle at 30% 30%, rgba(255,255,255,.30), rgba(255,255,255,0) 55%),
      rgba(255,255,255,.14);
    transform: translateY(35%) rotate(0deg);
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events:none;
  }
  .my-image-hero-section__btn:hover::before{
    opacity: 1;
    animation: myImageHeroWave 1.15s linear infinite;
  }
  @keyframes myImageHeroWave{
    0%   { transform: translateY(35%) rotate(0deg); }
    100% { transform: translateY(35%) rotate(360deg); }
  }

  /* =========================
     "REVOLUTION-STYLE" TEXT ENTRANCES
     - We animate only in active slide by adding .my-image-hero-section__is-active (via JS)
  ========================== */

  /* Base hidden state (so inactive slides don't show animations) */
  .my-image-hero-section__anim{
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    will-change: transform, opacity, filter;
    filter: blur(6px);
  }

  /* Active slide: staggered animations */
  .my-image-hero-section__is-active .my-image-hero-section__eyebrow{
    animation: myImageHeroInUp .75s cubic-bezier(.2,.9,.2,1) .10s forwards;
  }
  .my-image-hero-section__is-active .my-image-hero-section__title{
    animation: myImageHeroTitleReveal .95s cubic-bezier(.2,.9,.2,1) .22s forwards;
  }
  .my-image-hero-section__is-active .my-image-hero-section__subtitle{
    animation: myImageHeroInUp .8s cubic-bezier(.2,.9,.2,1) .42s forwards;
  }
  .my-image-hero-section__is-active .my-image-hero-section__btn{
    animation: myImageHeroBtnPop .85s cubic-bezier(.2,.9,.2,1) .58s forwards;
  }

  @keyframes myImageHeroInUp{
    0%   { opacity: 0; transform: translate3d(0, 18px, 0); filter: blur(6px); }
    100% { opacity: 1; transform: translate3d(0, 0, 0);  filter: blur(0px); }
  }

  /* Title: a bit more dramatic */
  @keyframes myImageHeroTitleReveal{
    0%   { opacity: 0; transform: translate3d(0, 26px, 0) scale(.995); filter: blur(8px); }
    60%  { opacity: 1; filter: blur(1px); }
    100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0px); }
  }

  @keyframes myImageHeroBtnPop{
    0%   { opacity: 0; transform: translate3d(0, 18px, 0) scale(.96); filter: blur(6px); }
    70%  { opacity: 1; transform: translate3d(0, 0, 0) scale(1.02); filter: blur(0px); }
    100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
  }

  /* =========================
     PAGINATION (outlined numbers like screenshot)
  ========================== */
  .my-image-hero-section__pagination{
    position: absolute;
    z-index: 6;
    right: 18px !important;
    bottom: 18px !important;
    left: auto !important;
    top: auto !important;

    width: auto !important;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
  }

  .my-image-hero-section__pagination .swiper-pagination-bullet{
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    margin: 0 !important;
    cursor: pointer;

    font-family: "Domaine Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 0.06em;

    color: transparent;
    -webkit-text-stroke: 1.8px rgba(255,255,255,.72);
    text-shadow: 0 0 18px rgba(255,255,255,.06);

    font-size: clamp(16px, 1.4vw, 22px);
    line-height: 1;
    padding: 6px 8px;
    border-radius: 10px;

    transition: transform .15s ease, filter .15s ease, background .15s ease;
  }

  .my-image-hero-section__pagination .swiper-pagination-bullet:hover{
    transform: translateY(-1px);
    filter: brightness(1.06);
    background: rgba(0,0,0,.18);
  }

  .my-image-hero-section__pagination .swiper-pagination-bullet-active{
    color: rgba(255,255,255,.92);
    -webkit-text-stroke: 0px transparent;
    background: rgba(0,0,0,.28);
    backdrop-filter: blur(6px);
    transform: translateY(-1px);
  }

  @media (max-width: 480px){
    .my-image-hero-section__subtitle{ max-width: 92vw; }
    .my-image-hero-section__pagination{ right: 12px !important; bottom: 12px !important; gap: 8px; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce){
    .swiper-slide-active .my-image-hero-section__bg,
    .swiper-slide-active .my-image-hero-section__overlay,
    .my-image-hero-section__is-active .my-image-hero-section__eyebrow,
    .my-image-hero-section__is-active .my-image-hero-section__title,
    .my-image-hero-section__is-active .my-image-hero-section__subtitle,
    .my-image-hero-section__is-active .my-image-hero-section__btn{
      animation: none !important;
    }
    .my-image-hero-section__anim{
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
    }
  }
h1,h2,h3,h4,h5,h6,
span.title,
.box-navigation .box-nav-ul .menu-item a
.nav-ul-mb .nav-mb-item .mb-menu-link,
.noti-bar-text
{
 font-family: "Playfair", serif !important;
  font-optical-sizing: auto !important;
  letter-spacing: 0.05em;
  text-transform: uppercase !important;
  
}
.nav-ul-mb .nav-mb-item .mb-menu-link{
 font-family: "Playfair", serif !important;
  font-optical-sizing: auto !important;
  letter-spacing: 0.05em;
  text-transform: uppercase !important;
  font-size: 15px;
}
.heading {
   letter-spacing:1.1px;
}
.tf-marquee.type-brown .marquee-item .text{
    color: #000 !important;
}
span.mrf{
    font-size: 32px;
    
}
@media (max-width: 480px){
 span.mrf{
    font-size: 32px;
    
}
    
}
.btn-store{
    border-radius: 1px;
}
@media (min-width: 768px) {
    .tf-marquee {
        padding-top:12px;
        padding-bottom: 12px;
    }
}
.tf-languages{
    display:none !important;
}







