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

:root {
  /* Purple/Pink Jewelry Theme */
  --bg-deep: #0F0A1A;
  --bg-mesh-1: #7C3AED;
  --bg-mesh-2: #A855F7;
  --bg-mesh-3: #EC4899;
  --bg-mesh-4: #F472B6;
  
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.15);
  
  --text-main: #FFFFFF;
  --text-muted: #C4B5D4;
  
  --accent-primary: #A855F7;
  --accent-secondary: #EC4899;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 100px;
  
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.reset-all {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.html-wrapper {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

.body-wrapper {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}

/* Mesh Gradient Background */
.mesh-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: 
    radial-gradient(circle at 15% 50%, rgba(124, 58, 237, 0.4), transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.3), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(168, 85, 247, 0.3), transparent 50%);
  filter: blur(60px);
  animation: meshFlow 20s ease-in-out infinite alternate;
}

@keyframes meshFlow {
  0% { transform: scale(1); }
  50% { transform: scale(1.1) translate(2%, 2%); }
  100% { transform: scale(1) translate(-2%, -2%); }
}

/* Base Elements */
.image-wrapper {
  max-width: 100%;
  height: auto;
  display: block;
}

.link-wrapper {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.list-wrapper {
  list-style: none;
}

.button-wrapper {
  font-family: var(--font-heading);
  cursor: pointer;
  border: none;
  background: none;
}

.container-center {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Glass Utilities */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
}

.glass-panel:hover {
  border-color: var(--glass-highlight);
  background: rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn-main, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-sizing: border-box;
}

.btn-main {
  background: linear-gradient(135deg, var(--accent-primary), var(--bg-mesh-3));
  color: white;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.5);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-main);
}

/* Affiliate Strip */
.affiliate-strip {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  color: var(--text-muted);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--glass-border);
}

/* Full Width Navigation */
.header-section {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 10, 26, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5%;
  max-width: 1280px;
  margin: 0 auto;
}

.brand-link {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 60px;
  width: auto;
  max-width: 100%;
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-item {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav-item:hover, .nav-item.active-state {
  color: var(--text-main);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-primary);
  transition: var(--transition);
}

.nav-item:hover::after, .nav-item.active-state::after {
  width: 100%;
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}

.menu-line {
  height: 2px;
  width: 100%;
  background: var(--text-main);
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav-panel {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 26, 0.95);
  backdrop-filter: blur(30px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

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

.mobile-nav-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-muted);
}

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

.mobile-nav-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: var(--text-main);
}

/* Split Hero Section */
.hero-area {
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Internal Pages */
.internal-section {
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-pill);
  color: var(--accent-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-highlight {
  background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-visual-wrapper {
  position: relative;
}

.hero-product-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.hero-product-img:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.floating-card {
  position: absolute;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 6s ease-in-out infinite;
}

.card-price {
  bottom: -20px;
  left: -40px;
  animation-delay: 0s;
}

.card-warranty {
  top: 40px;
  right: -30px;
  animation-delay: 3s;
}

.floating-icon {
  font-size: 1.5rem;
  color: var(--accent-primary);
}

.floating-text strong {
  display: block;
  font-size: 1.2rem;
  color: var(--text-main);
  line-height: 1.2;
}

.floating-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

/* Bento Box Grid */
.bento-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(200px, auto);
  gap: 24px;
}

.bento-item {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bento-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--accent-primary);
}

.bento-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.bento-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Specific Bento Placements */
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
}

.bento-wide {
  grid-column: span 2;
}

.bento-tall {
  grid-row: span 2;
}

/* Product Section Details */
.product-showcase {
  padding: 80px 0;
}

.product-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
}

.two-col-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--glass-border);
}

.product-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.thumb-img {
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  opacity: 0.6;
}

.thumb-img:hover, .thumb-img.active-thumb {
  opacity: 1;
  border-color: var(--accent-primary);
}

.specs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.spec-box {
  background: rgba(255,255,255,0.02);
  padding: 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
}

.spec-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  display: block;
}

.spec-value {
  font-weight: 600;
  color: var(--text-main);
}

/* Testimonials / Split */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.testimonial-card {
  padding: 30px;
}

.stars {
  color: var(--accent-secondary);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* Footer */
.footer-section {
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
  background: rgba(15, 10, 26, 0.8);
  backdrop-filter: blur(20px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.footer-link {
  display: block;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-link:hover {
  color: var(--accent-primary);
}

.footer-text {
  color: var(--text-muted);
}

.footer-copyright {
  border-top: 1px solid var(--glass-border);
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Preloader */
.preloader-container {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  transition: opacity 0.6s ease;
}

.preloader-container.hidden-state {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preloader-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* FAQ Accordion */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-details {
  padding: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-details[open] {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-primary);
}

.faq-summary {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}

.faq-details[open] .faq-summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 25px 25px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Trust Section */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.trust-card {
  padding: 40px 30px;
  text-align: center;
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.trust-description {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: rgba(20, 20, 30, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.modal-text {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 20px 5%;
  z-index: 9000;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show-banner {
  display: block;
  transform: translateY(0);
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.accept-cookie-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent-primary), var(--bg-mesh-3));
  color: white;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.accept-cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.reject-cookie-btn {
  padding: 12px 24px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.reject-cookie-btn:hover {
  border-color: var(--text-muted);
  color: var(--text-main);
}

/* Legal Pages */
.legal-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 50px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--glass-shadow);
  max-width: 900px;
  margin: 0 auto;
}

.legal-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 0%, #c4b5d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-date {
  color: var(--accent-primary);
  font-size: 0.95rem;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-heading {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--text-main);
}

.legal-paragraph {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.legal-bold {
  color: var(--text-main);
  font-weight: 600;
}

.legal-list {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 25px;
  padding-left: 20px;
  list-style-type: disc;
}

.legal-list-item {
  margin-bottom: 10px;
}

.legal-link {
  color: var(--accent-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  font-weight: 500;
}

.legal-link:hover {
  border-bottom-color: var(--accent-primary);
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* Contact Page */
.contact-info-card {
  padding: 40px;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.contact-info-item {
  margin-bottom: 25px;
}

.contact-info-label {
  display: block;
  color: var(--accent-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.contact-info-value {
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-info-text {
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-form-card {
  padding: 40px;
  background: rgba(168, 85, 247, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 30px;
}

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

.form-input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--accent-secondary);
  background: rgba(0, 0, 0, 0.4);
}

.form-textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  resize: vertical;
  transition: var(--transition);
}

.form-textarea:focus {
  border-color: var(--accent-secondary);
  background: rgba(0, 0, 0, 0.4);
}

/* Price Display */
.price-display {
  background: rgba(168, 85, 247, 0.05);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.price-vat {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Section Description */
.section-description {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Feature Item */
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent-primary);
  margin-bottom: 5px;
}

.feature-subtitle {
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature-badge {
  margin-top: 15px;
  font-size: 0.8rem;
  background: var(--accent-primary);
  color: var(--bg-deep);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: bold;
}

/* Avatar */
.avatar-wrapper {
  width: 40px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-mesh-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.avatar-text {
  display: block;
}

.reviewer-name {
  display: block;
  font-weight: 600;
}

.reviewer-badge {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-quote {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-style: italic;
}

/* ==========================================================================
   Responsive
   All breakpoints live here, ordered widest to narrowest, and this section
   stays last in the file so overrides always beat the base rules above.
   ========================================================================== */

@media (max-width: 992px) {
  .hero-split, .product-split, .two-col-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .floating-card {
    display: none;
  }

  .trust-grid, .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-area, .internal-section {
    padding: 60px 0 60px;
  }

  .bento-section, .product-showcase {
    padding: 60px 0;
  }

  .nav-list { display: none; }
  .menu-button { display: flex; }

  .bento-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .bento-large, .bento-wide {
    grid-column: span 1;
  }

  .hero-title {
    font-size: 2.5rem !important;
  }

  .section-title {
    font-size: 2rem;
  }

  .airline-logos {
    gap: 30px;
    font-size: 1rem;
  }

  .legal-wrapper {
    padding: 30px 20px;
  }

  .legal-title {
    font-size: 2.2rem;
  }

  .legal-heading {
    font-size: 1.5rem;
  }

  .product-thumbs-grid {
    gap: 10px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container-center {
    padding: 0 4%;
  }

  .nav-container {
    padding: 14px 4%;
  }

  .logo-img {
    height: 44px;
  }

  .hero-title {
    font-size: 2rem !important;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .legal-title {
    font-size: 1.8rem;
  }

  .btn-main, .btn-secondary {
    padding: 12px 22px;
    font-size: 0.9rem;
  }

  .specs-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .trust-card, .testimonial-card {
    padding: 25px 20px;
  }

  .modal-content {
    padding: 30px 20px;
  }

  .airline-logos {
    gap: 20px;
    font-size: 0.85rem;
  }
}
