@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..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&family=Red+Rose:wght@300..700&display=swap');
: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;
  --bk-1:radial-gradient(1100px 700px at 12% 22%, rgba(230,54,51,.20), transparent 55%),
                      radial-gradient(900px 600px at 90% 15%, rgba(18,19,24,.10), transparent 50%),
                      linear-gradient(135deg, #ffffff 0%, #f7f8fb 40%, #ffffff 100%);
  
  }

  .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 #e9e9ef;
  background:#fff;
}

.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 #d8d8e2;
  background:#fff;
  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: 700;

    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: 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-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;
    background: #0b0f14;
  }

  .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: 90vh;
    }
  }

  .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: 12px;
  }

  /* Eyebrow */
  .my-image-hero-section__eyebrow{
    font-family: "Domaine Text", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 650;
    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.06;

    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: 12px;
    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: "Red Rose", serif !important;
    font-weight: 500;
    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;
    }
  }
/***************************PETASONIC HERO *************/
:root{
      --ps-red:#E10600;
      --ps-black:#07070B;
      --ps-white:#fff;
      --ps-muted:rgba(255,255,255,.72);
      --ps-line:rgba(255,255,255,.14);
      --ps-glow:rgba(225,6,0,.35);
    }
    
    body{
        font-family:Montserrat,system-ui,Arial;overflow-x:hidden}

    /* Static hero background (gradient) */
    .ps-hero{
      position:relative;
      min-height:90vh;
      display:flex;
      align-items:center;
      overflow:hidden;
      padding: clamp(48px, 1vw, 56px) 0;
      background:
        radial-gradient(1100px 700px at 70% 28%, rgba(225,6,0,.25), transparent 58%),
        radial-gradient(900px 600px at 30% 55%, rgba(255,255,255,.08), transparent 60%),
        linear-gradient(180deg, #050507 0%, #0b0b10 50%, #07070B 100%);
      
      /*background: linear-gradient(135deg, #2E4739 0%, #2F5A44 40%, #99C85B 75%, #BAD19C 100%);
      background: radial-gradient(circle at top left, #99C85B, #2F5A44 60%, #1F3B2D);*/
      padding-bottom: 30px;
      
      /*background: radial-gradient(1100px 700px at 12% 22%, rgba(230,54,51,.20), transparent 55%),
                      radial-gradient(900px 600px at 90% 15%, rgba(18,19,24,.10), transparent 50%),
                      linear-gradient(135deg, #ffffff 0%, #f7f8fb 40%, #ffffff 100%);
   */
    }
    .ps-hero::before{
      content:"";
      position:absolute; inset:-18%;
      background:
        radial-gradient(closest-side, rgba(225,6,0,.12), transparent 65%),
        radial-gradient(closest-side, rgba(255,255,255,.07), transparent 65%);
      filter: blur(44px);
      animation: psGlow 8s ease-in-out infinite;
      pointer-events:none;
      opacity:.85;
    }
    @keyframes psGlow{
      0%,100%{ transform: translate3d(-2%, -1%, 0) scale(1); }
      50%{ transform: translate3d(2%, 2%, 0) scale(1.05); }
    }

    /* Swiper container */
    .ps-swiper{
      position:relative;
      width:100%;
    }

    /* Pagination bottom-right */
    .ps-hero .swiper-pagination{
      position:absolute !important;
      right: clamp(14px, .5vw, 34px) !important;
      right: 10px !important;
      bottom: clamp(14px, .5vw, 34px) !important;
      left:auto !important;
      width:auto !important;
      display:flex;
      gap:10px;
      z-index:10;
    }
    .ps-hero .swiper-pagination-bullet{
      width:22px;height:22px;
      border-radius:2px;
      display:grid; place-items:center;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.18);
      color: rgba(255,255,255,.85);
      font-weight:400;
      font-size:12px;
      opacity:1;
      backdrop-filter: blur(10px);
      transition: transform .25s ease, background .25s ease, border-color .25s ease;
    }
    .ps-hero .swiper-pagination-bullet-active{
      transform: translateY(-1px) scale(1.06);
      background: rgba(225,6,0,.18);
      border-color: rgba(225,6,0,.6);
      box-shadow: 0 0 24px rgba(225,6,0,.25);
      color:#fff;
    }

    /* Slide card */
    .ps-slideCard{
      /**border:1px solid rgba(255,255,255,.12);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
      border-radius:22px;
      box-shadow: 0 18px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04) inset;
      overflow:hidden;
      padding: clamp(18px, 3vw, 34px);
      min-height: clamp(520px, 76vh, 720px);*/
      display:flex;
      align-items:center;
      width: 100%;
    }

    /* two grids */
    .ps-grid{
      width:100%;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(16px, 3vw, 40px);
      align-items:center;
    }

    /* Image column */
    .ps-visualWrap{ display:flex; justify-content:center; align-items:center; }

    .ps-float{
      width: min(520px, 100%);
      height:auto;
      filter: drop-shadow(0 24px 60px rgba(0,0,0,.55));
      animation: psFloatY 3.8s ease-in-out infinite;
      transform-style: preserve-3d;
      user-select:none;
    }
    @keyframes psFloatY{
      0%,100%{ transform: translate3d(0, -6px, 0); }
      50%{ transform: translate3d(0, 10px, 0); }
    }

    /* Text column */
    .ps-pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:6px 14px;
      border:1px solid var(--ps-line);
      border-radius:2px;
      background: rgba(0,0,0,.28);
      backdrop-filter: blur(10px);
      font-weight:400;
      letter-spacing:.12em;
      text-transform:uppercase;
      font-size:12px;
      color: #fff;
    }
    .ps-dot{width:8px;height:8px;border-radius:999px;background:var(--ps-red);box-shadow:0 0 18px rgba(225,6,0,.9)}

    .ps-copy h2
    
    {
      
      margin-top: 14px;
    
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.15;
    font-size: clamp(36px, 4.6vw, 72px);
    color: #fff;
    }
    .ps-copy h2 strong{color:var(--ps-red);text-shadow:0 0 22px var(--ps-glow)}

    .ps-lead{
      margin-top:12px;
      color:var(--ps-muted);
      font-size: clamp(14px, 1.55vw, 18px);
      line-height:1.65;
      max-width:560px;
    }

    .ps-btn{
      margin-top:18px;
      display:inline-flex;align-items:center;gap:10px;
      padding:12px 20px;
      border-radius:2px;
      border:1px solid rgba(255,255,255,.18);
      color:#fff;text-decoration:none;
      font-weight:900;letter-spacing:.06em;text-transform:uppercase;font-size:13px;
      background: linear-gradient(135deg, rgba(225,6,0,.95), rgba(0,0,0,.95));
      box-shadow:0 16px 40px rgba(0,0,0,.45);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .ps-btn:hover{transform:translateY(-1px);box-shadow:0 22px 55px rgba(0,0,0,.55)}

    /* Elements to animate in each slide */
    .ps-anim{ opacity:0; transform: translateY(10px); }

    /* Mobile: image on top, text below */
    @media (max-width: 992px){
      .ps-grid{grid-template-columns:1fr}
      .ps-visualWrap{order:1}
      .ps-copy{order:1;text-align:center}
      .ps-lead{margin-left:auto;margin-right:auto}
      .ps-float{width:min(440px,100%)}
      .ps-slideCard{min-height:auto}
    }
    @media (max-width: 500px){
        .container.bol{
            margin-bottom: 5px;
        } 
        .ps-hero{
            padding-bottom: 5px;
        }
    }
    
    
/**************************PETESONIC BUTTON***********************/
/* LIQUID BUTTON */
    .ps-liquidBtn{
      --bg1: var(--ps-red);
      --bg2: #0b0b10;
      --radius: 0px;
      --padY: 12px;
      --padX: 28px;

      position:relative;
      display:inline-flex;
      align-items:center;
      gap:10px;

      margin-top: 22px;
      padding: var(--padY) var(--padX);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: var(--radius);
      color: #fff;
      text-decoration:none;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
      font-size: 13px;

      background: transparent;
      overflow:hidden;
      transform: translateZ(0);
      cursor:pointer;

      box-shadow:
        0 16px 40px rgba(0,0,0,.45),
        0 0 0 1px rgba(255,255,255,.06) inset;
    }

    .ps-liquidBtn::before,
    .ps-liquidBtn::after{
      content:"";
      position:absolute; inset:-30%;
      will-change: transform;
      transition: filter .3s ease;
    }

    .ps-liquidBtn::before{
      background:
        linear-gradient(135deg, var(--bg1) 0 49.5%, transparent 50.5%),
        radial-gradient(closest-side, rgba(255,255,255,.14), transparent 70%);
      transform: translate3d(-6%, -4%, 0) rotate(0deg);
      animation: psLiquidA 4.2s ease-in-out infinite;
      opacity: .98;
    }

    .ps-liquidBtn::after{
      background:
        linear-gradient(135deg, transparent 0 49.5%, var(--bg2) 50.5%),
        radial-gradient(closest-side, rgba(0,0,0,.35), transparent 70%);
      transform: translate3d(4%, 6%, 0) rotate(0deg);
      animation: psLiquidB 5.2s ease-in-out infinite;
      opacity: .98;
      mix-blend-mode: screen;
    }

    .ps-liquidBtn .ps-seam{
      position:absolute;
      inset:-40%;
      background:
        linear-gradient(135deg,
          transparent 0 49%,
          rgba(255,255,255,.20) 49.25%,
          rgba(255,255,255,.05) 50.75%,
          transparent 51% 100%);
      opacity:.65;
      filter: blur(.2px);
      animation: psSeam 3.6s ease-in-out infinite;
      pointer-events:none;
    }

    .ps-liquidBtn .ps-label{
      position:relative;
      z-index:2;
      display:inline-flex;
      align-items:center;
      gap:10px;
    }

    .ps-liquidBtn i{
      position:relative;
      z-index:2;
      font-size: 14px;
    }

    .ps-liquidBtn:hover{
      transform: translateY(-1px);
      box-shadow:
        0 20px 55px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,255,255,.08) inset;
    }

    .ps-liquidBtn:hover::before,
    .ps-liquidBtn:hover::after{
      filter: saturate(1.1) brightness(1.05);
    }

    @keyframes psLiquidA{
      0%,100%{ transform: translate3d(-8%, -6%, 0) rotate(-2deg); }
      50%{ transform: translate3d(4%, 2%, 0) rotate(2deg); }
    }
    @keyframes psLiquidB{
      0%,100%{ transform: translate3d(6%, 8%, 0) rotate(2deg); }
      50%{ transform: translate3d(-2%, -4%, 0) rotate(-2deg); }
    }
    @keyframes psSeam{
      0%,100%{ transform: translate3d(-2%, -3%, 0) rotate(-1deg); opacity:.60; }
      50%{ transform: translate3d(3%, 2%, 0) rotate(1deg); opacity:.80; }
    }

/***************************CATEGORY BACKGROUND********************************/
.ps-products{
    position:relative;
    background: linear-gradient(#f7f7fb, #f3f4f7);
    overflow:hidden;
  }
  .ps-products:before,
  .ps-products:after{
    content:"";
    position:absolute;
    inset:-10%;
    background-repeat:no-repeat;
    background-size:cover;
    pointer-events:none;
    opacity:.9;
  }
  /* Top wave */
  .ps-products:before{
    top:-32%;
    left:-12%;
    right:-12%;
    height:55%;
    background-image:
      radial-gradient(1200px 260px at 20% 60%, rgba(225,22,22,.10), transparent 60%),
      radial-gradient(900px 220px at 90% 30%, rgba(225,22,22,.08), transparent 65%),
      linear-gradient(transparent, transparent);
    filter: blur(0px);
  }
  /* Bottom wave sweep */
  .ps-products:after{
    bottom:-35%;
    left:-25%;
    right:-25%;
    height:70%;
    background-image:
      radial-gradient(1000px 320px at 30% 20%, rgba(225,22,22,.12), transparent 62%),
      radial-gradient(1200px 320px at 70% 30%, rgba(225,22,22,.08), transparent 65%),
      linear-gradient(transparent, transparent);
    
  }
  /*********************IMPROVED OPTIONS********************/
.myoptions-tile.is-outstock,
.myoptions-swatch.is-outstock{
  position:relative;
  opacity:.55;
  cursor:not-allowed;
}

.myoptions-tile.is-outstock::after,
.myoptions-swatch.is-outstock::after{
  content:"";
  position:absolute;
  left:8%;
  right:8%;
  top:50%;
  height:2px;
  background:#c7c7c7;
  transform:rotate(-15deg);
  pointer-events:none;
}

.myoptions-tile.is-outstock:hover,
.myoptions-swatch.is-outstock:hover{
  transform:none !important;
}

/*******************CTA***********/
:root{
    --cta-padding: 100px;
    --cta-radius: 16px;
    --cta-text-color: #ffffff;
    --cta-btn-bg: #E73734;
    --cta-btn-hover: #ff4d4a;
    --cta-font: 'Poppins', sans-serif;
}

/* SECTION */
.cta-section{
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* OVERLAY */
.cta-overlay{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--cta-padding) 20px;
    text-align: center;
    position: relative;
}

/* CONTENT */
.cta-container{
    max-width: 700px;
    color: var(--cta-text-color);
    z-index: 2;
}

.cta-tag{
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.cta-title{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff !important;
}

.cta-text{
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 25px;
}

/* BUTTON */
.cta-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--cta-btn-bg);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover{
    background: var(--cta-btn-hover);
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media(max-width: 992px){
    .cta-title{
        font-size: 32px;
    }
}

@media(max-width: 768px){
    .cta-section{
        min-height: 380px;
    }

    .cta-title{
        font-size: 26px;
    }

    .cta-text{
        font-size: 14px;
    }

    .cta-btn{
        padding: 12px 22px;
    }
}

@media(max-width: 480px){
    .cta-title{
        font-size: 22px;
    }
}

/*****************CTA ENDS HERE***************/






h1,h2,h3,h4,h5,h6,
#header .box-nav-ul .item-link,
#header .box-nav-ul .item-link,
.title

{
    font-family: "Red Rose", serif !important;
}
.tf-icon-box .content .title{
    color:#000000;
}
  
