/* ============================================
   CAYAN ATELIER — Global Styles
   Fashion Brand from UAE | US Retail
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #1a1a1a;
  --color-secondary: #b8860b;
  --color-accent: #d4a853;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f6f3;
  --color-bg-dark: #0d0d0d;
  --color-text: #333333;
  --color-text-light: #777777;
  --color-text-white: #ffffff;
  --color-border: #e0dcd5;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1280px;
  --header-height: 80px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }
.text-gold { color: var(--color-secondary); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-white);
}

.btn-primary:hover {
  background: var(--color-secondary);
  color: var(--color-text-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-white);
}

.btn-gold {
  background: var(--color-secondary);
  color: var(--color-text-white);
}

.btn-gold:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn-white {
  background: var(--color-bg);
  color: var(--color-primary);
}

.btn-white:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
}

.logo a span {
  font-weight: 400;
  font-size: 0.7rem;
  display: block;
  letter-spacing: 4px;
  color: var(--color-secondary);
  margin-top: -2px;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-secondary);
  transition: width var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--color-primary);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  margin: 5px 0;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2418 50%, #1a1a1a 100%);
  color: var(--color-text-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(184,134,11,0.15)"/></pattern></defs><rect fill="url(%23p)" width="100" height="100"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 2rem;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  color: var(--color-text-white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-text-white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  display: block;
  font-weight: 500;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-light);
}

/* ============================================
   FEATURED COLLECTIONS GRID
   ============================================ */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-bg-alt);
  cursor: pointer;
  group: true;
}

.collection-card .card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.collection-card:hover .card-image {
  transform: scale(1.05);
}

.collection-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--color-text-white);
  transition: all var(--transition);
}

.collection-card .card-overlay h3 {
  color: var(--color-text-white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.collection-card .card-overlay p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0;
}

/* Placeholder images with gradients */
.collection-card:nth-child(1) .card-image {
  background: linear-gradient(135deg, #2d2418, #4a3728, #1a1a1a);
}
.collection-card:nth-child(2) .card-image {
  background: linear-gradient(135deg, #1a2a1a, #2d3d28, #1a1a1a);
}
.collection-card:nth-child(3) .card-image {
  background: linear-gradient(135deg, #1a1a2d, #28283d, #1a1a1a);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--color-bg);
  transition: transform var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-image {
  aspect-ratio: 3/4;
  background: var(--color-bg-alt);
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-image .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-secondary);
  color: var(--color-text-white);
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  font-weight: 600;
}

.product-info {
  padding: 1.25rem 0;
}

.product-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.product-info .product-category {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-info .product-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.product-info .product-price .original-price {
  text-decoration: line-through;
  color: var(--color-text-light);
  font-weight: 400;
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

/* ============================================
   BRAND STORY / ABOUT SECTION
   ============================================ */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.brand-story-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #2d2418, #b8860b33, #1a1a1a);
  position: relative;
}

.brand-story-image::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: -2rem;
  bottom: -2rem;
  border: 1px solid var(--color-secondary);
  z-index: -1;
}

.brand-story-content .label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  display: block;
  font-weight: 500;
}

.brand-story-content h2 {
  margin-bottom: 1.5rem;
}

.brand-story-content p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

/* ============================================
   FEATURES / USP BAR
   ============================================ */
.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.feature-item {
  padding: 2rem 1rem;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.feature-item h4 {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  text-align: center;
  padding: 5rem 0;
  background: var(--color-bg-dark);
  color: var(--color-text-white);
}

.newsletter h2 {
  color: var(--color-text-white);
  margin-bottom: 1rem;
}

.newsletter p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--color-text-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--color-secondary);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--color-secondary);
  color: var(--color-text-white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: var(--color-accent);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-footer {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-white);
  margin-bottom: 0.25rem;
}

.footer-brand .logo-footer span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--color-secondary);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  color: var(--color-text-white);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
}

.footer-bottom a:hover {
  color: var(--color-secondary);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 10rem 0 4rem;
  text-align: center;
  background: var(--color-bg-alt);
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  background: var(--color-bg-alt);
}

.page-header .label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  display: block;
  font-weight: 500;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--color-text-light);
}

.breadcrumb a:hover {
  color: var(--color-secondary);
}

.breadcrumb span {
  margin: 0 0.5rem;
}

/* ============================================
   POLICY / CONTENT PAGES
   ============================================ */
.content-page {
  padding: 4rem 0 6rem;
}

.content-page .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-page h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.content-page h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-page p {
  color: var(--color-text);
  line-height: 1.8;
}

.content-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-page ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--color-text);
}

.content-page .last-updated {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #2d2418, #b8860b33, #1a1a1a);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin-top: 4rem;
}

.value-item {
  padding: 2rem;
}

.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-item h3 {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-info-item p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.contact-info-item a {
  color: var(--color-secondary);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--color-secondary);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-text-white);
  border-color: var(--color-primary);
}

/* ============================================
   SIZE CHART
   ============================================ */
.size-chart-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.size-chart-table th,
.size-chart-table td {
  padding: 12px 16px;
  text-align: center;
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.size-chart-table th {
  background: var(--color-primary);
  color: var(--color-text-white);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.size-chart-table tr:nth-child(even) {
  background: var(--color-bg-alt);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-bg);
    padding: 6rem 2rem 2rem;
    transition: right var(--transition);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  }
  
  .main-nav.open {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  
  .main-nav ul li {
    border-bottom: 1px solid var(--color-border);
  }
  
  .main-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 0.9rem;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .collections-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .brand-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .brand-story-image::after {
    display: none;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-values {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .features-bar {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    width: 100%;
  }
  
  .page-hero {
    padding: 8rem 0 3rem;
  }
  
  .page-header {
    padding: 8rem 0 3rem;
  }
  
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  
  .container {
    padding: 0 1.25rem;
  }
  
  .btn {
    padding: 12px 28px;
    font-size: 0.8rem;
  }
}
