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


:root {
  --color-primary: #0f172a;
  /* Deep Navy */
  --color-accent: #c5a028;
  /* Premium Gold */
  --color-accent-hover: #b08d1e;
  --color-text: #334155;
  --color-text-light: #64748b;
  --color-bg: #f8f9fa;
  --color-white: #ffffff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  background: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
}

.page {
  animation: fadePage 0.4s ease;
}

@keyframes fadePage {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   REMOVE FOCUS OUTLINE FROM ANCHOR TAGS
   ============================================ */
a:focus {
  outline: none !important;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--color-primary);
}

.page-title {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e293b 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.page-title h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: var(--color-white);
  letter-spacing: -1px;
}

.page-title p {
  font-size: 20px;
  opacity: 0.9;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-primary);
  padding: 25px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

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

.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  background: none;
  color: #1f2937;
  font-size: 26px;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.dark-toggle {
  background: none;
  border: none;
  font-size: 20px;
  color: #1f2937;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.dark-toggle:hover {
  color: #667eea;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.nav-menu a:hover {
  color: var(--color-accent);
  background: rgba(197, 160, 40, 0.08);
}

/* Products Dropdown */
.products-dropdown {
  position: relative;
}

.products-dropdown>a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.products-dropdown>a::after {
  content: '▼';
  font-size: 10px;
  margin-left: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.products-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #1f2937;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  font-weight: 500;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: rgba(102, 126, 234, 0.05);
  color: #667eea;
  padding-left: 25px;
}

/* Mobile Menu */
/* .mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
} */

/* .nav-menu.mobile-active {
  display: flex;
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 0 20px 0;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}

.nav-menu.mobile-active {
  left: 0;
}

.nav-menu.mobile-active a {
  width: 100%;
  padding: 15px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin: 0;
  color: #1f2937;
}

.nav-menu.mobile-active .products-dropdown {
  width: 100%;
}

.nav-menu.mobile-active .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  margin: 0;
  border-radius: 0;
  background: #f9fafb;
  border: none;
} */

.wp-block-navigation.items-justified-right {
    --navigation-layout-justification-setting: flex-start;
    --navigation-layout-justify: flex-start;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .has-child .wp-block-navigation__submenu-container {
  padding-left: 0;
  padding-right: 0;
}

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */
.breadcrumb {
  padding: 20px 40px;
  background: #f3f4f6;
  font-size: 14px;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin: 0 10px;
  color: #666;
}

.breadcrumb a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.breadcrumb span {
  color: #666;
}

body.dark .breadcrumb {
  background: #1e293b;
}

body.dark .breadcrumb a {
  color: #60a5fa;
}

body.dark .breadcrumb span {
  color: #94a3b8;
}

/* ============================================
   GRID & CARDS
   ============================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 80px 40px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: var(--color-white);
  border-radius: 1px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-bottom: 3px solid var(--color-accent);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 25px;
  background: #e5e7eb;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 2px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  font-family: var(--font-body);
}

.btn:hover {
  background: #1e293b;
  border-color: #1e293b;
  transform: translateY(-2px);
  color: var(--color-accent);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn:disabled {
  background: #9ca3af;
  border-color: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 40px;
  max-width: 1100px;
  margin: auto;
}

.product-gallery {
  position: relative;
}

.main-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f4f6;
  margin-bottom: 15px;
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  cursor: zoom-in;
}

.zoom-container {
  overflow: hidden;
  border-radius: 12px;
}

.zoom-container:hover .main-image {
  transform: scale(1.1);
}

.thumbnail-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbnail-gallery img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.thumbnail-gallery img:hover {
  border-color: #2563eb;
  transform: scale(1.05);
}

.thumbnail-gallery img.active {
  border-color: #2563eb;
  border-width: 3px;
}

/* Video thumbnail styles */
.thumbnail-gallery .video-thumbnail {
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 70px;
  height: 70px;
}

.thumbnail-gallery .video-thumbnail:hover {
  border-color: #2563eb;
  transform: scale(1.05);
}

.thumbnail-gallery .video-thumbnail.active {
  border-color: #2563eb;
  border-width: 3px;
}

.thumbnail-gallery .video-thumbnail .thumbnail-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbnail-gallery .video-thumbnail .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.thumbnail-gallery .video-thumbnail:hover .video-play-icon {
  background: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.main-video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
}

.lightbox-content video {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
}

.product-info h1 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #1f2937;
}

.product-info p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion {
  margin: 20px 0;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
}

.accordion-btn {
  background: #2563eb;
  color: white;
  cursor: pointer;
  padding: 12px 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  border-radius: 6px;
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-btn:hover {
  background: #1d4ed8;
}

.accordion-btn::after {
  content: '+';
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.accordion-btn.active::after {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f3f4f6;
  border-radius: 0 0 6px 6px;
}

.accordion-content.active {
  max-height: 1000px;
}

.accordion-content-inner {
  padding: 20px;
}

.accordion-content ul {
  list-style: none;
  padding-left: 0;
}

.accordion-content li {
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
}

.accordion-content li:last-child {
  border-bottom: none;
}

.accordion-content li::before {
  content: '✓';
  color: #2563eb;
  font-weight: bold;
  margin-right: 10px;
}

/* ============================================
   FORMS & VALIDATION
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.form-group input.success,
.form-group textarea.success {
  border-color: #10b981;
}

.error-message {
  color: #ef4444;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.error-message.show {
  display: block;
}

.success-message {
  background: #10b981;
  color: white;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  display: none;
}

.success-message.show {
  display: block;
}

.form-group input[readonly] {
  background: #f3f4f6;
  cursor: not-allowed;
}

/* ============================================
   LIGHTBOX/MODAL
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 5px 15px;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 15px 20px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ============================================
   SKELETON LOADERS
   ============================================ */
.skeleton {
  height: 300px;
  border-radius: 10px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 37%, #e5e7eb 63%);
  background-size: 400% 100%;
  animation: skeleton 1.4s ease infinite;
}

@keyframes skeleton {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.skeleton-text {
  height: 16px;
  border-radius: 4px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 37%, #e5e7eb 63%);
  background-size: 400% 100%;
  animation: skeleton 1.4s ease infinite;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1f2933;
  color: #ccc;
  padding: 40px 20px 20px;
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0b1120;
  color: #94a3b8;
  padding: 80px 20px 30px;
  margin-top: 0;
  border-top: 4px solid var(--color-accent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 60px;
}

.footer-section h3 {
  color: var(--color-white);
  margin-bottom: 25px;
  font-size: 20px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #38bdf8;
}

/* WordPress footer links - add transition to base state */
footer a,
footer .wp-block-navigation a,
footer .wp-block-navigation-item a,
footer .wp-block-navigation-item__content,
footer .wp-block-page-list a,
footer .wp-block-page-list-item a,
footer .widget a,
footer .menu-item a,
footer ul li a,
footer .wp-block-group a,
footer .wp-block-columns a,
footer .wp-block-column a,
footer .wp-block-template-part a,
.wp-site-blocks footer a,
.wp-site-blocks footer .wp-block-navigation a,
.wp-site-blocks footer .wp-block-navigation-item a,
.wp-site-blocks footer .wp-block-page-list a {
  transition: color 0.3s ease !important;
}

/* WordPress footer links hover - match demo-site */
footer a:hover,
footer .wp-block-navigation a:hover,
footer .wp-block-navigation-item a:hover,
footer .wp-block-navigation-item__content:hover,
footer .wp-block-page-list a:hover,
footer .wp-block-page-list-item a:hover,
footer .widget a:hover,
footer .menu-item a:hover,
footer ul li a:hover,
footer .wp-block-group a:hover,
footer .wp-block-columns a:hover,
footer .wp-block-column a:hover,
footer .wp-block-template-part a:hover,
.wp-site-blocks footer a:hover,
.wp-site-blocks footer .wp-block-navigation a:hover,
.wp-site-blocks footer .wp-block-navigation-item a:hover,
.wp-site-blocks footer .wp-block-page-list a:hover {
  color: #38bdf8 !important;
  text-decoration: none !important;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #999;
}

/* ============================================
   RELATED PRODUCTS
   ============================================ */
.related-products {
  padding: 60px 40px;
  max-width: 1200px;
  margin: auto;
}

.related-products h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

/* ============================================
   HOMEPAGE PREMIUM SECTIONS
   ============================================ */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row !important;
}

.btn-primary {
  background: white;
  color: #667eea;
  font-weight: 600;
  padding: 14px 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  font-weight: 600;
  padding: 14px 32px;
}

.btn-secondary:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
}

/* Hero Button Primary */
.hero-button-primary:hover > a {
  background: transparent !important;
  color: #667eea !important;
}

/* Hero Button Secondary with outline style */
.hero-button-secondary.is-style-outline--2:hover > a {
  background-color: #667eea !important;
  color: #fff !important;
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 60px auto 0;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2937;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.feature-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  background: white !important;
  border-color: #667eea !important;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  color: white;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  position: relative;
}

/* Specific styling ONLY for premium-quality-checkmark SVG - won't affect other icons */
.feature-icon img[src*="premium-quality-checkmark"],
.feature-icon img[src*="noun-check-mark-39908"] {
  width: 45px !important;
  height: 45px !important;
  max-width: 45px !important;
  max-height: 45px !important;
  object-fit: contain;
  display: block !important;
  margin: 0 auto !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Fix for WordPress figure wrapper - only affects when checkmark is inside */
.feature-icon figure {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

/* Only apply to checkmark images inside figures - won't affect other icons */
.feature-icon figure img[src*="premium-quality-checkmark"],
.feature-icon figure img[src*="noun-check-mark-39908"] {
  width: 45px !important;
  height: 45px !important;
  max-width: 45px !important;
  max-height: 45px !important;
  object-fit: contain;
  display: block !important;
  margin: 0 !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Specific styling ONLY for fast-lightning-delivery SVG - won't affect other icons */
.feature-icon img[src*="fast-lightning-delivery"],
.feature-icon figure img[src*="fast-lightning-delivery"] {
  width: 45px !important;
  height: 45px !important;
  max-width: 45px !important;
  max-height: 45px !important;
  object-fit: contain;
  display: block !important;
  margin: 0 !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Specific styling ONLY for eco-plant-friendly SVG - won't affect other icons */
.feature-icon img[src*="eco-plant-friendly"],
.feature-icon figure img[src*="eco-plant-friendly"] {
  width: 60px !important;
  height: 60px !important;
  max-width: 60px !important;
  max-height: 60px !important;
  object-fit: contain;
  display: block !important;
  margin: 0 !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-icon figure img[src*="premium-quality-checkmark"],
.feature-icon figure img[src*="noun-check-mark-39908"] {
  width: 45px !important;
  height: 45px !important;
  max-width: 45px !important;
  max-height: 45px !important;
  object-fit: contain;
  display: block !important;
  margin: 0 auto !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1f2937;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
}

/* Products Section */
.products-section {
  padding: 100px 0;
  background: #f9fafb;
}

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 126, 234, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.btn-overlay {
  background: white;
  color: #667eea;
  padding: 12px 28px;
  font-weight: 600;
}

.product-card-content {
  padding: 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #1f2937;
}

.product-card-content>p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-features li {
  background: #f3f4f6;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #4b5563;
  font-weight: 500;
}

.product-card-content .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* Trust Section */
/* .trust-section {
  padding: 80px 40px;
  background: white;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-badge {
  text-align: center;
  padding: 30px 20px;
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: white;
}

.badge-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.trust-badge h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1f2937;
}

.trust-badge p {
  font-size: 14px;
  color: #6b7280;
} */

/* CTA Section */
/* .cta-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: #667eea;
  color: white;
}

.cta-section .btn-primary:hover {
  background: #5568d3;
}

.cta-section .btn-secondary {
  border-color: white;
  color: white;
}

.cta-section .btn-secondary:hover {
  background: white;
  color: #1f2937;
} */

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .our-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 40px 30px;
  }

  .product-detail {
    gap: 30px;
    padding: 40px 30px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-overlay {
    display: block;
  }

  .grid {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 20px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 30px;
  }

  .page-title h1 {
    font-size: 28px;
  }

  .page-title p {
    font-size: 16px;
  }

  .breadcrumb {
    padding: 15px 20px;
    font-size: 12px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin: 0;
    background: #2d3748;
  }

  .products-dropdown:hover .dropdown-menu {
    transform: none;
  }

  /* Homepage Mobile Styles */
  .hero-section {
    padding: 60px 20px 50px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 12px;
  }

  .features-section,
  .products-section,
  .trust-section,
  .cta-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 14px;
  }

      .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bestsellers-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .category-showcase {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-section,
  .our-products-section {
    padding: 60px 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .our-products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .hero-premium-title {
    font-size: 36px;
  }

  .hero-premium-subtitle {
    font-size: 18px;
  }

  .quote-section,
  .quote-section-alt {
    padding: 60px 20px;
  }

  .quote-title {
    font-size: 28px;
  }

  .quote-text {
    font-size: 16px;
  }

  .category-showcase-premium {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-title-premium {
    font-size: 32px;
  }

  .preference-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .mattress-category-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .material-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .mattress-hero h1 {
    font-size: 38px;
  }

  .mattress-hero-subtitle {
    font-size: 20px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 12px 20px;
  }

  .logo {
    font-size: 18px;
  }

  .page-title {
    padding: 40px 15px;
  }

  .page-title h1 {
    font-size: 24px;
  }

  .hero-title {
    font-size: 28px;
  }

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

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .preference-grid {
    grid-template-columns: 1fr;
  }

  .material-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .mattress-hero {
    padding: 80px 20px 60px;
  }

  .mattress-hero h1 {
    font-size: 32px;
  }

  .mattress-hero-subtitle {
    font-size: 18px;
  }

  .category-image-wrapper {
    height: 300px;
  }
}

/* ============================================
   DARK MODE
   ============================================ */
body.dark {
  background: #0f172a;
  color: #e5e7eb;
}

body.dark .site-header {
  background: rgba(15, 23, 42, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark .site-footer {
  background: #020617;
}

body.dark .logo,
body.dark .nav-menu a,
body.dark .menu-toggle,
body.dark .dark-toggle {
  color: #e5e7eb;
}

body.dark .nav-menu a:hover {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.1);
}

body.dark .dropdown-menu {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark .dropdown-menu a {
  color: #e5e7eb;
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

body.dark .dropdown-menu a:hover {
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
}

body.dark .hero-section-premium {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

body.dark .hero-premium-title {
  color: #e5e7eb;
}

body.dark .hero-premium-subtitle {
  color: #94a3b8;
}

body.dark .quote-section {
  background: #0f172a;
}

body.dark .quote-section-alt {
  background: #1e293b;
}

body.dark .quote-title {
  color: #e5e7eb;
}

body.dark .quote-text {
  color: #94a3b8;
}

body.dark .quote-link {
  color: #60a5fa;
}

body.dark .products-section-premium {
  background: #0f172a;
}

body.dark .section-title-premium {
  color: #e5e7eb;
}

body.dark .section-subtitle-premium {
  color: #94a3b8;
}

body.dark .category-showcase-premium-item {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark .category-premium-content h3 {
  color: #e5e7eb;
}

body.dark .category-premium-content>p {
  color: #94a3b8;
}

body.dark .btn-premium-link {
  color: #60a5fa;
}

/* ============================================
   PAPER PLP PREMIUM STYLES
   ============================================ */
.paper-hero-section {
  padding: 100px 40px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.paper-hero-content {
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: center;
}

.paper-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1f2937;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.paper-hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 900px;
  margin: 0 auto;
}

.paper-hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.paper-feature-badge {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.paper-feature-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.paper-feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.paper-feature-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.paper-feature-text strong {
  font-size: 16px;
  color: #1f2937;
  font-weight: 600;
}

.paper-feature-text span {
  font-size: 14px;
  color: #6b7280;
}

.paper-collection-section {
  padding: 100px 40px;
  background: white;
}

.paper-section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.paper-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.paper-product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.paper-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.paper-product-image {
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  position: relative;
}

.paper-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.paper-product-card:hover .paper-product-image img {
  transform: scale(1.1);
}

.paper-product-content {
  padding: 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.paper-product-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.paper-product-tagline {
  font-size: 16px;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 15px;
  font-style: italic;
}

.paper-product-description {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 20px;
  flex-grow: 1;
}

.paper-read-more {
  color: #667eea;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.paper-read-more:hover {
  color: #5568d3;
  transform: translateX(5px);
}

.paper-detail-section {
  padding: 80px 40px;
  background: #f9fafb;
}

.paper-detail-item {
  max-width: 1200px;
  margin: 0 auto 60px;
  background: white;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.paper-detail-item:last-child {
  margin-bottom: 0;
}

.paper-detail-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.paper-detail-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 40px;
}

.paper-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.paper-specs-column h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1f2937;
  padding-bottom: 15px;
  border-bottom: 2px solid #667eea;
}

.paper-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.paper-features-list li {
  padding: 12px 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 25px;
}

.paper-features-list li:last-child {
  border-bottom: none;
}

.paper-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
  font-size: 16px;
}

/* Responsive Paper PLP */
@media (max-width: 1024px) {
  .paper-hero-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .paper-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .paper-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .paper-hero-section {
    padding: 60px 20px 50px;
  }

  .paper-hero-title {
    font-size: 32px;
  }

  .paper-hero-description {
    font-size: 16px;
  }

  .paper-hero-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .paper-collection-section {
    padding: 60px 20px;
  }

  .paper-section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .paper-products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .paper-detail-section {
    padding: 40px 20px;
  }

  .paper-detail-item {
    padding: 30px 20px;
  }

  .paper-detail-title {
    font-size: 28px;
  }

  .paper-specs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Dark Mode Paper PLP */
body.dark .paper-hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark .paper-hero-title {
  color: #e5e7eb;
}

body.dark .paper-hero-description {
  color: #94a3b8;
}

body.dark .paper-feature-badge {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark .paper-feature-text strong {
  color: #e5e7eb;
}

body.dark .paper-feature-text span {
  color: #94a3b8;
}

body.dark .paper-collection-section {
  background: #0f172a;
}

body.dark .paper-section-title {
  color: #e5e7eb;
}

body.dark .paper-product-card {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark .paper-product-content h3 {
  color: #e5e7eb;
}

body.dark .paper-product-description {
  color: #94a3b8;
}

body.dark .paper-detail-section {
  background: #0f172a;
}

body.dark .paper-detail-item {
  background: #1e293b;
}

body.dark .paper-detail-title {
  color: #e5e7eb;
}

body.dark .paper-detail-intro {
  color: #94a3b8;
}

body.dark .paper-specs-column h4 {
  color: #e5e7eb;
  border-bottom-color: #60a5fa;
}

body.dark .paper-features-list li {
  color: #94a3b8;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark .paper-features-list li::before {
  color: #60a5fa;
}

/* ============================================
   PRODUCTS PAGE PREMIUM STYLES
   ============================================ */
.products-hero-section {
  padding: 100px 40px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.products-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.products-hero-subtitle {
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.products-categories-section {
  padding: 100px 40px;
  background: white;
}

.products-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.products-category-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.products-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.products-category-image {
  height: 350px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  position: relative;
}

.products-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.products-category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 126, 234, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.products-category-btn {
  background: white;
  color: #667eea;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s ease;
}

.products-category-btn:hover {
  transform: scale(1.05);
}

.products-category-content {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.products-category-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2937;
}

.products-category-content>p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 25px;
  flex-grow: 1;
  font-size: 16px;
}

.products-category-link {
  color: #667eea;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.products-category-link:hover {
  color: #5568d3;
  transform: translateX(5px);
}

/* ============================================
   FOAM PLP PREMIUM STYLES
   ============================================ */
.foam-hero-section {
  padding: 100px 40px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.foam-hero-content {
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: center;
}

.foam-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1f2937;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.foam-hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 900px;
  margin: 0 auto;
}

.foam-hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.foam-feature-badge {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.foam-feature-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.foam-feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.foam-feature-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.foam-feature-text strong {
  font-size: 16px;
  color: #1f2937;
  font-weight: 600;
}

.foam-feature-text span {
  font-size: 14px;
  color: #6b7280;
}

.foam-collection-section {
  padding: 100px 40px;
  background: white;
}

.foam-section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.foam-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.foam-product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.foam-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.foam-product-image {
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  position: relative;
}

.foam-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.foam-product-card:hover .foam-product-image img {
  transform: scale(1.1);
}

.foam-product-content {
  padding: 25px 35px 0 35px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.foam-product-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.foam-product-tagline {
  font-size: 16px;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 15px;
  font-style: italic;
}

.foam-card-benefit {
  font-size: 16px;
  color: #667eea;
  font-weight: 600;
  margin: 0;
  font-style: italic;
}

.foam-product-description {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 20px;
  flex-grow: 1;
}

.foam-read-more {
  color: #667eea;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.foam-read-more:hover {
  color: #5568d3;
  transform: translateX(5px);
}

.foam-detail-section {
  padding: 80px 40px;
  background: #f9fafb;
}

.foam-detail-item {
  max-width: 1200px;
  margin: 0 auto 60px;
  background: white;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.foam-detail-item:last-child {
  margin-bottom: 0;
}

.foam-detail-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.foam-detail-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 40px;
}

.foam-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.foam-specs-column h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1f2937;
  padding-bottom: 15px;
  border-bottom: 2px solid #667eea;
}

.foam-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foam-features-list li {
  padding: 12px 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
}

.foam-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
  font-size: 16px;
}

/* ============================================
   SUBCATEGORY PAGES PREMIUM STYLES
   ============================================ */
.subcategory-hero-section {
  padding: 80px 40px 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.subcategory-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.subcategory-hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.subcategory-hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 900px;
  margin: 0 auto;
}

.subcategory-collection-section {
  padding: 80px 40px;
  background: white;
}

.subcategory-section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.subcategory-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.subcategory-product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.subcategory-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.subcategory-product-image {
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  position: relative;
}

.subcategory-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.subcategory-product-card:hover .subcategory-product-image img {
  transform: scale(1.1);
}

.subcategory-product-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.subcategory-product-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2937;
}

.subcategory-product-tagline {
  font-size: 15px;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 12px;
  font-style: italic;
}

.subcategory-product-description {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 20px;
  flex-grow: 1;
}

.subcategory-read-more {
  color: #667eea;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.subcategory-read-more:hover {
  color: #5568d3;
  transform: translateX(5px);
}

.subcategory-detail-section {
  padding: 60px 40px;
  background: #f9fafb;
}

.subcategory-detail-item {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.subcategory-detail-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.subcategory-detail-intro {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 40px;
}

.subcategory-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.subcategory-specs-column h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1f2937;
  padding-bottom: 15px;
  border-bottom: 2px solid #667eea;
}

.subcategory-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subcategory-features-list li {
  padding: 12px 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 25px;
}

.subcategory-features-list li:last-child {
  border-bottom: none;
}

.subcategory-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
  font-size: 16px;
}

/* Responsive Styles for New Sections */
@media (max-width: 1024px) {
  .products-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .foam-hero-features {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .foam-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .subcategory-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .subcategory-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-hero-section {
    padding: 60px 20px 50px;
  }

  .products-hero-title {
    font-size: 32px;
  }

  .products-categories-section {
    padding: 60px 20px;
  }

  .products-categories-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .products-category-image {
    height: 280px;
  }

  .foam-hero-section {
    padding: 60px 20px 50px;
  }

  .foam-hero-title {
    font-size: 32px;
  }

  .foam-hero-description {
    font-size: 16px;
  }

  .foam-hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .foam-collection-section {
    padding: 60px 20px;
  }

  .foam-section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .foam-detail-section {
    padding: 40px 20px;
  }

  .foam-detail-item {
    padding: 30px 20px;
  }

  .foam-detail-title {
    font-size: 28px;
  }

  .foam-specs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .subcategory-hero-section {
    padding: 60px 20px 40px;
  }

  .subcategory-hero-title {
    font-size: 32px;
  }

  .subcategory-hero-description {
    font-size: 16px;
  }

  .subcategory-collection-section {
    padding: 60px 20px;
  }

  .subcategory-section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .subcategory-products-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .subcategory-detail-section {
    padding: 40px 20px;
  }

  .subcategory-detail-item {
    padding: 30px 20px;
  }

  .subcategory-detail-title {
    font-size: 28px;
  }

  .subcategory-specs-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

/* Dark Mode for New Sections */
body.dark .products-hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark .products-hero-title {
  color: #e5e7eb;
}

body.dark .products-hero-subtitle {
  color: #94a3b8;
}

body.dark .products-categories-section {
  background: #0f172a;
}

body.dark .products-category-card {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark .products-category-content h3 {
  color: #e5e7eb;
}

body.dark .products-category-content>p {
  color: #94a3b8;
}

body.dark .foam-hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark .foam-hero-title {
  color: #e5e7eb;
}

body.dark .foam-hero-description {
  color: #94a3b8;
}

body.dark .foam-feature-badge {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark .foam-feature-text strong {
  color: #e5e7eb;
}

body.dark .foam-feature-text span {
  color: #94a3b8;
}

body.dark .foam-collection-section {
  background: #0f172a;
}

body.dark .foam-section-title {
  color: #e5e7eb;
}

body.dark .foam-product-card {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark .foam-product-content h3 {
  color: #e5e7eb;
}

body.dark .foam-product-description {
  color: #94a3b8;
}

body.dark .foam-detail-section {
  background: #0f172a;
}

body.dark .foam-detail-item {
  background: #1e293b;
}

body.dark .foam-detail-title {
  color: #e5e7eb;
}

body.dark .foam-detail-intro {
  color: #94a3b8;
}

body.dark .foam-specs-column h4 {
  color: #e5e7eb;
  border-bottom-color: #60a5fa;
}

body.dark .foam-features-list li {
  color: #94a3b8;
}

body.dark .foam-features-list li::before {
  color: #60a5fa;
}

body.dark .subcategory-hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark .subcategory-hero-title {
  color: #e5e7eb;
}

body.dark .subcategory-hero-description {
  color: #94a3b8;
}

body.dark .subcategory-collection-section {
  background: #0f172a;
}

body.dark .subcategory-section-title {
  color: #e5e7eb;
}

body.dark .subcategory-product-card {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark .subcategory-product-content h3 {
  color: #e5e7eb;
}

body.dark .subcategory-product-description {
  color: #94a3b8;
}

body.dark .subcategory-detail-section {
  background: #0f172a;
}

body.dark .subcategory-detail-item {
  background: #1e293b;
}

body.dark .subcategory-detail-title {
  color: #e5e7eb;
}

body.dark .subcategory-detail-intro {
  color: #94a3b8;
}

body.dark .subcategory-specs-column h4 {
  color: #e5e7eb;
  border-bottom-color: #60a5fa;
}

body.dark .subcategory-features-list li {
  color: #94a3b8;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark .subcategory-features-list li::before {
  color: #60a5fa;
}

body.dark .card {
  background: #1e293b;
  color: #e5e7eb;
}

body.dark .page-title {
  background: linear-gradient(135deg, #1e293b, #334155);
}

body.dark .form-group input,
body.dark .form-group textarea,
body.dark .form-group select {
  background: #1e293b;
  color: #e5e7eb;
  border-color: #334155;
}

body.dark .form-group input:focus,
body.dark .form-group textarea:focus,
body.dark .form-group select:focus {
  border-color: #60a5fa;
}

body.dark .accordion-content {
  background: #1e293b;
}

body.dark .breadcrumb {
  background: #1e293b;
}

body.dark .product-info h1 {
  color: #e5e7eb;
}

body.dark .product-info p {
  color: #94a3b8;
}

body.dark .hero-section {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

body.dark .features-section,
body.dark .products-section {
  background: #0f172a;
}

body.dark .about-section {
  background: #0f172a;
}

body.dark .about-detail-item h3 {
  color: #e5e7eb;
}

body.dark .about-intro,
body.dark .about-detail-item p {
  color: #94a3b8;
}

body.dark .our-products-section {
  background: #1e293b;
}

body.dark .our-product-card {
  background: #0f172a;
  border-color: #334155;
}

body.dark .our-product-card:hover {
  background: #1e293b;
}

body.dark .our-product-content h3 {
  color: #e5e7eb;
}

body.dark .our-product-content>p {
  color: #94a3b8;
}

body.dark .product-highlights li {
  background: #1e293b;
  color: #cbd5e1;
}

body.dark .btn-outline {
  color: #60a5fa;
  border-color: #60a5fa;
}

body.dark .btn-outline:hover {
  background: #60a5fa;
  color: #0f172a;
}

body.dark .feature-card {
  background: #1e293b;
  border-color: #334155;
}

body.dark .feature-card:hover {
  background: #334155 !important;
  border-color: #667eea !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

body.dark .product-card {
  background: #1e293b;
}

body.dark .trust-badge {
  background: #1e293b;
}

body.dark .trust-badge:hover {
  background: #334155;
}

body.dark .section-title {
  color: #e5e7eb;
}

body.dark .section-subtitle {
  color: #94a3b8;
}

body.dark .feature-card h3,
body.dark .product-card-content h3,
body.dark .trust-badge h4 {
  color: #e5e7eb;
}

body.dark .feature-card p,
body.dark .product-card-content>p {
  color: #94a3b8;
}

/* ============================================
   BEST SELLERS SECTION
   ============================================ */
.bestsellers-section {
  padding: 100px 40px;
  background: #f9fafb;
}

.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.bestseller-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.bestseller-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bestseller-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ef4444;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

.bestseller-image {
  height: 280px;
  overflow: hidden;
  background: #f3f4f6;
  position: relative;
}

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

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

.bestseller-content {
  padding: 25px;
}

.bestseller-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f2937;
}

.bestseller-desc {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 45px;
}

.bestseller-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
}

.price-original {
  font-size: 16px;
  color: #9ca3af;
  text-decoration: line-through;
}

.price-discount {
  background: #10b981;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.bestseller-content .btn {
  width: 100%;
  text-align: center;
}

/* Category Showcase */
.category-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.category-showcase-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.category-showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-showcase-image {
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.category-showcase-item:hover .category-showcase-image img {
  transform: scale(1.1);
}

.category-showcase-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.category-showcase-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #1f2937;
}

.category-showcase-content>p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.category-price {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
}

.category-price strong {
  color: #667eea;
  font-size: 20px;
  font-weight: 700;
}

.category-showcase-content .btn {
  width: 100%;
  text-align: center;
}

/* About Us Section */
.about-section {
  padding: 100px 40px;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 10px;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 20px 0;
}

.about-detail-item h3 {
  font-size: 22px;
  color: #1f2937;
  margin-bottom: 0;
  font-weight: 600;
}

.about-detail-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
}

.about-text .btn {
  width: auto;
  border-radius: 8px;
  align-self: flex-start;
  border: 2px solid #667eea;
}

/* Fix about-text button hover with WordPress classes */
.about-text .btn:hover,
.about-text .btn-primary:hover,
.about-text .wp-block-button__link:hover,
.about-text .wp-block-button .wp-block-button__link:hover,
.about-text .wp-block-button.is-style-outline .wp-block-button__link:hover,
.about-text .wp-block-group .wp-block-button__link:hover,
.about-text .wp-block-group .wp-block-button .wp-block-button__link:hover,
.about-text a.wp-block-button__link:hover,
.about-text a.btn:hover,
.about-text a.btn-primary:hover {
  background: #667eea !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
  border-color: #667eea !important;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Our Products Section */
.our-products-section {
  padding: 100px 40px;
  background: #f9fafb;
}

.our-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.our-product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.our-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.our-product-image {
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.our-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.our-product-card:hover .our-product-image img {
  transform: scale(1.1);
}

.our-product-content {
  padding: 30px 30px 0 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.our-product-content h3 {
  font-size: 24px;
  margin-bottom: 0;
  color: #1f2937;
  font-weight: 600;
}

.our-product-content h3 a,
.our-product-content h3 a:hover,
.our-product-content h3 a:focus,
.our-product-content h3 a:visited {
  text-decoration: none !important;
  border-bottom: none !important;
}

.our-product-content>p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-highlights li {
  background: #f3f4f6;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #4b5563;
  font-weight: 500;
}

.btn-outline {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-outline:hover {
  background: #667eea !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
  border-color: #667eea !important;
}

/* Fix outline button hover in home-our-products-section with WordPress classes */
.home-our-products-section .btn-outline:hover,
.home-our-products-section .wp-block-button__link:hover,
.home-our-products-section .wp-block-button.is-style-outline .wp-block-button__link:hover,
.our-products-section .btn-outline:hover,
.our-products-section .wp-block-button__link:hover,
.our-products-section .wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-group.home-our-products-section .btn-outline:hover,
.wp-block-group.home-our-products-section .wp-block-button__link:hover,
.wp-block-group.our-products-section .btn-outline:hover,
.wp-block-group.our-products-section .wp-block-button__link:hover {
  background: #667eea !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
  border-color: #667eea !important;
}

/* Preference Section */
.preference-section {
  padding: 100px 40px;
  background: white;
}

.preference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.preference-card {
  text-align: center;
  padding: 40px 25px;
  background: #f9fafb;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.preference-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
  border-color: #667eea;
}

.preference-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.preference-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1f2937;
}

.preference-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.preference-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

.preference-link:hover {
  color: #5568d3;
}

/* ============================================
   MATTRESS PLP PREMIUM STYLES
   ============================================ */
.mattress-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 40px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mattress-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.mattress-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.mattress-hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mattress-hero-subtitle {
  font-size: 24px;
  margin-bottom: 10px;
  opacity: 0.95;
  font-weight: 500;
}

.mattress-hero-desc {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.mattress-categories-section {
  padding: 100px 40px;
  background: white;
}

.mattress-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.mattress-category-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mattress-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.category-image-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.category-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.category-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.category-badge {
  background: rgba(102, 126, 234, 0.95);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.category-card-content {
  padding: 35px;
}

.category-card-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #1f2937;
}

.category-card-content>p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

.category-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.feature-tag {
  background: #f3f4f6;
  color: #4b5563;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.category-price-range {
  font-size: 20px;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 25px;
}

.category-card-content .btn {
  width: 100%;
  text-align: center;
}

/* Material Section */
.mattress-material-section {
  padding: 80px 40px;
  background: #f9fafb;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.material-card {
  background: white;
  padding: 40px 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.material-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.material-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.material-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f2937;
}

.material-card p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 20px;
}

.material-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

.material-link:hover {
  color: #5568d3;
}

/* ============================================
   TRUST INDICATORS
   ============================================ */
.trust-section {
  padding: 80px 20px;
  background: var(--color-bg);
  text-align: center;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.badge-icon {
  font-size: 40px;
  color: var(--color-accent);
  background: var(--color-white);
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(197, 160, 40, 0.2);
}

.trust-badge h4 {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.trust-badge p {
  color: var(--color-text-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Benefits Section */
.mattress-benefits-section {
  padding: 80px 40px;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.benefit-item {
  text-align: center;
  padding: 30px 20px;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: white;
  font-weight: bold;
}

.benefit-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1f2937;
}

.benefit-item p {
  color: #6b7280;
  font-size: 14px;
}

/* ============================================
   MATTRESS PDP VERSION 1 STYLES (Modern Feature-Rich)
   ============================================ */
.mattress-pdp-hero {
  padding: 60px 40px;
  background: white;
}

.mattress-pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.mattress-pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mattress-main-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f9fafb;
  cursor: zoom-in;
}

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

.mattress-thumbnails {
  display: flex;
  gap: 15px;
  overflow-x: auto;
}

.mattress-thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.mattress-thumb:hover,
.mattress-thumb.active {
  border-color: #667eea;
  transform: scale(1.05);
}

.mattress-pdp-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mattress-badge {
  display: inline-block;
  background: #667eea;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.mattress-pdp-title {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.mattress-pdp-subtitle {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
}

.mattress-key-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
  background: #f9fafb;
  border-radius: 12px;
}

.mattress-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #374151;
}

.mattress-feature-icon {
  width: 24px;
  height: 24px;
  background: #667eea;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.mattress-size-selector h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1f2937;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-btn {
  padding: 12px 24px;
  border: 2px solid #e5e7eb;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: all 0.3s ease;
}

.size-btn:hover,
.size-btn.active {
  border-color: #667eea;
  background: #667eea;
  color: white;
}

.mattress-cta-section {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.mattress-trust-badges {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
}

.trust-icon {
  font-size: 20px;
}

.mattress-benefits-table-section {
  padding: 80px 40px;
  background: #f9fafb;
}

.benefits-table {
  max-width: 1000px;
  margin: 40px auto 0;
}

.benefit-row {
  margin-bottom: 30px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-header {
  background: #667eea;
  color: white;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.benefit-content {
  padding: 25px 30px;
  color: #4b5563;
  line-height: 1.8;
  font-size: 16px;
}

.mattress-benefits-table-section .benefit-content {
  background: #f9fafb;
}

.mattress-benefits-table-section .benefit-row {
  gap: 0;
  display: flex;
  flex-direction: column;
}

.mattress-benefits-table-section .benefit-header {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.mattress-size-chart-section {
  padding: 80px 40px;
  background: white;
}

.size-chart-table {
  max-width: 800px;
  margin: 40px auto 0;
  overflow-x: auto;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.size-table thead {
  background: #667eea;
  color: white;
}

.size-table th,
.size-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.size-table tbody tr:last-child td {
  border-bottom: none;
}

.size-table tbody tr:hover {
  background: #f9fafb;
}

.mattress-specs-section {
  padding: 80px 40px;
  background: #f9fafb;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.spec-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.spec-label {
  font-weight: 600;
  color: #667eea;
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-value {
  color: #374151;
  font-size: 16px;
  line-height: 1.6;
}

.mattress-inquiry-section {
  padding: 80px 40px;
  background: white;
}

.mattress-inquiry-form {
  max-width: 800px;
  margin: 40px auto 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ============================================
   MATTRESS PDP VERSION 2 STYLES (Clean Minimalist)
   ============================================ */
.mattress-pdp-v2-hero {
  padding: 60px 40px;
  background: white;
}

.mattress-pdp-v2-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.mattress-pdp-v2-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mattress-v2-main-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #f9fafb;
  cursor: zoom-in;
}

.mattress-v2-img-main {
  width: 100%;
  height: auto;
  display: block;
}

.image-zoom-hint {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  pointer-events: none;
}

.mattress-v2-thumbnails-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
}

.mattress-v2-thumb {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.mattress-v2-thumb:hover,
.mattress-v2-thumb.active {
  border-color: #667eea;
  transform: scale(1.05);
}

.mattress-pdp-v2-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mattress-v2-badge {
  display: inline-block;
  background: #10b981;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.mattress-v2-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
}

.mattress-v2-subtitle {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
}

.mattress-v2-rating {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stars {
  color: #fbbf24;
  font-size: 20px;
}

.rating-text {
  color: #6b7280;
  font-size: 16px;
}

.mattress-v2-key-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: #f9fafb;
  border-radius: 16px;
}

.key-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.key-point-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.key-point-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.key-point-text strong {
  font-size: 16px;
  color: #1f2937;
  font-weight: 600;
}

.key-point-text span {
  font-size: 14px;
  color: #6b7280;
}

.mattress-v2-features-list {
  padding: 25px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
}

.mattress-v2-features-list h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1f2937;
}

.mattress-v2-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mattress-v2-features-list li {
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
}

.mattress-v2-size-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1f2937;
}

.size-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.size-card-v2 {
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.size-card-v2:hover {
  border-color: #667eea;
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.size-name {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.size-dims {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 4px;
}

.size-heights {
  font-size: 12px;
  color: #9ca3af;
}

.mattress-v2-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.mattress-v2-benefits {
  padding: 80px 40px;
  background: #f9fafb;
}

.benefits-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.benefit-card-v2 {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon-v2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.benefit-card-v2 h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1f2937;
}

.benefit-card-v2 p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
}

.mattress-v2-specs {
  padding: 80px 40px;
  background: white;
}

.specs-list-v2 {
  max-width: 900px;
  margin: 40px auto 0;
  background: #f9fafb;
  border-radius: 16px;
  overflow: hidden;
}

.spec-row-v2 {
  display: grid;
  grid-template-columns: 250px 1fr;
  padding: 25px 30px;
  border-bottom: 1px solid #e5e7eb;
}

.spec-row-v2:last-child {
  border-bottom: none;
}

.spec-label-v2 {
  font-weight: 600;
  color: #667eea;
  font-size: 15px;
}

.spec-value-v2 {
  color: #374151;
  font-size: 16px;
}

.mattress-v2-inquiry {
  padding: 80px 40px;
  background: #f9fafb;
}

.mattress-inquiry-form-v2 {
  max-width: 800px;
  margin: 40px auto 0;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e293b 100%);
  color: var(--color-white);
  padding: 160px 20px 120px;
  text-align: center;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(197, 160, 40, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--color-white);
  animation: slideUp 0.8s ease-out;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: slideUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: slideUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons .btn {
  margin-top: 0;
  padding: 16px 40px;
  font-size: 16px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeIn 1s ease-out 0.8s backwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

/* ============================================
   MATTRESS PDP VERSION 3 STYLES (Premium Hero)
   ============================================ */
.mattress-pdp-v3-hero {
  padding: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.mattress-v3-hero-bg {
  padding: 120px 40px 100px;
  position: relative;
}

.mattress-v3-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mattress-v3-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.mattress-v3-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.mattress-v3-hero-subtitle {
  font-size: 22px;
  opacity: 0.95;
  margin-bottom: 40px;
  line-height: 1.6;
}

.mattress-v3-hero-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-feature-tag {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
}

.mattress-v3-gallery-section {
  padding: 80px 40px;
  background: white;
}

.mattress-v3-gallery-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.mattress-v3-main-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mattress-v3-main-img-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #f9fafb;
  cursor: zoom-in;
}

.mattress-v3-main-img {
  width: 100%;
  height: auto;
  display: block;
}

.mattress-v3-thumbnails {
  display: flex;
  gap: 15px;
  overflow-x: auto;
}

.mattress-v3-thumb {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.mattress-v3-thumb:hover,
.mattress-v3-thumb.active {
  border-color: #667eea;
  transform: scale(1.05);
}

.mattress-v3-quick-info {
  padding: 40px;
  background: #f9fafb;
  border-radius: 16px;
  height: fit-content;
}

.mattress-v3-quick-info h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #1f2937;
}

.quick-benefits-v3 {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.quick-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.quick-benefit-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.quick-benefit-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #1f2937;
  font-weight: 600;
}

.quick-benefit-item p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.mattress-v3-benefits-detailed {
  padding: 100px 40px;
  background: #f9fafb;
}

.benefits-detailed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.benefit-detailed-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-detailed-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.benefit-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: #667eea;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.benefit-detailed-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1f2937;
  margin-top: 20px;
}

.benefit-detailed-card p {
  color: #6b7280;
  line-height: 1.8;
  font-size: 15px;
}

.mattress-v3-specs-size {
  padding: 100px 40px;
  background: white;
}

.specs-size-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.size-chart-v3 h2,
.specs-details-v3 h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1f2937;
}

.size-list-v3 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.size-item-v3 {
  padding: 25px;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.size-item-v3:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
}

.size-label-v3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
}

.size-details-v3 {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.size-details-v3 span {
  font-size: 15px;
  color: #6b7280;
}

.specs-table-v3 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spec-item-v3 {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #667eea;
}

.spec-label-v3 {
  font-weight: 600;
  color: #667eea;
  font-size: 15px;
  min-width: 180px;
}

.spec-value-v3 {
  color: #374151;
  font-size: 15px;
  text-align: right;
}

.mattress-v3-inquiry {
  padding: 100px 40px;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.inquiry-form-wrapper-v3 {
  max-width: 900px;
  margin: 0 auto;
}

.inquiry-form-content {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.inquiry-form-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #1f2937;
  text-align: center;
}

.inquiry-form-content>p {
  text-align: center;
  color: #6b7280;
  font-size: 18px;
  margin-bottom: 40px;
}

.mattress-inquiry-form-v3 {
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive Styles for PDP Versions */
@media (max-width: 1024px) {

  .mattress-pdp-layout,
  .mattress-pdp-v2-layout,
  .mattress-v3-gallery-layout,
  .specs-size-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid-v2,
  .benefits-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .mattress-pdp-hero,
  .mattress-pdp-v2-hero,
  .mattress-v3-hero-bg {
    padding: 40px 20px;
  }

  .mattress-pdp-title,
  .mattress-v2-title {
    font-size: 32px;
  }

  .mattress-v3-hero-title {
    font-size: 36px;
  }

  .benefits-grid-v2,
  .benefits-detailed-grid {
    grid-template-columns: 1fr;
  }

  .size-grid-v2 {
    grid-template-columns: 1fr;
  }

  .spec-row-v2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .mattress-cta-section,
  .mattress-v2-cta {
    flex-direction: column;
  }

  .mattress-trust-badges {
    flex-direction: column;
    gap: 15px;
  }

  .inquiry-form-content {
    padding: 40px 30px;
  }
}

/* Dark Mode for PDP Versions */
body.dark .mattress-pdp-hero,
body.dark .mattress-pdp-v2-hero,
body.dark .mattress-v3-gallery-section,
body.dark .mattress-v3-benefits-detailed,
body.dark .mattress-v3-specs-size,
body.dark .mattress-inquiry-section,
body.dark .mattress-v2-inquiry {
  background: #0f172a;
}

body.dark .mattress-benefits-table-section,
body.dark .mattress-size-chart-section,
body.dark .mattress-specs-section,
body.dark .mattress-v2-benefits,
body.dark .mattress-v2-specs {
  background: #1e293b;
}

body.dark .mattress-pdp-title,
body.dark .mattress-v2-title,
body.dark .mattress-v3-hero-title {
  color: #e5e7eb;
}

body.dark .mattress-pdp-subtitle,
body.dark .mattress-v2-subtitle,
body.dark .mattress-v3-hero-subtitle {
  color: #94a3b8;
}

body.dark .benefit-row,
body.dark .spec-item,
body.dark .benefit-card-v2,
body.dark .benefit-detailed-card,
body.dark .size-card-v2,
body.dark .size-item-v3,
body.dark .spec-item-v3 {
  background: #1e293b;
  border-color: #334155;
}

body.dark .benefit-content,
body.dark .spec-value,
body.dark .benefit-card-v2 p,
body.dark .benefit-detailed-card p {
  color: #94a3b8;
}

/* ============================================
   PRODUCT VARIANTS SECTION
   ============================================ */
.product-variants-section {
  padding: 80px 40px;
  background: #f9fafb;
}

.product-variants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.product-variant-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-variant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.variant-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.variant-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-variant-card:hover .variant-image-wrapper img {
  transform: scale(1.1);
}

.variant-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.variant-badge {
  background: #667eea;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.variant-badge.premium {
  background: #10b981;
}

.variant-badge.firm {
  background: #f59e0b;
}

.variant-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.variant-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1f2937;
  font-weight: 600;
}

.variant-tagline {
  font-size: 16px;
  color: #667eea;
  font-weight: 500;
  margin-bottom: 12px;
}

.variant-description {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  font-size: 15px;
}

.variant-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.variant-feature-tag {
  background: #f3f4f6;
  color: #4b5563;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.product-variant-card .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .product-variants-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-variants-section {
    padding: 60px 20px;
  }

  .product-variants-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }

  .variant-image-wrapper {
    height: 250px;
  }
}

body.dark .product-variants-section {
  background: #1e293b;
}

body.dark .product-variant-card {
  background: #0f172a;
  border-color: #334155;
}

body.dark .variant-content h3 {
  color: #e5e7eb;
}

body.dark .variant-tagline {
  color: #60a5fa;
}

body.dark .variant-description {
  color: #94a3b8;
}

body.dark .variant-feature-tag {
  background: #1e293b;
  color: #cbd5e1;
}

/* ============================================
   PDP VERSION NAVIGATION
   ============================================ */
.pdp-version-nav {
  padding: 20px 40px;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
}

.pdp-version-nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.version-nav-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.version-nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.version-nav-link {
  padding: 8px 20px;
  background: white;
  color: #374151;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.version-nav-link:hover {
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-2px);
}

.version-nav-link.active {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

@media (max-width: 768px) {
  .pdp-version-nav {
    padding: 15px 20px;
  }

  .pdp-version-nav-content {
    flex-direction: column;
    gap: 15px;
  }

  .version-nav-links {
    width: 100%;
    justify-content: center;
  }
}

body.dark .pdp-version-nav {
  background: #1e293b;
  border-color: #334155;
}

body.dark .version-nav-label {
  color: #94a3b8;
}

body.dark .version-nav-link {
  background: #0f172a;
  color: #cbd5e1;
  border-color: #334155;
}

body.dark .version-nav-link:hover {
  border-color: #667eea;
  color: #667eea;
}

body.dark .version-nav-link.active {
  background: #667eea;
  color: white;
  border-color: #667eea;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero-section {
  padding: 100px 40px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 22px;
  opacity: 0.95;
  line-height: 1.6;
}

.founder-story-section {
  padding: 100px 40px;
  background: white;
}

.founder-story-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.founder-image-wrapper {
  position: sticky;
  top: 100px;
}

.founder-image-placeholder {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.founder-initials {
  font-size: 72px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
}

.founder-story-content {
  padding-top: 20px;
}

.founder-badge {
  display: inline-block;
  background: #f3f4f6;
  color: #667eea;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.founder-name {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
}

.founder-story-text {
  font-size: 18px;
  line-height: 1.9;
  color: #4b5563;
}

.founder-story-text p {
  margin-bottom: 25px;
}

.mission-quote-section {
  padding: 80px 0;
  background: #f9fafb;
}

.mission-quote-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mission-quote-text {
  font-size: 32px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding: 0 40px;
}

.mission-quote-text::before,
.mission-quote-text::after {
  content: '"';
  font-size: 80px;
  color: #667eea;
  opacity: 0.2;
  position: absolute;
  font-family: Georgia, serif;
}

.mission-quote-text::before {
  top: -20px;
  left: 0;
}

.mission-quote-text::after {
  bottom: -60px;
  right: 0;
}

.our-mission-section {
  padding: 100px 0;
  background: white;
}

.mission-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.mission-value-card {
  text-align: center;
  padding: 40px 30px;
  background: #f9fafb;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mission-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  background: white;
  border-color: #667eea;
}

.value-icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: inline-block;
  width: auto;
  height: auto;
  line-height: 1;
}

/* Fix SVG icons in value-icon - Sustainability, Innovation, etc. */
.value-icon img,
.value-icon svg,
.value-icon figure img,
.value-icon figure svg {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  min-width: 64px !important;
  min-height: 64px !important;
  object-fit: contain;
  display: block !important;
  margin: 0 auto 0 auto;
}

/* Quality First icon - remove margin-bottom */
.mission-value-card:nth-child(1) .value-icon,
.mission-value-card .value-icon img[src*="quality-first"],
.mission-value-card .value-icon svg[class*="quality-first"],
.mission-value-card .value-icon[class*="quality-first"],
.mission-value-card:has(.value-icon img[src*="quality-first"]) .value-icon,
.mission-value-card:has(.value-icon svg[class*="quality-first"]) .value-icon {
  margin-bottom: 0 !important;
}

/* Customer Focus icon - remove margin-bottom */
.mission-value-card:nth-child(4) .value-icon,
.mission-value-card .value-icon img[src*="customer-focus"],
.mission-value-card .value-icon svg[class*="customer-focus"],
.mission-value-card .value-icon[class*="customer-focus"],
.mission-value-card:has(.value-icon img[src*="customer-focus"]) .value-icon,
.mission-value-card:has(.value-icon svg[class*="customer-focus"]) .value-icon {
  margin-bottom: 0 !important;
}

.mission-value-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1f2937;
  font-weight: 600;
}

.mission-value-card p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
}

/* .why-choose-section {
  padding: 100px 40px;
  background: #f9fafb;
}

.why-choose-layout {
  max-width: 1000px;
  margin: 60px auto 0;
}

.why-choose-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.why-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.why-number {
  font-size: 64px;
  font-weight: 700;
  color: #667eea;
  line-height: 1;
  flex-shrink: 0;
}

.why-text h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #1f2937;
  font-weight: 600;
}

.why-text p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 16px;
} */

.company-journey-section {
  padding: 100px 0;
  background: white;
}

.journey-timeline {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
  padding-left: 100px;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.journey-item {
  position: relative;
  margin-bottom: 60px;
  padding-left: 50px;
}

.journey-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #667eea;
  border: 4px solid white;
  box-shadow: 0 0 0 3px #667eea;
}

.journey-year {
  font-size: 24px;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 10px;
}

.journey-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1f2937;
  font-weight: 600;
}

.journey-content p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 16px;
}

/* Responsive Styles for About Page */
@media (max-width: 1024px) {
  .founder-story-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image-wrapper {
    position: static;
    display: flex;
    justify-content: center;
  }

  .mission-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .journey-timeline {
    padding-left: 60px;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    padding: 60px 20px 50px;
  }

  .about-hero-title {
    font-size: 36px;
  }

  .about-hero-subtitle {
    font-size: 18px;
  }

  .founder-story-section,
  .our-mission-section,
  .why-choose-section,
  .company-journey-section {
    padding: 60px 20px;
  }

  .founder-name {
    font-size: 32px;
  }

  .founder-story-text {
    font-size: 16px;
  }

  .mission-quote-text {
    font-size: 24px;
    padding: 0 20px;
  }

  .mission-values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .why-item {
    flex-direction: column;
    gap: 15px;
  }

  .why-number {
    font-size: 48px;
  }

  .journey-timeline {
    padding-left: 40px;
  }

  .journey-timeline::before {
    left: 20px;
  }

  .journey-item {
    padding-left: 30px;
  }

  .journey-item::before {
    left: -10px;
  }
}

/* Dark Mode for About Page */
body.dark .about-hero-section {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

body.dark .founder-story-section,
body.dark .our-mission-section,
body.dark .company-journey-section {
  background: #0f172a;
}

body.dark .mission-quote-section,
body.dark .why-choose-section {
  background: #1e293b;
}

body.dark .founder-name,
body.dark .mission-quote-text,
body.dark .mission-value-card h3,
body.dark .why-text h3,
body.dark .journey-content h3 {
  color: #e5e7eb;
}

body.dark .founder-story-text,
body.dark .mission-value-card p,
body.dark .why-text p,
body.dark .journey-content p {
  color: #94a3b8;
}

body.dark .founder-badge {
  background: #1e293b;
  color: #60a5fa;
}

body.dark .mission-value-card {
  background: #1e293b;
  border-color: #334155;
}

body.dark .mission-value-card:hover {
  background: #334155;
  border-color: #667eea;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero-section {
  padding: 100px 40px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-hero-subtitle {
  font-size: 22px;
  opacity: 0.95;
  line-height: 1.6;
}

.contact-info-section {
  padding: 80px 40px;
  background: white;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-card {
  text-align: center;
  padding: 40px 25px;
  background: #f9fafb;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: white;
  border-color: #667eea;
}

.contact-info-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-info-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1f2937;
  font-weight: 600;
}

.contact-info-card p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
  margin: 8px 0;
}

.contact-info-card a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #5568d3;
  text-decoration: underline;
}

.contact-form-section {
  padding: 100px 40px;
  background: #f9fafb;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-content {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
  margin-top: 30px;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-sidebar-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-sidebar-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1f2937;
  font-weight: 600;
}

.contact-sidebar-card p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 12px;
}

.contact-sidebar-card a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-sidebar-card a:hover {
  color: #5568d3;
  text-decoration: underline;
}

.support-hours {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}

.contact-quick-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #f3f4f6;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: all 0.3s ease;
}

.quick-link:hover {
  background: #667eea;
  color: white;
  transform: translateX(5px);
}

.quick-link-icon {
  font-size: 20px;
}

.contact-address-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-address-card {
  background: #f9fafb;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-address-card .contact-info-icon {
  font-size: 80px !important;
  width: 80px !important;
  height: 80px !important;
  line-height: 80px !important;
  margin: 0 auto 20px auto;
  display: inline-block;
}

.contact-address-card img,
.contact-address-card svg,
.contact-address-card figure img,
.contact-address-card figure svg {
  width: 80px !important;
  height: 80px !important;
  max-width: 80px !important;
  max-height: 80px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px auto;
}

/* Fix warehouse-address-icon size - similar to headquarters icon */
.warehouse-address-icon {
  font-size: 80px !important;
  width: 80px !important;
  height: 80px !important;
  line-height: 80px !important;
  margin: 0 auto 20px auto;
  display: inline-block;
}

.warehouse-address-icon img,
.warehouse-address-icon svg,
.warehouse-address-icon figure img,
.warehouse-address-icon figure svg {
  width: 80px !important;
  height: 80px !important;
  max-width: 80px !important;
  max-height: 80px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px auto;
}

/* Fix factory-address-icon size - similar to headquarters icon */
.factory-address-icon {
  font-size: 80px !important;
  width: 80px !important;
  height: 80px !important;
  line-height: 80px !important;
  margin: 0 auto 20px auto;
  display: inline-block;
}

.factory-address-icon img,
.factory-address-icon svg,
.factory-address-icon figure img,
.factory-address-icon figure svg {
  width: 80px !important;
  height: 80px !important;
  max-width: 80px !important;
  max-height: 80px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px auto;
}

.contact-address-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: white;
  border-color: #667eea;
}

.contact-address-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #1f2937;
  font-weight: 600;
}

.contact-address-card p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
}

.contact-address-card .btn {
  margin-top: 10px;
}

/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-address-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding: 60px 20px 50px;
  }

  .contact-hero-title {
    font-size: 36px;
  }

  .contact-hero-subtitle {
    font-size: 18px;
  }

  .contact-info-section,
  .contact-form-section,
  .contact-address-section {
    padding: 60px 20px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-content {
    padding: 30px 25px;
  }

  .contact-address-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Dark Mode for Contact Page */
body.dark .contact-hero-section {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

body.dark .contact-info-section,
body.dark .contact-address-section {
  background: #0f172a;
}

body.dark .contact-form-section {
  background: #1e293b;
}

body.dark .contact-info-card,
body.dark .contact-sidebar-card,
body.dark .contact-form-content,
body.dark .contact-address-card {
  background: #1e293b;
  border-color: #334155;
}

body.dark .contact-info-card:hover,
body.dark .contact-address-card:hover {
  background: #334155;
  border-color: #667eea;
}

body.dark .contact-info-card h3,
body.dark .contact-sidebar-card h3,
body.dark .contact-address-card h3 {
  color: #e5e7eb;
}

body.dark .contact-info-card p,
body.dark .contact-sidebar-card p,
body.dark .contact-address-card p {
  color: #94a3b8;
}

body.dark .contact-info-card a,
body.dark .contact-sidebar-card a {
  color: #60a5fa;
}

body.dark .quick-link {
  background: #334155;
  color: #cbd5e1;
}

body.dark .quick-link:hover {
  background: #667eea;
  color: white;
}

/* ============================================
   FOAM PLP VERSION 3 - MODERN CARD DESIGN (WordPress)
   ============================================ */
.foam-plp-v3,
.foam-plp-section.foam-plp-v3,
.wp-block-group.foam-plp-v3 {
  padding: 100px 40px;
  background: white;
}

.foam-modern-cards,
.foam-modern-cards .wp-block-group,
.foam-modern-cards .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.foam-modern-card,
.foam-modern-card .wp-block-group {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #e5e7eb;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.foam-modern-card:hover,
.foam-modern-card .wp-block-group:hover {
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
  border-color: #667eea;
}

.foam-modern-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #667eea;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.foam-modern-card.foam-premium .foam-modern-badge,
.foam-premium .foam-modern-badge {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.foam-modern-card.foam-luxury .foam-modern-badge,
.foam-luxury .foam-modern-badge {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.foam-modern-image,
.foam-modern-image .wp-block-image,
.foam-modern-image figure {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  position: relative;
  margin: 0;
}

.foam-modern-image img,
.foam-modern-image .wp-block-image img,
.foam-modern-image figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  display: block;
}

.foam-modern-card:hover .foam-modern-image img,
.foam-modern-card:hover .foam-modern-image .wp-block-image img {
  transform: scale(1.15);
}

.foam-modern-content,
.foam-modern-content .wp-block-group {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.foam-modern-content h3,
.foam-modern-content .wp-block-heading,
.foam-modern-content h2,
.foam-modern-content h4 {
  font-size: 26px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  letter-spacing: -0.5px;
}

.foam-modern-tagline,
.foam-modern-content p.foam-modern-tagline {
  font-size: 15px;
  color: #667eea;
  font-weight: 600;
  margin: 0;
  font-style: italic;
}

/* Updated: Use foam-v1 style checkmark list instead of icon flex layout */
.foam-modern-features,
.foam-modern-features .wp-block-list,
.foam-modern-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.foam-modern-features li,
.foam-modern-features .wp-block-list-item,
.foam-modern-features ul li {
  padding: 10px 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

.foam-modern-features li::before,
.foam-modern-features .wp-block-list-item::before,
.foam-modern-features ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
  font-size: 16px;
}

/* Hide the feature-item and feature-icon styles for foam-v3 */
.foam-modern-features .feature-item,
.foam-modern-features .feature-icon {
  display: none;
}

/* Show the text content */
.foam-modern-features li span:last-child,
.foam-modern-features .wp-block-list-item span:last-child {
  display: inline;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.foam-modern-apps,
.foam-modern-apps .wp-block-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #e5e7eb;
}

.app-tag,
.foam-modern-apps .app-tag {
  padding: 6px 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  margin-top: auto;
}

/* Responsive Foam V3 */
@media (max-width: 1024px) {
  .foam-modern-cards,
  .foam-modern-cards .wp-block-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .foam-plp-v3,
  .foam-plp-section.foam-plp-v3 {
    padding: 60px 20px;
  }

  .foam-modern-cards,
  .foam-modern-cards .wp-block-group {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Dark Mode Foam V3 */
body.dark .foam-plp-v3,
body.dark .foam-plp-section.foam-plp-v3 {
  background: #0f172a;
}

body.dark .foam-modern-card,
body.dark .foam-modern-card .wp-block-group {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark .foam-modern-content h3,
body.dark .foam-modern-content .wp-block-heading {
  color: #e5e7eb;
}

body.dark .foam-modern-tagline {
  color: #60a5fa;
}

body.dark .foam-modern-features li,
body.dark .foam-modern-features ul li {
  color: #94a3b8;
}

body.dark .foam-modern-features li::before,
body.dark .foam-modern-features ul li::before {
  color: #60a5fa;
}

body.dark .app-tag {
  background: #1e293b;
  border-color: #334155;
  color: #cbd5e1;
}

/* ============================================
   PAPER PLP SECTION - STACKED LAYOUT
   ============================================ */
.paper-plp-section {
  padding: 100px 40px;
  background: white;
}

.paper-plp-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.paper-plp-subtitle {
  font-size: 18px;
  text-align: center;
  color: #6b7280;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.paper-plp-item {
  max-width: 1200px;
  margin: 0 auto 80px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 0;
  transition: all 0.3s ease;
}

.paper-plp-item:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.paper-plp-item:last-child {
  margin-bottom: 0;
}

.paper-plp-image-wrapper {
  flex: 0 0 45%;
  max-width: 45%;
  height: auto;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  position: relative;
}

.paper-plp-image-wrapper img,
.paper-plp-image-wrapper figure img,
.paper-plp-image-wrapper .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 500px;
  transition: transform 0.6s ease;
}

.paper-plp-item:hover .paper-plp-image-wrapper img {
  transform: scale(1.05);
}

.paper-plp-content {
  flex: 1;
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Content structure styles */
.paper-plp-content h2,
.paper-plp-content .paper-plp-product-title,
.paper-plp-content .wp-block-heading {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #1f2937;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.paper-plp-content .category-intro,
.paper-plp-content p.category-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin: 0;
}

.paper-plp-content .product-list,
.paper-plp-content ul.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.paper-plp-content .product-list li,
.paper-plp-content ul.product-list li {
  padding: 12px 18px;
  background: #f9fafb;
  border-radius: 8px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.5;
  border-left: 3px solid #667eea;
  transition: all 0.2s ease;
}

.paper-plp-content .product-list li:hover,
.paper-plp-content ul.product-list li:hover {
  background: #f3f4f6;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.paper-plp-content .category-applications,
.paper-plp-content div.category-applications {
  padding: 0;
  background: transparent;
  border: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.paper-plp-content .category-applications strong {
  font-size: 14px;
  font-weight: 700;
  color: #667eea;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.paper-plp-content .category-applications strong::before {
  content: '📋';
  font-size: 18px;
  display: inline-block;
}

.paper-plp-content .category-applications span {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
  display: block;
  padding: 16px 20px;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  position: relative;
  padding-left: 48px;
}

.paper-plp-content .category-applications span::before {
  content: '→';
  position: absolute;
  left: 20px;
  top: 16px;
  color: #667eea;
  font-weight: bold;
  font-size: 18px;
}

/* Responsive Paper PLP Section */
@media (max-width: 1024px) {
  .paper-plp-item {
    flex-direction: column;
  }

  .paper-plp-image-wrapper {
    flex: 1;
    max-width: 100%;
    min-height: 400px;
  }

  .paper-plp-image-wrapper img,
  .paper-plp-image-wrapper figure img {
    min-height: 400px;
  }

  .paper-plp-content {
    padding: 40px 35px;
    gap: 28px;
  }

  .paper-plp-content .product-list,
  .paper-plp-content ul.product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .paper-plp-section {
    padding: 60px 20px;
  }

  .paper-plp-title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .paper-plp-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .paper-plp-item {
    margin-bottom: 50px;
    border-radius: 16px;
  }

  .paper-plp-image-wrapper {
    min-height: 300px;
  }

  .paper-plp-image-wrapper img,
  .paper-plp-image-wrapper figure img {
    min-height: 300px;
  }

  .paper-plp-content {
    padding: 30px 25px;
    gap: 25px;
  }

  .paper-plp-content h2,
  .paper-plp-content .paper-plp-product-title {
    font-size: 26px;
  }

  .paper-plp-content .category-intro {
    font-size: 15px;
  }

  .paper-plp-content .product-list,
  .paper-plp-content ul.product-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .paper-plp-content .category-applications {
    gap: 14px;
  }

  .paper-plp-content .category-applications span {
    padding: 14px 18px;
    padding-left: 44px;
    font-size: 14px;
  }

  .paper-plp-content .category-applications span::before {
    left: 18px;
    top: 14px;
  }
}

/* Dark Mode Paper PLP Section */
body.dark .paper-plp-section {
  background: #0f172a;
}

body.dark .paper-plp-title {
  color: #e5e7eb;
}

body.dark .paper-plp-subtitle {
  color: #94a3b8;
}

body.dark .paper-plp-item {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark .paper-plp-content h2,
body.dark .paper-plp-content .paper-plp-product-title {
  color: #e5e7eb;
}

body.dark .paper-plp-content .category-intro {
  color: #94a3b8;
}

body.dark .paper-plp-content .product-list li,
body.dark .paper-plp-content ul.product-list li {
  background: #1e293b;
  color: #cbd5e1;
  border-left-color: #60a5fa;
}

body.dark .paper-plp-content .product-list li:hover,
body.dark .paper-plp-content ul.product-list li:hover {
  background: #334155;
}

body.dark .paper-plp-content .category-applications strong {
  color: #60a5fa;
}

body.dark .paper-plp-content .category-applications span {
  background: #1e293b;
  border-color: #334155;
  color: #cbd5e1;
}

body.dark .paper-plp-content .category-applications span::before {
  color: #60a5fa;
}

/* ============================================
   FOAM COMPARISON SECTION (All Versions)
   ============================================ */

.comparison-title,
.foam-comparison-section .wp-block-heading,
.foam-comparison-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.comparison-table-wrapper,
.foam-comparison-section .wp-block-table,
.foam-comparison-section table {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  background: white;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.foam-comparison-table,
.foam-comparison-section table,
.foam-comparison-section .wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.foam-comparison-table th,
.foam-comparison-table td,
.foam-comparison-section table th,
.foam-comparison-section table td,
.foam-comparison-section .wp-block-table th,
.foam-comparison-section .wp-block-table td {
  border: none;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.foam-comparison-table th:last-child,
.foam-comparison-table td:last-child,
.foam-comparison-section table th:last-child,
.foam-comparison-section table td:last-child,
.foam-comparison-section .wp-block-table th:last-child,
.foam-comparison-section .wp-block-table td:last-child {
  border-right: none;
}

.foam-comparison-table thead th:first-child,
.foam-comparison-section table thead th:first-child,
.foam-comparison-section .wp-block-table thead th:first-child {
  border-top-left-radius: 16px;
}

.foam-comparison-table thead th:last-child,
.foam-comparison-section table thead th:last-child,
.foam-comparison-section .wp-block-table thead th:last-child {
  border-top-right-radius: 16px;
}

.foam-comparison-table tbody tr:last-child td:first-child,
.foam-comparison-section table tbody tr:last-child td:first-child,
.foam-comparison-section .wp-block-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}

.foam-comparison-table tbody tr:last-child td:last-child,
.foam-comparison-section table tbody tr:last-child td:last-child,
.foam-comparison-section .wp-block-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}

.foam-comparison-table thead,
.foam-comparison-section table thead,
.foam-comparison-section .wp-block-table thead {
  background: #f8f9fa;
  color: #1f2937;
  border-bottom: 2px solid #e5e7eb;
}

.foam-comparison-table th,
.foam-comparison-section table th,
.foam-comparison-section .wp-block-table th {
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1f2937;
}

.foam-comparison-table tbody tr,
.foam-comparison-section table tbody tr,
.foam-comparison-section .wp-block-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s ease;
}

.foam-comparison-table tbody tr:hover,
.foam-comparison-section table tbody tr:hover,
.foam-comparison-section .wp-block-table tbody tr:hover {
  background: #f9fafb;
}

.foam-comparison-table tbody tr:last-child,
.foam-comparison-section table tbody tr:last-child,
.foam-comparison-section .wp-block-table tbody tr:last-child {
  border-bottom: none;
}

.foam-comparison-table td,
.foam-comparison-section table td,
.foam-comparison-section .wp-block-table td {
  padding: 18px 24px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

.foam-comparison-table td:first-child,
.foam-comparison-section table td:first-child,
.foam-comparison-section .wp-block-table td:first-child {
  font-weight: 600;
  color: #1f2937;
  background: #f9fafb;
  width: 180px;
}

.foam-comparison-table td strong,
.foam-comparison-section table td strong,
.foam-comparison-section .wp-block-table td strong {
  color: #1f2937;
  font-weight: 600;
}

/* Responsive Foam Comparison */
@media (max-width: 768px) {
  .comparison-title,
  .foam-comparison-section .wp-block-heading,
  .foam-comparison-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .comparison-table-wrapper {
    overflow-x: scroll;
  }

  .foam-comparison-table,
  .foam-comparison-section table {
    min-width: 600px;
  }
}

/* Dark Mode Foam Comparison */
body.dark .comparison-title,
body.dark .foam-comparison-section .wp-block-heading,
body.dark .foam-comparison-section h2 {
  color: #e5e7eb;
}

body.dark .comparison-table-wrapper,
body.dark .foam-comparison-section .wp-block-table {
  background: #1e293b;
  border: 1px solid #334155;
}

body.dark .foam-comparison-table,
body.dark .foam-comparison-section table {
  background: #1e293b;
  border: none;
}

body.dark .foam-comparison-table thead,
body.dark .foam-comparison-section table thead {
  background: #1e293b;
  color: #e5e7eb;
  border-bottom: 2px solid #334155;
}

body.dark .foam-comparison-table th,
body.dark .foam-comparison-section table th {
  color: #e5e7eb;
}

body.dark .foam-comparison-table th,
body.dark .foam-comparison-table td,
body.dark .foam-comparison-section table th,
body.dark .foam-comparison-section table td {
  color: #cbd5e1;
  border-right: 1px solid #334155;
  border-bottom: 1px solid #334155;
}

body.dark .foam-comparison-table th:last-child,
body.dark .foam-comparison-table td:last-child,
body.dark .foam-comparison-section table th:last-child,
body.dark .foam-comparison-section table td:last-child {
  border-right: none;
}

body.dark .foam-comparison-table td:first-child,
body.dark .foam-comparison-section table td:first-child {
  background: #0f172a;
  color: #e5e7eb;
}

/* ============================================
   MATTRESS PLP SECTION
   ============================================ */
.mattress-hero-section {
  padding: 100px 40px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mattress-plp-section {
    padding: 100px 40px;
    background: white;
}

.mattress-plp-subtitle,
.mattress-plp-section .wp-block-paragraph {
  font-size: 18px;
  text-align: center;
  color: #6b7280;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mattress-plp-item {
  max-width: 1400px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.mattress-plp-item:last-child {
  margin-bottom: 0;
}

/* Force left alignment for content within mattress-plp-details (excluding main title/subtitle) */
.mattress-plp-details,
.mattress-plp-details .wp-block-group,
.mattress-plp-details .wp-block-column,
.mattress-plp-details .wp-block-columns {
  text-align: left !important;
}

.mattress-plp-details .wp-block-paragraph,
.mattress-plp-details p,
.mattress-plp-details span,
.mattress-plp-details strong,
.mattress-plp-details .wp-block-heading:not(.mattress-plp-title) {
  text-align: left !important;
}

.mattress-plp-reverse {
  grid-template-columns: 1.2fr 1fr;
}

.mattress-plp-reverse .mattress-plp-image-container {
  order: 2;
}

.mattress-plp-reverse .mattress-plp-details {
  order: 1;
}

.mattress-plp-image-container,
.mattress-plp-image-container .wp-block-image,
.mattress-plp-image-container figure,
.mattress-plp-item .wp-block-image,
.mattress-plp-item figure {
  position: relative;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  margin: 0;
}

.mattress-plp-image,
.mattress-plp-image-container .wp-block-image,
.mattress-plp-image-container figure {
  width: 100%;
  height: 100%;
  position: relative;
}

.mattress-plp-image img,
.mattress-plp-image-container img,
.mattress-plp-image-container .wp-block-image img,
.mattress-plp-image-container figure img,
.mattress-plp-item .wp-block-image img,
.mattress-plp-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.mattress-plp-item:hover .mattress-plp-image img,
.mattress-plp-item:hover .mattress-plp-image-container img,
.mattress-plp-item:hover .wp-block-image img {
  transform: scale(1.08);
}

.mattress-plp-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.mattress-plp-reverse .mattress-plp-badge {
  left: auto;
  right: 30px;
}

.mattress-plp-item .mattress-plp-details {
  padding: 50px 45px 50px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mattress-plp-reverse .mattress-plp-details {
  padding: 50px 0 50px 45px;
}

.mattress-plp-header {
  border-bottom: 2px solid #e5e7eb;
  padding: 0 !important;
  padding-bottom: 25px !important;
  margin: 0 !important;
  margin-bottom: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  border-bottom: 2px solid #e5e7eb !important;
  text-align: left !important;
}

.mattress-plp-name,
.mattress-plp-product-title,
.mattress-plp-header .wp-block-heading,
.mattress-plp-header h2,
.mattress-plp-header h3 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-align: left !important;
  text-decoration: none;
}

.mattress-plp-header h2 > a,
.mattress-plp-header h3 > a,
.mattress-plp-product-title:hover,
.mattress-plp-product-title:focus {
  text-decoration: none;
}

.mattress-plp-product-title > a,
.our-product-card-title > a {
  position: relative;
}

.mattress-plp-product-title > a::after,
.our-product-card-title > a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 0.05em;
  bottom: 0;
  left: 0;
  background: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.mattress-plp-product-title:hover > a,
.our-product-card-title:hover > a {
  color: #667eea;
}

.mattress-plp-product-title:hover > a::after,
.our-product-card-title:hover > a::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.mattress-plp-subtitle-text,
.mattress-plp-header p.mattress-plp-subtitle {
  font-size: 18px;
  color: #667eea;
  font-weight: 600;
  margin: 0;
  font-style: italic;
  text-align: left !important;
}

.mattress-plp-description,
.mattress-plp-description p,
.mattress-plp-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin: 0;
}

.mattress-plp-item .mattress-plp-specs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: #f9fafb;
  border-radius: 16px;
  border-left: 4px solid #667eea;
}

.mattress-plp-specs *,
.mattress-plp-specs .wp-block-group *,
.mattress-plp-specs .wp-block-column * {
  text-align: left !important;
}

.mattress-plp-item .mattress-spec-item,
.mattress-plp-item .mattress-spec-item .wp-block-column {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start !important;
  gap: 20px;
  text-align: left !important;
  width: 100%;
}

.mattress-plp-item .mattress-spec-item *,
.mattress-plp-item .mattress-spec-item .wp-block-group *,
.mattress-plp-item .mattress-spec-item .wp-block-column *,
.mattress-plp-item .mattress-spec-item .wp-block-paragraph,
.mattress-plp-item .mattress-spec-item p,
.mattress-plp-item .mattress-spec-item span,
.mattress-plp-item .mattress-spec-item strong {
  text-align: left !important;
}

.mattress-plp-item .spec-icon {
  font-size: 28px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mattress-plp-item .spec-content,
.mattress-plp-item .spec-content .wp-block-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  margin-top: 0;
  text-align: left !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.mattress-plp-item .spec-content strong,
.mattress-plp-item .spec-content .wp-block-heading,
.mattress-plp-item .spec-content h1,
.mattress-plp-item .spec-content h2,
.mattress-plp-item .spec-content h3,
.mattress-plp-item .spec-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.mattress-plp-item .spec-content span,
.mattress-plp-item .spec-content p,
.mattress-plp-item .spec-content .wp-block-paragraph {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  width: 100%;
}

.mattress-plp-item .mattress-plp-features {
  margin-top: 10px;
}

.mattress-plp-item .mattress-plp-features h3,
.mattress-plp-features .wp-block-heading,
.mattress-plp-item .mattress-plp-features .wp-block-heading,
.mattress-plp-item .mattress-plp-features h1,
.mattress-plp-item .mattress-plp-features h2,
.mattress-plp-item .mattress-plp-features h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 20px 0;
  text-align: left !important;
}

.mattress-plp-item .mattress-plp-features * {
  text-align: left !important;
}

.mattress-plp-item .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  text-align: left !important;
}

.mattress-plp-item .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: white;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
  text-align: left !important;
  justify-self: flex-start !important;
}

.mattress-plp-item .benefit-item *,
.mattress-plp-item .benefit-item .wp-block-group * {
  text-align: left !important;
}

.mattress-plp-item .benefit-item:hover {
  background: #f9fafb;
  border-color: #667eea;
  transform: translateX(4px);
}

.mattress-plp-item .benefit-item span:last-child,
.mattress-plp-item .benefit-item p,
.mattress-plp-item .benefit-item span {
  font-size: 15px;
  color: #4b5563;
  font-weight: 500;
}

.mattress-plp-item .benefit-check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #667eea;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

/* Responsive Mattress PLP */
@media (max-width: 1024px) {
  .mattress-plp-item,
  .mattress-plp-item .wp-block-group {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mattress-plp-reverse {
    grid-template-columns: 1fr;
  }

  .mattress-plp-reverse .mattress-plp-image-container,
  .mattress-plp-reverse .mattress-plp-details {
    order: unset;
  }

  .mattress-plp-image-container {
    min-height: 400px;
  }

  .mattress-plp-item .mattress-plp-details {
    padding: 40px 35px 40px 0;
  }

  .mattress-plp-reverse .mattress-plp-details {
    padding: 40px 0 40px 35px;
  }

  .mattress-plp-item .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mattress-plp-section {
    padding: 60px 20px;
  }

  .mattress-plp-title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .mattress-plp-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .mattress-plp-item {
    margin-bottom: 60px;
    border-radius: 20px;
  }

    .mattress-plp-image-container, .mattress-plp-image-container .wp-block-image, .mattress-plp-image-container figure, .mattress-plp-item .wp-block-image, .mattress-plp-item figure {
        min-height: 500px;
    }

  .mattress-plp-badge {
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 12px;
  }

      .mattress-plp-item .mattress-plp-details {
        padding: 30px 15px;
        gap: 25px;
    }

  .mattress-plp-reverse .mattress-plp-details {
    padding: 30px 15px;
  }

  .mattress-plp-item .mattress-plp-specs {
    padding: 15px;
         gap: 5px;
    }

  .mattress-plp-name,
  .mattress-plp-product-title {
    font-size: 28px;
  }

  .mattress-plp-specs {
    padding: 25px 20px;
    gap: 18px;
  }

  .mattress-plp-item .spec-icon {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }
}

/* Dark Mode Mattress PLP */
body.dark .mattress-plp-section {
  background: #0f172a;
}

body.dark .mattress-plp-title {
  color: #e5e7eb;
}

body.dark .mattress-plp-subtitle {
  color: #94a3b8;
}

body.dark .mattress-plp-item,
body.dark .mattress-plp-item .wp-block-group {
  background: #1e293b;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

body.dark .mattress-plp-item:hover {
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.4);
}

body.dark .mattress-plp-name,
body.dark .mattress-plp-product-title {
  color: #e5e7eb;
}

body.dark .mattress-plp-subtitle-text {
  color: #60a5fa;
}

body.dark .mattress-plp-description {
  color: #94a3b8;
}

body.dark .mattress-plp-header,
body.dark .mattress-plp-header .wp-block-group {
  border-bottom-color: #334155 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.dark .mattress-spec-item,
body.dark .mattress-spec-item .wp-block-group {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

body.dark .mattress-plp-specs {
  background: #0f172a;
  border-left-color: #60a5fa;
}

body.dark .spec-icon {
  background: #1e293b;
}

body.dark .spec-content strong {
  color: #e5e7eb;
}

body.dark .spec-content span {
  color: #cbd5e1;
}

body.dark .mattress-plp-features h3 {
  color: #e5e7eb;
}

body.dark .benefit-item {
  background: #1e293b;
  border-color: #334155;
}

body.dark .benefit-item:hover {
  background: #0f172a;
  border-color: #60a5fa;
}

body.dark .benefit-item span:last-child {
  color: #cbd5e1;
}

/* ============================================
   MATTRESS EXTRA INFO SECTION
   ============================================ */
.mattress-extra-info-items {
  padding: 50px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.mattress-extra-info-item-content-wrapper h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: var(--color-primary);
}

.mattress-extra-info-item-content-wrapper p {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--color-text);
}

.mattress-extra-info-items .mattress-extra-info-item-reverse {
  flex-direction: row-reverse;
  display: flex;
}

/* Dark Mode */
body.dark .mattress-extra-info-items {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark .mattress-extra-info-item-content-wrapper h3 {
  color: #e5e7eb;
}

body.dark .mattress-extra-info-item-content-wrapper p {
  color: #94a3b8;
}

/* ============================================
   MATTRESS ACCORDIONS SECTION - FULL WIDTH
   ============================================ */
.mattress-accordions-section {
  width: 100%;
  max-width: 100%;
}

.mattress-accordions-item-btn > button {
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.2;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mattress-accordions-item-btn > button:hover,
.mattress-accordions-item-btn > button:focus {
  text-decoration: none;
  padding: 12px 20px;
}

.mattress-accordions-item-btn > button:hover .wp-block-accordion-heading__toggle-title {
  text-decoration: none;
}

.mattress-accordions-item-content {
  padding: 20px;
  margin-top: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: #f9fafb;
}

/* Override wp-block-navigation hover styles */
:root :where(.wp-block-navigation a:where(:not(.wp-element-button)):hover) {
  text-decoration: none !important;
  color: #667eea !important;
}

/* ============================================
   MOBILE RESPONSIVE - HEADER NAV & HERO
   ============================================ */
@media (max-width: 782px) {
  /* Hero section mobile */
  .hero-section {
    padding: 48px 20px 40px !important;
    min-height: 55vh;
  }

  .hero-title {
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
  }

  .hero-subtitle {
    font-size: 16px !important;
    margin-bottom: 28px !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
  }

  .hero-buttons {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  .hero-buttons .btn,
  .hero-buttons .wp-block-button__link {
    width: auto !important;
    min-width: 140px !important;
    max-width: 100% !important;
  }
  .mattress-hero-section {
    padding: 60px 20px 50px;
}
}

@media (max-width: 480px) {
.wp-block-site-logo img {
    max-width: 80%;
  }
  .hero-title {
    font-size: 28px !important;
  }

  .hero-subtitle {
    font-size: 15px !important;
  }

  .hero-buttons {
    flex-direction: row !important;
    align-items: stretch !important;
  }

  .hero-buttons .btn,
  .hero-buttons .wp-block-button__link {
    max-width: 100% !important;
  }
  .contact-form-container {
    margin-left: 20px !important;
    margin-right: 15px !important;
}
.footer-logo img {
    max-width: 80%;
}
.our-mission-section > div,
.mattress-hero-section > div,
.foam-hero-section > div {
    padding-left: 0;
    padding-right: 0;
}
.company-journey-section {
    padding-left: 0;
    padding-right: 0;
}
.mattress-benefits-table-section,
.mattress-inquiry-section {
    padding: 40px 20px;
}
}