/* ============================
   RESET & BASE
   ============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #172554;
  --navy-mid: #1e3a8a;
  --navy-light: #dbeafe;
  --gold: #b8860b;
  --gold-light: #f5e6a3;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(23, 37, 84, 0.08);
  --shadow-lg: 0 16px 48px rgba(23, 37, 84, 0.14);
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================
   TOPBAR
   ============================ */
.topbar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(23, 37, 84, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-diamond {
  color: var(--gold);
  font-size: 1.2rem;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--navy);
  line-height: 1;
}
.logo-text small {
  display: block;
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--gray-500);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 4px;
  margin: 0 auto;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition:
    background var(--transition),
    color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition:
    left var(--transition),
    right var(--transition);
}

.nav-links a:hover {
  color: var(--navy);
}
.nav-links a:hover::after {
  left: 16px;
  right: 16px;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  font-size: 0.95rem;
  transition:
    background var(--transition),
    color var(--transition);
  position: relative;
}
.icon-btn:hover {
  background: var(--gray-100);
  color: var(--navy);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover {
  background: var(--gray-100);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================
   HERO
   ============================ */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 88vh;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(23, 37, 84, 0.25);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23, 37, 84, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition:
    border-color var(--transition),
    background var(--transition);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--gray-100);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(184, 134, 11, 0.18);
}
.hero-ring--lg {
  width: 520px;
  height: 520px;
}
.hero-ring--md {
  width: 380px;
  height: 380px;
  border-color: rgba(23, 37, 84, 0.1);
}

.hero-img-wrap {
  width: 340px;
  height: 460px;
  border-radius: 200px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: 20px;
  background: var(--gold);
  color: var(--white);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.35);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
.badge-num {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

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

/* ============================
   TRUST STRIP
   ============================ */
.trust-strip {
  background: var(--navy);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 40px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-item:last-child {
  border-right: none;
}

.trust-item i {
  font-size: 1.4rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}
.trust-item span {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ============================
   COMMON SECTION STYLES
   ============================ */
section {
  padding: 80px 24px;
}

.section-header {
  max-width: 1280px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-eyebrow.light {
  color: rgba(245, 230, 163, 0.9);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}

.view-all {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border-bottom: 1.5px solid var(--navy);
  transition:
    color var(--transition),
    border-color var(--transition);
}
.view-all:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================
   PROMO SECTION
   ============================ */
.promo-section {
  background: var(--off-white);
}

.promo-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 28px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  min-height: 180px;
  position: relative;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.promo-card--jewelry {
  background: linear-gradient(135deg, #fdf6e3 0%, #f5e6a3 100%);
}
.promo-card--men {
  background: linear-gradient(135deg, #e8f0fe 0%, #c7d9fd 100%);
}
.promo-card--women {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
}
.promo-card--kids {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.promo-off {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.promo-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.promo-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--navy);
  width: fit-content;
  transition:
    color var(--transition),
    border-color var(--transition);
}
.promo-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.promo-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

/* ============================
   PRODUCTS SECTION
   ============================ */
.products-section {
  background: var(--white);
}

.category-tabs {
  max-width: 1280px;
  margin: -24px auto 32px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tab {
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-100);
  border: 1.5px solid transparent;
  transition: all var(--transition);
}
.tab:hover {
  color: var(--navy);
  background: var(--navy-light);
}
.tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.products-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card.hidden {
  display: none;
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--gray-100);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.04em;
}
.product-badge.new {
  background: var(--gold);
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    color var(--transition),
    transform var(--transition);
  z-index: 2;
}
.wishlist-btn:hover {
  color: #e53e3e;
  transform: scale(1.1);
}
.wishlist-btn.active {
  color: #e53e3e;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 37, 84, 0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view {
  padding: 10px 24px;
  background: var(--white);
  color: var(--navy);
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    background var(--transition),
    color var(--transition);
}
.quick-view:hover {
  background: var(--navy);
  color: var(--white);
}

.product-info {
  padding: 16px;
}
.product-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-new {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}
.price-old {
  font-size: 0.82rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

/* ============================
   VINTAGE SECTION
   ============================ */
.vintage-section {
  background: var(--navy);
  padding: 80px 24px;
}

.vintage-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vintage-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.vintage-title em {
  font-style: italic;
  color: var(--gold-light);
}

.vintage-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.vintage-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vintage-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}
.vintage-features li i {
  color: var(--gold-light);
}

/* Vintage gallery */
.vintage-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  position: relative;
}

.vgallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  grid-row: span 2;
}
.vgallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vgallery-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vgallery-side img {
  border-radius: var(--radius);
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
}

.vintage-tag {
  position: absolute;
  bottom: -16px;
  left: 20px;
  background: var(--gold);
  color: var(--white);
  border-radius: 40px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.4);
}

/* ============================
   NEWSLETTER
   ============================ */
.newsletter-section {
  background: var(--off-white);
  padding: 80px 24px;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-icon {
  width: 60px;
  height: 60px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--navy);
}

.newsletter-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.newsletter-inner p {
  color: var(--gray-500);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 500px;
  margin: 0 auto 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus {
  border-color: var(--navy);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background var(--transition),
    transform var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.newsletter-note {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 24px 24px;
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}
.footer-brand .logo-text {
  color: var(--white);
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}
.social-links a:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(245, 230, 163, 0.08);
}

.footer-links h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links ul li,
.footer-links ul a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-links ul a:hover {
  color: var(--gold-light);
}
.footer-links ul li i {
  color: var(--gold-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.payment-icons img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity var(--transition);
}
.payment-icons img:hover {
  opacity: 1;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .vintage-inner {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(23, 37, 84, 0.1);
    z-index: 99;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px 8px;
    border-bottom: 1px solid var(--gray-100);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 24px;
    text-align: center;
  }
  .hero-sub {
    margin: 0 auto 32px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-img-wrap {
    width: 260px;
    height: 360px;
  }
  .hero-ring--lg {
    width: 320px;
    height: 320px;
  }
  .hero-ring--md {
    width: 240px;
    height: 240px;
  }

  .trust-strip {
    flex-direction: column;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .trust-item:last-child {
    border-bottom: none;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .vintage-inner {
    grid-template-columns: 1fr;
  }
  .vintage-gallery {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }

  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    width: 100%;
  }

  .section-header {
    align-items: center;
    text-align: center;
  }
  .view-all {
    position: static;
    margin-top: 8px;
  }
  .category-tabs {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-img-wrap {
    width: 220px;
    height: 300px;
  }
}

/* ============================
   ANIMATIONS
   ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.Product-Container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 50px;
  row-gap: 60px;
  padding: 60px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.Card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.Card:hover {
  transform: translateY(-6px);
}

.img-box {
  width: 100%;
  height: 280px;
  background-color: #e5e7eb;
  border-top-left-radius: 28px;
  border-bottom-right-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  margin-bottom: 16px;
}

.img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}

.Card:hover .img-box img {
  transform: scale(1.06);
}

.Card .title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 4px;

  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.Card .category {
  font-size: 15px;
  color: #6b7280;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.Card .price {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {
  .Product-Container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 45px;
    padding: 50px 30px;
  }

  .img-box {
    height: 250px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .Product-Container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 35px;
    padding: 40px 20px;
  }

  .img-box {
    height: 220px;
    padding: 20px;

    border-top-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }

  .Card .title {
    font-size: 16px;
  }

  .Card .category {
    font-size: 13px;
  }

  .Card .price {
    font-size: 16px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .Product-Container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 28px;
    padding: 30px 12px;
  }

  .img-box {
    height: 180px;
    padding: 15px;

    border-top-left-radius: 18px;
    border-bottom-right-radius: 18px;
    margin-bottom: 12px;
  }

  .Card .title {
    font-size: 14px;
  }

  .Card .category {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .Card .price {
    font-size: 15px;
  }
}

/* =========================
   VERY SMALL SCREEN
========================= */

@media (max-width: 360px) {
  .Product-Container {
    column-gap: 10px;
    padding: 25px 10px;
  }

  .img-box {
    height: 160px;
    padding: 12px;
  }

  .Card .title {
    font-size: 13px;
  }

  .Card .category {
    font-size: 11px;
  }

  .Card .price {
    font-size: 14px;
  }
}
/* ============================
   CARD BOTTOM — price + cart btn
   ============================ */
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
}

.card-cart-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--navy);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
  flex-shrink: 0;
}

.card-cart-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: scale(1.1);
}
