/* =============================================
   ATTITUDE FASHION BOUTIQUE - CUSTOM OVERRIDES
   Fixes: gaps, padding, product visibility, 
   coupon code, color blending, featured products
   ============================================= */

/* ----- 1. REMOVE GAP BETWEEN HEADER & BANNER ----- */
.furniture-banner-area.pb-100 {
  padding-bottom: 40px !important;
}
.banner-item-4 {
  min-height: 580px;
}

/* ----- 2. SERVICE / FEATURES SECTION: tighter, less gap ----- */
.furniture-service.pt-100 {
  padding-top: 50px !important;
}
.furniture-service.pb-100 {
  padding-bottom: 50px !important;
}
.furniture-service__item {
  background: #fff;
  padding: 20px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.furniture-service__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.furniture-service__item .fsr-icon svg {
  width: 45px;
  height: 45px;
}
.furniture-service__item .frs-content h6 {
  font-size: 15px;
  margin-bottom: 2px;
}
.furniture-service__item .frs-content p {
  font-size: 13px;
  color: #888;
}

/* ----- 3. DISCOUNT / OFF SECTION: lighter, elegant card style ----- */
.furniture-off.pb-100 {
  padding-bottom: 50px !important;
}
.furniture-off__item {
  border-radius: 8px;
  overflow: hidden;
  padding: 40px !important;
  min-height: 280px;
  position: relative;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.furniture-off__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.furniture-off__item .off-content {
  z-index: 2;
  max-width: 55%;
}
.furniture-off__item .fo-discount {
  color: var(--clr-theme-primary) !important;
  font-weight: 700;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 8px;
}
.furniture-off__item h3 {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #231F20 !important;
  line-height: 1.3 !important;
  margin-bottom: 20px !important;
}
.furniture-off__item .off-thumb {
  position: absolute;
  right: 15px;
  bottom: 0;
  top: 0;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.furniture-off__item .off-thumb img {
  max-height: 90%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.furniture-off__item:hover .off-thumb img {
  transform: scale(1.04);
}

/* ----- 4. FEATURED PRODUCTS: full-fit images, no empty space ----- */
/* Override base product-thumb padding */
.product-thumb {
  padding: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.furniture__product .product-thumb {
  padding: 0 !important;
  background-color: #f9f7f4 !important;
}
.furniture__product .product-thumb img,
.product-thumb img {
  width: 100% !important;
  height: 400px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  display: block;
}
.furniture__product {
  border: 1px solid #f0ece6;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  background: #fff;
}
.furniture__product:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.furniture__product .product-content {
  padding: 16px 14px !important;
}
.furniture__product .product-title {
  font-size: 16px;
  font-weight: 600;
}

/* Product badge / Sale tag positioning */
.furniture__product .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
}
.furniture__product .product-trending {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 4px;
}

/* Add to cart action button */
.furniture__product .product-action-item {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 5;
}

/* ----- 5. TOP SALE / FEATURED SECTION: tighter spacing ----- */
.discount-area.section-space.pt-0 {
  padding-top: 0 !important;
  padding-bottom: 80px !important;
}

/* ----- 6. HEADER COUPON CODE VISIBILITY ----- */
.header-top-notice > p {
  font-size: 13px !important;
  letter-spacing: 0.5px;
  font-weight: 600 !important;
}
.header-top-notice > p span.text-white {
  background: rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 700;
}

/* ----- 7. ORANGE COLOR BLENDING (make it warmer/sophisticated) ----- */
:root {
  --clr-theme-primary: #F26722;
}
/* Override any lingering raw orange (#eb753b) */
.product-price span,
.furniture__product .product-price span {
  color: var(--clr-theme-primary) !important;
}
.solid-btn {
  background-color: var(--clr-theme-primary) !important;
  border-color: var(--clr-theme-primary) !important;
}
.solid-btn:hover {
  background-color: #d45617 !important;
  border-color: #d45617 !important;
}

/* ----- 8. BANNER CONTENT: better alignment & spacing ----- */
.banner-content-4 > span {
  background: rgba(242, 103, 34, 0.12) !important;
  color: var(--clr-theme-primary) !important;
  font-size: 13px !important;
  letter-spacing: 1px;
  padding: 5px 14px !important;
  border-radius: 4px;
}
.banner-title-4 {
  font-size: 56px !important;
  line-height: 1.15 !important;
  margin-bottom: 16px !important;
}
@media (max-width: 991px) {
  .banner-title-4 {
    font-size: 36px !important;
  }
}
.banner-content-4 > p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 420px;
}

/* Banner thumb: full display */
.banner-thumb-4 img {
  max-height: 520px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* ----- 9. SLIDER NAVIGATION BUTTONS ----- */
.discount-slider-navigation button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #ddd !important;
  background: #fff;
  color: #333;
  transition: all 0.3s ease;
}
.discount-slider-navigation button:hover {
  background: var(--clr-theme-primary) !important;
  border-color: var(--clr-theme-primary) !important;
  color: #fff;
}

/* ----- 10. RESPONSIVE FIXES ----- */
@media (max-width: 767px) {
  .furniture__product .product-thumb img,
  .product-thumb img {
    height: 300px !important;
  }
  .furniture-off__item {
    min-height: 220px;
  }
  .banner-thumb-4 img {
    max-height: 350px !important;
  }
}

/* ----- 11. FOOTER STYLING & HIGH CONTRAST ----- */
footer.theme-bg-2 {
  background-color: #191512 !important; /* Espresso/Charcoal - ultra luxury background */
  color: #c5bcae !important;
  border-top: 3px solid var(--clr-theme-primary);
  font-family: 'Inter', sans-serif;
}
.footer-widget-title h4 {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 25px;
}
.footer-widget-title h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: var(--clr-theme-primary);
}
.footer-widget-content p {
  color: #b0a698 !important;
  font-size: 14px;
  line-height: 1.8;
}
.footer-widget-content ul {
  padding-left: 0;
  list-style: none;
}
.footer-widget-content ul li {
  margin-bottom: 12px;
}
.footer-widget-content ul li a {
  color: #c5bcae !important;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.footer-widget-content ul li a::before {
  content: '→';
  color: var(--clr-theme-primary);
  margin-right: 8px;
  font-size: 12px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateX(-5px);
}
.footer-widget-content ul li a:hover {
  color: #ffffff !important;
  padding-left: 5px;
}
.footer-widget-content ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer-info-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-info-item:last-child {
  border-bottom: none;
}
.footer-info-icon span i {
  color: var(--clr-theme-primary) !important;
  font-size: 16px;
}
.footer-info-text a {
  color: #c5bcae !important;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-info-text a:hover {
  color: #ffffff !important;
}
.footer-info-text p {
  color: #928779 !important;
  font-size: 13px;
  margin-top: 4px;
}
.footer-social ul li a {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff !important;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-social ul li a:hover {
  background: var(--clr-theme-primary);
  color: #ffffff !important;
  border-color: var(--clr-theme-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 103, 34, 0.3);
}

/* Bottom copyright styling */
.footer-copyright-area.b-t {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 25px 0;
}
.footer-copyright-text p {
  color: #928779 !important;
  font-size: 13px;
}
.footer-copyright-text p a {
  color: #ffffff !important;
  transition: color 0.3s ease;
}
.footer-copyright-text p a:hover {
  color: var(--clr-theme-primary) !important;
}
.footer-conditions ul li a {
  color: #928779 !important;
  font-size: 13px;
  transition: color 0.3s ease;
}
.footer-conditions ul li a:hover {
  color: var(--clr-theme-primary) !important;
}

/* Grayscale payment icons with hover color transition */
.footer-payment-thumb img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.footer-payment-thumb:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Footer logo image white filter */
.footer-logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ----- 12. BOUTIQUE BREADCRUMBS ----- */
.boutique-breadcrumb {
  background: linear-gradient(rgba(255, 251, 247, 0.45), rgba(245, 234, 224, 0.45)), url('../imgs/satin_bg.png') no-repeat center center !important;
  background-size: cover !important;
  border-bottom: 1px solid #E5D5C6;
  position: relative;
  z-index: 11;
  padding: 75px 0 !important;
  box-shadow: inset 0 -3px 10px rgba(0,0,0,0.02);
}

.boutique-breadcrumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(242, 103, 34, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

.boutique-breadcrumb .breadcrumb__wrapper {
  position: relative;
  z-index: 1;
}

.boutique-breadcrumb .breadcrumb__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #191512 !important;
  font-size: 40px;
  margin-bottom: 12px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  text-shadow: none;
}

.boutique-breadcrumb .breadcrumb__menu ul li {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.boutique-breadcrumb .breadcrumb__menu ul li a {
  color: #8C8276 !important;
  transition: all 0.3s ease;
  text-shadow: none;
}

.boutique-breadcrumb .breadcrumb__menu ul li a:hover {
  color: #F26722 !important;
  letter-spacing: 1.8px;
}

.boutique-breadcrumb .breadcrumb__menu ul li::after {
  content: "/";
  margin: 0 12px;
  color: #CDBEB0;
  font-weight: 400;
}

.boutique-breadcrumb .breadcrumb__menu ul li:last-child::after {
  display: none;
}

.boutique-breadcrumb .breadcrumb__menu ul li span {
  color: #F26722 !important;
  text-shadow: none;
}

/* ----- 13. SHOP PAGE SIDEBAR & GRID ----- */
.shop-sidebar-widget {
  background: #ffffff;
  padding: 30px;
  border-radius: 4px;
  border: 1px solid #FAF6F2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.shop-sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #191512;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid #FAF0E6;
}

.shop-sidebar-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background-color: var(--clr-theme-primary);
}

/* Search widget styling */
.shop-sidebar-search input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 50px 0 20px;
  background-color: #FDFBF7;
  border: 1px solid #FAF0E6;
  border-radius: 4px;
  color: #191512;
  font-size: 14px;
  transition: all 0.3s ease;
}

.shop-sidebar-search input:focus {
  border-color: var(--clr-theme-primary);
  outline: none;
  background-color: #ffffff;
}

.shop-sidebar-search button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border: none;
  background: none;
  color: #8C8276;
  font-size: 16px;
  transition: color 0.3s ease;
}

.shop-sidebar-search button:hover {
  color: var(--clr-theme-primary);
}

/* Categories & Sort list styling */
.shop-sidebar-categories,
.shop-sidebar-sort {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-sidebar-categories li,
.shop-sidebar-sort li {
  margin-bottom: 12px;
}

.shop-sidebar-categories li:last-child,
.shop-sidebar-sort li:last-child {
  margin-bottom: 0;
}

.shop-sidebar-categories li a,
.shop-sidebar-sort li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6C5F54;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.shop-sidebar-categories li a span {
  font-size: 12px;
  color: #A69B8F;
  background-color: #FDFBF7;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

.shop-sidebar-categories li a:hover,
.shop-sidebar-sort li a:hover,
.shop-sidebar-categories li a.active,
.shop-sidebar-sort li a.active {
  color: var(--clr-theme-primary) !important;
  padding-left: 5px;
}

.shop-sidebar-categories li a.active span {
  background-color: var(--clr-theme-primary);
  color: #ffffff;
}

.no-products-found {
  background-color: #FDFBF7;
  border: 1px dashed #E6DEC9;
  border-radius: 8px;
  padding: 50px 30px;
}

/* ----- 14. BOUTIQUE RESPONSIVENESS OVERRIDES ----- */
@media (max-width: 768px) {
  .category-card {
    height: 300px !important;
  }
  .category-content h3 {
    font-size: 24px !important;
  }
  .middle-banner-area {
    height: auto !important;
    padding: 60px 0;
  }
  .middle-banner-area h2 {
    font-size: 28px !important;
  }
  .atelier-image-grid {
    flex-direction: column;
    gap: 15px !important;
  }
  .atelier-image-grid img {
    width: 100% !important;
    height: 250px !important;
    margin-top: 0 !important;
  }
  .boutique-breadcrumb .breadcrumb__title {
    font-size: 28px !important;
  }
}

/* ----- 14. CART PAGE BUTTONS & STYLE OVERRIDES ----- */
.cart-area .fill-btn {
  background: #191512 !important;
  color: #fff !important;
  border-radius: 30px !important;
  border: none !important;
  transition: all 0.3s ease !important;
  height: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  overflow: hidden !important;
  position: relative !important;
}
.cart-area .fill-btn::before {
  background: #F26722 !important;
  border-radius: 30px !important;
}
.cart-area .fill-btn:hover {
  color: #fff !important;
}
.cart-area .fill-btn-normal {
  color: #fff !important;
}
.cart-area .fill-btn-hover {
  color: #fff !important;
}
.cart-area .table td, .cart-area .table th {
  border-top: none !important;
}

/* Strict Alignments and Layout for Cart Table Columns */
.cart-area .table-content table {
  border: none !important;
  width: 100% !important;
}
.cart-area .table-content table th,
.cart-area .table-content table td {
  border-right: none !important;
  border-left: none !important;
  border-top: none !important;
  border-bottom: 1px solid #FAF0E6 !important;
  vertical-align: middle !important;
}
.cart-area .table-content table th {
  padding: 15px 10px !important;
}
.cart-area .table-content table td {
  padding: 25px 10px !important;
}
.cart-area .table-content table th.cart-product-name,
.cart-area .table-content table td.product-info-cell {
  text-align: left !important;
  width: 50% !important;
}
.cart-area .table-content table th.product-price,
.cart-area .table-content table td.product-price {
  text-align: right !important;
  width: 15% !important;
}
.cart-area .table-content table th.product-quantity,
.cart-area .table-content table td.product-quantity {
  text-align: center !important;
  width: 15% !important;
}
.cart-area .table-content table th.product-subtotal,
.cart-area .table-content table td.product-subtotal {
  text-align: right !important;
  width: 15% !important;
}
.cart-area .table-content table th.product-remove,
.cart-area .table-content table td.product-remove {
  text-align: right !important;
  width: 5% !important;
}

/* Beautiful Boutique Quantity Widget Reset */
.cart-area .product-quantity-form {
  width: 100px !important;
  height: 36px !important;
  border: 1px solid #E6D8CA !important;
  border-radius: 30px !important;
  background: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: relative !important;
  margin: 0 auto !important;
  padding: 0 4px !important;
  overflow: hidden !important;
}

.cart-area .product-quantity-form:hover {
  border-color: #191512 !important;
}

.cart-area .product-quantity-form .qty-btn {
  position: static !important;
  transform: none !important;
  width: 28px !important;
  height: 28px !important;
  line-height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
  color: #8C8276 !important;
  cursor: pointer !important;
  font-size: 10px !important;
  padding: 0 !important;
  transition: all 0.2s ease !important;
  border-radius: 50% !important;
}

.cart-area .product-quantity-form .qty-btn:hover {
  background: #FAF0E6 !important;
  color: #191512 !important;
}

.cart-area .product-quantity-form .qty-input {
  height: 100% !important;
  width: 32px !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #191512 !important;
  border: none !important;
  background: transparent !important;
  outline: none !important;
  display: inline-block !important;
  padding: 0 !important;
}

/* =============================================
   15. CUSTOM TOAST NOTIFICATIONS (BOUTIQUE THEME)
   ============================================= */
#toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 100000;
}
.custom-toast {
    background: #ffffff;
    border-radius: 8px;
    padding: 14px 22px;
    margin-bottom: 12px;
    box-shadow: 0 10px 40px rgba(25, 21, 18, 0.08);
    display: flex;
    align-items: center;
    min-width: 320px;
    max-width: 480px;
    animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border-left: 5px solid #F26722;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    border-right: 1px solid rgba(0,0,0,0.03);
}
.custom-toast.toast-success {
    border-left-color: #28a745;
}
.custom-toast.toast-error {
    border-left-color: #dc3545;
}
.custom-toast.toast-warning {
    border-left-color: #ffc107;
}
.custom-toast.toast-info {
    border-left-color: #17a2b8;
}
.custom-toast-icon {
    font-size: 20px;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toast-success .custom-toast-icon { color: #28a745; }
.toast-error .custom-toast-icon { color: #dc3545; }
.toast-warning .custom-toast-icon { color: #ffc107; }
.toast-info .custom-toast-icon { color: #17a2b8; }

.custom-toast-message {
    color: #191512;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    flex-grow: 1;
    line-height: 1.4;
}
.custom-toast-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #aaa;
    cursor: pointer;
    margin-left: 14px;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}
.custom-toast-close:hover {
    color: #191512;
}

@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* =============================================
   16. MOBILE RESPONSIVENESS IMPROVEMENTS (CART & CHECKOUT)
   ============================================= */
@media (max-width: 991px) {
  .checkout-form-container,
  .checkout-summary-container {
    padding: 25px !important;
  }

  /* Convert Table to Clean, Premium Mobile Cards */
  .cart-area .table-content table thead {
    display: none !important;
  }
  
  .cart-area .table-content table tbody tr {
    display: block !important;
    position: relative !important;
    padding: 20px !important;
    background: #fff !important;
    border: 1px solid #E6D8CA !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 15px rgba(25, 21, 18, 0.03) !important;
  }
  
  .cart-area .table-content table td.product-info-cell,
  .cart-area .table-content table td.product-price,
  .cart-area .table-content table td.product-quantity,
  .cart-area .table-content table td.product-subtotal,
  .cart-area .table-content table td.product-remove {
    display: block !important;
    width: 100% !important;
    border: none !important;
    padding: 10px 0 !important;
    text-align: left !important;
  }
  
  .cart-area .table-content table td.product-info-cell {
    padding-top: 0 !important;
    padding-bottom: 15px !important;
    border-bottom: 1px dashed #FAF0E6 !important;
  }
  
  .cart-area .table-content table td.product-info-cell .d-flex {
    align-items: flex-start !important;
  }
  
  .cart-area .table-content table td.product-info-cell img {
    width: 70px !important;
    height: 88px !important;
  }

  .cart-area .table-content table td.product-price {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px !important;
    border-bottom: 1px dashed #FAF0E6 !important;
  }
  .cart-area .table-content table td.product-price::before {
    content: "Unit Price";
    font-size: 13px;
    color: #8C8276;
    font-weight: 500;
  }

  .cart-area .table-content table td.product-quantity {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed #FAF0E6 !important;
  }
  .cart-area .table-content table td.product-quantity::before {
    content: "Quantity";
    font-size: 13px;
    color: #8C8276;
    font-weight: 500;
  }
  .cart-area .product-quantity-form {
    margin: 0 !important;
  }

  .cart-area .table-content table td.product-subtotal {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0 !important;
  }
  .cart-area .table-content table td.product-subtotal::before {
    content: "Subtotal";
    font-size: 13px;
    color: #8C8276;
    font-weight: 600;
  }

  .cart-area .table-content table td.product-remove {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    width: auto !important;
    padding: 0 !important;
    border: none !important;
  }
  
  /* Checkout Notices & Headers */
  .checkout-login-notice {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 15px !important;
    gap: 10px !important;
  }
  .checkout-login-notice a {
    align-self: flex-start !important;
    margin-top: 2px !important;
  }
}

@media (max-width: 576px) {
  .checkout-form-container,
  .checkout-summary-container,
  .cart-page-total,
  .coupon-wrapper {
    padding: 20px 15px !important;
  }
  .checkout-area h3 {
    font-size: 19px !important;
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
  }
}

@media (max-width: 480px) {
  #coupon-input-container {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  #coupon_code {
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    width: 100% !important;
  }
  #apply-coupon-btn {
    width: 100% !important;
  }
}


