/** Shopify CDN: Minification failed

Line 226:7 Expected identifier but found whitespace
Line 226:9 Unexpected "{"
Line 226:18 Expected ":"
Line 229:25 Expected identifier but found whitespace
Line 229:27 Unexpected "{"
Line 229:36 Expected ":"
Line 258:8 Expected identifier but found whitespace
Line 258:10 Unexpected "{"
Line 258:19 Expected ":"
Line 262:7 Expected identifier but found whitespace
... and 3 more hidden warnings

**/
/* ================================
   GLOBAL STYLES & VARIABLES
================================== */
body {
  font-family: 'Bricolage Grotesque', sans-serif !important;
}
:root {
  --primary-color: #111;
  --secondary-color: #666;
  --accent-color: #e63946;
  --header-bg: #ffffff;
  --body-bg: #ffffff;
  --text-color: #222;
  --font-primary: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max-width: 1300px;
  --transition: all 0.3s ease;
}

/* ================================
   BASE RESET & BODY
================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--body-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

.container,
.page-width {
  max-width: var(--max-width);
  margin: 0 auto;
  /* padding: 0 20px; */
}
/* ================================
   HEADER STYLING
================================== */
.main-header {
  width: 100%;
  background: var(--header-bg);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

.header-wrapper {
  max-width: var(--max-width);
  height: var(--header-height, 80px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
   padding-inline: 0px !important;
}

/* Logo */
.header-logo img {
  height: var(--logo-height, 45px);
  width: auto;
}

.site-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 0.5px;
}
/* top bar */
.announcement-bar {
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
span.days-of-place {
    text-transform: lowercase;
    letter-spacing: 1px;
}
/* ================================
   NAVIGATION
================================== */
.header-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}
.header-nav a:hover::after {
  width: 100%;
}

/* Mega Menu */
.nav-item {
  position: relative;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  min-width: 177px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.mega-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-item:hover .mega-menu {
  display: block;
}

/* ================================
   HEADER ICONS
================================== */
.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-link {
  font-size: 1.4rem;
  color: var(--text-color);
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}

.icon-link:hover {
  color: var(--accent-color);
}

.cart-count {
  position: absolute;
  
  background: var(--accent-color);
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  padding: 2px 6px;
}
.top-menu-wrapper {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.top-menu-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
   flex-wrap: wrap;
}
.top-menu-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-menu-links li a:hover { opacity: 0.6; }

.top-menu-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-social-icons {
  display: flex;
  gap: 14px;
  padding-top: 6px;
}
.social-svg {
  width: 20px;
  height: 20px;
  fill: {{ section.settings.social_color }};
  transition: .2s;
}
.social-svg:hover { fill: {{ section.settings.social_hover }}; }

/* Currency selector — improved */
.currency-selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
}

.currency-toggle {
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: .25s ease;
}

.currency-toggle:hover {
  background: rgba(0,0,0,0.05);
}

.currency-code {
  font-size: 14px;
  font-weight: 500;
  color: {{ section.settings.menu_color }};
}

.currency-arrow-icon {
  fill: {{ section.settings.menu_color }};
  transition: .25s ease;
}

.currency-dropdown {
  display: none;
  position: absolute;
  top: 36px;
  right: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
 
  width: 160px;
  overflow: hidden;
}

.currency-dropdown.open {
  display: block;
}

.currency-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-currency {
    margin: 0!important;
}
.currency-option {
  padding: 8px 10px;
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  text-align: left;
}

.currency-option:hover,
.currency-option.active {
  background: #f4f4f4;
}

/* main-menu css start here  */
#header-cart-button {
    border: none;
    background: unset;
}
.main-header .nav-item a {
    letter-spacing: .6px!important;
   
}
/* CATEGORY css start end */
.cg-item {
    position: relative;
}

.cg-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* CATEGORY css end */


/* active page menu css start here  */
.active_menu-link a.active_menu-link {
    /* background: #e62e2e;
    border-radius: 3px;
     padding: 3px 9px; */
}
.active_menu-link>a {
    /* color: #fff!important;
    font-weight: 600; */
}
.main-header-menu {
    list-style: none;
}
/* active page menu css end here  */

/* main-menu css end here  */
/* ================================
   RESPONSIVE
================================== */
/* header menu1 css start here  */
@media (min-width: 768px) {
  button#mobileToggle {
    display: none;
}
.main-header-menu {
    list-style: none;.header-logo img
    gap: 24px;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    grid-column-gap: 18px;
    grid-row-gap: 38px;
    flex-flow: wrap;
    display: flex;
    width: 100%;
    max-width: 702px;
    margin-left: 68px;
}


.header-nav {
    width: 93%;
    display: flex;
    justify-content: center;
}

.header-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% , -50%);
}

.header-icons {
    display: flex;
    justify-content: end;
    margin-right:18px;
}

.main-header-menu li:nth-child(3) {
    margin-left: auto!important;
}
.header-logo img {
    max-width: 200px;
    height: auto!important;
}
}
/* header menu1 css end here  */
@media (max-width: 1311px) {
.header-wrapper {
    margin-inline: 23px!important;
}
.top-menu-inner, .page-width, .stl-inner, #category-grid-template--20310968336613__category_grid_r4DjAF .cg-wrapper, #blog-grid-template--20310968336613__blog_grid_TNdWFP .blog-wrapper {
    padding-inline: 14px;
}
}
@media (max-width: 992px) {
  .header-wrapper {
    flex-direction: column;
    gap: 10px;
    height: auto;
    padding: 10px 20px;
  }

  .header-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}


@media (max-width: 600px) {
 .footer-columns.columns-4 {
    grid-template-columns: repeat(1,1fr)!important;
}
  .site-title {
    font-size: 1.3rem;
  }

  .header-nav a {
    font-size: 0.95rem;
  }

  .header-logo img {
    height: 35px;
  }
}
@media (max-width: 375px) {
.top-menu-links {
    gap: 13px!important;
}
}
/* Feature Cards */
.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature-card {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 18px;
  max-width: 230px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.feature-card img {
  width: 100px;
  height:100px;
  margin-bottom: 15px;
  margin-left:40px;
}

.feature-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
.features-section {
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

/* LEFT SIDE: Feature Text Grid */
.features-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  flex: 1;
  min-width: 280px;
  max-width: 640px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-box .icon {
  font-size: 22px;
  color: #e92323;
  margin-top: 4px;
}

.feature-box h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.feature-box p {
  font-size: 14px;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

/* RIGHT SIDE: Image */
.features-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.features-image img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }
.mobile-menu-panel.open {
    display: block !important;
    position: absolute;
    top: 0;
    background: #fff;
    left: 0;
    margin: 0 !important;
    padding: 1rem 1.5rem !important;
    max-width: 80%;
    box-shadow: 0.25rem 0.25rem 1rem hsl(0, 0%, 0%, 15%);
    width: 100%;
}
.mobile-menu-panel.open .header-logo {
  margin-block: 1rem;
}
.mobile-menu-panel.open .main-header-menu {
    display: flex;
    flex-direction: column;
    padding-block: 15px;
}
  .mobile-menu-panel {
    display: none!important;
}
.responsive_menu1 {
    max-width: 1300px;
    margin: 0 auto;
    padding-inline: 1rem;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.mobile-menu-toggle {
    width: 35px;
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    border: 0;
    background: unset;
}
  .features-text-grid {
    grid-template-columns: 1fr;
  }
}
.benefits-scroller {
  width: 100%;
  display: flex;
  justify-content: center;
  font-family: sans-serif;
}

.scroller-container {
  display: flex;
  width: 100%;
  max-width: 1400px;
  flex-wrap: wrap;
  min-height: 500px;
}

/* === LEFT SIDE === */
.scroller-left {
  flex: 1;
  background: url('https://cdn.shopify.com/s/files/1/0677/6176/6531/files/makeup-and-beauty-products.jpg?v=1759732590') no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
}

.scroller-left .content {
  max-width: 500px;
  text-align: left;
}

.scroller-left h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.scroller-left p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-red {
  display: inline-block;
  background-color: #ff4444;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}

/* === RIGHT SIDE === */
.scroller-right {
  flex: 1;
  background: #ff4444;
  color: white;
  padding: 40px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.scrolling-text {
  display: flex;
  flex-direction: column;
  animation: scrollUp 10s linear infinite;
}

.scrolling-text p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 16px 0;
  opacity: 0.95;
}

@keyframes scrollUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
  .scroller-container {
    flex-direction: column;
  }
  .scroller-left, .scroller-right {
    flex: none;
    width: 100%;
  }
}

 .custom-carousel-section{
        margin-top:40px;
    }
.custom-carousel-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.custom-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.custom-carousel-slide {
  flex: 0 0 20%; /* 5 slides per view */
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

.custom-carousel-slide img {
  width: 100%;
  border-radius: 12px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color:#ff4444;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  z-index: 10;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.custom-carousel-header{text-align:center; margin-bottom:20px;}

/* Responsive */
@media (max-width: 1024px) { .custom-carousel-slide { flex: 0 0 25%; } } /* 4 per view */
@media (max-width: 768px) { .custom-carousel-slide { flex: 0 0 33.33%; } } /* 3 per view */
@media (max-width: 480px) { .custom-carousel-slide { flex: 0 0 50%; } } /* 2 per view */

.footer-links-custom{display:flex; gap:15px; flex-wrap:wrap;color:white}
.footer-links-custom-ul{
  padding:0; margin:0; display:flex; gap:15px; flex-wrap:wrap;
}
.bundle-save-section {
  border: 2px solid #eee;
  padding: 25px;
  border-radius: 10px;
  margin-top: 40px;
  background: #fffaf8;
  text-align: center;
}

.bundle-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #222;
}

.bundle-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.bundle-item {
  max-width: 190px;
  text-align: center;
}
.bundle-grid .bundle-item {
  max-width: 100% !important;

}
.bundle-img {
  width: 100%;
  border-radius: 10px;
}

.bundle-name {
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0;
}

.bundle-price {
  font-size: 14px;
}

.price-compare {
  text-decoration: line-through;
  color: #bbb;
  margin-left: 6px;
}

.price-current {
  color: #e53935;
  font-weight: 700;
}

.bundle-symbol {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}

.bundle-total-box {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  text-align: left;
  width: 100%;
  max-width: 500px;
}

.bundle-summary-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}

.bundle-summary-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.bundle-pricing-summary p {
  margin: 8px 0;
  font-weight: 600;
}

.bundle-btn {
  display: block;
  width: 100%;
  padding: 10px 15px;
  background: #e53935;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
.bundle-btn:hover {
  background: #c62828;
}
.footer-wrapper {
  background-color: rgba(230, 46, 46, 1);
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}
ul.list-payment {
    margin-bottom: 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-logo img {
  max-width: 150px;
}

.footer-column h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-text {
  line-height: 1.6;
}

.footer-bottom {
    margin-top: 13px;
}

.list-payment {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.list-payment__item svg {
  width: 38px;
  height: 24px;
}
.footer-copy {
    font-size: 13px;
    font-family: Bricolage Grotesque;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-align: center;
    padding-inline: 1rem;
}
.newsletter-form:after {
    content: "";
    background-image: url("https://cdn.shopify.com/s/files/1/0777/4751/9717/files/Letter.png?v=1763973510");
    background-size: 22px 22px;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
span.currency-code {
    font-size: 14px;
    font-family: 'Bricolage Grotesque';
    color: #321004;
}
.newsletter-form input[type="email"]:focus {
    outline: none !important;
    border-bottom: 1px solid #444443 !important;
    box-shadow: none !important;
}
.newsletter-form {
    margin-top: 20px;
    position: relative;
}

/* stl-image css start */
.stl-image-wrapper.stl-image-wrapper--large {
    position: relative;
}

.stl-image-wrapper.stl-image-wrapper--large:before {
    content: "";
    position: absolute;
    top: 200px;
    left: 148px;
    width: 80px;
    height: 80px;
    background-image: url(/cdn/shop/files/Group_68.png?v=1763973986);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 5;
    pointer-events: none;
}
/* stl-image end here  */
/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 20px;
  }
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
}

.product-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-gallery img {
  width: 100%;
  border-radius: 12px;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-price {
  font-size: 22px;
  margin-bottom: 15px;
}

.sale-price {
  color: #e60023;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 8px;
}

.add-to-cart {
  background: #111;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  font-size: 16px;
  transition: background 0.3s;
}

.add-to-cart:hover {
  background: #333;
}

.product-description {
  margin-top: 60px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}
.related-products {
  margin-top: 60px;
}
.related-products h2 {
  font-size: 24px;
  margin-bottom: 25px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.related-item {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #000;
}
.related-thumb img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}
.related-thumb img:hover {
  transform: scale(1.05);
}
.related-title {
  font-weight: 500;
  margin: 10px 0 5px;
}
.related-price {
  color: #555;
}
.sticky-bar {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  z-index: 999;
  transition: bottom 0.4s ease;
  padding: 12px 0;
}
.sticky-bar.show {
  bottom: 0;
}
.sticky-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.sticky-info {
  display: flex;
  flex-direction: column;
}
.sticky-title {
  font-weight: 600;
  font-size: 16px;
}
.sticky-price .sale {
  color: #e60023;
  font-weight: bold;
}
.sticky-price .old {
  text-decoration: line-through;
  color: #999;
  margin-left: 6px;
}
.sticky-select {
  padding: 6px;
  margin-right: 10px;
}
.sticky-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s;
}
.sticky-btn:hover {
  background: #333;
}

@media (max-width: 768px) {
  .sticky-inner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.filters-sidebar { float:left; width:220px; margin-right:30px; }
.filters-content { display:block; padding:10px; border:1px solid #ddd; border-radius:6px; }
.mobile-filter-btn { display:none; margin-bottom:10px; }
.mobile-sort { display:none; position:fixed; bottom:0; width:100%; background:#fff; padding:10px; box-shadow:0 -2px 8px rgba(0,0,0,0.1); }
.product-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:20px; }
.product-card { border:1px solid #eee; padding:10px; border-radius:6px; text-align:center; transition:0.3s; }
.product-card:hover { box-shadow:0 2px 10px rgba(0,0,0,0.1); }

@media (max-width:768px){
  .filters-sidebar { display:none; }
  .mobile-filter-btn { display:block; background:#111; color:#fff; padding:8px 12px; border:none; border-radius:6px; }
  .filters-content.show { display:block; position:absolute; top:50px; left:0; width:80%; background:#fff; z-index:999; box-shadow:0 2px 10px rgba(0,0,0,0.2); padding:15px; }
  .mobile-sort { display:block; }
}


.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 5px;
}
@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}


.cart-upsells {
  padding: 15px 20px;
  border-top: 1px solid #eee;
}
.cart-upsells h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.upsell-products {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.upsell-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.upsell-item img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  object-fit: cover;
  object-position: top;
}
.upsell-item button {
  background: #708787;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.upsell-item button:hover {
  background: #607575;
}
.hidden{
  display:none !important;
}
.inactive{
  display:none;
}
.cart-discount {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.cart-discount label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.discount-input {
  display: flex;
  gap: 8px;
}

.discount-input input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.discount-input button {
  background: #708787;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.discount-input button:hover {
  background: #607575;
}

.discount-message {
  font-size: 13px;
  margin-top: 6px;
  color: green;
}

.cart-badges {
  margin-top: 1rem;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem; /* spacing between badges */
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-payment-item {
  display: flex;
  align-items: center;
}

.cart-item .regular-price {
  color: #888;
  margin-right: 5px;
}
.cart-item .sale-price {
  color: #e53935;
  font-weight: bold;
}
/* Cart Note Styles */
.cart-note {
  margin: 15px 0;
  padding: 10px;
  background-color: #f8f9fa; /* light grey background */
  border: 1px solid #e0e0e0; /* subtle border */
  border-radius: 6px;
  font-family: Arial, sans-serif;
}

.cart-note label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  font-size: 14px;
}

.cart-note textarea {
  width: 100%;
  min-height: 60px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.cart-note textarea:focus {
  border-color: #708787; /* blue border on focus */
  outline: none;
}
/* cart-drawer page css start here  */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.cart-drawer.active { right: 0; }
.cart-overlay {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.5);
  display:none;
  z-index: 9998;
}
.cart-overlay.active { display:block; }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}
.cart-header h2 { margin:0; font-size:clamp(1.25rem, 2vw + 0.5rem, 32px); font-weight:800; }
.close-cart { font-size:24px; border:none; background:none; cursor:pointer; }

.cart-items {
  flex-grow: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cart-item {
  display: flex;
  gap: 15px;
  align-items: center;
  position: relative;
}
.cart-item img { width:100px; aspect-ratio: 1; object-fit:cover; object-position: top; border-radius:6px; }
.cart-item-info { flex:1; }
.cart-item-info p { margin:2px 0; line-height: 1.25; font-weight: 600; }

.cart-price .price {
  color: #708787;
}

.qty-control {
  display:flex;
  gap:5px;
  align-items:center;
  margin-top:5px;
}
.qty-control button {
  width:24px; height:24px;
  border:none; background:#eee; cursor:pointer; font-weight:600; border-radius:4px;
}
.qty-control input {
  width:40px; text-align:center; border:1px solid #ccc; border-radius:4px; height:24px;
}

.cart-item-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: start;
}

.delete-item {
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #999;
    margin-left: 0.5rem;
}
.delete-item:hover { color:red; }

.cart-footer {
  padding:20px;
  border-top:1px solid #eee;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.cart-footer .btn { display:block; text-align:center; padding:12px; border-radius:6px; color:#fff; text-decoration:none; transition:background 0.2s; }
.btn-view-cart { background:#888; }
.btn-view-cart:hover { background:#666; }
.btn-checkout { background:#708787; }
.btn-checkout:hover { background:#607575; }

.cart-total {
  display:flex; justify-content:space-between; font-weight:700; font-size:1.5rem;
}
.loader { text-align:center; color:#555; font-size:16px; margin-top:50px; }
/* Optional: Make it stand out slightly in the drawer */
.cart-drawer .cart-note {
  animation: fadeIn 0.4s ease;
}

.cart-free-shipping {
  padding: 10px 20px;
 
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.progress-wrapper {
  width: 100%;
  height: 12px;
  background: #ddd;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin-top: 5px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background:rgb(244, 7, 50);
  transition: width 0.5s ease;
}

.truck {
  position: absolute;
  top: -10px; /* Align with progress bar */
  left: 0%;
  font-size: 18px;
  transition: left 0.5s ease;

  /* Flip horizontally to face right */
  transform: scaleX(-1);
}

/* cart-Drawer page css end here  */


/* Empty Cart Styling */
.cart-empty {
  text-align: center;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.cart-empty p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.cart-empty .btn-continue-shopping {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ff6f61; /* Shopify-style accent color */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cart-empty .btn-continue-shopping:hover {
  background-color: #ff3b2e;
  transform: translateY(-2px);
}


/* Simple fadeIn animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-5px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* === Bundle Price === */
.bundle-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 8px;
}

.bundle-label input[type="radio"] {
  margin: 0;
}

.bundle-text {
  font-weight: 500;
}

.bundle-price {
  font-weight: 600;
  margin-left: auto;
}

.bundle-save {
  font-size: 13px;
  color: #27ae60;
  margin-left: auto;
}

.compare-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}


.cart-price {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  gap: 6px;
  align-items: center;
}
/*my code */

.accordion-toggle {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  background: #f7f7f7;
  border: none;
  padding: 12px 40px 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.accordion-toggle::after {
  content: "▼"; /* down arrow */
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle::after {
  transform: translateY(-50%) rotate(180deg); /* flip to up arrow */
}

.accordion-panel {
  display: none;
  padding: 0 16px 16px;
  background: #fff;
  border-left: 2px solid #e5e5e5;
  border-right: 2px solid #e5e5e5;
  border-bottom: 2px solid #e5e5e5;
}

.accordion-item.active .accordion-panel {
  display: block;
}


/* 🔹 BUTTON HOVER EFFECTS */
.btn, .button {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

.btn::before, .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000;
  transition: all 0.4s ease;
  z-index: -1;
}

.btn:hover::before, .button:hover::before {
  left: 0;
}

.btn:hover, .button:hover {
  color: #fff !important;
}


p.footer-subtext {
    letter-spacing: 1px;
    color: #321004;
    font-size: 12px;
    font-weight: 500;
}
.list-payment img {
    max-width: 47px;
}






/* 11/28/2025 */
.scroll-top {
  z-index: 999999;
}

#search-overlay {
  --header-text-color: #708787;
}

#search-overlay .search-overlay-content {
    display: flex;
    flex-wrap: wrap;
}
#search-overlay .close-search {
    position: static;
    order: 2;
    width: 50px;
    color: red;
}
#header-search-form {
    flex: 1;
    contain: layout;
}
#search-overlay #header-search-input {
    margin-bottom: 0;
    border-radius: 0.5rem;
    padding-right: 2rem;
}

#voice-search-btn {
    width: 30px;
    height: 30px;
    translate: -0.5rem;
    right: 0;
}

#header-search-results:not(:empty) {
    margin-top: 1.5rem;
}
#header-search-results {
    order: 3;
    flex: 100%;
}
#search-overlay .search-bottom {
  flex: 100%;
  border-top: 1px solid hsl(0, 0%, 0%, 20%);
    padding-top: 1rem;
}

#search-overlay .search-right {
    display: grid;
    gap: 1rem;
    grid-auto-rows: max-content;
    grid-auto-flow: dense;
}
#search-overlay .product-card {
    margin: 0;
}
#search-overlay .product-card a {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    text-align: left;
    width: 100%;
}
#search-overlay .product-card a img {
    width: 80px;
    aspect-ratio: 1;
    height: auto;
    object-position: top;
}

#product-grid .product-card {
    padding: 0;
}
#product-grid .product-card a {
    display: block;
    width: 100%;
}
#product-grid .product-card a img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin: 0;
    border-radius: 0;
    object-position: top;
}
#product-grid .product-info {
    width: 100%;
    gap: 0;
}
#product-grid .product-info form {
    width: 100%;
    display: block;
}
#product-grid .product-info .price {
    color: #708787;
}
/* #product-grid .product-info form button {
    background-color: #708787;
}
#product-grid .product-info form button:hover {
    background-color: #607575;
} */
#sort-by {
    padding: 0.35em 1em;
    border-radius: 0.25em;
    border: 1px solid hsl(0, 0%, 0%, 20%);
}

.myslide-breadcrumbs {
  padding-inline: 1rem !important;
}

@media (max-width: 991.98px) {
  #sticky-bar {
    display: none !important;
  }
  .mobile-sticky-bar.mobile-sticky-bar {
    padding: 8px 14px;
  }
}

.buy-panel {
  padding: 0 !important;
}

/* dark mode*/
/* ===========================
   UNIVERSAL DARK MODE FIX
=========================== */
.dark-mode {
  --site-bg-color: #000000;
  --site-text-color: #ffffff;
  --surface-bg-color: #111111;
  --surface-text-color: #ffffff;
  --card-bg-color: #1a1a1a;
  --card-text-color: #ffffff;
  --border-color: #333333;
  --link-color: #e62e2e; /* Keep your red accent */
}

/* 🔥 Force Full Site Dark Mode */
.dark-mode,
.dark-mode body {
  background-color: var(--site-bg-color) !important;
  color: var(--site-text-color) !important;
}

.dark-mode * {
  background-color: transparent !important;
  border-color: var(--border-color) !important;
  color: var(--site-text-color) !important;
}

/* 🎯 Specific areas that need solid backgrounds */
.dark-mode header,
.dark-mode footer,
.dark-mode .main-header,
.dark-mode .mega-menu,
.dark-mode .product-card,
.dark-mode .container,
.dark-mode .page-width,
.dark-mode .sticky-bar,
.dark-mode #search-overlay .search-overlay-content,
.dark-mode .cart-drawer,
.dark-mode .accordion-panel,
.dark-mode .bundle-save-section,
.dark-mode .mobile-menu-panel.open {
  background-color: var(--surface-bg-color) !important;
}

/* 🛍 Product Card & Box — clean black */
.dark-mode .product-card,
.dark-mode .card,
.dark-mode .box {
  background-color: var(--card-bg-color) !important;
  border-color: var(--border-color) !important;
}

/* ❤️ Keep accent red */
.dark-mode a,
.dark-mode .add-to-cart,
.dark-mode .btn,
.dark-mode .button {
  color: var(--site-text-color) !important;
}

.dark-mode a:hover,
.dark-mode .btn:hover,
.dark-mode .button:hover {
  color: var(--site-text-color) !important;
}

/* 🔄 SVG Icons (cart, account, wishlist) */
.dark-mode svg path,
.dark-mode svg line,
.dark-mode svg circle {
  stroke: var(--site-text-color) !important;
  fill: var(--site-text-color) !important;
}

/* 🔳 Search Overlay Input */
.dark-mode #header-search-input {
  background-color: var(--card-bg-color) !important;
  border-color: var(--border-color) !important;
}

/* 🚫 Prevent images/background photos from turning black */
.dark-mode img,
.dark-mode .scroller-left,
.dark-mode .stl-image-wrapper {
  background-color: transparent !important;
  filter: none !important;
}

/* 🌑 Remove bright blue background */
.scroller-right {
  transition: none !important;
}
.dark-mode .scroller-right {
  background: var(--surface-bg-color) !important;
  color: var(--site-text-color) !important;
}

/* Newsletter inputs */
.dark-mode .newsletter-form input {
  background-color: var(--card-bg-color) !important;
  color: #fff !important;
  border-color: var(--border-color) !important;
}

/* Links in Dark Mode */
.dark-mode a {
  color: #fff !important;
}

/* SVG Icons */
.dark-mode svg path {
  stroke: #fff !important;
  fill: #fff !important;
}
.dark-toggle{
  border: 0px;background: #fff;
}

/* ===========================
   REVIEWS & RATINGS – DARK MODE
=========================== */

/* Reviews Wrapper */
.dark-mode .custom-reviews-wrapper,
.dark-mode .reviews-accordion {
  background-color: var(--surface-bg-color) !important;
  color: var(--site-text-color) !important;
  border-color: var(--border-color) !important;
}

/* Accordion Header */
.dark-mode .reviews-accordion-header {
  background-color: var(--surface-bg-color) !important;
  color: var(--site-text-color) !important;
  border-bottom: 1px solid var(--border-color) !important;
}

/* Accordion Content */
.dark-mode .reviews-accordion-content {
  background-color: var(--card-bg-color) !important;
}

/* Review Cards */
.dark-mode .review-card {
  background-color: var(--card-bg-color) !important;
  border-color: var(--border-color) !important;
}

/* Review Titles */
.dark-mode .review-title {
  color: var(--site-text-color) !important;
}

/* Review Text */
.dark-mode .review-text,
.dark-mode .review-name,
.dark-mode .no-review {
  color: var(--site-text-color) !important;
}

/* ===========================
   REVIEW FORM – DARK MODE
=========================== */
.dark-mode .review-form input,
.dark-mode .review-form select,
.dark-mode .review-form textarea {
  background-color: #000 !important;
  color: #fff !important;
  border-color: var(--border-color) !important;
}

.dark-mode .review-form input::placeholder,
.dark-mode .review-form textarea::placeholder {
  color: #aaaaaa !important;
}

/* Submit Button */
.dark-mode .review-submit-btn {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.dark-mode .review-submit-btn:hover {
  background-color: #dddddd !important;
}

/* ===========================
   RATING STARS & GRAPH – DARK MODE
=========================== */

/* Star Color */
.dark-mode .stars,
.dark-mode .avg-stars {
  color: #f5a623 !important;
}

/* Rating Summary Container */
.dark-mode .reviews-summary {
  background-color: var(--card-bg-color) !important;
  border-color: var(--border-color) !important;
}

/* Rating Bars */
.dark-mode .rating-row span {
  color: var(--site-text-color) !important;
}

.dark-mode .bar {
  background-color: #2a2a2a !important;
}

.dark-mode .bar span {
  background-color: #f5a623 !important;
}

/* Average Rating Number */
.dark-mode .avg-number {
  color: var(--site-text-color) !important;
}

.dark-mode .avg-count {
  color: #bbbbbb !important;
}

/* ===========================
   REVIEW HIGHLIGHT (SCROLL)
=========================== */
.dark-mode .review-highlight {
  animation: reviewFlashDark 1.2s ease;
}

@keyframes reviewFlashDark {
  0% {
    background-color: rgba(245, 166, 35, 0.25);
  }
  100% {
    background-color: transparent;
  }
}

.progress-wrapper .progress-bar {
    contain: paint;
}
.progress-wrapper .progress-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(315deg,rgba(255,255,255,.4) 25%,transparent 0,transparent 50%,rgba(255,255,255,.4) 0,rgba(255,255,255,.4) 75%,transparent 0,transparent);
    background-size: 1rem 1rem;
    animation: progress 4s linear infinite;
}

@keyframes progress {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 10rem;
    }
}

#cart-drawer .message {
  font-weight: 500;            /* softer, theme-like */
  font-size: 13px;
  color: #222;
}

/* Quantity badge */
.qty-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item {
  position: relative;
}

/* Price row */
.cart-price {
  display: flex;
  align-items: center;         /* FIX alignment */
  gap: 6px;
  margin-top: 2px;
}

/* Original price */
.price-original {
  text-decoration: line-through;
  color: #8c8c8c;
  font-size: 13px;
}

/* Final price */
.price-final {
  font-weight: 600;
  font-size: 14px;
  color: #111;
}
/* Discount note (less aggressive green) */
.discount-note {
  font-size: 12px;
  font-weight: 500;
  color: #607575;
  margin-top: 2px;
}

/* Total savings */
.cart-savings {
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px dashed #e5e5e5;
  font-size: 13px;
  font-weight: 600;
  color: #607575;
}


.bundle-box {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  background: #fafafa;
  margin-top: 30px;
}

.bundle-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.bundle-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.bundle-card {
  background: white;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 12px;
  display: flex;
  align-items: center;
  transition: 0.2s;
}

.bundle-card:hover {
  border-color: #333;
}

.bundle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.bundle-img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
}

.bundle-info {
  flex: 1;
}

.bundle-name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.bundle-price {
  color: #444;
  font-size: 14px;
}

.bundle-summary {
  margin-top: 15px;
  font-size: 18px;
}

.bundle-btn {
  display: inline-block;
  width: 100%;
  background: #111;
  color: white;
  padding: 12px;
  margin-top: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.bundle-btn:hover {
  background: #222;
}

.bundle-subtotal-row,
.bundle-discount-row {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  font-weight: 500;
}

.bundle-discount-row {
  color: #0a7a2f;
}

.cart-total {
  border-top: 1px solid #eee;
  margin-top: 10px;
  padding-top: 10px;
  font-weight: 700;
}



.contact-section {
    padding: 60px 0 !important;
}

.cart-item-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 0.575rem;
}

.cart-item-header .cart-item-title {
    font-size: clamp(1rem, 1vw + 0.1rem, 1.25rem);
    font-weight: 800;
}
.cart-item-header .price-final {
    color: #708787;
    font-weight: 800;
    font-size: 1rem;
}

.upsell-item p {
    margin-right: auto;
}

.cart-cards.mobile-only .cart-card img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    height: auto;
    object-position: top;
}

@media (max-width: 991.98px) {
  .premium-slideshow .slide-content {
    padding-inline: 1rem;
    width: 100%;
  }

  .product-gallery img {
    aspect-ratio: 16 / 12;
    object-fit: cover;
    object-position: top;
  }

  .main-article-section {
    padding-inline: 0 !important;
}
.article-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
}

.article-featured-image img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.product-lightbox .product-lightbox__dialog {
    height: 100%;
}

.shopify-payment-button__button--unbranded, .contact-btn-custom {
  background: #708686 !important;
}

.collection-title.collection-title {
  margin-bottom: 1.5rem;
}
.footer-wrapper.footer-wrapper {
  margin-top: 0 !important;
}

.currency-list {
  background-color: #fff;
}


@media (max-width: 575.98px) {
  .product-grid.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
  }
  .card-product {
    width: 100%;
  }
}
@media (max-width: 768px) {
    .search-results-grid.search-results-grid {
      flex-direction: row !important;
    }
}

/* Button wrapper (optional alignment control) */
.custom-link-button {
  margin: 15px 0;
}

/* Main button */
.custom-button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: 2px solid #000;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover state */
.custom-button:hover {
  background-color: #fff;
  color: #000;
  border-color: #000;
}

/* Focus (accessibility) */
.custom-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3);
}

/* Active state */
.custom-button:active {
  transform: scale(0.97);
}

.collection-image img {
  object-position: top;
}


/* Dynamic Buy It Now button */
.shopify-payment-button__button {
  border-radius: 5px !important;
  padding: 14px 34px !important;
  font-weight: 600;
}


.payment-trust-badges {
  text-align: center;
  margin-top: 16px;
}

.payment-trust-badges .trust-text {
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}

.payment-trust-badges .badges-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-trust-badges img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}
/* ===== Reviews Wrapper ===== */
.custom-reviews-wrapper {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 16px;
  display: grid;
  gap: 40px;
}

/* ===== Card Style ===== */
.review-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 24px;
}

/* ===== Titles ===== */
.review-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ===== Form ===== */
.review-field {
  margin-bottom: 16px;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
}

.review-form textarea {
  min-height: 100px;
  resize: vertical;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  outline: none;
  border-color: #000;
}

/* ===== Submit Button ===== */
.review-submit-btn {
  background: #000;
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease;
}

.review-submit-btn:hover {
  background: #222;
}

/* ===== Message ===== */
.review-msg {
  margin-top: 12px;
  font-size: 14px;
}

/* ===== Reviews List ===== */
.single-review {
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.single-review:last-child {
  border-bottom: none;
}

/* ===== Review Header ===== */
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.review-name {
  font-weight: 600;
  font-size: 15px;
}

/* ===== Stars ===== */
.stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ===== Review Text ===== */
.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* ===== Empty State ===== */
.no-review {
  font-size: 14px;
  color: #777;
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
  .review-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
/* Scroll highlight effect */
.review-highlight {
  animation: reviewFlash 1.2s ease;
}

@keyframes reviewFlash {
  0% {
    background-color: rgba(255, 215, 0, 0.25);
  }
  100% {
    background-color: transparent;
  }
}

/* Make stars look clickable */
.avg-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #f5a623;
  margin-bottom:10px
}

.avg-stars span {
  color: #666;
  font-weight: 500;
  font-size: 13px;
}

.avg-stars:hover {
  text-decoration: underline;
}
/* ===== Reviews Accordion ===== */
.reviews-accordion {
  
  border: 1px solid #eaeaea;
  border-radius: 10px;
  overflow: hidden;
}

/* Header */
.reviews-accordion-header {
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.reviews-accordion-header:hover {
  background: #f9f9f9;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

/* Content */
.reviews-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fafafa;
}

/* Open state */
.reviews-accordion.open .reviews-accordion-content {
  max-height: 2000px; /* enough for content */
}

.reviews-accordion.open .accordion-icon {
  transform: rotate(180deg);
}

/* Inner spacing */
.reviews-accordion-content .review-card {
  margin: 20px;
}
/* ===== Reviews Summary ===== */
.reviews-summary {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  align-items: center;
}

/* Rating Bars */
.rating-bars {
  flex: 1;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
}

.rating-row span {
  width: 12px;
}

.bar {
  flex: 1;
  background: #eee;
  border-radius: 6px;
  height: 8px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: #f5a623;
  border-radius: 6px;
}

/* Average Rating */
.rating-average {
  min-width: 120px;
  text-align: center;
}

.avg-number {
  font-size: 42px;
  font-weight: 700;
}

.avg-stars {
  color: #f5a623;
  font-size: 16px;
  margin: 4px 0;
}

.avg-count {
  font-size: 13px;
  color: #777;
}

/* Mobile */
@media (max-width: 640px) {
  .reviews-summary {
    flex-direction: column;
    align-items: stretch;
  }
}


.blog-item svg {
  padding: 0 !important;
}
 
.image-banner__bg svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.banner-image {
  overflow: hidden;
  border-radius: 0.5rem;
}
.banner-image .banner-placeholder {
  aspect-ratio: 1;
  transition: 300ms ease;
}
.banner-image:hover .banner-placeholder {
  scale: 1.15;
}
 
.blog-placeholder {
  transition: 300ms ease;
}
 
.blog-item:hover .blog-placeholder {
  scale: 1.15;
}
 
.image-wrap .placeholder-svg {
  transition: 300ms ease;
}
.image-wrap:hover .placeholder-svg {
  scale: 1.15;
}
 
.cg-placeholder {
  transition: 300ms ease;
}
.image-wrap:hover .cg-placeholder {
  scale: 1.15;
}
 
.promo-placeholder {
  aspect-ratio: 1 / 1.5;
}

.image-wrap {
  display: block;
}

/*new css*/

.rating-stars{
display:flex;
gap:8px;
align-items:center;
cursor:pointer;
}

.stars-wrap{
position:relative;
font-size:18px;
line-height:1;
}

.stars-bg{
white-space:nowrap;
}

.stars-fill{
position:absolute;
left:0;
top:0;
overflow:hidden;
white-space:nowrap;
}

.rating-text{
color:#666;
}
.custom-reviews{
margin:20px 0;
position:relative;
}

.custom-review{
display:none;
padding:6px;
}

.custom-review.active{
display:block;
}

.review-card{
background:#fff;
border-radius:14px;
padding:16px;
text-align:center;
box-shadow:0 6px 20px rgba(0,0,0,.06)
}

.review-avatar{
width:56px;
height:56px;
border-radius:50%;
object-fit:cover;
margin:0 auto 8px
}

.review-name{font-weight:700;margin-bottom:4px}

.review-stars{color:var(--star);margin-bottom:6px}

.review-text{font-size:14px;color:#555}

.review-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
width:32px;
height:32px;
background:#000;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer
}

.review-prev{left:-18px}
.review-next{right:-18px}

.review-dots{
display:flex;
justify-content:center;
gap:6px;
margin-top:10px
}

.review-dots span{
width:7px;
height:7px;
background:#ccc;
border-radius:50%;
cursor:pointer;
}

.review-dots span.active{
background:#000
}

@media(max-width:768px){
.review-arrow{display:none}
}


.review-avatars{
display:flex;
align-items:center;
gap:10px;
}

.ra-avatars{
display:flex;
}

.ra-avatars img{
width:36px;
height:36px;
border-radius:50%;
object-fit:cover;
margin-left:-10px;
border:2px solid #fff;
}

.ra-avatars img:first-child{
margin-left:0;
}

.ra-text{
line-height:1.2;
}

.product-custom-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:8px;
}