/* ======================================
   PRODUCT PAGES - Rugs Creation Style 
   ====================================== */

/* ---- Product Hero Banner ---- */
.product-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #111;
}
.product-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
  z-index: 1;
}
.product-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  padding: 0 20px;
}
.product-hero-content h1 {
  font-family: 'Publico', 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 12px;
}
.product-hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 550px;
  margin: 0 auto;
}

/* ---- Product Intro Section (image + text side by side) ---- */
.product-intro {
  padding: 80px 0;
  background: var(--color-bg-white);
}
.product-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.product-intro-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease;
}
.product-intro-images img:hover {
  transform: scale(1.03);
}
.product-intro-images img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/10;
}
.product-intro-images img:nth-child(2),
.product-intro-images img:nth-child(3) {
  aspect-ratio: 4/3;
}
.product-intro-text h2 {
  font-family: var(--font-hero);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.product-intro-text p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.btn-catalogue {
  display: inline-block;
  padding: 14px 36px;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  text-align: center;
}
.btn-catalogue:hover {
  background: #a00c25;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.3);
  color: white;
}

/* ---- Products Preview Section ---- */
.products-preview {
  padding: 80px 0;
  background: #f8f6f3;
}
.products-preview .section-label {
  font-size: 0.8rem;
  font-weight: 700;
}
.products-preview h2 {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
  line-height: 1.2;
}
.prod-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.prod-gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
}

/* Redesigned Grid Layout for Products Preview */
.beddings-single-container {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background-color: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.beddings-single-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  border-color: rgba(200, 16, 46, 0.15);
}

.beddings-all-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.beddings-single-container:hover .beddings-all-img {
  transform: scale(1.02);
}

.rugs-single-container {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background-color: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.rugs-single-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
  border-color: rgba(200, 16, 46, 0.15);
}

.rugs-all-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rugs-single-container:hover .rugs-all-img {
  transform: scale(1.02);
}

.carpets-rugs-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.uneven-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(30px, 5.5vw);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.beddings-collage .collage-item, .carpets-rugs-collage .collage-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-sizing: border-box;
  grid-column: auto !important;
  grid-row: auto !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.beddings-collage .collage-item img, .carpets-rugs-collage .collage-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.uneven-collage .collage-item {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.uneven-collage .collage-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.beddings-collage .collage-item:hover, .carpets-rugs-collage .collage-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
  border-color: rgba(200, 16, 46, 0.15);
}
.beddings-collage .collage-item:hover img, .carpets-rugs-collage .collage-item:hover img {
  transform: scale(1.04);
}

.uneven-collage .collage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  z-index: 2;
}
.uneven-collage .collage-item:hover img {
  transform: scale(1.05);
}

/* Coordinates for 12-item Collage Grid */
.collage-item-1 { grid-column: 5 / 9; grid-row: 4 / 8; }
.collage-item-2 { grid-column: 5 / 7; grid-row: 1 / 4; }
.collage-item-3 { grid-column: 7 / 9; grid-row: 2 / 4; }
.collage-item-4 { grid-column: 1 / 5; grid-row: 5 / 8; }
.collage-item-5 { grid-column: 3 / 5; grid-row: 3 / 5; }
.collage-item-6 { grid-column: 3 / 5; grid-row: 8 / 10; }
.collage-item-7 { grid-column: 5 / 7; grid-row: 8 / 11; }
.collage-item-8 { grid-column: 7 / 10; grid-row: 8 / 12; }
.collage-item-9 { grid-column: 9 / 11; grid-row: 2 / 3; }
.collage-item-10 { grid-column: 9 / 13; grid-row: 3 / 6; }
.collage-item-11 { grid-column: 9 / 12; grid-row: 6 / 8; }
.collage-item-12 { grid-column: 10 / 13; grid-row: 8 / 10; }

.collage-text-content {
  grid-column: 9 / 13;
  grid-row: 2 / 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(47, 42, 38, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collage-text-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(200, 16, 46, 0.15);
}

.collage-text-title {
  font-family: var(--font-hero);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.25;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  position: relative;
}

.collage-text-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: var(--color-primary);
  margin-top: 15px;
}

.collage-text-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

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

.collage-text-features li {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.collage-text-features .bullet {
  color: var(--color-primary);
  font-size: 1.1rem;
  display: inline-block;
  line-height: 1;
}

/* Reset individual item spans for all screen sizes for beddings/carpets */
.beddings-item-1, .beddings-item-2, .beddings-item-3, .beddings-item-4, .beddings-item-5,
.carpets-rugs-item-1, .carpets-rugs-item-2, .carpets-rugs-item-3, .carpets-rugs-item-4, .carpets-rugs-item-5 {
  grid-column: auto !important;
  grid-row: auto !important;
}

@media (max-width: 992px) {
  .beddings-collage, .carpets-rugs-collage {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .beddings-collage, .carpets-rugs-collage {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .uneven-collage {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .uneven-collage .collage-item {
    aspect-ratio: 4 / 3;
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .collage-text-content {
    grid-column: auto !important;
    grid-row: auto !important;
    padding: 30px 20px;
    order: -1;
  }
}

.preview-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.preview-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}
.preview-gallery img:hover {
  transform: scale(1.04);
  filter: brightness(1.05);
}

/* ---- Poufs Gallery Section ---- */
.poufs-gallery-section {
  padding: 80px 0;
  background: #fff;
}
.poufs-gallery-section .section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  display: block;
  margin-bottom: 10px;
}
.poufs-gallery-section h2 {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
  line-height: 1.2;
  color: var(--color-text-dark);
}
.poufs-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.poufs-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  cursor: pointer;
}
.poufs-gallery-item--wide {
  grid-column: 1 / -1;
}
.poufs-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.poufs-gallery-item--wide img {
  aspect-ratio: 21/9;
  object-fit: contain;
  background: #f8f6f3;
}
.poufs-gallery-item:not(.poufs-gallery-item--wide) img {
  aspect-ratio: 1;
}
.poufs-gallery-item:hover img {
  transform: scale(1.06);
}
.poufs-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.poufs-gallery-item:hover .poufs-gallery-overlay {
  opacity: 1;
}
.poufs-gallery-overlay span {
  color: white;
  font-family: var(--font-hero);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
.poufs-gallery-item:hover .poufs-gallery-overlay span {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .poufs-gallery {
    grid-template-columns: 1fr;
  }
  .poufs-gallery-item--wide {
    grid-column: auto;
  }
  .poufs-gallery-overlay {
    opacity: 1;
  }
  .poufs-gallery-overlay span {
    transform: translateY(0);
  }
}

/* ---- SEO Content Section ---- */
.seo-content {
  padding: 80px 0;
  background: var(--color-bg-white);
}
.seo-content .container {
  max-width: 900px;
}
.seo-content h2 {
  font-family: var(--font-hero);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
  margin-top: 50px;
  color: var(--color-text-dark);
  line-height: 1.2;
}
.seo-content h2:first-child {
  margin-top: 0;
}
.seo-content h3 {
  font-family: var(--font-hero);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 14px;
  margin-top: 36px;
  color: var(--color-text-dark);
}
.seo-content p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.seo-content strong {
  color: var(--color-text-dark);
  font-weight: 600;
}
.seo-content ul, .seo-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.seo-content li {
  color: var(--color-text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ---- Product FAQ Section ---- */
.product-faqs {
  padding: 60px 0 80px;
  background: var(--color-bg-white);
}
.product-faqs .container {
  max-width: 900px;
}
.product-faqs h2 {
  font-family: var(--font-hero);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 30px;
  color: var(--color-text-dark);
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: color 0.3s ease;
  user-select: none;
}
.faq-question:hover {
  color: var(--color-primary);
}
.faq-question .faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--color-primary);
}
.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 18px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ---- Redesigned Footer (Rugs Creation Style) ---- */
.footer-rc {
  background: #0D0D0D;
  padding: 60px 0 24px;
  color: #999;
  font-size: 0.9rem;
  position: relative;
  z-index: 10;
}
.footer-rc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-rc h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: none;
  font-weight: 600;
}
.footer-rc-col a {
  display: block;
  color: #999;
  margin-bottom: 10px;
  transition: color 0.2s;
  font-size: 0.9rem;
}
.footer-rc-col a:hover {
  color: white;
}
.footer-rc-col p {
  margin-bottom: 8px;
  line-height: 1.7;
}
.footer-rc-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-rc-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  transition: color 0.2s;
  font-size: 0.9rem;
}
.footer-rc-social a:hover {
  color: white;
}
.footer-rc-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}
.footer-rc-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #555;
}
.footer-rc-bottom-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-rc-bottom-logo img {
  height: 30px;
  width: auto;
}

/* ---- Redesigned Navigation (Support dropdown) ---- */
.dropdown-support {
  position: relative;
  display: flex;
  align-items: center;
}

/* ---- Catalogue Request Modal ---- */
.catalogue-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.catalogue-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.catalogue-modal-content {
  background: white;
  border-radius: 8px;
  max-width: 520px;
  width: 90%;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.catalogue-modal.active .catalogue-modal-content {
  transform: translateY(0);
}
.catalogue-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
  line-height: 1;
}
.catalogue-modal-close:hover {
  color: var(--color-primary);
}
.catalogue-modal h3 {
  font-family: var(--font-hero);
  font-size: 1.6rem;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}
.catalogue-modal p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.catalogue-modal .form-group {
  margin-bottom: 16px;
}
.catalogue-modal .form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--color-text-dark);
  font-weight: 500;
}
.catalogue-modal .form-group input,
.catalogue-modal .form-group select,
.catalogue-modal .form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 4px;
  transition: border-color 0.3s;
}
.catalogue-modal .form-group input:focus,
.catalogue-modal .form-group select:focus,
.catalogue-modal .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.catalogue-modal textarea {
  resize: vertical;
  min-height: 80px;
}
.catalogue-modal .btn-catalogue {
  width: 100%;
  margin-top: 8px;
}

/* ---- Contact Page Redesign ---- */
.contact-intro {
  padding: 60px 0;
  background: var(--color-bg-white);
}
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.contact-person-card {
  background: white;
  padding: 32px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-person-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.contact-person-card h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}
.contact-person-card .title {
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: block;
}
.contact-person-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- FAQ Page ---- */
.faq-page-section {
  padding: 80px 0;
  background: var(--color-bg-white);
}
.faq-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.faq-page-image {
  position: sticky;
  top: 140px;
}
.faq-page-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .product-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .preview-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-rc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-cards-row {
    grid-template-columns: 1fr 1fr;
  }
  .faq-page-grid {
    grid-template-columns: 1fr;
  }
  .faq-page-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .product-hero {
    height: 40vh;
    min-height: 280px;
  }
  .product-hero-content h1 {
    font-size: 2.2rem !important;
  }
  .product-hero-content p {
    font-size: 0.9rem;
  }

  .product-intro {
    padding: 50px 0;
  }
  .product-intro-images {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .product-intro-images img:first-child {
    grid-column: auto;
  }
  .product-intro-text h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  .product-intro-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .preview-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .footer-rc-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-rc-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .contact-cards-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Single Chart Infographic Scrollability on Mobile */
  .beddings-single-container, .rugs-single-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0;
    box-shadow: none;
    border-left: none;
    border-right: none;
  }
  .beddings-all-img, .rugs-all-img {
    min-width: 750px;
    width: auto;
    max-width: none;
    height: auto;
  }
}

/* ---- Single Intro Image Style (Premium Cushions Page) ---- */
.product-intro-images-single {
  width: 100%;
  display: block;
}
.product-intro-images-single img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}
.product-intro-images-single img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

