/* 
  LuxEcom Main UI Design System 
  Author: Antigravity AI
*/

:root {
  /* Colors */
  --primary: #1a1a1a;
  --primary-hover: #000000;
  --secondary: #666666;
  --background: #ffffff;
  --surface: #f5f5f0;
  --text-primary: #1a1a1a;
  --text-secondary: #777777;
  --accent: #d3cdb3; /* Sand */
  --glass: #ffffff;
  --border: #eeeeee;

  /* Spacing & Borders */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --container-width: 1440px;
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--background);
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
.site-header {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.site-title a {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-navigation ul li a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-navigation ul li a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cart {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.cart-icon {
  font-size: 1.2rem;
}

.cart-count {
  background: #111111;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 0;
  position: absolute;
  top: -5px;
  right: -5px;
}

/* Content Areas */
.content-area {
  padding: 60px 0;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Posts & Product Cards */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.post-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.post-thumbnail img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.post-content {
  padding: 25px;
}

.entry-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.entry-title a {
  color: var(--text-primary);
}

.entry-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.read-more {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* WooCommerce Global Styles */
.woocommerce-container {
  padding: 60px 0;
}

ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 2.5rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

ul.products::before,
ul.products::after {
  display: none !important;
}

.woocommerce-products-header {
  text-align: left;
}

.shop-controls {
  padding: 1.5rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.result-count {
  font-size: 0.85rem;
  color: #8d8d8d;
}

.woocommerce-ordering select {
  border: none;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  outline: none;
}

/* Override default WooCommerce card styles */
.woocommerce ul.products li.product {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: block;
}

.woocommerce ul.products li.product img {
  margin-bottom: 0 !important;
}

/* Pagination */
.woocommerce-pagination {
  margin-top: 4rem;
  text-align: center;
}

.woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #eee;
  color: #111;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.woocommerce-pagination ul.page-numbers li span.current,
.woocommerce-pagination ul.page-numbers li a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Footer */
.site-footer {
  background: #020617;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.site-info .footer-logo a {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  display: inline-block;
  margin-bottom: 20px;
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.credits {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post-card,
.product {
  animation: fadeIn 0.6s ease backwards;
}

/* Single Post Styles */
.single-post-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.entry-meta {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.entry-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.entry-content p {
  margin-bottom: 20px;
}

.entry-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

/* 404 Page */
.error-404-container {
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .page-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.search-form-wrapper {
  margin: 30px 0;
}

.search-field {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  width: 300px;
}

.search-submit {
  background: var(--primary);
  border: none;
  color: white;
  padding: 12px 25px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.secondary-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 12px 30px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  transition: background 0.3s ease;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Homepage Specific Styles */
.text-gradient {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-surface-subtle {
  background-color: rgba(30, 41, 59, 0.4);
}

/* Hero Section */
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15) 0%,
    rgba(99, 102, 241, 0) 70%
  );
  z-index: -1;
  filter: blur(80px);
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.floating-badge {
  position: absolute;
  z-index: 10;
  min-width: 150px;
}

.badge-1 {
  top: 10%;
  right: -5%;
}

.badge-2 {
  bottom: 15%;
  left: -5%;
}

/* Animations */
.animate-up {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-up-delay-1 {
  animation: fadeIn 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.animate-up-delay-2 {
  animation: fadeIn 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.animate-bounce {
  animation: bounce 3s infinite ease-in-out;
}

.animate-bounce-slow {
  animation: bounce 4s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Category Cards */
.category-card {
  height: 400px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card img {
  transition: transform 0.8s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0) 60%
  );
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

/* Promo Banner */
.promo-banner {
  background: #111111;
  border: 1px solid var(--border);
  border-radius: 0 !important;
}

.promo-glow {
  display: none;
}

.promo-floating-img {
  transition: transform 0.5s ease;
  border-radius: 0 !important;
}

.promo-banner:hover .promo-floating-img {
  transform: scale(1.02);
}

/* Feature Items */
.feature-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .floating-badge {
    display: none;
  }
  .hero-section {
    padding-top: 2rem;
  }
}

/* Minimalist Product UI (Requested Design) */
.featured-products-minimal {
  background-color: #ffffff;
  padding: 80px 0;
  color: #111;
}

.section-header-minimal {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8d8d8d;
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.section-title-minimal {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: #111;
  text-transform: uppercase;
}

.view-all-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-grid-minimal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card-minimal {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-image-container {
  background-color: #f6f6f6;
  padding: 1rem;
  border-radius: 2px;
  margin-bottom: 1rem;
  aspect-ratio: 1 / 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.product-hover-actions {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.product-card-minimal:hover .product-hover-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-details-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.view-details-btn,
.product-hover-actions .button {
  background: #111 !important;
  color: #fff !important;
  padding: 8px 20px !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  border-radius: 0 !important;
  width: 160px !important;
  text-align: center !important;
  border: 1px solid #111 !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  display: inline-block !important;
}

.view-details-btn:hover,
.product-hover-actions .button:hover {
  background: #fff !important;
  color: #111 !important;
}

.product-hover-actions .button.loading {
  opacity: 0.7;
}

.product-hover-actions .button.added::after {
  content: " ✓";
  font-family: inherit;
}

.product-image-container img {
  max-width: 90%;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-minimal:hover img {
  transform: scale(1.05);
}

.product-info-minimal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-details {
  flex: 1;
}

.product-brand {
  font-size: 0.75rem;
  color: #8d8d8d;
  margin-bottom: 0.2rem;
  display: block;
}

.product-name-minimal {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  color: #111;
  display: block;
}

.product-price-minimal {
  font-size: 0.85rem;
  font-weight: 500;
  color: #111;
}

.product-price-minimal .old-price {
  color: #8d8d8d;
  text-decoration: line-through;
  margin-left: 0.5rem;
  font-weight: 400;
}

.product-price-minimal .woocommerce-Price-amount {
  color: #111;
}

.product-price-minimal del .woocommerce-Price-amount {
  color: #8d8d8d;
  text-decoration: line-through;
}

.product-price-minimal ins {
  text-decoration: none;
}

.product-meta-minimal {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.color-swatches-minimal {
  display: flex;
  gap: 4px;
}

.swatch-minimal {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.arrow-icon-minimal {
  font-size: 0.7rem;
  color: #8d8d8d;
  margin-left: 2px;
}

@media (max-width: 768px) {
  .product-grid-minimal {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-header-minimal {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}


/* Global text color fix for minimalist sections */
.featured-products-minimal, 
.featured-products-minimal p, 
.featured-products-minimal h1, 
.featured-products-minimal h2, 
.featured-products-minimal h3, 
.featured-products-minimal h4, 
.featured-products-minimal h5, 
.featured-products-minimal h6, 
.featured-products-minimal span, 
.featured-products-minimal div, 
.featured-products-minimal td, 
.featured-products-minimal th, 
.featured-products-minimal a:not(.btn):not(.button) {
    color: #111 !important;
}

.featured-products-minimal .section-label {
    color: #8d8d8d !important;
}

/* Fix for cart table images */
.woocommerce-cart .featured-products-minimal table.cart td.product-thumbnail img {
    background-color: #f6f6f6 !important;
}

/* Ensure buttons remain legible */
.featured-products-minimal .button,
.featured-products-minimal .btn,
.featured-products-minimal .view-details-btn {
    color: #fff !important;
}

/* Empty Cart Styling */
.cart-empty {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #111 !important;
}

.return-to-shop {
    text-align: center;
    margin-bottom: 4rem;
}

/* Checkout Steps Indicator */
.checkout-steps {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.checkout-steps .step {
    font-size: 0.85rem;
    font-weight: 500;
    color: #8d8d8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-steps .step.active {
    color: #111;
    font-weight: 700;
}

.checkout-steps .step span {
    font-family: "Outfit", sans-serif;
    margin-right: 5px;
}

.checkout-steps .step-divider {
    height: 1px;
    background: #eee;
    flex-grow: 0;
    width: 60px;
}

/* Professional Cart Table Refinements */
.woocommerce-cart table.cart td.product-remove a.remove {
    font-size: 1.5rem !important;
    color: #ccc !important;
    font-weight: 300 !important;
    text-decoration: none !important;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.woocommerce-cart table.cart td.product-remove a.remove:hover {
    background: #f00 !important;
    color: #fff !important;
    border-color: #f00;
}

.woocommerce-cart table.cart td.product-name a:hover {
    opacity: 0.7;
}

.woocommerce-cart .actions .button[name="update_cart"] {
    background: transparent !important;
    color: #111 !important;
    border: 1px solid #eee !important;
    font-weight: 500 !important;
    font-size: 0.7rem !important;
}

.woocommerce-cart .actions .button[name="update_cart"]:hover {
    border-color: #111 !important;
}

.woocommerce-cart .actions .coupon input#coupon_code {
    background: #fbfbfb !important;
    border-color: #f0f0f0 !important;
}

/* Fix for cart table layout on smaller desktops */
@media (max-width: 1200px) {
    .checkout-steps {
        gap: 1rem;
    }
    .checkout-steps .step-divider {
        width: 30px;
    }
}

/* Checkout Page Professional UI */
.woocommerce-checkout #customer_details {
    margin-bottom: 4rem;
}

.woocommerce-checkout h3 {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    color: #111;
}

.woocommerce-checkout .form-row {
    margin-bottom: 1.5rem !important;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    border: 1px solid #eee !important;
    padding: 12px 18px !important;
    border-radius: 0 !important;
    background: #fbfbfb !important;
    font-size: 0.9rem;
    width: 100% !important;
    outline: none !important;
}

.woocommerce-checkout .form-row label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #8d8d8d;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}

#order_review {
    background: #f9f9f9;
    padding: 3rem;
    border: 1px solid #eee;
}

.woocommerce-checkout-review-order-table {
    border: none !important;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 1.2rem 0 !important;
    border-bottom: 1px solid #eee !important;
    text-align: left !important;
    font-size: 0.85rem;
    background: transparent !important;
    color: #111 !important;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    border-bottom: none !important;
    font-weight: 800;
    font-size: 1.1rem;
    padding-top: 2rem !important;
}

#payment {
    background: transparent !important;
    padding: 2rem 0 0 !important;
}

#payment ul.payment_methods {
    border-bottom: 1px solid #eee !important;
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

#payment div.payment_box {
    background: #eee !important;
    color: #555 !important;
    font-size: 0.8rem !important;
    border-radius: 0 !important;
}

#payment div.payment_box::before {
    border-bottom-color: #eee !important;
}

#place_order {
    background: #111 !important;
    color: #fff !important;
    padding: 18px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px;
    width: 100% !important;
    border-radius: 0 !important;
    transition: all 0.3s ease;
}

#place_order:hover {
    background: #333 !important;
}

/* New Professional Cart UI (As per image) */
.woocommerce-cart .featured-products-minimal {
    background-color: #f1f3f6 !important; /* Slightly darker grey for the page background */
    padding: 60px 0;
}

.cart-main-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.cart-content-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.cart-header-row {
    display: grid;
    grid-template-columns: 40px 3fr 1fr 1.5fr 1fr;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
    color: #111;
    font-size: 0.9rem;
    font-weight: 700;
    align-items: center;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 40px 3fr 1fr 1.5fr 1fr;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cart-item-row:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #ddd;
}

.cart-item-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    background: #f6f6f6;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.cart-item-details .color-info {
    font-size: 0.75rem;
    color: #8d8d8d;
}

/* Quantity Selector */
.cart-qty-selector {
    display: flex;
    align-items: center;
    background: #f6f6f6;
    border-radius: 8px;
    padding: 5px;
    width: fit-content;
}

.cart-qty-btn {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #8d8d8d;
    cursor: pointer;
}

.cart-qty-input {
    width: 30px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 0.9rem;
    color: #111;
}

.cart-item-price {
    font-weight: 800;
    font-size: 1.1rem;
    color: #111;
}

.cart-item-remove {
    color: #ccc;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-item-remove:hover {
    color: #f00;
}

/* Cart Footer Actions */
.cart-footer-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn-back {
    background: transparent;
    border: none;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-cancel-order {
    background: #f03e3e !important;
    color: #fff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 30px !important;
    font-weight: 700 !important;
}

/* Sidebar Boxes */
.cart-sidebar-box {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.cart-sidebar-box h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.coupon-input {
    background: #f1f3f6 !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 12px 20px !important;
    width: 100% !important;
    margin-bottom: 15px !important;
    font-size: 0.85rem;
}

.btn-apply-coupon {
    background: transparent !important;
    border: 1px solid #2563eb !important;
    color: #2563eb !important;
    border-radius: 10px !important;
    width: 100% !important;
    padding: 12px !important;
    font-weight: 600 !important;
}

/* Summary Rows */
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #8d8d8d;
}

.summary-row.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #111;
    font-weight: 800;
    font-size: 1.3rem;
}

/* Payment Methods */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.payment-method-item {
    background: #f6f6f6;
    border-radius: 8px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.payment-method-item.active {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 2px 10px rgba(37,99,235,0.1);
}

.payment-method-item img {
    max-width: 25px;
    opacity: 0.7;
}

.btn-checkout {
    background: #2563eb !important;
    color: #fff !important;
    border-radius: 10px !important;
    width: 100% !important;
    padding: 15px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    border: none !important;
}

@media (max-width: 992px) {
    .cart-main-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Side Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f3f6;
}

.cart-drawer-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    color: #111;
    font-family: 'Outfit', sans-serif;
}

.cart-drawer-close {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.cart-drawer-close:hover {
    background: #f6f6f6;
}

.cart-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    color: #111 !important;
}

/* Mini Cart Styles */
.widget_shopping_cart_content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.woocommerce-mini-cart__empty-message {
    text-align: center;
    padding: 80px 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.woocommerce-mini-cart__empty-message::before {
    content: "";
    width: 140px;
    height: 140px;
    background: url('https://cdn-icons-png.flaticon.com/512/11329/11329941.png') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    display: block;
}

.woocommerce-mini-cart__buttons .button {
    background: #4f46e5 !important; /* Indigo color from image */
    color: #fff !important;
    border-radius: 50px !important;
    padding: 15px 40px !important;
    font-weight: 700 !important;
    display: inline-block !important;
    text-decoration: none !important;
    transition: transform 0.3s ease, background 0.3s ease !important;
    border: none !important;
    font-size: 0.9rem !important;
}

.woocommerce-mini-cart__buttons .button:hover {
    background: #4338ca !important;
    transform: translateY(-2px);
}

.woocommerce-mini-cart__buttons {
    text-align: center;
    padding-top: 30px;
}

/* Active Mini Cart UI Refinements */
.woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-mini-cart-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f3f6;
}

.mini-cart-img {
    width: 60px;
    height: 60px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 8px;
    flex-shrink: 0;
}

.mini-cart-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mini-cart-details {
    flex: 1;
}

.mini-cart-name-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.mini-cart-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    line-height: 1.3;
    display: block;
    max-width: 90%;
}

.mini-cart-details .remove {
    color: #ccc !important;
    font-size: 1.3rem;
    text-decoration: none;
    line-height: 1;
    margin-top: -3px;
}

.mini-cart-details .remove:hover {
    color: #f00 !important;
}

.mini-cart-meta {
    font-size: 0.85rem;
    color: #8d8d8d;
}

.mini-cart-meta .price-val {
    color: #4f46e5;
    font-weight: 700;
}

/* Shipping Progress Bar */
.shipping-progress {
    background: #fbfbfb;
    padding: 18px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
}

.shipping-msg {
    font-size: 0.8rem;
    margin-bottom: 12px;
    color: #666;
    line-height: 1.4;
}

.shipping-msg .highlight {
    color: #4f46e5;
    font-weight: 800;
}

.progress-bar-container {
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #818cf8);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mini Cart Footer Totals */
.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid #f1f3f6;
    margin-top: 10px;
}

.total-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    font-family: 'Outfit', sans-serif;
}

.total-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4f46e5;
    font-family: 'Outfit', sans-serif;
}

/* Mini Cart Buttons */
.woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-view-cart {
    background: #f6f6f6 !important;
    color: #111 !important;
    border-radius: 12px !important;
    padding: 18px !important;
    font-weight: 700 !important;
    text-align: center !important;
    text-decoration: none !important;
}

.btn-checkout-mini {
    background: #4f46e5 !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 18px !important;
    font-weight: 700 !important;
    text-align: center !important;
    text-decoration: none !important;
}

/* Cart Table Specific Refinements */
.subtotal-val {
    color: #4f46e5;
    font-weight: 800;
    font-size: 1.1rem;
}

.cart-item-unit-price {
    color: #111;
    font-weight: 500;
}

.cart-item-remove-cell .cart-item-remove {
    font-size: 1.5rem;
    color: #ccc !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-item-remove-cell .cart-item-remove:hover {
    color: #f00 !important;
}

/* Sidebar Totals Refinement */
.cart_totals .summary-row.total .total-val {
    color: #4f46e5;
}

.cart_totals .summary-row span:last-child {
    font-weight: 600;
    color: #111;
}

.btn-checkout, .btn-apply-coupon {
    background: #4f46e5 !important;
    border-color: #4f46e5 !important;
}

.btn-checkout:hover, .btn-apply-coupon:hover {
    background: #4338ca !important;
    border-color: #4338ca !important;
}

/* Main Cart Progress Bar */
.main-cart-progress {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

/* Checkout Page Professional Redesign (Indigo Theme) */
.checkout-main-wrapper {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    align-items: start;
}

.checkout-section-box {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #f1f3f6;
}

.checkout-section-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
    font-family: 'Outfit', sans-serif;
}

.woocommerce-checkout .form-row label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    display: block;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    background: #fff !important;
    border: 1.5px solid #f1f3f6 !important;
    border-radius: 15px !important;
    padding: 14px 20px !important;
    font-size: 0.95rem;
    width: 100% !important;
    transition: all 0.3s ease;
}

.woocommerce-checkout .form-row input.input-text:focus {
    border-color: #4f46e5 !important;
    background: #fff !important;
}

/* Order Review Items */
.review-order-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f6;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #8d8d8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #fbfbfb;
}

.review-order-item .item-img {
    width: 60px;
    height: 60px;
    background: #f9f9f9;
    border-radius: 15px;
    padding: 8px;
    position: relative;
    border: 1px solid #f1f3f6;
}

.item-qty-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #4f46e5;
    color: #fff;
    font-size: 0.7rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border: 2px solid #fff;
}

/* Shipping Methods Checkout */
.woocommerce-shipping-methods li {
    background: #fff;
    border: 1.5px solid #f1f3f6;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.woocommerce-shipping-methods input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #4f46e5;
}

/* Payment Section */
#payment ul.payment_methods li {
    background: #fff;
    border: 1.5px solid #f1f3f6;
    border-radius: 15px;
    padding: 18px 25px;
    margin-bottom: 15px;
}

#payment div.payment_box {
    background: #f9fafb !important;
    border: none !important;
    border-radius: 12px !important;
    color: #64748b !important;
    padding: 20px !important;
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
}

#place_order {
    background: #4f46e5 !important;
    border-radius: 15px !important;
    padding: 20px !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    transition: transform 0.3s ease !important;
}

#place_order:hover {
    transform: translateY(-2px);
    background: #4338ca !important;
}

/* Product Slider Full Width (Image based) */
.product-slider-section {
    background: #fff;
    margin-bottom: 60px;
}

.slider-header-bar {
    background: #000;
    color: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
}

.horizontal-slider-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    gap:1rem;
}

.horizontal-slider-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.slider-item-card {
    flex: 0 0 25%; /* 4 items visible */
    min-width: 300px;
    scroll-snap-align: start;
    border-right: 1px solid #f1f3f6;
    position: relative;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .slider-item-card {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 768px) {
    .slider-item-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 480px) {
    .slider-item-card {
        flex: 0 0 85%;
    }
}

.slider-img-box {
    width: 100%;
    aspect-ratio: 4/5;
    background: #f6f6f6;
    overflow: hidden;
    position: relative;
}

.slider-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-item-card:hover .slider-img-box img {
    transform: scale(1.05);
}

.slider-info-box {
    padding: 15px 20px;
    background: #fff;
}

.slider-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.slider-item-name {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #111;
    margin: 0;
    max-width: 80%;
}

.slider-item-rating {
    font-size: 0.75rem;
    color: #111;
    font-weight: 700;
}

.slider-item-rating span {
    color: #22c55e; /* Green star */
}

.slider-item-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #111;
}

.slider-item-price .old-price {
    color: #ccc;
    text-decoration: line-through;
    font-size: 0.75rem;
    margin-left: 8px;
}

.slider-color-swatches {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.slider-swatch {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 1px solid #eee;
}

/* Scrollbar styling for the slider */
.slider-scrollbar-track {
    height: 3px;
    background: #f1f3f6;
    margin: 0 30px 40px;
    position: relative;
    border-radius: 2px;
}

.slider-scrollbar-thumb {
    position: absolute;
    height: 100%;
    background: #8d8d8d;
    width: 20%;
    border-radius: 2px;
    left: 0;
    transition: left 0.1s ease;
}

.wishlist-btn-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #111;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.wishlist-btn-overlay:hover {
    opacity: 1;
}

/* New Premium Hero Section */
.hero-section-new {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-content-new {
    position: relative;
    z-index: 10;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #4f46e5;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.hero-title-new {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #111111;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-title-new span {
    color: #666666;
    position: relative;
}

.hero-desc-new {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-btns-new {
    display: flex;
    gap: 20px;
}

.btn-hero-primary {
    background: #111111;
    color: #fff;
    padding: 18px 45px;
    border-radius: 0;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-hero-primary:hover {
    background: #333333;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: transparent;
    color: #111111;
    padding: 18px 45px;
    border-radius: 0;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid #111111;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-hero-secondary:hover {
    background: #111111;
    color: #ffffff;
}

/* Hero Image Side */
.hero-image-side {
    position: relative;
}

.hero-main-img-wrap {
    position: relative;
    z-index: 5;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.hero-main-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-top-right {
    top: -20px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

.card-bottom-left {
    bottom: 20px;
    left: -40px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    right: -100px;
    z-index: 1;
}

@media (max-width: 992px) {
    .hero-title-new {
        font-size: 3rem;
    }
    .hero-section-new {
        text-align: center;
        padding: 60px 0;
    }
    .hero-desc-new {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns-new {
        justify-content: center;
    }
    .hero-image-side {
        margin-top: 60px;
    }
}

/* Circular Categories Section */
.categories-circular-section {
    padding: 60px 0;
    background: #fff;
}

.categories-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #111;
    font-family: 'Outfit', sans-serif;
}

.categories-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.categories-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.categories-scroll-container::-webkit-scrollbar {
    display: none;
}

.category-circular-item {
    flex: 0 0 auto;
    text-align: center;
    width: 120px;
    scroll-snap-align: start;
    text-decoration: none !important;
    transition: transform 0.3s ease;
}

.category-circular-item:hover {
    transform: translateY(-5px);
}

.category-circle-img {
    width: 120px;
    height: 120px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #f1f3f6;
    transition: all 0.3s ease;
}

.category-circular-item:hover .category-circle-img {
    border-color: #4f46e5;
    background: #fff;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.1);
}

.category-circle-img img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.category-circle-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111;
    text-transform: capitalize;
}

.category-nav-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.category-nav-btn:hover {
    background: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
}

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

@media (max-width: 768px) {
    .category-circular-item {
        width: 100px;
    }
    .category-circle-img {
        width: 100px;
        height: 100px;
    }
    .btn-prev, .btn-next { display: none; }
}

/* Promo Cards Section (Tri-fold) */
.promo-cards-section {
    padding: 60px 0;
    background: #f8fafc;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.promo-card-item {
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.promo-card-item:hover {
    transform: translateY(-10px);
}

.promo-card-item.bg-light {
    background: #fff;
    color: #111;
}

.promo-card-item.bg-dark {
    background: #111;
    color: #fff;
}

.promo-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin-bottom: 30px;
}

.promo-card-brand {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.promo-card-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.promo-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 250px;
    opacity: 0.7;
}

.btn-promo-shop {
    background: #ef4444; /* Red color from image */
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-promo-shop:hover {
    background: #dc2626;
    color: #fff;
}

@media (max-width: 992px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Responsive Header Styles (Dark Professional) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #0f172a; /* Dark Navy Background */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.header-inner {
    width: 100%;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff; /* White LUX */
    text-decoration: none;
    text-transform: uppercase;
}

.text-indigo {
    color: #4f46e5; /* Indigo ECOM */
}

/* Desktop Menu */
.nav-menu-list {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-list li a {
    text-decoration: none;
    color: #e2e8f0; /* Light Gray Text */
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.nav-menu-list li a:hover {
    color: #fff;
}

.nav-menu-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4f46e5;
    transition: width 0.3s ease;
}

.nav-menu-list li a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cart-contents {
    position: relative;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-contents:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cart-icon-svg {
    display: block;
    opacity: 0.8;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #4f46e5;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0f172a;
}

.search-trigger {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #e2e8f0;
    transition: color 0.3s ease;
}

.search-trigger:hover {
    color: #fff;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}

.mobile-nav-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #111;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 25px;
}

.mobile-nav-list li a {
    font-size: 1.2rem;
    font-weight: 800;
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-list li a:hover {
    color: #4f46e5;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    z-index: 1500;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer-overlay.open {
    display: block;
    opacity: 1;
}

/* Ensure menu visibility and spacing */
body {
    padding-top: 100px; /* Offset for fixed header */
}

.home body {
    padding-top: 0; /* No offset for home page as header is transparent */
}

.nav-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu-list li {
    display: inline-block;
}

/* Fallback menu styling for mobile */
.mobile-nav-list.nav-menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-list.nav-menu-list li {
    display: block;
}

/* Minimalist Footer Styles */
.site-footer {
    background: #fcfcfc;
    border-top: 1px solid #f0f0f0;
    font-family: 'Outfit', sans-serif;
}

.footer-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #111;
}

.newsletter-title {
    font-size: 0.95rem;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #4f46e5;
}

.newsletter-desc {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.6;
    max-width: 400px;
}

.newsletter-form-minimal {
    position: relative;
    max-width: 500px;
}

.newsletter-input-group {
    position: relative;
    border-bottom: 1.5px solid #111;
    padding-bottom: 5px;
}

.newsletter-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-submit-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #111;
    transition: transform 0.3s ease;
}

.newsletter-submit-arrow:hover {
    transform: translateY(-50%) translateX(5px);
    color: #4f46e5;
}

.footer-bottom {
    background: #000;
}

.powered-by {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.powered-logo {
    font-size: 0.9rem;
}

/* Fix Category Text Visibility and add Accent Bar */
.category-circular-item {
    text-decoration: none !important;
}

.category-circle-name {
    display: block !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #0f172a !important; /* Dark Navy to match header */
    text-transform: capitalize;
    margin-top: 15px;
    text-align: center;
}

.category-circle-name::after {
    content: '';
    display: block;
    width: 35px;
    height: 4px;
    background: #4f46e5;
    margin: 10px auto 0;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.category-circular-item:hover .category-circle-name::after {
    width: 50px;
}

/* Ensure section background is clean white */
.categories-circular-section {
    background: #ffffff !important;
    padding: 80px 0;
}
/* Premium Editorial Hero Styles */
.hero-section-editorial {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowZoom 20s infinite alternate linear;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.hero-content-editorial {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 100px;
}

.hero-tagline-ed {
    display: block;
    color: #d3cdb3;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.hero-title-ed {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
}

.hero-desc-ed {
    font-size: 1.25rem;
    color: #f5f5f0;
    margin-bottom: 50px;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-btns-ed {
    display: flex;
    gap: 20px;
}

.btn-hero-ed-primary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 20px 50px;
    border: 1px solid #ffffff;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
}

.btn-hero-ed-primary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@media (max-width: 992px) {
    .hero-title-ed {
        font-size: 3.5rem;
    }
}


/* Premium Circular Categories Fix */
.category-circle-img {
    background-color: transparent !important;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 50% !important;
    width: 180px;
    height: 180px;
    margin: 0 auto;
}

.category-circle-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease;
}

.category-circular-item:hover .category-circle-img img {
    transform: scale(1.1);
}

.category-circle-name {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: #1a1a1a !important;
    margin-top: 20px !important;
}

.category-circle-name::after {
    display: none !important; /* Remove the blue underline */
}

/* Drapex premium refresh */
:root {
    --drapex-bg: #f6f1e8;
    --drapex-surface: #fffdf8;
    --drapex-surface-strong: #f0e8db;
    --drapex-ink: #151515;
    --drapex-muted: #6f675d;
    --drapex-line: rgba(21, 21, 21, 0.12);
    --drapex-gold: #9b7c57;
    --drapex-gold-deep: #7a6145;
    --drapex-shadow: 0 24px 60px rgba(31, 24, 15, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--drapex-ink);
    background:
        radial-gradient(circle at top left, rgba(155, 124, 87, 0.12), transparent 28%),
        linear-gradient(180deg, #f9f4ec 0%, #f6f1e8 100%);
    padding-top: 0;
}

body.drawer-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo-text,
.footer-heading,
.promo-title,
.hero-title-ed,
.section-title-minimal,
.categories-title {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0;
    text-transform: none;
}

.site-notice-bar {
    position: sticky;
    top: 0;
    z-index: 1001;
    background: #121212;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-notice-bar.scrolled {
    transform: translateY(-100%);
    opacity: 0;
}

.site-notice-copy {
    margin: 0;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 48px;
    background: rgba(246, 241, 232, 0.84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
    padding: 1.1rem 0;
}

.site-header.scrolled {
    top: 0;
    background: rgba(255, 253, 248, 0.95);
    box-shadow: 0 10px 40px rgba(31, 24, 15, 0.08);
}

.header-inner {
    gap: 1.5rem;
}

.site-logo-link,
.drawer-branding {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-decoration: none;
}

.logo-text {
    color: var(--drapex-ink);
    font-size: 2rem;
    line-height: 0.9;
}

.logo-subtext {
    color: var(--drapex-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nav-menu-list {
    gap: 2rem;
}

.nav-menu-list li a {
    color: var(--drapex-ink);
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: none;
}

.nav-menu-list li a::after {
    background: var(--drapex-gold);
}

.header-shop-link,
.drawer-shop-link {
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.35rem;
    border: 1px solid var(--drapex-line);
    background: rgba(255, 255, 255, 0.6);
    color: var(--drapex-ink);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-shop-link:hover,
.drawer-shop-link:hover {
    background: var(--drapex-ink);
    color: #fff;
}

.cart-contents {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--drapex-line);
    border-radius: 999px;
    color: var(--drapex-ink);
    width: 46px;
    height: 46px;
    padding: 0;
}

.cart-contents:hover {
    background: #fff;
    transform: translateY(-1px);
}

.cart-count {
    background: var(--drapex-gold);
    border: 2px solid #fff;
}

.mobile-menu-toggle .bar {
    background: var(--drapex-ink);
}

.mobile-nav-drawer {
    background: var(--drapex-surface);
    width: min(360px, 88vw);
    padding: 2rem;
}

.drawer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-list li a {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.hero-section-editorial {
    min-height: calc(100vh - 48px);
    height: auto;
    padding: 7rem 0 4rem;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(16, 14, 12, 0.76) 0%, rgba(16, 14, 12, 0.38) 48%, rgba(16, 14, 12, 0.16) 100%),
        linear-gradient(180deg, rgba(155, 124, 87, 0.12), rgba(0, 0, 0, 0));
}

.hero-copy-stack {
    max-width: 760px;
}

.hero-tagline-ed {
    color: #e4cfb7;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.hero-title-ed {
    max-width: 820px;
    margin-bottom: 1.5rem;
    font-size: clamp(3.7rem, 8vw, 6.5rem);
    line-height: 0.92;
}

.hero-desc-ed {
    max-width: 620px;
    color: rgba(255, 248, 239, 0.86);
    font-size: 1.1rem;
}

.hero-btns-ed {
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-ed-primary,
.btn-hero-ed-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.btn-hero-ed-primary {
    background: rgba(255, 255, 255, 0.08);
}

.btn-hero-ed-secondary {
    color: #fff;
    background: transparent;
}

.btn-hero-ed-primary:hover,
.btn-hero-ed-secondary:hover {
    background: #fff;
    color: var(--drapex-ink);
}

.btn-dark-fill {
    border-color: var(--drapex-ink);
    background: var(--drapex-ink);
    color: #fff;
}

.btn-dark-fill:hover {
    background: transparent;
    color: var(--drapex-ink);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 980px;
}

.hero-stat-card {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.2rem 1.3rem;
    background: rgba(255, 248, 239, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.hero-stat-value {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-stat-label {
    color: rgba(255, 248, 239, 0.78);
    font-size: 0.92rem;
}

.categories-circular-section,
.featured-products-minimal,
.promo-section-editorial,
.why-us {
    position: relative;
}

.categories-circular-section {
    padding: 6rem 0 4rem;
}

.section-heading-wrap,
.section-header-minimal {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.section-heading-wrap-tight {
    margin-bottom: 2rem;
}

.section-label {
    color: var(--drapex-gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.categories-title,
.section-title-minimal {
    margin: 0.35rem 0 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 0.96;
}

.section-heading-copy {
    max-width: 420px;
    margin: 0;
    color: var(--drapex-muted);
    font-size: 1rem;
}

.categories-scroll-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.category-nav-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--drapex-line);
    background: rgba(255, 255, 255, 0.65);
    color: var(--drapex-ink);
}

.category-circular-item {
    min-width: 210px;
}

.category-circle-img {
    width: 190px;
    height: 190px;
    box-shadow: var(--drapex-shadow);
}

.category-circle-name {
    font-family: "Manrope", sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em !important;
}

.featured-products-minimal {
    padding: 2rem 0 0;
}

.view-all-link {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-grid-minimal {
    gap: 1.5rem;
}

.product-card-minimal,
.slider-item-card,
.feature-item {
    background: rgba(255, 253, 248, 0.72);
    border: 1px solid rgba(21, 21, 21, 0.08);
    box-shadow: var(--drapex-shadow);
}

.product-card-minimal:hover,
.slider-item-card:hover {
    transform: translateY(-4px);
}

.product-image-container,
.slider-img-box {
    background: #efe7db;
}

.product-image-container img,
.slider-img-box img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.product-info-minimal,
.slider-info-box {
    padding: 1.25rem;
}

.product-brand,
.slider-item-rating {
    color: var(--drapex-gold-deep);
}

.product-name-minimal,
.slider-item-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
}

.product-price-minimal,
.slider-item-price {
    font-weight: 700;
}

.arrow-icon-minimal,
.wishlist-btn-overlay {
    color: var(--drapex-ink);
}

.slider-header-bar {
    background: #181511;
    color: rgba(255, 255, 255, 0.88);
    border-radius: 0;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.slider-header-bar-accent {
    background: linear-gradient(90deg, #7a6145 0%, #9b7c57 100%);
}

.promo-section-editorial {
    margin-top: 5rem;
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(240, 232, 219, 0.92));
}

.promo-kicker {
    color: var(--drapex-gold);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.promo-title {
    margin: 1rem 0 1.25rem;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.96;
}

.promo-copy {
    max-width: 520px;
    color: var(--drapex-muted);
    font-size: 1.05rem;
    margin-bottom: 2.25rem;
}

.promo-image {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--drapex-shadow);
}

.feature-item {
    height: 100%;
    border-right: 0;
}

.feature-item h4 {
    margin-bottom: 0.75rem;
    font-size: 2rem;
}

.feature-item p {
    margin: 0;
    color: var(--drapex-muted);
}

.site-footer {
    margin-top: 5rem;
    background: #121110;
    color: rgba(255, 255, 255, 0.84);
    border-top: 0;
    padding: 5rem 0 2rem;
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: #d2b38c;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-heading {
    color: #fff;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 0.95;
    margin-bottom: 1rem;
}

.footer-copy,
.newsletter-desc {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.98rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.footer-title {
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links li a:hover {
    color: #d2b38c;
}

.newsletter-input-group {
    max-width: 420px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input,
.newsletter-submit-arrow {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.powered-logo {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
}

@media (max-width: 991px) {
    .site-header {
        top: 44px;
    }

    .hero-section-editorial {
        min-height: auto;
        padding: 5.5rem 0 3rem;
    }

    .hero-stats-grid,
    .footer-shell,
    .footer-links-grid,
    .section-heading-wrap,
    .section-header-minimal {
        grid-template-columns: 1fr;
        display: grid;
    }

    .categories-scroll-wrapper {
        grid-template-columns: 1fr;
    }

    .category-nav-btn {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .site-notice-copy {
        font-size: 0.64rem;
        letter-spacing: 0.1em;
    }

    .site-header {
        padding: 0.9rem 0;
    }

    .logo-text {
        font-size: 1.7rem;
    }

    .hero-title-ed {
        font-size: 3rem;
    }

    .hero-desc-ed,
    .promo-copy,
    .section-heading-copy {
        font-size: 0.95rem;
    }

    .btn-hero-ed-primary,
    .btn-hero-ed-secondary {
        width: 100%;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
    }

    .category-circular-item {
        min-width: 160px;
    }

    .category-circle-img {
        width: 150px;
        height: 150px;
    }

    .product-name-minimal,
    .slider-item-name,
    .feature-item h4 {
        font-size: 1.55rem;
    }
}

/* Inner page templates */
.brand-page-hero {
    padding: 4.5rem 0 3rem;
}

.brand-page-hero-grid,
.brand-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.brand-page-hero-copy,
.brand-story-block,
.brand-story-copy,
.brand-page-editorial-copy,
.brand-value-card,
.brand-timeline-item,
.brand-cta-panel,
.collection-category-card,
.collection-product-card {
    background: rgba(255, 253, 248, 0.74);
    border: 1px solid rgba(21, 21, 21, 0.08);
    box-shadow: var(--drapex-shadow);
}

.brand-page-hero-copy,
.brand-story-copy,
.brand-page-editorial-copy {
    padding: 2rem;
}

.brand-page-title {
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: 0.92;
    margin: 0.75rem 0 1rem;
}

.brand-page-intro {
    max-width: 600px;
    color: var(--drapex-muted);
    font-size: 1.08rem;
    margin-bottom: 2rem;
}

.brand-page-hero-media img,
.collection-category-card img,
.collection-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-page-hero-media img {
    aspect-ratio: 4 / 5;
    box-shadow: var(--drapex-shadow);
}

.brand-media-fallback {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 0.8rem;
    min-height: 100%;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(240, 232, 219, 0.96));
    border: 1px solid rgba(21, 21, 21, 0.08);
    box-shadow: var(--drapex-shadow);
    aspect-ratio: 4 / 5;
}

.brand-media-fallback h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.95;
}

.brand-page-stat-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.brand-page-stat {
    padding: 1.1rem 1.2rem;
    background: #fff;
    border: 1px solid rgba(21, 21, 21, 0.08);
}

.brand-page-stat strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.88rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.brand-page-stat span {
    color: var(--drapex-muted);
    font-size: 0.94rem;
}

.brand-story-section,
.brand-values-section,
.brand-timeline-section,
.brand-cta-section,
.collection-category-section,
.collection-featured-section,
.collection-product-strip {
    padding: 2rem 0 3rem;
}

.brand-story-block {
    padding: 2rem;
}

.brand-story-copy p,
.brand-page-editorial-copy p {
    color: var(--drapex-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.brand-page-editorial-copy {
    margin-top: 1.5rem;
}

.brand-values-grid,
.collection-category-grid,
.collection-product-grid {
    display: grid;
    gap: 1.5rem;
}

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

.brand-value-card,
.brand-timeline-item {
    padding: 1.8rem;
}

.brand-value-card h3,
.brand-timeline-item h3,
.collection-product-copy h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.brand-value-card p,
.brand-timeline-item p,
.collection-product-copy p {
    color: var(--drapex-muted);
    margin: 0;
}

.brand-timeline-shell {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.brand-timeline-item span {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--drapex-gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
}

.collection-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.collection-secondary-btn {
    border-color: rgba(21, 21, 21, 0.2);
    color: var(--drapex-ink);
    background: rgba(255, 255, 255, 0.4);
}

.collection-secondary-btn:hover {
    background: var(--drapex-ink);
    color: #fff;
}

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

.collection-category-card {
    position: relative;
    display: block;
    min-height: 420px;
    overflow: hidden;
}

.collection-category-card img {
    aspect-ratio: 4 / 5;
    transition: transform 0.45s ease;
}

.collection-category-card:hover img {
    transform: scale(1.05);
}

.collection-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.04), rgba(21, 21, 21, 0.6));
}

.collection-category-copy {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.4rem;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    color: #fff;
}

.collection-category-copy strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 0.95;
}

.collection-category-copy span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.collection-product-card {
    overflow: hidden;
}

.collection-product-image img {
    aspect-ratio: 4 / 5;
}

.collection-product-copy {
    padding: 1.2rem;
}

.collection-product-copy h3 {
    margin-top: 0.35rem;
    margin-bottom: 0.6rem;
}

.collection-product-copy h3 a {
    color: var(--drapex-ink);
}

@media (max-width: 991px) {
    .brand-page-hero-grid,
    .brand-story-layout,
    .brand-values-grid,
    .brand-timeline-shell,
    .collection-category-grid,
    .collection-product-grid {
        grid-template-columns: 1fr;
    }

    .brand-cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .brand-page-hero {
        padding-top: 3rem;
    }

    .brand-page-stat-row,
    .collection-hero-actions {
        grid-template-columns: 1fr;
        display: grid;
    }

    .brand-page-hero-copy,
    .brand-story-copy,
    .brand-story-block,
    .brand-page-editorial-copy,
    .brand-value-card,
    .brand-timeline-item,
    .brand-cta-panel {
        padding: 1.35rem;
    }

    .brand-page-title {
        font-size: 2.5rem;
    }

    .collection-category-card {
        min-height: 320px;
    }
}

/* ============================================================
   Single Product Page — Drapex
   ============================================================ */

.drapex-single-product-page {
    padding: 2.5rem 0 5rem;
}

/* --- Breadcrumb --- */
.drapex-product-breadcrumb {
    margin-bottom: 1.75rem;
}

.drapex-product-breadcrumb .woocommerce-breadcrumb {
    color: var(--drapex-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.drapex-product-breadcrumb .woocommerce-breadcrumb a {
    color: var(--drapex-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.drapex-product-breadcrumb .woocommerce-breadcrumb a:hover {
    color: var(--drapex-gold);
}

/* --- Two-column shell --- */
.drapex-product-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.5rem;
    align-items: start;
}

/* --- Shared card surface --- */
.drapex-product-gallery-shell,
.drapex-product-summary-card,
.drapex-product-lower .woocommerce-tabs,
.drapex-product-lower .related,
.drapex-product-lower .upsells {
    background: rgba(255, 253, 248, 0.9);
    border: 1px solid rgba(21, 21, 21, 0.07);
    box-shadow: 0 8px 32px rgba(31, 24, 15, 0.07);
}

/* --- Gallery --- */
.drapex-product-gallery-shell {
    padding: 1rem;
}

.drapex-product-gallery-shell .woocommerce-product-gallery {
    margin: 0 !important;
}

.drapex-product-gallery-shell .woocommerce-product-gallery__image {
    overflow: hidden;
    background: #efe7db;
}

.drapex-product-gallery-shell .woocommerce-product-gallery__image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.drapex-product-gallery-shell .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.6rem;
    margin-top: 0.85rem !important;
    padding: 0 !important;
    list-style: none !important;
}

.drapex-product-gallery-shell .flex-control-thumbs li {
    float: none !important;
    width: auto !important;
}

.drapex-product-gallery-shell .flex-control-thumbs img {
    border: 2px solid transparent;
    background: #efe7db;
    cursor: pointer;
    transition: border-color 0.2s ease;
    display: block;
    width: 100%;
}

.drapex-product-gallery-shell .flex-control-thumbs img.flex-active,
.drapex-product-gallery-shell .flex-control-thumbs img:hover {
    border-color: var(--drapex-gold);
}

/* --- Sticky summary --- */
.drapex-product-summary-shell {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: none;
}

.drapex-product-summary-shell::-webkit-scrollbar {
    display: none;
}

.drapex-product-summary-card {
    padding: 1.75rem 2rem;
}

/* --- Product header --- */
.drapex-product-header {
    margin-bottom: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
}

.drapex-product-header .section-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--drapex-gold);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.drapex-product-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--drapex-ink);
}

.drapex-product-rating-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

.drapex-product-rating-row .star-rating {
    color: var(--drapex-gold);
    font-size: 0.9em !important;
    margin: 0 !important;
}

.drapex-stock-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    height: 28px;
    padding: 0 0.75rem;
    background: rgba(155, 124, 87, 0.1);
    color: var(--drapex-gold-deep);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(155, 124, 87, 0.2);
}

.drapex-stock-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4caf7d;
    flex-shrink: 0;
}

.drapex-product-price {
    margin: 0;
    color: var(--drapex-ink);
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
}

.drapex-product-price del {
    opacity: 0.38;
    font-size: 0.72em;
    margin-right: 0.4rem;
}

.drapex-product-price ins {
    text-decoration: none;
    color: var(--drapex-gold-deep);
}

/* --- Short description --- */
.drapex-product-intro {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(21, 21, 21, 0.07);
}

.drapex-product-intro,
.drapex-product-intro p {
    color: var(--drapex-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* --- Trust strip (horizontal rows) --- */
.drapex-product-trust-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 1.25rem 0 1.5rem;
    border: 1px solid rgba(21, 21, 21, 0.07);
    background: rgba(255, 255, 255, 0.7);
    overflow: hidden;
}

.drapex-trust-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(21, 21, 21, 0.07);
    transition: background 0.2s ease;
}

.drapex-trust-card:last-child {
    border-bottom: 0;
}

.drapex-trust-card:hover {
    background: rgba(155, 124, 87, 0.04);
}

.drapex-trust-card::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--drapex-gold);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    border-radius: 50%;
    flex-shrink: 0;
}

.drapex-trust-card strong {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--drapex-ink);
    white-space: nowrap;
    min-width: 120px;
}

.drapex-trust-card span {
    color: var(--drapex-muted);
    font-size: 0.84rem;
    line-height: 1.4;
}

/* --- Add to cart / variations --- */
.drapex-product-purchase {
    margin: 0 0 1.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(21, 21, 21, 0.08);
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
}

/* Variable product: variations table */
.drapex-product-purchase .variations {
    width: 100%;
    border: 0;
    margin-bottom: 1rem;
}

.drapex-product-purchase .variations tr {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.drapex-product-purchase .variations td,
.drapex-product-purchase .variations th {
    padding: 0 !important;
    border: 0 !important;
    text-align: left !important;
    background: transparent !important;
}

.drapex-product-purchase .variations label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--drapex-muted);
    margin-bottom: 0.3rem;
}

.drapex-product-purchase .variations select {
    width: 100%;
    height: 46px;
    padding: 0 2.2rem 0 0.9rem;
    border: 1px solid rgba(21, 21, 21, 0.16);
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23151515' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--drapex-ink);
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.drapex-product-purchase .variations select:focus {
    outline: none;
    border-color: var(--drapex-gold);
}

.drapex-product-purchase .reset_variations {
    font-size: 0.72rem;
    color: var(--drapex-muted);
    text-decoration: underline;
    display: inline-block;
    margin-top: 0.35rem;
}

.drapex-product-purchase .woocommerce-variation-price {
    margin-bottom: 0.85rem;
}

/* Add to cart row */
.drapex-product-purchase form.cart {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.65rem;
    align-items: stretch;
    margin: 0 !important;
}

.drapex-product-purchase .quantity {
    flex-shrink: 0;
}

.drapex-product-purchase .quantity .qty {
    width: 72px;
    height: 52px;
    border: 1px solid rgba(21, 21, 21, 0.15);
    background: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    font-family: inherit;
    color: var(--drapex-ink);
    -moz-appearance: textfield;
}

.drapex-product-purchase .quantity .qty::-webkit-inner-spin-button,
.drapex-product-purchase .quantity .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.drapex-product-purchase .quantity .qty:focus {
    outline: none;
    border-color: var(--drapex-gold);
}

.drapex-product-purchase .single_add_to_cart_button {
    flex: 1;
    height: 52px;
    padding: 0 1.25rem !important;
    border-radius: 0 !important;
    border: 1px solid var(--drapex-ink) !important;
    background: var(--drapex-ink) !important;
    color: #fff !important;
    font-family: inherit !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease !important;
    white-space: nowrap;
}

.drapex-product-purchase .single_add_to_cart_button:hover {
    background: var(--drapex-gold-deep) !important;
    border-color: var(--drapex-gold-deep) !important;
    color: #fff !important;
}

.drapex-product-purchase .single_add_to_cart_button.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* --- Meta grid (2 cols) --- */
.drapex-product-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.drapex-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0.9rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(21, 21, 21, 0.07);
}

.drapex-meta-item span {
    color: var(--drapex-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.drapex-meta-item strong,
.drapex-meta-item strong a {
    color: var(--drapex-ink);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.drapex-meta-item strong a:hover {
    color: var(--drapex-gold);
}

/* --- Product detail accordion panel --- */
.drapex-product-detail-panel {
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(21, 21, 21, 0.07);
}

.drapex-product-detail-panel h2 {
    margin: 0 0 0.9rem;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    color: var(--drapex-muted) !important;
}

.drapex-detail-list {
    display: grid;
    gap: 0;
}

.drapex-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(21, 21, 21, 0.06);
}

.drapex-detail-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.drapex-detail-row:first-child {
    padding-top: 0;
}

.drapex-detail-row span {
    color: var(--drapex-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}

.drapex-detail-row strong {
    text-align: right;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--drapex-ink);
}

/* --- Lower section --- */
.drapex-product-lower {
    margin-top: 2rem;
}

.drapex-product-lower .woocommerce-tabs,
.drapex-product-lower .related,
.drapex-product-lower .upsells {
    padding: 1.75rem 2rem;
    margin-bottom: 2rem !important;
}

.drapex-product-lower .woocommerce-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 !important;
    margin: 0 0 1.5rem !important;
    list-style: none !important;
}

.drapex-product-lower .woocommerce-tabs ul.tabs::before,
.drapex-product-lower .woocommerce-tabs ul.tabs::after {
    display: none !important;
}

.drapex-product-lower .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.drapex-product-lower .woocommerce-tabs ul.tabs li::before,
.drapex-product-lower .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.drapex-product-lower .woocommerce-tabs ul.tabs li a {
    display: inline-flex;
    height: 42px;
    align-items: center;
    padding: 0 1.1rem;
    border: 1px solid rgba(21, 21, 21, 0.12);
    background: #fff;
    color: var(--drapex-ink);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.drapex-product-lower .woocommerce-tabs ul.tabs li a:hover {
    background: rgba(21, 21, 21, 0.05);
}

.drapex-product-lower .woocommerce-tabs ul.tabs li.active a {
    background: var(--drapex-ink);
    border-color: var(--drapex-ink);
    color: #fff;
}

.drapex-product-lower .woocommerce-tabs .panel {
    margin: 0 !important;
    color: var(--drapex-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.drapex-product-lower .related > h2,
.drapex-product-lower .upsells > h2 {
    margin: 0 0 1.5rem;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.drapex-product-lower ul.products {
    margin-top: 0 !important;
}

/* --- Notices --- */
.single-product .woocommerce-message,
.single-product .woocommerce-error,
.single-product .woocommerce-info {
    margin-bottom: 1.5rem !important;
    border-top: 0;
    background: rgba(255, 253, 248, 0.95);
    border-left: 3px solid var(--drapex-gold);
    color: var(--drapex-ink);
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .drapex-product-shell {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem;
    }
}

@media (max-width: 991px) {
    .drapex-product-shell {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .drapex-product-summary-shell {
        position: static;
        top: auto;
        max-height: none;
        overflow: visible;
    }

    .drapex-product-meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .drapex-trust-card strong {
        min-width: auto;
    }
}

@media (max-width: 767px) {
    .drapex-single-product-page {
        padding-top: 1.5rem;
    }

    .drapex-product-gallery-shell,
    .drapex-product-summary-card {
        padding: 1rem;
    }

    .drapex-product-lower .woocommerce-tabs,
    .drapex-product-lower .related,
    .drapex-product-lower .upsells {
        padding: 1.25rem;
    }

    .drapex-product-title {
        font-size: 1.85rem;
    }

    .drapex-product-meta-grid {
        grid-template-columns: 1fr 1fr;
    }

    .drapex-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .drapex-detail-row strong {
        text-align: left;
    }

    .drapex-product-purchase form.cart {
        flex-wrap: wrap;
    }

    .drapex-product-purchase .single_add_to_cart_button {
        flex: 1 1 100%;
    }

    .drapex-trust-card {
        padding: 0.65rem 0.85rem;
    }
}