/* ====== 1. MODERN VARIABLES & RESET ====== */
:root {
  --primary-gold: #c5a059;
  --primary-red: #b91c1c;
  --dark-charcoal: #2d2d2d;
  --off-white: #fdfbf7;
  --pure-white: #ffffff;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --font-heading: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--off-white);
  color: var(--dark-charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

ul {
  list-style: none;
}

/* ====== 2. GLASSMOPHISM HEADER ====== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo-link img {
  height: 70px;
  object-fit: contain;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.desktop-nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark-charcoal);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.desktop-nav a:not(.cart-btn)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-red);
  transition: width 0.3s;
}

.desktop-nav a:not(.cart-btn):hover::after {
  width: 100%;
}

/* Cart Button Style */
.cart-btn {
  background: var(--dark-charcoal);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-btn:hover {
  background: var(--primary-red);
}

.cart-badge {
  background: white;
  color: var(--dark-charcoal);
  font-size: 0.75rem;
  font-weight: 700;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ====== 3. HERO SECTION ====== */
.hero {
  height: 85vh;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url("images/cover.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 1rem;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content em {
  font-family: var(--font-heading);
  color: var(--primary-gold);
  font-style: italic;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.cta-button {
  background: var(--primary-red);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.cta-button:hover {
  background: white;
  color: var(--primary-red);
}

/* ====== 4. SECTIONS & LAYOUT ====== */
.section-container {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.separator {
  height: 3px;
  width: 60px;
  background: var(--primary-gold);
  margin: 0 auto;
}

/* Brand Section (Grid) */
.brand-section {
  background: white;
  padding: 5rem 2rem;
}

.brand-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.eyebrow {
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.8rem;
}

.brand-text h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin: 1rem 0;
}

/* ====== 5. PRODUCTS & CARDS ====== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.product-card .frame {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #fff;
}

.product-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card .pinfo {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

.product-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.pprice {
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

.actions span {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--dark-charcoal);
  color: white;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
}

.actions span:hover {
  background: var(--primary-red);
}

/* ====== 6. CAROUSEL & TESTIMONIALS ====== */
.carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-snap-type: x mandatory;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 280px;
  scroll-snap-align: center;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.carousel-item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.testimonials-section {
  background: var(--dark-charcoal);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  max-width: 400px;
  text-align: left;
}

.stars {
  color: var(--primary-gold);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.author {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #ccc;
  font-style: italic;
}

/* ====== 7. MODERN FORM ====== */
.feedback-container {
  padding: 4rem 2rem;
  background: #f4f4f4;
}

.feedback-card {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
}

.feedback-left {
  background: var(--dark-charcoal);
  color: white;
  padding: 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feedback-left h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feedback-right {
  padding: 3rem;
  flex: 1.5;
}

.modern-form .input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.modern-form input,
.modern-form textarea,
.modern-form select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #f9f9f9;
  font-family: inherit;
  font-size: 1rem;
}

.modern-form input:focus,
.modern-form textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: white;
}

/* Floating Label Logic */
.modern-form label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #999;
  pointer-events: none;
  transition: 0.2s;
}

.modern-form input:focus ~ label,
.modern-form input:not(:placeholder-shown) ~ label,
.modern-form textarea:focus ~ label,
.modern-form textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 10px;
  font-size: 0.75rem;
  background: white;
  padding: 0 5px;
  color: var(--primary-gold);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary-gold);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #b08d48;
}

/* ====== 8. FOOTER ====== */
.site-footer {
  background: #1a1a1a;
  color: #888;
  padding-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand h2 {
  color: white;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #888;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  font-size: 1.2rem;
  color: white;
}

.footer-legal {
  border-top: 1px solid #333;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
}

/* ====== 9. INNER PAGE: FILTER BAR ====== */
.filter-section {
  background: white;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1400px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.filter-input {
  padding: 0.8rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-family: var(--font-body);
  outline: none;
  min-width: 200px;
  transition: 0.3s;
}

.filter-input:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/* ====== 10. INNER PAGE: CONTACT & TEAM ====== */
.contact-hero {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  align-items: start;
}

.contact-info-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.contact-detail {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail i {
  color: var(--primary-gold);
  font-size: 1.2rem;
  width: 30px;
}

/* Team Section */
.team-section {
  background: #f4f4f4;
  padding: 5rem 2rem;
  text-align: center;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.team-card {
  background: white;
  width: 260px;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.team-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--off-white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.team-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark-charcoal);
  margin-bottom: 0.25rem;
}

.team-card p {
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ====== 11. INNER PAGE: CART ACTIONS ====== */
.cart-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  flex-wrap: wrap;
}

.btn-secondary {
  background: var(--dark-charcoal);
  color: white;
  padding: 1rem 2rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-secondary:hover {
  background: #444;
}

/* ====== 12. ELEGANT LOADER ====== */
.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 4rem 0;
  grid-column: 1 / -1;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(197, 160, 89, 0.2);
  border-top: 3px solid var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.55, 0.055, 0.675, 0.19) infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.product-card,
.carousel-item {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== 13. ELEGANT PAGINATION ====== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin: 4rem 0;
}

.pagination button {
  background: white;
  border: 1px solid #e0e0e0;
  color: var(--dark-charcoal);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pagination button:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-2px);
}

.pagination button.active {
  background: var(--dark-charcoal);
  color: white;
  border-color: var(--dark-charcoal);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

/* ====== 14. ELEGANT NOTIFICATIONS (TOASTS) ====== */
#toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.toast {
  background: white;
  min-width: 300px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: slideInRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s ease;
  border-left: 4px solid var(--dark-charcoal);
}

.toast.success {
  border-left-color: var(--primary-gold);
}

.toast.remove {
  border-left-color: var(--primary-red);
}

.toast i {
  font-size: 1.2rem;
}

.toast.success i {
  color: var(--primary-gold);
}

.toast.remove i {
  color: var(--primary-red);
}

.toast-content h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.toast-content p {
  font-size: 0.85rem;
  color: #666;
  margin: 2px 0 0;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    transform: translateX(20px);
    opacity: 0;
  }
}

/* ====== 15. CUSTOM CONFIRMATION MODAL ====== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.custom-modal {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .custom-modal {
  transform: translateY(0);
}

.modal-icon {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.modal-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-cancel {
  padding: 0.8rem 1.5rem;
  border: 1px solid #ddd;
  background: white;
  color: #666;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
}

.btn-confirm {
  padding: 0.8rem 1.5rem;
  background: var(--primary-red);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(185, 28, 28, 0.3);
}

.btn-cancel:hover {
  background: #f9f9f9;
}

.btn-confirm:hover {
  background: #991b1b;
}

/* ====== 16. CART QUANTITY CONTROLS ====== */
.qty-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  background: #f4f4f4;
  padding: 5px 10px;
  border-radius: 50px;
  width: fit-content;
  margin: 10px auto;
}

.qty-btn {
  background: white;
  border: 1px solid #ddd;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
  color: var(--dark-charcoal);
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.qty-btn:hover {
  background: var(--primary-gold);
  color: white;
  border-color: var(--primary-gold);
}

.qty-text {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
  font-size: 0.95rem;
}

/* ====== 17. NEW: VALUE PROPOSITION STRIP ====== */
.value-props {
  background: white;
  padding: 3rem 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.props-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.prop-item {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
}

.prop-icon {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.prop-item:hover .prop-icon {
  transform: translateY(-5px) scale(1.1);
}

.prop-item h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark-charcoal);
}

.prop-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* ====== 18. NEW: BULK INQUIRY BANNER ====== */
.bulk-banner {
  background-color: #fdfbf7;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.85)
    ),
    url("https://images.unsplash.com/photo-1596547609652-9cf5d8d60be5?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--dark-charcoal);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.bulk-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.bulk-content h3 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: #444;
  margin-bottom: 1rem;
}

.bulk-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: #444;
  font-weight: 500;
}

.btn-white-outline {
  border: none;
  background: var(--primary-gold);
  color: white;
  padding: 1rem 3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
  border-radius: 50px;
}

.btn-white-outline:hover {
  background: var(--dark-charcoal);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ========================================= */
/* ====== 19. MOBILE RESPONSIVE LOGIC ====== */
/* ========================================= */
.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-charcoal);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 2000;
  padding: 2rem;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav.show {
  right: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-links a {
  display: block;
  font-size: 1.2rem;
  color: var(--dark-charcoal);
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  backdrop-filter: blur(4px);
}

.mobile-nav-overlay.show {
  display: block;
}

/* --- The Master Media Query (MUST BE LAST) --- */
@media (max-width: 768px) {
  /* 1. Header & Nav */
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  /* 2. Hero & Typography */
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .bulk-content h3 {
    font-size: 2rem;
  }

  /* 3. Grids (Force 1 Column) */
  .brand-grid,
  .feedback-card,
  .contact-grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  /* 4. Filters & Forms */
  .filter-section {
    flex-direction: column;
    width: 90%;
  }

  .filter-input {
    width: 100%;
  }

  .feedback-left {
    text-align: center;
    padding: 2rem;
  }

  /* 5. Video & Spacing */
  .video-wrapper {
    margin-bottom: 2rem;
    width: 100%;
  }

  .section-container {
    padding: 0 1rem;
    margin: 2rem auto;
  }
}
