/* 
 * Supply Hub - Core Stylesheet
 * Custom Responsive Design System
 * Font: Metrophobic
 */

@import url('https://fonts.googleapis.com/css2?family=Metrophobic&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --primary: #f0a80e; /* Supply Hub Accent Yellow */
  --primary-hover: #d19209;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #888888;
  --bg-white: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #2d353e; /* Dark Slate Footer */
  --bg-darker: #222930;
  --border-light: #eeeeee;
  --border-medium: #dddddd;
  --font-family: 'Metrophobic', 'Outfit', -apple-system, sans-serif;
  --container-width: 1140px;
  --header-height: 100px;
  --topbar-height: 34px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text);
  background-color: var(--bg-white);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* --- Layout Elements --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  padding: 60px 0;
}

.section-bg {
  background-color: var(--bg-light);
}

/* --- Typography Helpers --- */
.heading-accent {
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  letter-spacing: 1px;
}

.heading-accent::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  margin-top: 10px;
}

.heading-center {
  text-align: center;
}

.heading-center::after {
  margin: 10px auto 0 auto;
}

.blockquote-text {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-weight: 300;
}

/* --- Header System --- */
.site-header {
  width: 100%;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
}

.top-bar {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  height: var(--topbar-height);
  line-height: var(--topbar-height);
  font-size: 12px;
  color: var(--text-light);
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-header-bar {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  max-height: 70px;
  width: auto;
}

/* --- Navigation Desktop --- */
.nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text);
  height: var(--header-height);
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}

.nav-link:hover, .nav-item.active > .nav-link {
  color: var(--primary);
}

/* Indicator line like Enfold */
.nav-link::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.nav-link:hover::before, .nav-item.active > .nav-link::before {
  transform: scaleX(1);
}

/* Dropdown Sub-menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--primary);
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 1001;
  box-shadow: var(--shadow-md);
}

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

.dropdown-item a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-light);
}

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

.dropdown-item a:hover {
  background-color: var(--bg-light);
  color: var(--primary);
  padding-left: 25px;
}

/* Header Utilities */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 15px;
}

.search-toggle-btn, .social-icon-btn {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.search-toggle-btn:hover, .social-icon-btn:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

/* --- Mobile Menu Button --- */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.burger-bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Mobile Side Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-lg);
  z-index: 1050;
  transition: var(--transition-smooth);
  padding: 80px 20px 40px 20px;
  overflow-y: auto;
}

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

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu-link {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu-link:hover, .mobile-menu-list .active > .mobile-menu-link {
  color: var(--primary);
}

.mobile-submenu-list {
  padding-left: 20px;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-submenu-link {
  font-size: 14px;
  color: var(--text-light);
  display: block;
  padding: 5px 0;
}

.mobile-submenu-link:hover {
  color: var(--primary);
}

/* --- Hero Slider System --- */
.hero-slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.hero-slider {
  display: flex;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  max-height: 630px;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 2;
}

.slide-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  color: var(--bg-white);
  padding: 0 20px;
}

.slide-content {
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-in-out;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.slide-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slide-desc {
  font-size: 18px;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--bg-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  backdrop-filter: blur(5px);
}

.slider-arrow:hover {
  background: var(--primary);
}

.slider-arrow-prev {
  left: 30px;
}

.slider-arrow-next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* --- Card Grids (General) --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

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

/* --- Product Category Cards (Homepage & Products Page) --- */
.product-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.product-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

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

.product-card-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
  transition: var(--transition-smooth);
}

.product-card:hover .product-card-title {
  color: var(--primary);
}

.product-card-desc {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-card-link:hover {
  color: var(--primary-hover);
  gap: 8px;
}

/* --- Inner Product Sub-sections Layouts --- */

/* Split Layout (Banner top + 2 columns layout below) */
.inner-banner {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.inner-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.inner-banner-title {
  color: var(--bg-white);
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.product-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-bottom: 50px;
}

.product-description-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-description-col p {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.7;
}

.product-description-col ul {
  list-style-type: square;
  padding-left: 20px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.product-description-col li {
  margin-bottom: 8px;
}

.product-sidebar-col {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
}

.sidebar-block {
  margin-bottom: 30px;
}

.sidebar-block:last-child {
  margin-bottom: 0;
}

.sidebar-title {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.sidebar-list li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-light);
  position: relative;
  padding-left: 15px;
}

.sidebar-list li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Color Palette Swatches (Marine Fabrics) */
.color-palette-section {
  border-top: 1px solid var(--border-light);
  padding-top: 40px;
}

.color-swatches-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.color-swatch-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 10px;
  text-align: center;
  transition: var(--transition-smooth);
}

.color-swatch-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.color-swatch-box {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  margin-bottom: 8px;
  border: 1px solid rgba(0,0,0,0.05);
}

.color-swatch-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  word-break: break-word;
}

.color-swatch-code {
  font-size: 9px;
  color: var(--text-muted);
}

/* Bean Bag Showcase Grid */
.beanbag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.beanbag-item {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--bg-white);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.beanbag-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.beanbag-item-img {
  max-height: 180px;
  margin: 0 auto 20px auto;
  object-fit: contain;
}

.beanbag-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.beanbag-item-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* --- Blinds Multi-category Layout (Blinds page) --- */
.blinds-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.blind-cat-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.blind-cat-content {
  padding: 25px;
}

.blind-cat-title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 5px;
  display: inline-block;
}

.blind-cat-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Contact & Forms --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.contact-map-wrapper {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-map-iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.contact-form-wrapper {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
  text-transform: uppercase;
}

.form-label span {
  color: #ff3b30;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-medium);
  background-color: var(--bg-white);
  border-radius: 4px;
  font-family: var(--font-family);
  font-size: 14px;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(240, 168, 14, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
  border: none;
  padding: 12px 30px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
  display: inline-block;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.form-alert {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
}

.form-alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* --- Footer Section --- */
.site-footer {
  background-color: var(--bg-dark);
  color: #b0b9c1;
  padding: 60px 0 0 0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 50px;
}

.footer-widget-title {
  color: var(--bg-white);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  letter-spacing: 0.5px;
}

.footer-widget-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
  margin-top: 10px;
}

.footer-text p {
  margin-bottom: 15px;
}

.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b0b9c1;
  font-size: 13px;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  color: var(--bg-white);
}

.footer-social-icon {
  background-color: var(--bg-darker);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: var(--transition-smooth);
}

.footer-social-link:hover .footer-social-icon {
  background-color: var(--primary);
}

/* Under Footer Bar */
.under-footer {
  background-color: var(--bg-darker);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
}

.under-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #888888;
}

.footer-bottom-socials {
  display: flex;
  gap: 15px;
}

.footer-bottom-social-link {
  color: #888888;
  font-size: 14px;
}

.footer-bottom-social-link:hover {
  color: var(--bg-white);
}

/* Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary);
  color: var(--bg-white);
  width: 44px;
  height: 44px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  border: none;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
}

/* --- Search Overlay Popup --- */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(45, 53, 62, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.search-overlay-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.search-overlay-close-btn:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.search-form-wrapper {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
  text-align: center;
}

.search-input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 3px solid var(--bg-white);
  color: var(--bg-white);
  font-size: 32px;
  font-family: var(--font-family);
  padding: 10px 0;
  text-align: center;
  transition: var(--transition-smooth);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
}

.search-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.search-tip {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  margin-top: 15px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  :root {
    --header-height: 80px;
  }
  .nav-menu {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .color-swatches-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2, .product-content-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .slide-title {
    font-size: 30px;
  }
  .slide-desc {
    font-size: 14px;
  }
  .hero-slider {
    height: 50vh;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .slider-arrow-prev {
    left: 10px;
  }
  .slider-arrow-next {
    right: 10px;
  }
  .color-swatches-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .beanbag-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blinds-category-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .grid-3, .grid-4, .color-swatches-grid, .beanbag-grid {
    grid-template-columns: 1fr;
  }
  .inner-banner {
    height: 250px;
  }
  .inner-banner-title {
    font-size: 24px;
  }
  .under-footer .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
