/* ============================================================
   CleanToFresh Custom CSS — applies globally on all pages
   ============================================================ */

/* ── Slider: 400px height, 2 banners side by side ─────── */
.home-slider-img {
  height: 400px;
  overflow: hidden;
}

.home-slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {

  .home-slider-img,
  .tf-slideshow .swiper-horizontal {
    height: 250px !important;
  }
}

/* ── Section spacing reduce ──────────────────────────── */
.flat-spacing {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.py-30 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

/* ── Section heading: left-aligned, compact ──────────── */
.home-section-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: left;
}

.sect-heading .s-title {
  font-size: 16px;
  font-weight: 700;
}

.sect-heading.mb-40 {
  margin-bottom: 20px !important;
}

.sect-heading.mb-30 {
  margin-bottom: 15px !important;
}

/* ── Product Card shell ──────────────────────────────── */
.card-product {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
}

.card-product:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .13);
}

/* ── Image wrapper ───────────────────────────────────── */
.card-product_wrapper {
  aspect-ratio: unset;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

.card-product_wrapper .product-img,
.card-product_wrapper .img-product {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.card-product:hover .img-product {
  transform: scale(1.05);
}

/* ── Card info block ─────────────────────────────────── */
.card-product_info {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

/* ── Title: max 3 lines, equal height ───────────────── */
.card-product_info .name-product {
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(13px * 1.45 * 3);
}

/* ── Add to Cart button standard in card ───────────────── */
.card-product_info .tf-btn.animate-btn {
  padding: 10px 12px;
  font-size: 13px;
  margin-top: auto;
  height: 48px;
}

/* ── Badges positioning ──────────────────────────────── */
.card-product_wrapper {
  position: relative;
}

.product-badge_list {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  padding: 0 10px;
  display: flex;
  list-style: none;
  pointer-events: none;
  z-index: 5;
}

.product-badge_item {
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  display: block;
}

.product-badge_item.new {
  background: #5271FF;
  color: #fff;
}

.product-badge_item.sale {
  background: #EC1B27;
  color: #fff;
  margin-left: auto;
}

/* ── Theme Buttons & Links standardized ────────────────── */
.tf-btn,
.tf-btn.animate-btn,
.tf-btn.btn-fill,
.tf-btn.btn-stroke {
  background-color: #5271FF !important;
  color: #fff !important;
  border-color: #5271FF !important;
  height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  padding: 10px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.tf-btn.btn-stroke {
  background-color: transparent !important;
  color: #5271FF !important;
  border: 1px solid #5271FF !important;
}

.tf-btn.btn-stroke:hover {
  background-color: #5271FF !important;
  color: #fff !important;
}

.tf-btn:hover,
.tf-btn.animate-btn:hover {
  background-color: #3d58cc !important;
  /* Slightly darker shift for hover feedback */
  border-color: #3d58cc !important;
}

.a:hover {
  color: #EC1B27 !important;
}

/* ── Mobile Spacing & Footer Refinements ────────────── */
@media (max-width: 767px) {
  body {
    margin-bottom: 80px !important;
  }

  footer.tf-footer.footer-s5.bg-dark {
    display: none;
  }

  .tf-slideshow.mt-20 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    /* Reduce gap below slider */
  }

  #footer {
    display: none !important;
  }

  .py-30 {
    padding-top: 5px !important;
    padding-bottom: 10px !important;
  }

  .tf-sw-pagination {
    margin-top: 5px !important;
  }

  /* Force footer visibility and headers on mobile */
  #footer,
  .footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }

  .footer-heading-desktop {
    display: block !important;
  }

  /* Additional safety for container spacing */
  .container {
    padding-bottom: 0px !important;
  }
}

/* ── Pill Filter Styles (Size & Brand) ──────────────── */
.filter-group-pill {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  padding: 0 !important;
  list-style: none !important;
}

.filter-group-pill li {
  margin: 0 !important;
}

.label-pill {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 25px !important;
  padding: 8px 18px !important;
  background: #eeeeee !important;
  color: #333 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  border: 1px solid transparent !important;
  font-size: 14px !important;
}

.ip-pill:checked+.label-pill {
  background-color: #5271FF !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(82, 113, 255, 0.3) !important;
}

.label-pill:hover {
  background: #e2e2e2 !important;
}

/* ── Color Swatch Filter Styles ─────────────────────── */
.filter-color-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
  padding: 0 !important;
  list-style: none !important;
}

.label-color-swatch {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  display: block !important;
  cursor: pointer !important;
  border: 2px solid #fff !important;
  box-shadow: 0 0 0 1px #e5e5e5 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.ip-color:checked+.label-color-swatch {
  transform: scale(1.1) !important;
  box-shadow: 0 0 0 2px #5271FF !important;
}

/* ── Price Input Style ──────────────────────────────── */
.filter-input {
  border-radius: 8px !important;
  border: 1px solid #e5e5e5 !important;
  padding: 10px 12px !important;
  font-size: 14px !important;
  text-align: center !important;
}

.filter-input:focus {
  border-color: #5271FF !important;
  box-shadow: none !important;
}


.flat-spacing-2 {
  padding-top: 24px;
  padding-bottom: 60px;
}

/* ── Product Thumbnails Visibility & Layout ────────── */


.stagger-item {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.stagger-item.stagger-finished {
  opacity: 1 !important;
  transform: translateY(0);
}


.box-image_v04 .box-image_img {
  display: block;
  width: 100%;
  height: 220px;

  overflow: hidden;
  border-radius: 12px;
}

.box-image_v04 .box-image_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

@media (min-width: 1200px) {
  .product-thumbs-slider.style-row .tf-product-media-thumbs .swiper-slide {
    max-height: 64px;
  }
}

/* Hide thumbnails when there is only one image */
.product-thumbs-slider.no-thumbs .tf-product-media-thumbs {
    display: none !important;
}

.product-thumbs-slider.no-thumbs .flat-wrap-media-product {
    width: 100% !important;
}

/* ── Sticky Sidebar & Smooth Scroll ──────────────────── */
@media (min-width: 1200px) {
  .sidebar-filter {
    position: sticky !important;
    top: 100px !important;
    /* Ensure it stays below the sticky header */
    max-height: calc(100vh - 120px) !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    /* Outer container shouldn't scroll */
    z-index: 90 !important;

  }

  .sidebar-filter #filter-form {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .sidebar-filter .canvas-body {
    flex: 1 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 20px !important;
    scrollbar-width: thin;
    scrollbar-color: #5271FF transparent;
  }

  /* Custom inner scrollbar for webkit */
  .sidebar-filter .canvas-body::-webkit-scrollbar {
    width: 4px;
  }

  .sidebar-filter .canvas-body::-webkit-scrollbar-thumb {
    background: #5271FF;
    border-radius: 10px;
  }

  /* ── Color Filter Swatches ────────────────────────── */
  .filter-color-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px !important;
  }

  .filter-color-list li {
    margin-bottom: 5px !important;
  }

  .filter-color-list .label-color-swatch {
    width: 25px !important;
    height: 25px !important;
    border-radius: 50% !important;
    border: 1px solid #e5e5e5 !important;
    background-size: cover;
    cursor: pointer;
    transition: none !important;
    /* Remove zoom/animation */
    display: block;
    margin: 0 !important;
  }

  .filter-color-list .ip-color:checked+.label-color-swatch {
    border: 2px solid #000 !important;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #5271FF !important;
    transform: none !important;
    /* Prevent zoom */
  }

  .filter-color-list .label-color-swatch:hover {
    transform: none !important;
  }
}

/* ── Centralized Home & Component Styles ──────────────── */
.home-slider-empty {
  background: #eee;
}

.scroll-sentinel {
  height: 1px;
  margin-top: 40px;
}

#userProfile .user-info-rows .border-bottom {
  border-bottom: 1px solid #eee !important;
}

/* Keep user profile buttons small as per design but avoid inline */
#userProfile .tf-btn {
  height: 36px !important;
  line-height: 36px !important;
  padding: 0 16px !important;
  font-size: 13px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-s5 .footer-inner>.br-line::after {
  background: unset !important;
}

.tf-social-icon-2.hv-dark a {
  border-color: var(--text) !important;
  background-color: var(--text) !important;
  color: #fff !important;
}

.footer-app-link {
  max-width: 160px;
}

.otp-box {
  width: 45px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.otp-box:focus {
  border-color: var(--primary);
  outline: none;
}

.country-code-input {
  width: 60px;
  pointer-events: none;
}

/* ── Account & Sidebar Styles ────────────────────────── */
.account-info-card {
  height: 100%;
  transition: all 0.3s ease;
}

.account-info-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.flat-spacing-11 {
  padding: 60px 0;
}

.my-account-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.my-account-nav-item {
  display: block;
  padding: 15px 20px;
  color: var(--text, #212529);
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  text-decoration: none;
}

.my-account-nav-item i {
  margin-right: 10px;
  font-size: 18px;
  vertical-align: middle;
}

.my-account-nav-item:hover,
.my-account-nav-item.active {
  background-color: var(--primary, #4f46e5);
  color: #fff !important;
}

.my-account-nav li:last-child .my-account-nav-item {
  border-bottom: none;
}

/* ── Address & Order Details Styles ─────────────────── */
.address-item {
  position: relative;
  transition: all 0.3s ease;
}

.address-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.border-primary {
  border-color: var(--primary) !important;
  border-width: 1.5px !important;
}

.bg-primary-light {
  background-color: rgba(var(--primary-rgb), 0.1);
}

.floating-add-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
  z-index: 999;
  font-size: 20px;
}

.order-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #e9ecef;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.order-id {
  font-weight: 600;
  color: #6c757d;
  font-size: 14px;
}

.order-id-num {
  color: #212529;
  font-weight: 700;
}

.badge-pending {
  background-color: #fff4e5;
  color: #f59e0b;
  font-weight: 600;
  font-size: 12px;
  border-radius: 6px;
  padding: 4px 10px;
}

.badge-success {
  background-color: #e6f4ea;
  color: #1e8e3e;
  font-weight: 600;
  font-size: 12px;
  border-radius: 6px;
  padding: 4px 10px;
}

.order-details-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-col {
  text-align: center;
}

.order-col-title {
  color: #6c757d;
  font-size: 12px;
  margin-bottom: 4px;
}

.order-col-val {
  color: #212529;
  font-weight: 700;
  font-size: 14px;
}

.divider {
  width: 1px;
  height: 30px;
  background-color: #e9ecef;
}

.btn-details {
  background-color: #eef2ff;
  color: #4f46e5;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: none;
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

.btn-details:hover {
  background-color: #e0e7ff;
}

.order-status-banner {
  text-align: center;
  padding: 30px 15px 20px;
  background-color: #f8f9fa;
}

.order-status-banner h4 {
  color: #212529;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.order-status-banner p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
}

.details-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}

.item-row {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}

.item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-row:first-child {
  padding-top: 0;
}

.item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  background-color: #f1f1f1;
  margin-right: 15px;
}

.item-details {
  flex: 1;
}

.item-title {
  font-weight: 700;
  color: #212529;
  font-size: 14px;
  margin-bottom: 4px;
  line-height: 1.3;
}

.item-meta {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #6c757d;
  gap: 10px;
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #dee2e6;
}

.item-price {
  font-weight: 700;
  color: #212529;
  font-size: 14px;
  text-align: right;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.summary-title {
  font-weight: 700;
  font-size: 16px;
  color: #212529;
}

.summary-id {
  font-weight: 700;
  color: #212529;
  font-size: 16px;
}

.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  color: #495057;
}

.summary-list li i {
  color: #adb5bd;
  margin-right: 10px;
  font-size: 16px;
  margin-top: 2px;
}

.summary-list li strong {
  color: #6c757d;
  font-weight: normal;
  margin-right: 5px;
}

.summary-list li span.val {
  color: #212529;
  font-weight: 600;
  flex: 1;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e9ecef;
  padding-top: 15px;
  margin-top: 5px;
}

.total-lbl {
  color: #6c757d;
  font-size: 14px;
}

.total-val {
  font-weight: 800;
  font-size: 16px;
  color: #212529;
}

/* ── Cart Drawer Layout Fix ──────────────────────────── */
.tf-mini-cart-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 15px !important;
  padding: 15px 0 !important;
  border-bottom: 1px solid #eee;
}

.tf-mini-cart-image {
  width: 80px !important;
  flex-shrink: 0 !important;
}

.tf-mini-cart-image img {
  width: 100% !important;
  height: auto !important;
  border-radius: 8px;
}

.tf-mini-cart-details {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.tf-mini-cart-info .name {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #212529 !important;
  line-height: 1.4 !important;
  margin-bottom: 4px !important;
}

.tf-mini-cart-price {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 4px !important;
}

.tf-mini-cart-price .remove {
  margin-top: 0 !important;
}

/* ── Cart Page Layout Fix ─────────────────────────── */
.cart_product {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  min-width: 300px !important;
}

.cart_product .img-prd {
  width: 100px !important;
  flex-shrink: 0 !important;
  max-width: 100px !important;
}

.cart_product .img-prd img {
  width: 100% !important;
  height: auto !important;
  border-radius: 8px;
}

.cart_product .infor-prd {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.cart_product .prd_name {
  font-size: 15px !important;
  font-weight: 600 !important;
  margin-bottom: 5px !important;
}

.cart_product .cart_remove {
  margin-top: 8px !important;
}

/* ─────────────────────────────────────────────────────── */

/* ── Mobile Color Swatch Fix ─────────────────────── */
@media (max-width: 1199px) {
  .filter-color-list .label-color-swatch {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    transition: none !important;
  }

  .filter-color-list .ip-color:checked+.label-color-swatch {
    transform: none !important;
    border: 2px solid #000 !important;
  }
}

/* ── Mobile Sidebar Smooth Scrolling ─────────────────── */
.canvas-sidebar .canvas-body {
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 100%;
}

.canvas-sidebar {
  transition: transform 0.3s ease-in-out !important;
}

header {

  background: #fff;
}

@media (max-width: 575px) {
  .product-badge_list {
    align-items: start;
    flex-direction: unset;
    gap: 4px;
  }

  .tf-grid-layout.ssm-col-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .category-v03 .cate_name {
    align-items: center;
    background: var(--white);
    border-radius: 100px;
    display: inline-flex;
    padding: 2px 10px;
    font-size: 16px;
  }
}

h1.custom-title {
  font-size: 25px;
}

.price-on-sale {
  font-size: 20px;
}

.h1,
h1 {
  font-size: clamp(32px, 4vw, 30px);
  line-height: clamp(44px, 6vw, 68px);
}

/* Cart Page Responsive Optimization */
@media (max-width: 767px) {
  .tf-table-page-cart thead {
    display: none;
  }

  .tf-table-page-cart tr.tf-cart_item {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    gap: 10px;
  }

  .tf-table-page-cart td {
    display: flex;
    padding: 0 !important;
    border: none !important;
    width: 100% !important;
    justify-content: space-between;
    align-items: center;
  }

  .tf-table-page-cart td.cart_product {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    align-items: flex-start;
  }

  .tf-table-page-cart td.cart_product .img-prd {
    width: 80px !important;
    flex-shrink: 0;
  }

  .tf-table-page-cart td.cart_product .img-prd img {
    width: 100% !important;
    height: auto !important;
  }

  .tf-table-page-cart td.cart_product .infor-prd {
    flex-grow: 1;
    padding: 0 !important;
  }

  .tf-table-page-cart td.cart_price::before {
    content: "Price:";
    font-weight: 500;
    color: #666;
  }

  .tf-table-page-cart td.cart_quantity::before {
    content: "Quantity:";
    font-weight: 500;
    color: #666;
  }

  .tf-table-page-cart td.text-end::before {
    content: "Total:";
    font-weight: 500;
    color: #666;
  }

  .tf-table-page-cart td.text-end {
    justify-content: space-between !important;
    border-top: 1px dashed #eee !important;
    padding-top: 10px !important;
    margin-top: 5px;
  }

  .tf-table-page-cart .cart_remove {
    position: absolute;
    top: 15px;
    right: 0;
  }
}

@media (min-width: 1200px) {
  .category .tf-grid-layout.xl-col-4 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.tf-slideshow .slideshow-wrap {
  height: unset;
}

/* ── Product Detail Mobile Slider ── */
@media (max-width: 767px) {
  .tf-product-media-thumbs {
    display: none !important;
  }

  .section-page-title-single {
    padding-top: 0px;
  }



  .swiper-pagination-bullet-active {
    background: var(--primary, #5271FF) !important;
  }
}

@media (min-width: 768px) {
  .tf-product-media-main .swiper-pagination {
    display: none !important;
  }
}

.tf-product-info-wrap .tf-product-info-list {
  display: grid;
  gap: 14px;
}

/* Sticky Bar Mobile Visibility */
@media (max-width: 767px) {
  .tf-sticky-btn-atc .tf-sticky-atc-product {
    display: flex !important;
  }

  .tf-sticky-btn-atc .atc-product-side .prd_info .title {
    display: none;
    /* Hide title on very small screens to save space */
  }

  .tf-sticky-btn-atc .tf-height-observer {
    gap: 10px;
    padding: 10px 0;
  }

  .tf-sticky-btn-atc .atc-pill-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}



/* Product Details Section */
.product-details-section {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  margin: 25px 0;
}

.product-details-section h6 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.detail-row {
  display: flex;
  margin-bottom: 8px;
  font-size: 14px;
}

.detail-label {
  color: #666;
  width: 80px;
}

.detail-value {
  font-weight: 500;
  color: #222;
}

/* Redesigned Sticky Bottom Bar */
.tf-sticky-btn-atc.app-style {
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  padding: 10px 15px;
  /* Added some horizontal padding for mobile */
}

.atc-pill-btn {
  background: #5271FF !important;
  color: white !important;
  border-radius: 8px !important;
  /* Standardized radius */
  padding: 10px 20px !important;
  font-weight: bold !important;
  width: 100% !important;
  /* Full width for consistency on mobile */
}

.tf-product-info-wrap {
  position: relative;
}

.tf-product-info-wrap .variant-size .size-btn:not(.select-item) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 7px 16px;
  border-radius: 999px;
  border: 2px solid #ddd;
  margin-right: 10px;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 500;
}

.tf-product-info-wrap .variant-size .size-btn.active {
  border-color: #000 !important;
  background-color: #fff !important;
  color: #000 !important;
}

/* Premium Description Styling */
.product-description-content {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  letter-spacing: 0.2px;
}

.product-description-content p {
  margin-bottom: 20px;
}

.product-description-content h1,
.product-description-content h2,
.product-description-content h3 {
  margin: 30px 0 15px;
  color: #222;
  font-weight: 600;
}

.product-description-content ul,
.product-description-content ol {
  margin-bottom: 20px;

}

.product-description-content li {
  margin-bottom: 10px;
  position: relative;
}

.section-product-description {
  padding: 60px 0;
}

.flat-title {
  margin-bottom: 12px;
}

a.mb-menu-link {
  padding: 10px;
  font-size: 20px;
  font-weight: 600;
}