.gifts-hero { position: relative; height: 55vh; min-height: 420px; overflow: hidden; margin-top: 58px; }
.gifts-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.gifts-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.48); }
.gifts-hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2; text-align: center; padding: 0 24px; }
.gifts-hero-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: #d4af70; margin-bottom: 14px; display: block; }
.gifts-hero-title { font-family: 'Cormorant Garamond', serif; font-size: 54px; font-weight: 300; color: #fff; margin-bottom: 14px; }
.gifts-hero-sub { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.75); max-width: 440px; line-height: 1.8; }

/* Filter Tabs */
.gifts-filter { padding: 0 40px; border-bottom: 1px solid #eee; }
.gifts-filter-inner { display: flex; gap: 0; overflow-x: auto; max-width: 1100px; margin: 0 auto; }
.gifts-tab { padding: 18px 24px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #aaa; border-bottom: 2px solid transparent; white-space: nowrap; cursor: pointer; background: none; transition: all .2s; }
.gifts-tab.active { color: #1a1a1a; border-bottom-color: #b8973a; }
.gifts-tab:hover { color: #1a1a1a; }

/* Budget Filter */
.gifts-budget { display: flex; gap: 10px; padding: 20px 40px; flex-wrap: wrap; align-items: center; border-bottom: 1px solid #f5f5f5; max-width: 1140px; margin: 0 auto; }
.gifts-budget-label { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #aaa; }
.budget-btn { padding: 7px 18px; border: 1px solid #ddd; font-size: 11px; font-weight: 500; color: #666; cursor: pointer; background: none; transition: all .2s; }
.budget-btn.active, .budget-btn:hover { border-color: #1a1a1a; color: #1a1a1a; background: #f9f9f9; }

/* Grid */
.gifts-section { padding: 48px 40px 80px; max-width: 1200px; margin: 0 auto; }
.gifts-section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
.gifts-section-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: #1a1a1a; }
.gifts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gift-card { display: block; cursor: pointer; }
.gift-card-img { aspect-ratio: 3/4; overflow: hidden; background: #f0ece4; margin-bottom: 14px; position: relative; }
.gift-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gift-card:hover .gift-card-img img { transform: scale(1.06); }
.gift-badge { position: absolute; top: 12px; left: 12px; background: #1a1a1a; color: #fff; font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; }
.gift-badge.gold { background: #b8973a; }
.gift-card-tag { font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #b8973a; margin-bottom: 5px; }
.gift-card-name { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 400; color: #1a1a1a; margin-bottom: 4px; }
.gift-card-price { font-size: 13px; font-weight: 500; color: #1a1a1a; }
.gift-card-price del { color: #aaa; font-weight: 300; font-size: 12px; margin-left: 4px; }
.gift-card-wish { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; background: rgba(255,255,255,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s; }
.gift-card-img:hover .gift-card-wish { opacity: 1; }

/* Occasion Blocks */
.gifts-occasions { background: #f5f3f0; padding: 64px 40px; }
.gifts-occasions-inner { max-width: 1100px; margin: 0 auto; }
.gifts-occasions-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: #1a1a1a; text-align: center; margin-bottom: 36px; }
.occasions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.occasion-card { text-align: center; cursor: pointer; }
.occasion-img { aspect-ratio: 1; overflow: hidden; border-radius: 50%; margin-bottom: 10px; border: 2px solid transparent; transition: border-color .2s; }
.occasion-card:hover .occasion-img { border-color: #b8973a; }
.occasion-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.occasion-card:hover .occasion-img img { transform: scale(1.1); }
.occasion-name { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #1a1a1a; }

/* Responsive */
@media (max-width: 900px) { .gifts-grid { grid-template-columns: repeat(2, 1fr); } .occasions-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) {
  .gifts-hero-title { font-size: 36px; }
  .gifts-filter, .gifts-budget { padding: 0 20px; }
  .gifts-section { padding: 36px 20px 60px; }
  .gifts-occasions { padding: 48px 20px; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
}
