:root {
  --font-roman:"Times New Roman", Times, serif;
  --font-bebas:"Bebas Neue", sans-serif;
}

.font-roman {
  font-family: var(--font-roman) !important;
}

.font-bebas {
  font-family: var(--font-bebas) !important;
}

.label-color {
    font-size: 14px;
    font-weight: 500;
    color: #464646;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--heading-font-family);
}

.text-heading {
  color: #2e2e2e;
}

.text-body {
  color: #464646;
}

.h-5 {
  height: 1.25rem;
}
.w-5 {
  width: 1.25rem;
}
.w-px {
    width: 1px;
}
.h-4 {
    height: 1rem;
}
.h-0 {
    height: 0px;
}
.w-9 {
    width: 2.25rem;
}
.bg-line {
    background-color: #e9e9e9;
}
.filter-category-block .tab-item {
    border-bottom: 1px solid transparent;
}
.filter-category-block .tab-item.active {
    border-bottom-color: var(--primary-color) !important;
    color: #000 !important;
}
.filter-category-block .tab-item:hover {
    border-bottom-color: var(--primary-color) !important;
    color: #000 !important;
    cursor: pointer;
}
.list-color .color-item .tag-action,
.list-color-image .color-item .tag-action {
  position: absolute;
  right: unset;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 1;
  transition: all ease 0.5s;
}
.list-color .color-item .tag-action::before,
.list-color-image .color-item .tag-action::before {
  content: "";
  position: absolute;
  top: unset;
  right: unset;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  bottom: -4px;
  height: 14px;
  width: 14px;
  z-index: -1;
  background-color:  #000;
}
.product-image .pro-img img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.cust-check:hover {
    border: 1px solid black !important;
}
.shop-header{
    display: none !important;
}
.shop-product-wrap .list-product #skeCont{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1rem;
}


/* Toggle Switch Styles */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.toggle-switch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: white;
  top: 2px;
  left: 2px;
  transition: 0.4s;
}

.toggle-switch input:checked+.slider {
  background-color:  #000;
  /* Active state color */
}

.toggle-switch input:checked+.slider:before {
  transform: translateX(26px);
}

/* Disabled State */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.checkoutPageCoupanSection {
  position: relative;
  /* margin: 2rem 0; */
}
.list-action .list-color li {
    list-style: none;
}
.hidden {
    display: none;
}
.quickview-detail-info .selected_variation_total_price .discount-price::before {
    content: "(";
}
.quickview-detail-info .selected_variation_total_price .discount-price::after{
    content: ")";
}

.text-underline{
  text-decoration: underline;
}


/* quick view skeleton animatoin */

      :root {
        --skeleton: #f2f2f3;
        --skeleton-dark: #ececee;
        --gap: 24px;
      }

      .skeleton-wrap {
        /* width: 1100px;
        max-width: 95vw; */
        display: grid;
        grid-template-columns: 330px 1fr;
        gap: var(--gap);
      }

      /************ LEFT SIDE (updated) *************/
      .left {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .main-card {
        width: 100%;
        height: 380px;
        background: linear-gradient(
          180deg,
          var(--skeleton),
          var(--skeleton-dark)
        );
        border-radius: 6px;
        position: relative;
        overflow: hidden;
      }

      .thumbs-bottom {
        display: flex;
        gap: 14px;
        justify-content: flex-start;
      }

      .thumb {
        width: 80px;
        height: 80px;
        background: linear-gradient(
          180deg,
          var(--skeleton),
          var(--skeleton-dark)
        );
        border-radius: 6px;
        position: relative;
        overflow: hidden;
      }

      /************ RIGHT SIDE (unchanged) *************/
      .right {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        gap: 22px;
      }

      .line {
        height: 14px;
        background: linear-gradient(
          180deg,
          var(--skeleton),
          var(--skeleton-dark)
        );
        border-radius: 6px;
        position: relative;
        overflow: hidden;
      }
      .line.short {
        width: 160px;
        height: 12px;
      }
      .line.long {
        width: 100%;
        height: 16px;
      }
      .line.mid {
        width: 68%;
        height: 14px;
      }

      .pills {
        display: flex;
        gap: 14px;
      }
      .pill {
        width: 120px;
        height: 36px;
        border-radius: 20px;
        background: linear-gradient(
          180deg,
          var(--skeleton),
          var(--skeleton-dark)
        );
        position: relative;
        overflow: hidden;
      }
      .pill.sm {
        width: 64px;
      }

      .cards {
        display: flex;
        gap: 18px;
      }
      .card {
        width: 110px;
        height: 120px;
        background: linear-gradient(
          180deg,
          var(--skeleton),
          var(--skeleton-dark)
        );
        border-radius: 6px;
        position: relative;
        overflow: hidden;
      }

      .wide-pill {
        width: 100%;
        height: 46px;
        border-radius: 26px;
        background: linear-gradient(
          180deg,
          var(--skeleton),
          var(--skeleton-dark)
        );
        position: relative;
        overflow: hidden;
      }
      .thin-line {
        height: 8px;
        width: 48px;
        background: linear-gradient(
          180deg,
          var(--skeleton),
          var(--skeleton-dark)
        );
        border-radius: 4px;
      }

      .footer-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .small-circle {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(
          180deg,
          var(--skeleton),
          var(--skeleton-dark)
        );
        position: relative;
        overflow: hidden;
      }
      .dot {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: linear-gradient(
          180deg,
          var(--skeleton),
          var(--skeleton-dark)
        );
      }

      /************ SHIMMER EFFECT *************/
      .main-card::after,
      .thumb::after,
      .line::after,
      .pill::after,
      .card::after,
      .wide-pill::after,
      .thin-line::after,
      .small-circle::after,
      .dot::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.5) 50%,
          rgba(255, 255, 255, 0) 100%
        );
        transform: translateX(-120%);
        animation: shimmer 1.7s linear infinite;
      }

      @keyframes shimmer {
        0% {
          transform: translateX(-120%);
        }
        100% {
          transform: translateX(120%);
        }
      }

      /* product grid skeleton */
        :root {
        --sk-bg: #f3f4f5;
        --sk-dark: #ececed;
      }

      .product-skeleton-grid {
        width: 100%;
        /* max-width: 1100px; */
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
      }

      .skeleton-card {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
      }

      .sk-img,
      .sk-line {
        background: linear-gradient(180deg, var(--sk-bg), var(--sk-dark));
        border-radius: 4px;
        position: relative;
        overflow: hidden;
      }

      .sk-img {
        width: 100%;
        height: 350px;
      }

      @media (max-width:786px) {
        .sk-img {
          width: 100%;
          height: 200px;
        }

      }

      .sk-line {
        height: 10px;
        width: 70%;
      }

      .sk-line.small {
        width: 50%;
      }

      /* shimmer animation */
      .sk-img::after,
      .sk-line::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          rgba(255, 255, 255, 0) 0%,
          rgba(255, 255, 255, 0.5) 50%,
          rgba(255, 255, 255, 0) 100%
        );
        transform: translateX(-120%);
        animation: shimmerr 1.6s infinite linear;
      }




  

  @keyframes shimmerr {
        100% {
          transform: translateX(120%);
        }
      }


.list-skeleton {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}




/* .list-skeleton {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(20rem, 1fr));
} */
.skeleton-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px; /* space between thumbnail and text */
    padding: 15px;
    /* border-bottom: 1px solid #e0e0e0; */
    width: 100%;
    /* flex-direction: column; */
    flex-basis: 50%;
}

/* Thumbnail skeleton */
.skeleton-thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

/* Skeleton shimmer animation */
.skeleton-thumb::after,
.sk-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmerrr 1.5s infinite;
}

@keyframes shimmerrr {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Right side text skeleton container */
.skeleton-list-item > div:not(.skeleton-thumb) {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Text lines skeleton */
.skeleton-list-item .sk-line {
    height: 12px;
    width: 100%;
    max-width: 250px; /* optional for variation */
    border-radius: 6px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

/* Error alert animation */
@keyframes alertShake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

@keyframes alertGlow {
    0% { box-shadow: 0 0 0px rgba(255, 0, 0, 0.6); }
    100% { box-shadow: 0 0 10px rgba(255, 0, 0, 0.8); }
}

.alert-message.error-active {
    animation: alertShake 0.4s ease, alertGlow 0.6s ease-out;
}
.error-alert.error-active {
    animation: alertShake 0.4s ease, alertGlow 0.6s ease-out;
}

.blog-post img.w-100.img-fluid {
    aspect-ratio: 4/3;
    object-fit: cover;
}


.home-slider {
    /* background: red; */
    /* background-image: url(/erona/assets/image/index4/slider-6.png);
    background-position: 70%;
    background-size: cover;
    background-repeat: no-repeat; */
}

.blog-cat-post .blog-cat a.active {
    border-bottom: 1px solid;
}
.slide-img {
    width: 100%;
    height: calc(100vh - 20vh);
}

.slide-img img {
    /* width: 100%;
    height: 100%;
    object-fit: cover; */
}

.ap-profile a.active {
    background: var(--bg-black);
    color: #fff;
}


/* size chart styles */
.filter-price .tow-bar-block {
    position: relative;
    background: #ECECEC;
    height: 5px;
    border-radius: 5px;
}
.filter-price .range-input {
    position: relative;
}
.filter-price .tow-bar-block .progress {
    position: absolute !important;
    height: 5px !important;
    background: #7E8C69 !important;
    left: 0 ;
    right: 0% ;
}
.filter-price .range-input input {
    position: absolute ;
    top: -5px ;
    height: 5px ;
    width: 100% ;
    background: none ;
    outline: none ;
    border: none ;
    /* pointer-events: none; */
    appearance: none ;
}
.list-size-block .size-item.active {
    border-color: var(--bg-primary);
    background-color: var(--bg-primary);
    color: var(--sk-bg);
}
/* order history user dashboard */
tbody.recent_order_table_body tr td {
    padding: 10px 10px !important;
    border-bottom-width: 1 !important;
    border-left-width: 0 !important;
    border-right-width: 0 !important;
    border-top-width: 0 !important;
}
thead tr th{
    padding: 1.5rem 10px !important;
}
.userOrderTable tbody, .userOrderTable thead {
  border-width: 1px !important;
}

.modal-order-detail-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
    background: rgba(0, 0, 0, 0.6);
    z-index: 101;
}

.modal-order-detail-block:has(.modal-order-detail-main.open) {
    opacity: 1;
    visibility: visible;
} 

table.table.userOrderTable {
    /* width: 100% !important; */
    text-wrap-mode: nowrap;
}


/* login btn spinner */
span.btn-loader-icon {
    display: none;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

span.btn-check-icon {
    display: none;
}


.ap-detail .btn-loader-icon {
  display: none;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

.ap-detail .btn-check-icon {
  display: none;
}


/*  */
.user-dropdown {
  position: absolute;
  top: 130%;
  right: 0;
  width: 180px;
  /* background: #fff; */
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  z-index: 1000;
}

.user-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.user-dropdown a {
  display: block;
  padding: 10px 15px;
  /* font-size: 14px; */
  color: #333;
  text-decoration: none;
}

.user-dropdown a:hover {
  color: var(--primary-font-color2);
}

.user-dropdown .divider {
  height: 1px;
  background: #eee;
  margin: 6px 0;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
  height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: var(--heading-font-weight);
    border-radius: var(--border-radius);
    color: var(--extra-font-color);
    background-color: var(--bg-black) !important;
    border: 1px solid var(--bg-black) !important;
}

/* visitor-counter */
.visitor-counter {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 0 rgb(217 8 8);
    /* animation: pulseGlow 1.6s infinite, focusFade 1.2s ease-out; */
  }
  
  
  .visitor-counter .heading-color {
}



@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow:inset 0 0 0 0 rgba(217, 8, 8, 0.596);
    }
    70% {
        transform: scale(1.05);
        box-shadow:inset 0 0 0 14px rgba(255, 77, 109, 0);
    }
    100% {
        transform: scale(1);
        box-shadow:inset 0 0 0 0 rgba(255, 77, 109, 0);
    }
}
@keyframes focusFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* .slider-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 42px;
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    background: #00000094;
    border: 1px solid #ffffff75;
    font-size: 24px;
    margin-top: 50px;
    color: #fff;
    transition: .3s ease;
}
.slider-btn:hover{
    background: #000;
    border: 1px solid #fff;
    color: #fff;
    scale: 1.09;
} */


.slider-btn {
    --btn-color: #000000;
    --btn-hover-color: #ffffff;
    --border-radius: 0px;
    position: relative;
    border: 1px solid var(--btn-color);
    color: var(--btn-hover-color);
    background: #00000094;
    padding: 12px 40px;
    top: 55px;
    font-size: 22px;
}

.slider-btn::before,
.slider-btn::after {
  position: absolute;
  top: 0;
  left: 0;
  border-color: var(--btn-hover-color);
  border-radius: var(--border-radius);
  border-style: solid;
  transition: all 0.35s ease;
  content: "";
  z-index: 1;
  pointer-events: none;
}

.slider-btn::before {
  width: 0;
  height: 100%;
  border-width: 1px 0;
}

.slider-btn::after {
  width: 100%;
  height: 0;
  border-width: 0 1px;
}

.slider-btn:hover {
  border-color: var(--btn-hover-color);
  color: var(--btn-hover-color);
}

.slider-btn:hover::before {
  width: 100%;
}

.slider-btn:hover::after {
  height: 100%;
}

/* home categories */
.exploreCollectionSliderContainer .banner-content{
  position: absolute;
  bottom: -10%;
  transition: .3s ease;
  z-index: 1;
}
.exploreCollectionSliderContainer .banner-hover:hover .banner-content {
    bottom: 0;
}
.overlay.overlay--gradient {
    width: 100%;
    height: 100%;
    background: #00000078;
    position: absolute;
    z-index: 1;
}
/* categories btn start */
.cbtn {
    width: 100%;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Secondary Button */
.cbtn-secondary {
    background-color: #ffffff;
    color: #000000;
    /* border: 2px solid #000000; */
}

.cbtn-secondary:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Primary Button */
.cbtn-primary {
    background-color: #1f1f1f;
    color: #ffffff;
    border: 2px solid #1f1f1f;
}

.cbtn-primary:hover {
    background-color: #000000;
    border-color: #000000;
}

.hover-bg-transparent{
  background: transparent;
}

.cate-btn {
    border: 1px solid white;
    width: max-content;
    transition: .3s ease;
    color: #fff !important;
    background-color: #fff;
}
.cate-btn a {
    color: #000000;
}
.exploreCollectionSliderContainer .banner-hover:hover .banner-content .cate-btn{
  padding: 10px 20px;
  /* background-color: #fff; */
}
.cate-btn:hover{ 
  background-color: #00000000;
}
.cate-btn:hover a{ 
  color: #ffffff !important;
}

.w-light-bg {
  background-color: #ffffffa6 !important;
}
.w-light-bg:hover {
  background-color: #2e2e2e !important;
}

.prd-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--primary-font-color2);
    text-transform: capitalize;
    font-family: var(--heading-font-family);
}

.prd-title a{
  color: #2e2e2e;
}

.prd-price {
    font-size: 20px;
    font-weight: normal;
    color: #464646;
    font-family: var(--heading-font-family);
    letter-spacing: 1px;
}
.prd-category {
  font-size: 14px;
  text-transform: uppercase;
}
.prd-price .old-price {
opacity: 0.5;
}

/* Base color dot */
.product-variant .color-item {
  position: relative;
  cursor: pointer;
  border-radius: 50%;
}

/* REMOVE old border if any */
.product-variant .color-item {
  border: none;
}

/* Active outer ring */
.product-variant .color-item.active::before {
  content: "";
  position: absolute;
  inset: -4px;              /* space between dot & ring */
  border: 1.5px solid #bfbfbf; /* grey ring (same as image) */
  border-radius: 50%;
}

/* Optional hover (same ring) */
.product-variant .color-item:hover::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1.5px solid #bfbfbf;
  border-radius: 50%;
}

/* Quick add button overlay */
.product-image {
  position: relative;
}

.quick-add-btn {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  background: #0009;
  color: #fff;
  padding: 10px 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.single-product-wrap:hover .quick-add-btn {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

/* collection btn */
.collection-btn {
    border: 1px solid #fff;
    max-width: 58px;
    width: 100%;
    display: flex;
    height: 40px;
    color: #000;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: .3s ease;
}


.collection-btn:hover{
  background: transparent;
  color: #fff;
  scale: 1.01;

}

.collection-btn i {
    transform: rotate(-45deg);
}
.cate-img{
      width: 100%;
    aspect-ratio: 4/4;
    object-fit: cover;
}
#home-banner-block .banner-block a.banner-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover !important;
}
#home-banner-block .banner-block img {
    height: 100%;
    object-fit: cover;
}
/* footer custom style start */
.footer-area {
  background:#111111;
}
.ft-title {
    color: #fff;
    letter-spacing: 1px;
    font-size: 24px;
}
.ftlink-ul {
    color: #ffffffab !important;
}.ftlink-ul li a {
    color: #ffffffab !important;
}.footer-company-detail {
    color: #ffffffab;
}