/* ===== CSS Custom Properties ===== */
:root {
  --color-bg-primary: #1a1006;
  --color-bg-surface: #2a1f0d;
  --color-bg-deep: #120d04;
  --color-gold: #c9a84c;
  --color-gold-light: #e8d5a0;
  --color-ivory: #f5f0e8;
  --color-burgundy: #6b1f2a;
  --color-muted: #a89060;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'EB Garamond', serif;
  --transition-base: 0.35s ease;
  --radius-card: 4px;
  --spacing-section: 80px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-ivory);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}

::selection {
  background: var(--color-gold);
  color: var(--color-bg-deep);
}

/* ===== Global Textures & Patterns ===== */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.03) 1px, transparent 1px),
                    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 1;
}

/* Gold grain overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  background: repeating-linear-gradient(0deg, rgba(201,168,76,0.015) 0px, rgba(201,168,76,0.015) 1px, transparent 1px, transparent 2px),
              repeating-linear-gradient(90deg, rgba(201,168,76,0.015) 0px, rgba(201,168,76,0.015) 1px, transparent 1px, transparent 2px);
}

/* ===== Keyframe Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(201,168,76,0.15); }
  50% { box-shadow: 0 0 30px rgba(201,168,76,0.3); }
}
@keyframes grain {
  0%, 100% { opacity: 0.03; }
  50% { opacity: 0.05; }
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
@keyframes subtleZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

/* ===== Announcement Bar ===== */
.announcement-bar {
  background: #3a0d14;
  color: var(--color-gold);
  padding: 8px 0;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1001;
  font-family: var(--font-body);
}
.announcement-bar .marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  padding-left: 100%;
}
.announcement-bar span {
  padding: 0 2rem;
}

/* ===== Fixed Navbar ===== */
.main-nav {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  background: var(--color-bg-primary);
  border-bottom: 2px solid var(--color-gold);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
}
body {
  padding-top: 106px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-brand .flourish {
  color: var(--color-gold);
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--color-ivory);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 1px;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-base);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--color-gold);
}

.nav-cart {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold-light);
  text-decoration: none;
  font-size: 1.3rem;
  position: relative;
}
.cart-badge {
  background: var(--color-burgundy);
  color: var(--color-ivory);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  position: absolute;
  top: -8px;
  right: -10px;
}

/* Hamburger Menu (CSS-only) */
.nav-toggle {
  display: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-base);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 106px;
    left: 0;
    width: 100%;
    background: var(--color-bg-deep);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 999;
    border-bottom: 2px solid var(--color-gold);
  }
  .nav-toggle:checked ~ .nav-links {
    transform: translateY(0);
  }
  .nav-cart {
    margin-left: auto;
  }
}

/* ===== Hero Section with Background Image ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://source.unsplash.com/featured/?victorian jewellery gold necklace antique');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  filter: brightness(0.4) saturate(0.8);
  transform: scale(1.05);
  animation: subtleZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(26,16,6,0.3) 0%, rgba(26,16,6,0.7) 50%, var(--color-bg-primary) 100%);
  z-index: 2;
}

/* Gold dot grid pattern overlay */
.hero-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(201,168,76,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  animation: fadeInUp 1s ease forwards;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--color-gold-light);
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  animation: shimmer 3s ease-in-out infinite;
  background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold), var(--color-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* ===== Buttons ===== */
.btn-gold {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-bg-deep);
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}
.btn-gold:hover {
  background: var(--color-gold-light);
  animation: shimmer 1.5s linear infinite;
  background-size: 200% auto;
}
.btn-ghost {
  display: inline-block;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  transition: all var(--transition-base);
  letter-spacing: 1px;
}
.btn-ghost:hover {
  background: var(--color-gold);
  color: var(--color-bg-deep);
}

/* ===== Ornament Divider ===== */
.ornament-divider {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin: 3rem 0 2rem;
  text-align: center;
}

/* ===== Section Headings ===== */
.section {
  padding: var(--spacing-section) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-gold-light);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-underline {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 3rem;
  position: relative;
}
.section-underline::after {
  content: "❦";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-gold);
  font-size: 1rem;
  background: var(--color-bg-primary);
  padding: 0 8px;
}

/* ===== Product Cards ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--color-bg-surface);
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(201,168,76,0.2);
  animation: cardGlow 2s ease-in-out infinite;
}
.product-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.product-info {
  padding: 1.2rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-ivory);
  margin-bottom: 0.5rem;
}
.material-badge {
  display: inline-block;
  border: 1px solid var(--color-gold);
  padding: 2px 10px;
  font-size: 0.75rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.purity {
  font-size: 0.85rem;
  color: var(--color-muted);
}
.price {
  font-size: 1.3rem;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0.5rem 0;
}
.stock-status {
  color: var(--color-burgundy);
  font-size: 0.85rem;
  font-style: italic;
}
.add-cart-btn {
  display: block;
  width: 100%;
  background: var(--color-gold);
  color: var(--color-bg-deep);
  text-align: center;
  padding: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 0.8rem;
  transition: all var(--transition-base);
}
.add-cart-btn:hover {
  background: var(--color-gold-light);
}
.wishlist-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--color-ivory);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition-base);
}
.wishlist-icon:hover {
  color: var(--color-gold);
}

/* ===== Category Mosaic ===== */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 1rem;
}
.mosaic-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.mosaic-item.large {
  grid-row: span 2;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mosaic-item:hover img {
  transform: scale(1.08);
}
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}
.mosaic-item:hover .mosaic-overlay {
  background: rgba(0,0,0,0.65);
}
.mosaic-overlay span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-ivory);
  transition: transform var(--transition-base);
}
.mosaic-item:hover .mosaic-overlay span {
  transform: translateY(-8px);
}
.mosaic-item a {
  display: block;
  width: 100%;
  height: 100%;
}

/* ===== Heritage Double Border ===== */
.heritage-box {
  position: relative;
  padding: 3rem;
  text-align: center;
}
.heritage-box::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px solid var(--color-gold);
  pointer-events: none;
}
.heritage-box::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,168,76,0.5);
  pointer-events: none;
}
.heritage-year {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-gold);
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--color-bg-surface);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.1);
  box-shadow: inset 0 0 30px rgba(201,168,76,0.04);
}
.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-gold);
  line-height: 1;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--color-muted);
  margin: 1rem 0;
}
.testimonial-card .patron {
  color: var(--color-gold);
  font-family: var(--font-display);
  margin-top: 1rem;
}
.stars {
  color: var(--color-gold);
  margin-top: 0.5rem;
}

/* ===== Instagram Strip ===== */
.insta-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-base);
}
.insta-item:hover img {
  opacity: 0.6;
}
.insta-item .insta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-family: var(--font-body);
  opacity: 0;
  transition: opacity var(--transition-base);
  background: rgba(0,0,0,0.3);
}
.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-bg-deep);
  border-top: 1px solid var(--color-gold);
  padding: 60px 40px 30px;
  margin-top: var(--spacing-section);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col h3 {
  font-family: var(--font-display);
  color: var(--color-gold);
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-gold-light);
  margin-bottom: 0.5rem;
}
.tagline {
  font-style: italic;
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.hex-seal {
  display: inline-block;
  border: 2px solid var(--color-gold);
  padding: 6px 16px;
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 0.9rem;
  clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
  background: var(--color-bg-surface);
  margin-top: 0.5rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--color-gold-light);
}
.footer-col ul li a::before {
  content: "→ ";
  opacity: 0;
  transition: opacity var(--transition-base);
  color: var(--color-gold);
}
.footer-col ul li a:hover::before {
  opacity: 1;
}
.newsletter-input {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.newsletter-input input {
  background: transparent;
  border: 1px solid var(--color-gold);
  padding: 8px 12px;
  color: var(--color-ivory);
  font-family: var(--font-body);
  flex: 1;
  min-width: 160px;
}
.newsletter-input .btn-subscribe {
  background: var(--color-gold);
  color: var(--color-bg-deep);
  border: none;
  padding: 8px 16px;
  font-family: var(--font-display);
  cursor: pointer;
  font-weight: 600;
}
.payment-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.payment-icons span {
  border: 1px solid var(--color-gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--color-muted);
}
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-ornament {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.footer-bottom p {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}
.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.social-icons a {
  color: var(--color-gold);
  text-decoration: none;
  font-size: 1.2rem;
  border: 1px solid var(--color-gold);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition-base);
}
.social-icons a:hover {
  background: var(--color-gold);
  color: var(--color-bg-deep);
}

/* ===== About Timeline ===== */
.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-gold);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 30px);
  position: relative;
  margin-bottom: 2rem;
}
.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-left: calc(50% + 30px);
  padding-right: 0;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--color-gold);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: dotPulse 2s ease-in-out infinite;
}
.timeline-content {
  background: var(--color-bg-surface);
  padding: 1.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  max-width: 400px;
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-gold);
}

/* ===== FAQ Accordion ===== */
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 0.5rem;
}
.faq-question {
  display: block;
  padding: 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold-light);
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: "▼";
  position: absolute;
  right: 1rem;
  color: var(--color-gold);
  transition: transform var(--transition-base);
}
.faq-toggle:checked + .faq-question::after {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
  color: var(--color-muted);
}
.faq-toggle:checked ~ .faq-answer {
  max-height: 200px;
  padding-bottom: 1rem;
}
.faq-toggle {
  display: none;
}

/* ===== Filter Tabs (Product Pages) ===== */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 20px;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-display);
  cursor: pointer;
  transition: all var(--transition-base);
}
.filter-radio {
  display: none;
}
.filter-radio:checked + .filter-tab {
  background: var(--color-gold);
  color: var(--color-bg-deep);
}

/* ===== Cart Table ===== */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  border-top: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  padding: 1rem;
  text-align: left;
  font-family: var(--font-display);
  color: var(--color-gold);
}
.cart-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.cart-table tr:nth-child(even) td {
  background: #211a0e;
}

/* ===== Contact Form ===== */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 12px 4px;
  color: var(--color-ivory);
  font-family: var(--font-body);
  transition: border var(--transition-base);
  margin-bottom: 1.5rem;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-bottom: 2px solid var(--color-gold);
}

/* ===== Map Placeholder ===== */
.map-placeholder {
  height: 300px;
  background: var(--color-bg-deep);
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 60px rgba(201,168,76,0.1);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-strip { grid-template-columns: repeat(3, 1fr); }
  .mosaic-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.8rem; }
  .hero-content .subtitle { font-size: 1.1rem; }
  .section { padding: 60px 1rem; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .insta-strip { grid-template-columns: repeat(2, 1fr); }
  .mosaic-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .cart-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .site-footer { padding: 40px 20px 20px; }
}
@media (max-width: 360px) {
  .hero-content h1 { font-size: 1.8rem; }
}