/* Base Styles and Typography */
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--white);
  color: var(--black);
  scroll-behavior: smooth;
}
:root {
  --primary-color: #1f5cff;
  --primary-dark: #174bd1;
  --primary-light: rgba(31, 92, 255, .10);
  --accent-color: #ff9800;
  --accent-dark: #f57c00;
  --accent-light: #ffe0b2;
  --bg-light: #f9f9f9;
  --border-color: #d9d9d9;
  --white: #ffffff;
  --black: #060606;
}
::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.no-scroll {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2 !important;
  text-transform: capitalize;
}
/* Colors */
.bg-primary {
  background-color: var(--primary-color);
}
.bg-primary-dark {
  background-color: var(--primary-dark);
}
.bg-primary-light {
  background-color: var(--primary-light);
}
.text-primary {
  color: var(--primary-color);
}
.hover\:bg-primary:hover {
  background-color: var(--primary-dark);
}
.hover\:bg-primary-dark:hover {
  background-color: var(--primary-dark);
}
.hover\:text-primary:hover {
  color: var(--primary-color);
}
.border-primary {
  border-color: var(--primary-color);
}
.bg-secondary {
  background-color: var(--accent-color);
}
.bg-secondary-dark {
  background-color: var(--accent-dark);
}
.text-secondary {
  color: var(--accent-color);
}
.bg-accent {
  background-color: var(--accent-color);
}
.bg-secondary-light {
  background-color: var(--accent-light);
}
/* btn-css */
.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  gap: 10px;
}
.btn-primary:hover {
  background-color: var(--primary-dark);
}
.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  gap: 10px;
}
.btn-outline:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

/* site-header */
.header-icons svg {
  height: 22px;
  width: 22px;
}
.header-icons svg path {
  fill: var(--black);
}
.site-header .menu-dropdown {
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out 0s;
  -webkit-transition: all 300ms ease-in-out 0s;
  -moz-transition: all 300ms ease-in-out 0s;
  -ms-transition: all 300ms ease-in-out 0s;
  -o-transition: all 300ms ease-in-out 0s;
  transform-origin: top;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
}
.site-header .main-nav>.has-item:hover>.menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: scaleY(100%);
  -webkit-transform: scaleY(100%);
  -moz-transform: scaleY(100%);
  -ms-transform: scaleY(100%);
  -o-transform: scaleY(100%);
}
.site-header .main-nav>.has-item>a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid #374151;
  border-left: 2px solid #374151;
  transform: translateY(-50%) rotate(225deg);
  -webkit-transform: translateY(-50%) rotate(225deg);
  -moz-transform: translateY(-50%) rotate(225deg);
  -ms-transform: translateY(-50%) rotate(225deg);
  -o-transform: translateY(-50%) rotate(225deg);
  transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  z-index: 1;
}
.site-header .main-nav>.has-item:hover>a:after {
  border-color: var(--primary-color);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.rotate-180 {
  transform: rotate(180deg);
}
.search-bar {
  position: relative;
  display: flex;
  align-items: center;
}
.search-bar input {
  width: 100%;
  padding: 10px 100px 10px 10px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.2s;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  outline: none;
}
.search-bar input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(31, 92, 255, .20);
}
.search-bar i {
  position: absolute;
  left: 16px;
}
.search-bar button {
  position: absolute;
  right: 0.5rem;
  padding: 4px 13px;
  font-size: 14px;
  font-weight: 500;
}
.search-bar button:hover {
  background-color: var(--primary-dark);
}
.mobile-dropdown-content {
  display: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
}
.mobile-dropdown-content a {
  display: block;
  padding: 0.5rem 0;
}
.mobile-dropdown-toggle.active+.mobile-dropdown-content {
  display: block;
}
/* Animation for mobile menu */
.mobile-menu-enter {
  opacity: 0;
  transform: translateX(-100%);
}
.mobile-menu-enter-active {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 300ms, transform 300ms;
}
.mobile-menu-exit {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-exit-active {
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 300ms, transform 300ms;
}
.mobile-dropdown-content {
  display: none;
}
.mobile-dropdown-content.show {
  display: block;
}
.mobile-menu {
  width: 100%;
  max-width: 320px;
  right: 0;
}
.mobile-menu.show {
  transform: translateX(0);
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
}
/* cart-css */
.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 24rem;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  overflow-y: auto;
}
.cart-panel.open {
  transform: translateX(0);
}
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* The cart drawer is rendered next to `.fwc-shell`, not inside it. Keep its
   actions on the Full Width Category palette even when Tailwind injects its
   utility styles later in the document. */
#cart-panel {
  --primary-color: var(--fwc-primary, #1f5cff);
  --primary-dark: #174bd1;
  --border-color: var(--fwc-line, #e6eaf0);
  color: var(--fwc-ink, #0f172a);
}

#cart-panel .btn-primary {
  background-color: var(--fwc-primary, #1f5cff) !important;
  border-color: var(--fwc-primary, #1f5cff) !important;
  color: #fff !important;
}

#cart-panel .btn-primary:hover {
  background-color: #174bd1 !important;
  border-color: #174bd1 !important;
}

#cart-panel .btn-outline {
  background-color: #fff !important;
  border-color: var(--fwc-primary, #1f5cff) !important;
  color: var(--fwc-primary, #1f5cff) !important;
}

#cart-panel .btn-outline:hover {
  background-color: var(--fwc-primary, #1f5cff) !important;
  border-color: var(--fwc-primary, #1f5cff) !important;
  color: #fff !important;
}

#cart-panel .text-primary,
#cart-panel .hover\:text-primary:hover {
  color: var(--fwc-primary, #1f5cff) !important;
}

#cart-panel .text-primary-dark {
  color: var(--fwc-primary-dark, #071735) !important;
}
.qty-spinner svg path {
  stroke: var(--black);
}
.home-banner-sec .home-arrow-wrapper .swiper-button-prev,
.home-banner-sec .home-arrow-wrapper .swiper-button-next {
  position: unset;
}
/* Product grid and cards */
.product-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-card img {
  transition: transform 0.3s ease-in-out;
}
/* product-tab-sec */
.product-tab-sec .tab-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
}
/* Blog cards */
.blog-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
/* newsletter-css */
.newsletter-sec .form-input {
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--white);
}
.newsletter-sec .form-input::placeholder {
  color: var(--white);
}
/* Form elements */
.form-input {
  width: 100%;
  outline: none;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  text-transform: capitalize;
}
.card {
  background-color: var(--white);
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
}
select {
  padding: 8px 35px 8px 15px !important;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23000000' d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: calc(100% - 15px) 50%;
  outline: none;
}
/* Style for Swiper swiper navigation arrows */
.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
  outline: none;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--primary-dark);
}
/* Optional: use SVG icons inside these buttons */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-color: var(--white);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
/* Prev button icon */
.swiper-button-prev::after {
  mask-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 19l-7-7 7-7'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 19l-7-7 7-7'/%3E%3C/svg%3E");
}
/* Next button icon */
.swiper-button-next::after {
  mask-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5l7 7-7 7'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5l7 7-7 7'/%3E%3C/svg%3E");
}
.swiper {
  padding: 0 10px;
  margin: 0 -10px;
}
.swiper-slide {
  height: auto;
}
.swiper-button-next {
  right: 0;
  left: auto;
}
.swiper-button-prev {
  left: 0;
  right: auto;
}
.faq-icon svg path {
  fill: var(--white);
}
.search-popup {
  animation: slideDown 0.3s ease-out forwards;
}
/* common-banner-sec */
.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}
.thumbnail-slider .swiper-slide-thumb-active .thumb-image {
  border-color: var(--primary-color);
}
.tab-button.active {
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
}
/* product-list page css */
/* checkbox css */
.checkbox input {
  height: 15px;
  width: 15px;
  cursor: pointer;
}
.checkbox label, 
.radio-btn label {
    cursor: pointer;
}
.view-toggle.active {
  background-color: var(--primary-color);
  color: var(--white);
}
/* Responsive adjustments */
@media (max-width: 767px) {
  p,
  table,
  select, .form-input {
    font-size: 14px;
  }
  /* btn-css */
  .btn-primary,
  .btn-outline {
    font-size: 14px;
    padding: 10px 15px;
  }
  .header-icons svg {
    height: 20px;
    width: 20px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 35px;
    height: 35px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 20px;
    height: 20px;
  }
  .offer-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.33);
    z-index: 0;
  }
}

/* Article details page */
.fwc-page-content main:has(> section > .max-w-6xl) > section:not(.banner-section) {
  padding-top: 48px;
  padding-bottom: 80px;
}

.fwc-page-content main:has(> section > .max-w-6xl) > section > .max-w-6xl {
  width: min(1440px, calc(100% - 32px));
  max-width: 1440px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 52px);
  border: 0;
  border-radius: 20px;
  background: var(--fwc-bg);
  box-shadow: none;
}

.fwc-page-content main:has(> section > .max-w-6xl) .inline-block.bg-primary\/10 {
  padding: 8px 14px;
  border: 1px solid rgba(31, 92, 255, .14);
  border-radius: 999px;
  background: rgba(31, 92, 255, .09);
  color: var(--fwc-primary);
  font-weight: 500;
}

.fwc-page-content main:has(> section > .max-w-6xl) .lg\:mb-10 > h2 {
  max-width: 1000px;
  margin-bottom: 20px;
  color: var(--fwc-ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15 !important;
  letter-spacing: -.02em;
}

.fwc-page-content main:has(> section > .max-w-6xl) .lg\:mb-10 > .flex {
  padding-bottom: 20px;
  color: var(--fwc-muted);
  border-bottom: 1px solid var(--fwc-line);
}

.fwc-page-content main:has(> section > .max-w-6xl) img[alt="Emma Wilson"] {
  display: none;
}

.fwc-page-content main:has(> section > .max-w-6xl) img[alt="Emma Wilson"] + span::before {
  content: "\f007";
  width: 40px;
  height: 40px;
  margin-inline-end: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31, 92, 255, .10);
  color: var(--fwc-primary);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  vertical-align: middle;
}

.fwc-page-content main:has(> section > .max-w-6xl) .max-h-\[450px\] {
  max-height: 620px;
  min-height: 360px;
  border: 1px solid var(--fwc-line);
  border-radius: 16px;
  background: #f7f9fc;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .10);
}

.fwc-page-content main:has(> section > .max-w-6xl) .max-h-\[450px\] img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.fwc-page-content main:has(> section > .max-w-6xl) .lg\:mb-10 + div > p {
  color: #344054;
  font-size: 17px;
  line-height: 1.9;
}

.fwc-page-content main:has(> section > .max-w-6xl) .lg\:mb-10 + div > p h1,
.fwc-page-content main:has(> section > .max-w-6xl) .lg\:mb-10 + div > p h2,
.fwc-page-content main:has(> section > .max-w-6xl) .lg\:mb-10 + div > p h3 {
  margin: 28px 0 14px;
  color: var(--fwc-ink);
}

.fwc-page-content main:has(> section > .max-w-6xl) .border-t.border-b {
  margin-top: 36px;
  padding: 20px;
  border: 1px solid var(--fwc-line);
  border-radius: 14px;
  background: #f9fbff;
}

.fwc-page-content main:has(> section > .max-w-6xl) .border-t.border-b a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 92, 255, .14);
  border-radius: 50%;
  background: #fff;
  color: var(--fwc-primary);
}

.fwc-page-content main:has(> section > .max-w-6xl) .lg\:mt-12 > h2 {
  position: relative;
  padding-inline-start: 18px;
  font-size: clamp(24px, 3vw, 32px);
}

.fwc-page-content main:has(> section > .max-w-6xl) .lg\:mt-12 > h2::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 3px;
  bottom: 3px;
  width: 5px;
  border-radius: 999px;
  background: var(--fwc-primary);
}

.fwc-page-content main:has(> section > .max-w-6xl) .lg\:mt-12 .grid > a {
  overflow: hidden;
  padding-bottom: 20px;
  border: 1px solid var(--fwc-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fwc-page-content main:has(> section > .max-w-6xl) .lg\:mt-12 .grid > a:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 92, 255, .24);
  box-shadow: 0 20px 42px rgba(15, 23, 42, .11);
}

.fwc-page-content main:has(> section > .max-w-6xl) .lg\:mt-12 .grid > a > div,
.fwc-page-content main:has(> section > .max-w-6xl) .lg\:mt-12 .grid > a > span,
.fwc-page-content main:has(> section > .max-w-6xl) .lg\:mt-12 .grid > a > h3 {
  margin-inline: 18px;
}

.fwc-page-content main:has(> section > .max-w-6xl) .lg\:mt-12 .grid > a > div {
  margin: 0 0 16px;
  border-radius: 0;
}

@media (max-width: 860px) {
  .fwc-page-content main:has(> section > .max-w-6xl) > section > .max-w-6xl {
    width: min(1440px, calc(100% - 24px));
    border-radius: 16px;
  }

  .fwc-page-content main:has(> section > .max-w-6xl) .max-h-\[450px\],
  .fwc-page-content main:has(> section > .max-w-6xl) .max-h-\[450px\] img {
    min-height: 240px;
  }
}
/* responsive css */
@media (min-width: 640px) {
  .list-view .product-card {
    flex-direction: row;
    align-items: center;
    padding: 15px;
  }
  .list-view .product-img {
    width: 240px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
  .list-view .product-card .pro-btn-wrapper {
    transform: translate(0);
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
  }
}
.product_final_price{
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.product_orignal_price{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  font-size: 0.875rem;
  line-height: 1.25rem;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
}

/* order-track-page-start */
.order-track-page .account-info {
  box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08),
    0 0 0 1px rgba(182, 186, 203, 0.1);
}
.order-track-page .profile-img {
  border: 5px solid #f5f5f5;
}
.order-track-page #progressbar .active {
  color: var(--primary-color);
}

.order-track-page #progressbar .active .progressbar-icon {
  background-color: var(--primary-color);
}
.order-track-page #progressbar .active .progressbar-icon i {
  color: var(--white);
}
.order-track-page #progressbar li{
  opacity: 0.8;
}
.order-track-page #progressbar li.active{
  opacity: 1;
}
.order-track-page #progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #d3d3d3;
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 0;
}
.order-track-page #progressbar li.active:before,
.order-track-page #progressbar li.active:after {
  background: var(--primary-color);
}
.order-track-page .progress-bar {
  background-color: var(--primary-color);
}
.order-track-page .progressbar-wrapper {
  box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08),
    0 0 0 1px rgba(182, 186, 203, 0.1);
}

/* Select2 Custom Styles */
.select2-container--default .select2-selection--single {
    height: 38px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 0.375rem !important;
    padding: 0.5rem 0.75rem !important;
    background-color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 20px !important;
    padding-left: 0 !important;
    color: #374151 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-color) !important;
}

.select2-dropdown {
    border: 1px solid #e5e7eb !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e5e7eb !important;
    border-radius: 0.375rem !important;
    padding: 0.5rem !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.1) !important;
}

/* Match form-input focus state */
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.1) !important;
}


/* 6-6 */
.wishlist-btn.active{
  color: #ff0000;
}
.faq-col:last-of-type{
  margin-bottom: 0 !important;
}

.pdp-timer .time-svg {
  width: 60px;
  background: var(--primary-color);
  border-radius: 0.375rem;
  border: 1px solid var(--primary-color);
}
.pdp-timer .time-counter {
  gap: 15px;
}
.pdp-timer .time-counter #timer  div{
  background-color: #d9d9d980;
  width: 60px;
  padding: 8px;
  border-radius: 0.375rem;
  border: 1px solid var(--border-color);
  color: var(--black)
}
#timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
}
#timer span{
  color: var(--primary-color);
}
.time-counter svg {
  height: 30px;
  width: 30px;
}
.time-counter #timer span {
  margin-top: 5px;
  line-height: 1;
}

@media screen and (max-width:639px){
  .pdp-timer .time-svg {
      width: 43px;
  }
  .pdp-timer .time-counter #timer div {
      width: 43px;
      padding: 5px;
  }
  .time-counter #timer span{
      font-size: 13px;
  }
  .pdp-timer .time-counter,
  #timer{
      gap:10px;
  }
}



/********* RTL CSS **********/
/* home page rtl css  */
[dir="rtl"] .fas.fa-arrow-right,
[dir="rtl"] .header-icons #form_logout svg {
  transform: scaleX(-1);
}
[dir="rtl"] .swiper-button-next{
  right: 10px;
    left: auto;
} 
[dir="rtl"] .swiper-button-prev{
  left: 10px;
  right: auto;
}
[dir="rtl"] #mobile-menu,
[dir="rtl"] .cart-panel{
  left: 0;
  right: auto;
  transform: translateX(-100%)
}

[dir="rtl"] #mobile-menu.show,
[dir="rtl"] .cart-panel.open{
  transform: translate(0);
}
[dir="rtl"] select {
  padding: 8px 15px 8px 35px !important;
  background-position: 15px 50%;
}

/* inner-page-css */
[dir="rtl"] #mobile-filter {
  right: 0;
  left: auto;
}
@media screen and (max-width: 1023px) {
  [dir="rtl"] #mobile-filter.-translate-x-full {
    transform: translateX(100%);
  }
  [dir="rtl"] #mobile-filter {
    transform: translateX(0);
  }
}


[dir="rtl"] .pagination-wrapper svg,
[dir="rtl"] .details-btn svg,
[dir="rtl"] .continue-btn svg,
[dir="rtl"] .continue-btn i {
  transform: scaleX(-1);
}

[dir="rtl"] .collection-card img{
  transform: scale(-1);
  -webkit-transform: scale(-1);
  -moz-transform: scale(-1);
  -ms-transform: scale(-1);
  -o-transform: scale(-1);
}
[dir ="rtl"] .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{
  padding-right: 0 !important;
  padding-left: 8px !important;
  text-align: right;
}

/* Fullwidthcategory custom homepage */
:root {
  --fwc-bg: #f7f9fc;
  --fwc-surface: #ffffff;
  --fwc-ink: #0f172a;
  --fwc-muted: #667085;
  --fwc-line: #e6eaf0;
  --fwc-primary: #1f5cff;
  --fwc-primary-dark: #071735;
  --fwc-accent: #24c36b;
  --fwc-warm: #ff7a45;
  --fwc-radius: 8px;
  --fwc-slider-radius: 32px;
  --fwc-shadow: 0 20px 55px rgba(15, 23, 42, .12);
}

body:has(.fwc-shell) > .announcement-bar,
body:has(.fwc-shell) > .site-header,
body:has(.fwc-shell) > header {
  display: none !important;
}

body:has(.fwc-shell) {
  background: var(--fwc-bg);
}

.fwc-shell,
.fwc-shell * {
  box-sizing: border-box;
}

/* Keep every storefront page visually aligned with the custom home page. */
.fwc-shell {
  --primary-color: var(--fwc-primary);
  --primary-dark: #174bd1;
  --primary-light: rgba(31, 92, 255, .10);
  --accent-color: var(--fwc-warm);
  --accent-dark: #e85f2d;
  --accent-light: rgba(255, 122, 69, .14);
  --border-color: var(--fwc-line);
  background: var(--fwc-bg);
  color: var(--fwc-ink);
}

.fwc-page-content {
  background: var(--fwc-bg);
}

/* All inner pages use the exact same horizontal grid as the header/hero. */
.fwc-page-content .container,
.fwc-page-content .md\:container {
  width: min(1440px, calc(100% - 32px)) !important;
  max-width: 1440px !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}

.fwc-page-content > .banner-section,
.fwc-page-content > main > .banner-section {
  width: min(1440px, 100% - 32px);
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: var(--fwc-radius);
  box-shadow: var(--fwc-shadow);
  isolation: isolate;
}

.fwc-page-content .banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(7, 23, 53, .88), rgba(31, 92, 255, .56));
}

.fwc-page-content .banner-section h1,
.fwc-page-content .banner-section h2,
.fwc-page-content .banner-section h3,
.fwc-page-content .banner-section p {
  color: #fff;
}

.fwc-page-content input:focus,
.fwc-page-content select:focus,
.fwc-page-content textarea:focus {
  border-color: var(--fwc-primary) !important;
  box-shadow: 0 0 0 3px rgba(31, 92, 255, .12);
  outline: none;
}

.fwc-page-content #mobile-filter > div,
.fwc-page-content .product-card {
  border-color: var(--fwc-line);
  border-radius: var(--fwc-radius);
  box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
}

.fwc-page-content .product-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fwc-page-content .product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 92, 255, .24);
  box-shadow: 0 20px 45px rgba(15, 23, 42, .11);
}

.fwc-page-content .product-card .product-img {
  margin: 12px;
  border-radius: calc(var(--fwc-radius) - 2px);
  background: #f7f9fc;
}

.fwc-page-content .view-toggle,
.fwc-page-content .btn-primary,
.fwc-page-content .btn-outline {
  border-radius: 999px;
}

.fwc-page-content .view-toggle.active {
  box-shadow: 0 8px 20px rgba(31, 92, 255, .22);
}

.fwc-page-content .checkbox input,
.fwc-page-content input[type="range"] {
  accent-color: var(--fwc-primary);
}

/* Dynamic product markup and Tailwind utilities can be injected after this
   stylesheet, so pin the storefront actions to the home-page palette. */
.fwc-page-content .bg-primary,
.fwc-page-content button.bg-primary,
.fwc-page-content .cart-btn,
.fwc-page-content .addtocart-btn,
.fwc-page-content .addcart-btn-globaly {
  background-color: var(--fwc-primary) !important;
  border-color: var(--fwc-primary) !important;
  color: #fff !important;
}

.fwc-page-content .bg-primary:hover,
.fwc-page-content button.bg-primary:hover,
.fwc-page-content .cart-btn:hover,
.fwc-page-content .addtocart-btn:hover,
.fwc-page-content .addcart-btn-globaly:hover {
  background-color: #174bd1 !important;
  border-color: #174bd1 !important;
}

.fwc-page-content .text-primary,
.fwc-page-content .hover\:text-primary:hover,
.fwc-page-content .group:hover .group-hover\:text-primary {
  color: var(--fwc-primary) !important;
}

.fwc-page-content .border-primary,
.fwc-page-content .focus\:border-primary:focus {
  border-color: var(--fwc-primary) !important;
}

.fwc-page-content .focus\:ring-primary:focus {
  --tw-ring-color: rgba(31, 92, 255, .28) !important;
}

#chat-widget-container {
  --chat-primary: var(--fwc-primary) !important;
  --chat-header-bg: var(--fwc-primary-dark) !important;
  --chat-user-msg: var(--fwc-primary) !important;
  --chat-send-button: var(--fwc-primary) !important;
}

#chat-widget-container .chat-widget-toggle,
#chat-widget-container .chat-input button {
  background: var(--fwc-primary) !important;
}

/* Contact page */
.fwc-page-content main:has(form[action*="contact"]) > section.bg-white {
  background: transparent;
  padding-top: 48px;
  padding-bottom: 48px;
}

.fwc-page-content main:has(form[action*="contact"]) > section.bg-white .grid > div {
  position: relative;
  overflow: hidden;
  padding: 32px 24px;
  border: 1px solid var(--fwc-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.fwc-page-content main:has(form[action*="contact"]) > section.bg-white .grid > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--fwc-primary-dark), var(--fwc-primary));
}

.fwc-page-content main:has(form[action*="contact"]) > section.bg-white .grid > div:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 92, 255, .24);
  box-shadow: 0 22px 48px rgba(15, 23, 42, .11);
}

.fwc-page-content main:has(form[action*="contact"]) > section.bg-white .grid > div > .bg-primary {
  width: 64px;
  height: 64px;
  color: var(--fwc-primary) !important;
  background: rgba(31, 92, 255, .10) !important;
  box-shadow: inset 0 0 0 1px rgba(31, 92, 255, .10);
}

.fwc-page-content main:has(form[action*="contact"]) > section.bg-white h3 {
  color: var(--fwc-ink);
  font-size: 20px;
}

.fwc-page-content main:has(form[action*="contact"]) > section:last-child {
  padding: 0 0 80px;
}

.fwc-page-content main:has(form[action*="contact"]) > section:last-child > .container > .flex {
  align-items: stretch;
  gap: 24px;
}

.fwc-page-content main:has(form[action*="contact"]) > section:last-child > .container > .flex > div {
  padding: 32px;
  border: 1px solid var(--fwc-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
}

.fwc-page-content main:has(form[action*="contact"]) > section:last-child h2 {
  margin-bottom: 24px;
  color: var(--fwc-ink);
  font-size: clamp(24px, 3vw, 32px);
}

.fwc-page-content main:has(form[action*="contact"]) form input:not([type="checkbox"]),
.fwc-page-content main:has(form[action*="contact"]) form select,
.fwc-page-content main:has(form[action*="contact"]) form textarea {
  width: 100%;
  border: 1px solid var(--fwc-line);
  border-radius: 10px;
  background: #f9fbff;
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.fwc-page-content main:has(form[action*="contact"]) form input:not([type="checkbox"]):focus,
.fwc-page-content main:has(form[action*="contact"]) form select:focus,
.fwc-page-content main:has(form[action*="contact"]) form textarea:focus {
  background: #fff;
}

.fwc-page-content main:has(form[action*="contact"]) form .btn-primary {
  min-height: 48px;
  padding-inline: 28px;
  box-shadow: 0 14px 26px rgba(31, 92, 255, .22);
}

.fwc-page-content main:has(form[action*="contact"]) iframe {
  width: 100% !important;
  min-height: 500px;
  border: 0 !important;
  border-radius: 12px;
}

@media (max-width: 1023px) {
  .fwc-page-content main:has(form[action*="contact"]) > section:last-child > .container > .flex > div {
    padding: 24px;
  }

  .fwc-page-content main:has(form[action*="contact"]) iframe {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .fwc-page-content main:has(form[action*="contact"]) > section.bg-white {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .fwc-page-content main:has(form[action*="contact"]) > section.bg-white .grid > div,
  .fwc-page-content main:has(form[action*="contact"]) > section:last-child > .container > .flex > div {
    padding: 20px;
    border-radius: 14px;
  }
}

/* Collection list page */
.fwc-page-content .collection-list-sec {
  padding-top: 48px;
  background: var(--fwc-bg);
}

.fwc-page-content .collection-list-sec > .bg-white {
  padding-top: 0;
  padding-bottom: 64px;
  background: transparent;
}

.fwc-page-content .collection-list-sec h2 {
  position: relative;
  margin-bottom: 28px;
  padding-inline-start: 18px;
  color: var(--fwc-ink);
  font-size: clamp(24px, 3vw, 32px);
}

.fwc-page-content .collection-list-sec h2::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--fwc-primary), var(--fwc-primary-dark));
}

.fwc-page-content .collection-list-sec .collection-card {
  border-radius: 18px;
}

.fwc-page-content .collection-list-sec > .bg-white .collection-card {
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: var(--fwc-primary-dark);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
  transition: transform .3s ease, box-shadow .3s ease;
}

.fwc-page-content .collection-list-sec > .bg-white .collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, .20);
}

.fwc-page-content .collection-list-sec > .bg-white .collection-card > img {
  height: 100%;
  min-height: 340px;
}

.fwc-page-content .collection-list-sec > .bg-white .collection-card > .absolute {
  background: linear-gradient(0deg, rgba(7, 23, 53, .94) 0%, rgba(7, 23, 53, .30) 62%, rgba(31, 92, 255, .10) 100%);
}

.fwc-page-content .collection-list-sec > .bg-white .collection-card h3 {
  color: #fff;
  font-size: clamp(22px, 2.5vw, 28px);
}

.fwc-page-content .collection-list-sec > .bg-white .collection-card p {
  color: rgba(255, 255, 255, .76);
}

.fwc-page-content .collection-list-sec > .bg-white .collection-card .btn-primary {
  min-height: 44px;
  padding-inline: 20px;
  box-shadow: 0 12px 24px rgba(31, 92, 255, .28);
}

.fwc-page-content .collection-list-sec > .md\:container .grid > a.group {
  overflow: hidden;
  border: 1px solid var(--fwc-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.fwc-page-content .collection-list-sec > .md\:container .grid > a.group:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 92, 255, .25);
  box-shadow: 0 22px 48px rgba(15, 23, 42, .12);
}

.fwc-page-content .collection-list-sec > .md\:container .grid > a.group img {
  height: 260px;
}

.fwc-page-content .collection-list-sec > .md\:container .grid > a.group > .p-4 {
  padding: 20px;
  border-top: 1px solid var(--fwc-line);
}

.fwc-page-content .collection-list-sec > .md\:container .grid > a.group h3 {
  position: relative;
  z-index: 2;
  color: var(--fwc-ink);
}

@media (max-width: 767px) {
  .fwc-page-content .collection-list-sec {
    padding-top: 32px;
  }

  .fwc-page-content .collection-list-sec > .bg-white {
    padding-bottom: 40px;
  }

  .fwc-page-content .collection-list-sec > .bg-white .collection-card,
  .fwc-page-content .collection-list-sec > .bg-white .collection-card > img {
    min-height: 300px;
  }
}

@media (max-width: 860px) {
  .fwc-page-content .container,
  .fwc-page-content .md\:container {
    width: min(1440px, calc(100% - 24px)) !important;
  }

  .fwc-page-content > .banner-section,
  .fwc-page-content > main > .banner-section {
    width: min(100% - 24px, 1440px);
  }
}

.fwc-shell a {
  color: inherit;
  text-decoration: none;
}

.fwc-shell button,
.fwc-shell input,
.fwc-shell select {
  font: inherit;
}

.fwc-top-strip {
  background: #071735;
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 400;
}

.fwc-top-strip span {
  color: #b8c7ff;
}

.fwc-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 234, 240, .85);
}

.fwc-header-inner {
  width: min(1440px, 100% - 32px);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.fwc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  font-weight: 500;
  line-height: 1.05;
}

.fwc-brand small {
  color: var(--fwc-muted);
  font-size: 12px;
  font-weight: 400;
}

.fwc-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--fwc-primary-dark), var(--fwc-primary));
}

.fwc-logo-mark img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.fwc-desktop-nav,
.fwc-header-actions,
.fwc-mode-toggle,
.fwc-slider-controls,
.fwc-dots,
.fwc-view-switch,
.fwc-floating,
.fwc-mobile-bottom,
.fwc-card-actions {
  display: flex;
  align-items: center;
}

.fwc-desktop-nav,
.fwc-header-actions {
  gap: 8px;
}

.fwc-account-menu {
  position: relative;
}

.fwc-header-search {
  height: 42px;
  position: relative;
  display: flex;
  align-items: center;
}

.fwc-header-search input {
  width: 42px;
  height: 42px;
  padding: 0 40px 0 14px;
  border: 1px solid var(--fwc-line);
  border-radius: 999px;
  background: #fff;
  color: var(--fwc-ink);
  outline: 0;
  opacity: 0;
  cursor: pointer;
  transition: width .25s ease, opacity .2s ease, border-color .2s ease, box-shadow .2s ease;
}

[dir="rtl"] .fwc-header-search input {
  padding: 0 14px 0 40px;
}

.fwc-header-search:hover input,
.fwc-header-search:focus-within input {
  width: 210px;
  opacity: 1;
  cursor: text;
  border-color: rgba(31, 92, 255, .28);
  box-shadow: 0 0 0 3px rgba(31, 92, 255, .08);
}

.fwc-header-search button {
  width: 42px;
  height: 42px;
  position: absolute;
  inset-inline-end: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fwc-line);
  border-radius: 50%;
  background: #fff;
  color: var(--fwc-primary);
  cursor: pointer;
}

.fwc-header-icon {
  width: 42px;
  height: 42px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fwc-line);
  border-radius: 50%;
  background: #fff;
  color: var(--fwc-primary);
}

.fwc-header-icon .wishlist-count {
  min-width: 17px;
  height: 17px;
  position: absolute;
  top: -3px;
  inset-inline-end: -3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--fwc-primary);
  color: #fff;
  font-size: 9px;
}

.fwc-shell > .announcement-bar {
  width: 100%;
  border-color: var(--fwc-line);
  background: var(--fwc-primary-dark);
  color: #fff;
}

@media (min-width: 1024px) {
  .fwc-shell {
    padding-top: 41px;
  }

  .fwc-shell > .announcement-bar {
    position: fixed !important;
    inset: 0 0 auto;
    z-index: 50;
    height: 41px;
    padding-block: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fwc-header {
    top: 41px;
  }
}

.fwc-shell > .announcement-bar a,
.fwc-shell > .announcement-bar button {
  color: #fff !important;
}

.fwc-account-trigger {
  width: 42px;
  min-height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border: 1px solid var(--fwc-line);
  border-radius: 999px;
  background: #fff;
  color: #243044;
  font-size: 13px;
  font-weight: 500;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.fwc-account-trigger > .far {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31, 92, 255, .10);
  color: var(--fwc-primary);
}

.fwc-account-trigger:hover,
.fwc-account-menu:focus-within > .fwc-account-trigger {
  border-color: rgba(31, 92, 255, .25);
  background: #f7f9ff;
  color: var(--fwc-primary);
}

.fwc-account-chevron {
  font-size: 9px;
  transition: transform .2s ease;
}

.fwc-account-menu:hover .fwc-account-chevron,
.fwc-account-menu:focus-within .fwc-account-chevron {
  transform: rotate(180deg);
}

.fwc-account-dropdown {
  width: 260px;
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  z-index: 70;
  padding: 8px;
  border: 1px solid var(--fwc-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.fwc-account-dropdown::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: -10px;
  height: 10px;
}

.fwc-account-menu:hover .fwc-account-dropdown,
.fwc-account-menu:focus-within .fwc-account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fwc-account-summary {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--fwc-line);
}

.fwc-account-summary > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.fwc-account-summary strong,
.fwc-account-summary small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fwc-account-summary small {
  margin-top: 3px;
  color: var(--fwc-muted);
  font-size: 11px;
}

.fwc-account-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fwc-primary-dark), var(--fwc-primary));
  color: #fff;
}

.fwc-account-dropdown > a,
.fwc-account-dropdown form button {
  width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #243044;
  font-size: 13px;
  text-align: start;
  cursor: pointer;
}

.fwc-account-dropdown > a:hover {
  background: rgba(31, 92, 255, .08);
  color: var(--fwc-primary);
}

.fwc-account-dropdown form button:hover {
  background: rgba(240, 68, 56, .08);
  color: #d92d20;
}

.fwc-nav-item {
  position: relative;
}

.fwc-nav-item.has-children>.fwc-nav-btn {
  gap: 8px;
}

.fwc-nav-item.has-children>.fwc-nav-btn i {
  font-size: 10px;
}

.fwc-nav-submenu {
  min-width: 210px;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 60;
  display: none;
  padding: 8px;
  border: 1px solid var(--fwc-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
}

.fwc-nav-item:hover>.fwc-nav-submenu,
.fwc-nav-item:focus-within>.fwc-nav-submenu {
  display: block;
}

.fwc-nav-submenu .fwc-nav-submenu {
  top: 0;
  left: calc(100% + 8px);
}

.fwc-nav-sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 9px;
  color: #243044;
  font-size: 14px;
  font-weight: 400;
}

.fwc-nav-sub-link:hover {
  background: #edf3ff;
  color: var(--fwc-primary);
}

.fwc-nav-btn,
.fwc-pill-btn {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  background: #f2f5fa;
  color: #243044;
  border: 1px solid transparent;
  cursor: pointer;
}

.fwc-nav-btn:hover,
.fwc-nav-btn.active,
.fwc-pill-btn:hover {
  border-color: rgba(31, 92, 255, .24);
  background: #edf3ff;
  color: var(--fwc-primary);
}

.fwc-pill-btn.primary {
  background: var(--fwc-primary);
  color: #fff;
  box-shadow: 0 14px 26px rgba(31, 92, 255, .26);
}

.fwc-hamburger {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #101828;
  position: relative;
  cursor: pointer;
}

.fwc-hamburger span,
.fwc-hamburger span::before,
.fwc-hamburger span::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: #fff;
  position: absolute;
  left: 12px;
}

.fwc-hamburger span {
  top: 20px;
}

.fwc-hamburger span::before {
  top: -6px;
  left: 0;
}

.fwc-hamburger span::after {
  top: 6px;
  left: 0;
}

.fwc-cart-count,
#cart-count.fwc-cart-count {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  border-radius: 999px;
  background: #fff;
  color: var(--fwc-primary);
  font-size: 12px;
}

.fwc-app {
  width: min(1440px, 100% - 32px);
  margin: 0 auto;
  padding: 24px 0 96px;
}

.fwc-shared-top {
  padding-bottom: 0;
}

.fwc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
}

.fwc-slider {
  min-height: 430px;
  border-radius: var(--fwc-slider-radius);
  overflow: hidden;
  position: relative;
  color: #fff;
  box-shadow: var(--fwc-shadow);
  isolation: isolate;
}

.fwc-slide {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 50px 65px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity .45s ease, transform .45s ease;
}

.fwc-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.fwc-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  margin-bottom: 14px;
}

.fwc-slide h1 {
  max-width: 720px;
  margin: 0 0 16px;
  font-size: 45px;
  line-height: .95;
  letter-spacing: 0;
  color: #fff;
}

.fwc-slide p {
  max-width: 610px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}

.fwc-food-art,
.fwc-stage-art {
  border-radius: 50%;
  background: radial-gradient(circle at 45% 35%, #fff 0 12%, #ffdca8 13% 22%, #ff9f43 23% 35%, #f04438 36% 47%, transparent 48%), radial-gradient(circle at 52% 52%, rgba(255, 255, 255, .22), transparent 62%);
  border: 12px solid rgba(255, 255, 255, .15);
}

.fwc-food-art {
  min-height: 290px;
  box-shadow: inset 0 0 70px rgba(255, 255, 255, .16), 0 24px 90px rgba(0, 0, 0, .22);
  display: none;
}

.fwc-slider-controls {
  position: absolute;
  right: 22px;
  bottom: 20px;
  gap: 8px;
}

.fwc-slider-controls button,
.fwc-icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--fwc-primary-dark);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.fwc-dots {
  gap: 7px;
  position: absolute;
  left: 28px;
  bottom: 34px;
}

.fwc-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
}

.fwc-dot.active {
  width: 28px;
  background: #fff;
}

.fwc-order-panel,
.fwc-layout-badge,
.fwc-toolbar,
.fwc-category-stage,
.fwc-category-card,
.fwc-side-preview,
.fwc-modal-box,
.fwc-drawer-panel,
.fwc-product-card,
.fwc-summary-box {
  background: var(--fwc-surface);
  border: 1px solid var(--fwc-line);
  border-radius: var(--fwc-radius);
  box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
}

.fwc-order-panel,
.fwc-layout-badge,
.fwc-toolbar {
  padding: 18px;
}

.fwc-order-panel h3 {
  margin: 0 0 16px;
  font-size: 22px;
}

.fwc-mode-toggle {
  background: #f2f5fa;
  padding: 4px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.fwc-mode-toggle button {
  flex: 1;
  border: 0;
  min-height: 42px;
  border-radius: 999px;
  background: transparent;
  font-weight: 500;
  color: var(--fwc-muted);
}

.fwc-mode-toggle button.active {
  background: #fff;
  color: var(--fwc-primary);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
}

.fwc-quick-info {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.fwc-info-row {
  padding: 12px;
  border-radius: 8px;
  background: #f7f9fc;
  color: #344054;
  font-weight: 400;
}

.fwc-status-lamp {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-inline-end: 6px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .06);
}

.fwc-status-lamp.is-online { background: #22c55e; }
.fwc-status-lamp.is-offline { background: #ef4444; }

.fwc-layout-badge,
.fwc-toolbar {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.fwc-layout-badge {
  min-height: 120px;
  padding: 26px;
  border: 0;
  border-radius: 28px;
  background: linear-gradient(100deg, #071735, #1e55ca);
  color: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .16);
}

.fwc-layout-badge h2,
.fwc-layout-badge p {
  margin: 0;
}

.fwc-layout-badge p {
  color: var(--fwc-muted);
  font-weight: 400;
}

.fwc-mini {
  padding: 10px 13px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--fwc-primary);
  font-weight: 500;
  white-space: nowrap;
}

.fwc-toolbar {
  position: sticky;
  top: 77px;
  z-index: 25;
}

.fwc-search {
  flex: 1;
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  min-height: 48px;
  border: 1px solid var(--fwc-line);
  border-radius: 999px;
  background: #f8fafc;
}

.fwc-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--fwc-ink);
  font-weight: 400;
}

.fwc-view-switch {
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: #f2f5fa;
}

.fwc-view-switch button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  font-weight: 500;
  background: transparent;
  color: var(--fwc-muted);
}

.fwc-view-switch button.active {
  background: #fff;
  color: var(--fwc-primary);
}

.fwc-chip-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 18px 2px 8px;
}

.fwc-chip {
  flex: 0 0 auto;
  border: 1px solid var(--fwc-line);
  border-radius: 999px;
  background: #fff;
  color: #344054;
  padding: 10px 15px;
  font-weight: 500;
  cursor: pointer;
}

.fwc-chip.active {
  background: var(--fwc-primary-dark);
  color: #fff;
  border-color: var(--fwc-primary-dark);
}

.fwc-chip-child {
  color: var(--fwc-muted);
  background: #f8fafc;
}

.fwc-category-grid-section {
  margin-top: 10px;
}

.fwc-category-grid-title {
  margin-top: 16px;
}

.fwc-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.fwc-category-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 274px;
  padding: 14px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.fwc-category-card:hover,
.fwc-category-card.active {
  transform: translateY(-4px);
  border-color: rgba(31, 92, 255, .32);
  box-shadow: var(--fwc-shadow);
}

.fwc-category-card-child {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.fwc-category-media {
  aspect-ratio: 1;
  width: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff7d6, #e1f7ff);
}

.fwc-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .22s ease;
}

.fwc-category-card:hover .fwc-category-media img {
  transform: scale(1.04);
}

.fwc-category-emoji {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  filter: drop-shadow(0 8px 0 rgba(15, 23, 42, .06));
}

.fwc-category-copy {
  display: grid;
  gap: 5px;
  padding-top: 14px;
}

.fwc-category-copy strong {
  color: var(--fwc-ink);
  font-size: 17px;
  line-height: 1.25;
}

.fwc-category-copy small {
  color: var(--fwc-muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.fwc-content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0px;
  gap: 18px;
  align-items: start;
  margin-top: 24px;
}

.fwc-category-stage {
  min-height: 220px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(135deg, #101828, #1f5cff);
  color: #fff;
}

.fwc-category-stage h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
}

.fwc-category-stage p {
  color: rgba(255, 255, 255, .78);
  font-weight: 400;
  line-height: 1.6;
}

.fwc-stage-art {
  aspect-ratio: 1;
}

.fwc-stage-img {
  width: 230px;
  height: 230px;
  object-fit: contain;
  justify-self: end;
}

.fwc-section-title {
  margin: 24px 2px 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.fwc-section-title h3 {
  margin: 0;
  font-size: 26px;
}

.fwc-section-title small {
  color: var(--fwc-muted);
  font-weight: 500;
}

.fwc-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fwc-product-card {
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.fwc-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fwc-shadow);
}

.fwc-product-media {
  aspect-ratio: 1.14;
  background: #f5f7fb;
  padding: 18px;
  display: grid;
  place-items: center;
}

.fwc-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fwc-product-body {
  padding: 15px;
}

.fwc-product-body h4 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.3;
}

.fwc-product-body p {
  min-height: 42px;
  margin: 0 0 14px;
  color: var(--fwc-muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
}

.fwc-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.fwc-price {
  color: var(--fwc-primary);
  font-weight: 500;
}

.fwc-card-actions {
  gap: 8px;
}

.fwc-stock {
  display: inline-flex;
  margin-top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #027a48;
  font-size: 12px;
  font-weight: 500;
}

.fwc-stock.out {
  background: #fff1f3;
  color: #c01048;
}

.fwc-side-preview {
  position: sticky;
  top: 160px;
  padding: 18px;
}

.fwc-side-preview h3 {
  margin: 0 0 10px;
}

.fwc-side-preview p {
  color: var(--fwc-muted);
  font-weight: 400;
  line-height: 1.7;
}

.fwc-preview-img {
  aspect-ratio: 1.08;
  border-radius: 8px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 18px;
  margin: auto;
  margin-bottom: 14px;
  display: block;
  width: 50%;
  height: auto;
}

.fwc-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fwc-floating {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 50;
  flex-direction: column;
  gap: 10px;
}

.fwc-float-btn {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  box-shadow: var(--fwc-shadow);
  font-size: 20px;
  display: grid;
  place-items: center;
}

.fwc-float-btn.whatsapp {
  background: #12b76a;
}

.fwc-float-btn.chat {
  background: var(--fwc-primary);
}

.fwc-mobile-bottom {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  min-height: 64px;
  background: #fff;
  border-top: 1px solid var(--fwc-line);
  justify-content: space-around;
}

.fwc-mobile-bottom button,
.fwc-mobile-bottom a {
  border: 0;
  background: transparent;
  color: var(--fwc-muted);
  font-size: 11px;
  font-weight: 500;
  text-align: center;
}

.fwc-mobile-bottom b {
  display: block;
  font-size: 18px;
  margin-bottom: 2px;
}

.fwc-mobile-bottom button.active {
  color: var(--fwc-primary);
}

.fwc-drawer,
.fwc-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 80;
}

.fwc-drawer.open,
.fwc-modal.open {
  display: block;
}

.fwc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .48);
}

.fwc-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}

.fwc-panel-head,
.fwc-panel-foot {
  padding: 16px;
  border-bottom: 1px solid var(--fwc-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.fwc-panel-foot {
  border-top: 1px solid var(--fwc-line);
  border-bottom: 0;
  display: block;
}

.fwc-panel-head h3 {
  margin: 0;
  font-size: 20px;
}

.fwc-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f2f5fa;
  font-size: 22px;
}

.fwc-panel-body {
  padding: 16px;
  overflow: auto;
  flex: 1;
  display: grid;
  gap: 10px;
}

.fwc-modal.open {
  display: grid;
  place-items: center;
}

.fwc-modal-box {
  position: relative;
  width: min(640px, calc(100% - 28px));
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
}

.fwc-summary-box {
  padding: 14px;
  background: #f8fafc;
}

.fwc-coupon {
  display: flex;
  gap: 8px;
}

.fwc-coupon input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--fwc-line);
  border-radius: 8px;
  padding: 0 12px;
}

.fwc-coupon button,
.fwc-checkout {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--fwc-primary);
  color: #fff;
  padding: 0 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fwc-toast {
  position: fixed;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  z-index: 100;
  display: none;
  padding: 11px 15px;
  border-radius: 999px;
  background: #101828;
  color: #fff;
  font-weight: 500;
}

.fwc-toast.show {
  display: block;
}

.fwc-hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .fwc-account-name,
  .fwc-account-chevron {
    display: none;
  }

  .fwc-account-trigger {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .fwc-hero,
  .fwc-content-wrap {
    grid-template-columns: 1fr;
  }

  .fwc-side-preview {
    display: none;
  }

  .fwc-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fwc-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --fwc-slider-radius: 24px;
  }

  .fwc-desktop-nav,
  .fwc-country-select {
    display: none;
  }

  .fwc-app,
  .fwc-header-inner {
    width: min(100% - 24px, 1440px);
  }

  .fwc-header-inner {
    min-height: 68px;
  }

  .fwc-brand {
    min-width: 0;
  }

  .fwc-brand small {
    display: none;
  }

  .fwc-slider {
    min-height: 520px;
  }

  .fwc-slide,
  .fwc-category-stage {
    grid-template-columns: 1fr;
  }

  .fwc-food-art {
    min-height: 190px;
    width: 190px;
    justify-self: center;
  }

  .fwc-layout-badge,
  .fwc-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .fwc-toolbar {
    top: auto;
  }

  .fwc-search,
  .fwc-view-switch,
  .fwc-toolbar .fwc-pill-btn {
    width: 100%;
  }

  .fwc-mobile-bottom {
    display: flex;
  }

  .fwc-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fwc-lang-btn {
    display: none;
  }

  .fwc-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .fwc-category-card {
    min-height: 224px;
    padding: 10px;
  }

  .fwc-products {
    grid-template-columns: 1fr;
  }
}

.fwc-nav-btn, .fwc-pill-btn{
      padding: 0 10px;
    font-weight: 400;
    font-size: 12px;

}
strong{
font-weight: 500 !important;
}

.customImageProduct{
width: calc(100% - 32px);
    height: 250px;
    overflow: hidden;
    background: #fff;
    padding: 0;
    margin: auto;
    margin-top: 16px;
    border-radius: 4px;
}
.customImageProduct img{
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: center;

}

.fwc-order-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.fwc-quick-add,
.fwc-quick-buy {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.fwc-quick-add {
  color: #08783f;
  background: #eaf8f0;
}

.fwc-quick-buy {
  color: #fff;
  background: var(--fwc-primary, #2563eb);
}

.fwc-quick-add:hover {
  color: #065f35;
  background: #dff3e8;
}

.fwc-quick-buy:hover {
  color: #fff;
  filter: brightness(.94);
}

@media (max-width: 575px) {
  .fwc-quick-add,
  .fwc-quick-buy {
    min-height: 42px;
    padding-inline: 14px;
    border-radius: 14px;
  }
}

.fwc-product-modal-box { width:min(1350px, calc(100% - 48px)); max-height:calc(100dvh - 48px); border-radius:38px; overflow:hidden; background:#fff; box-shadow:0 28px 80px rgba(15,23,42,.24); }
.fwc-product-modal-box > .fwc-panel-body { padding:0; display:block; max-height:inherit; overflow:auto; }
.fwc-popup-product { display:grid; grid-template-columns:42% 58%; min-height:min(760px, calc(100dvh - 48px)); }
.fwc-popup-media { display:flex; align-items:center; justify-content:center; padding:48px; background:linear-gradient(180deg,#fffaf0 0%,#eff7ff 100%); }
.fwc-popup-media img { width:100%; max-width:480px; max-height:480px; object-fit:contain; }
.fwc-popup-details { min-width:0; padding:0 32px 22px; display:flex; flex-direction:column; gap:18px; }
.fwc-popup-header { margin:0 -32px 18px; padding:30px 32px 14px; border-bottom:1px solid var(--fwc-border); display:flex; align-items:flex-start; justify-content:space-between; gap:24px; }
.fwc-popup-header > div { min-width:0; }
.fwc-popup-header .fwc-close { flex:0 0 auto; width:54px; height:54px; border-radius:18px; font-weight:800; cursor:pointer; }
.fwc-popup-details h3 { margin:0; font-size:clamp(34px, 3.4vw, 56px); line-height:1.05; overflow-wrap:anywhere; }
.fwc-popup-description { margin:0; color:var(--fwc-muted); font-weight:700; line-height:1.6; }
.fwc-popup-price,.fwc-popup-notice { padding:16px 18px; border:1px solid var(--fwc-border); border-radius:18px; background:#f8fbff; }
.fwc-popup-price { display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.fwc-popup-price span { font-weight:800; }
.fwc-popup-label { font-weight:800; margin-bottom:-10px; }
.fwc-popup-notes { width:100%; min-height:110px; padding:16px; border:1px solid var(--fwc-border); border-radius:16px; resize:vertical; font:inherit; }
.fwc-option-group { margin:0; padding:0; border:0; }
.fwc-option-group legend { width:100%; margin:0 0 10px; color:var(--fwc-ink, #15213d); font-size:16px; font-weight:900; }
.fwc-option-group legend small { color:#64748b; font-size:12px; font-weight:700; }
.fwc-option-choices { display:flex; flex-wrap:wrap; gap:9px; }
.fwc-option-choice { position:relative; margin:0; cursor:pointer; }
.fwc-option-choice input { position:absolute; opacity:0; pointer-events:none; }
.fwc-option-choice span { min-height:46px; padding:10px 15px; display:flex; align-items:center; border:1px solid var(--fwc-border); border-radius:14px; background:#fff; color:var(--fwc-ink, #15213d); font-weight:800; transition:.15s ease; }
.fwc-option-choice span b { margin-inline-start:5px; color:#08783f; }
.fwc-option-choice input:checked + span { border-color:var(--fwc-primary, #2563eb); background:#eff6ff; color:var(--fwc-primary, #2563eb); box-shadow:0 0 0 1px var(--fwc-primary, #2563eb); }
.fwc-option-choice input:disabled + span { opacity:.45; cursor:not-allowed; }
.fwc-options-total { padding:10px 14px; border-radius:12px; background:#f8fafc; color:#475569; font-size:13px; font-weight:800; }
.fwc-modal-actions { margin-top:auto; padding-top:18px; border-top:1px solid var(--fwc-border); display:flex; align-items:center; justify-content:space-between; gap:18px; }
.fwc-popup-quantity,.fwc-popup-buttons { display:flex; align-items:center; gap:10px; }
.fwc-popup-quantity button { width:38px; height:38px; border:0; border-radius:12px; background:#eef3fb; font-size:22px; cursor:pointer; }
.fwc-popup-quantity input { width:46px; border:0; text-align:center; font:inherit; font-weight:800; background:transparent; }
.fwc-popup-add,.fwc-popup-buy { min-height:52px; padding:0 20px; border:0; border-radius:16px; display:inline-flex; align-items:center; justify-content:center; font:inherit; font-weight:800; text-decoration:none; cursor:pointer; }
.fwc-popup-add { color:#08783f; background:#eaf8f0; }
.fwc-popup-buy { color:#fff; background:var(--fwc-primary, #2563eb); }
@media (max-width: 820px) {
  .fwc-product-modal-box { width:min(620px, calc(100% - 24px)); max-height:calc(100dvh - 24px); border-radius:24px; }
  .fwc-popup-product { grid-template-columns:1fr; }
  .fwc-popup-media { padding:24px; min-height:220px; }
  .fwc-popup-media img { max-height:230px; }
  .fwc-popup-details { padding:0 20px 20px; }
  .fwc-popup-header { margin:0 -20px 8px; padding:20px; }
  .fwc-popup-header .fwc-close { width:44px; height:44px; border-radius:14px; }
  .fwc-popup-details h3 { font-size:clamp(28px, 8vw, 40px); }
  .fwc-modal-actions { align-items:stretch; flex-direction:column; }
  .fwc-popup-buttons { width:100%; }
  .fwc-popup-add,.fwc-popup-buy { flex:1; }
}
@media (max-width: 480px) {
  .fwc-popup-media { min-height:170px; padding:18px; }
  .fwc-popup-media img { max-height:175px; }
  .fwc-popup-details { gap:14px; }
  .fwc-popup-description { font-size:14px; }
  .fwc-popup-price,.fwc-popup-notice { padding:13px 14px; border-radius:14px; }
  .fwc-popup-notes { min-height:90px; }
  .fwc-popup-buttons { gap:8px; }
  .fwc-popup-add,.fwc-popup-buy { min-height:48px; padding-inline:12px; font-size:14px; }
}

.fwc-checkout-modal-box { position:relative; width:min(1100px,calc(100% - 32px)); height:min(860px,calc(100dvh - 32px)); display:flex; flex-direction:column; overflow:hidden; border-radius:28px; background:#fff; box-shadow:0 28px 90px rgba(15,23,42,.3); }
.fwc-checkout-modal-head { flex:0 0 auto; min-height:72px; padding:14px 20px 14px 28px; display:flex; align-items:center; justify-content:space-between; gap:16px; border-bottom:1px solid var(--fwc-border); background:#fff; }
.fwc-checkout-modal-head h3 { margin:0; font-size:26px; }
.fwc-checkout-modal-head .fwc-close { cursor:pointer; }
.fwc-checkout-modal-box iframe { width:100%; height:100%; flex:1 1 auto; border:0; background:#fff; }
.fwc-embedded-checkout .fwc-shell,.fwc-embedded-checkout .fwc-page-content { min-height:0; }
.fwc-embedded-checkout .fwc-page-content { padding:0; }
.fwc-embedded-checkout main { margin:0; }
@media (max-width: 575px) {
  .fwc-checkout-modal-box { width:calc(100% - 16px); height:calc(100dvh - 16px); border-radius:20px; }
  .fwc-checkout-modal-head { min-height:60px; padding:10px 12px 10px 18px; }
  .fwc-checkout-modal-head h3 { font-size:21px; }
}
