/* ==========================================
   SEEK DROP 01 — Complete Stylesheet
   Mobile-First | Montserrat | #9B0E24
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&display=swap');

:root {
  --burgundy: #9B0E24;
  --burgundy-dark: #7F0B1D;
  --text: #111111;
  --text-soft: #333333;
  --text-muted: #666666;
  --white: #FFFFFF;
  --grey: #F0F0F2;
  --border: #E5DDD8;
  --border-light: #EDE8E4;
  --font: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

button,
input,
select {
  font-family: inherit;
  border: none;
  outline: none;
  background: none
}

ul {
  list-style: none
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}

/* ==========================================
   ANNOUNCEMENT BAR
   ========================================== */
.announcement-bar {
  background: var(--burgundy);
  color: var(--white);
  text-align: center;
  padding: 9px 16px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ==========================================
   HEADER
   ========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px
}

.header-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--text);
  text-transform: uppercase
}

/* Mobile nav — slide-in panel */
.header-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100dvh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

.header-nav.open {
  right: 0
}

.header-nav::before {
  content: 'SEEK';
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 4px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}

.header-nav a {
  display: block;
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s, background 0.2s;
}

.header-nav a:hover,
.header-nav a:active {
  color: var(--burgundy);
  background: var(--grey)
}

.header-nav a.active {
  color: var(--burgundy);
  border-left: 3px solid var(--burgundy)
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px
}

.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer
}

.header-cart svg {
  width: 20px;
  height: 20px
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  background: var(--grey);
  overflow: hidden
}

.hero-inner {
  display: flex;
  flex-direction: column
}

.hero-content {
  padding: 32px 0 16px;
  order: 1
}

.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 0.92;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 20px
}

.hero-body {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 300px
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.btn-primary:hover {
  background: var(--burgundy-dark)
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
  padding: 12px 0;
  border-bottom: 1.5px solid var(--burgundy);
  transition: gap 0.3s, opacity 0.3s;
}

.btn-secondary:hover {
  gap: 12px;
  opacity: 0.8
}

.hero-image {
  position: relative;
  order: 2;
  margin: 0 -20px;
  height: 380px;
  overflow: hidden
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1
}

.hero-slide.active {
  opacity: 1;
  z-index: 2
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: white;
  transform: scale(1.3)
}

/* ==========================================
   BENEFITS STRIP
   ========================================== */
.benefits-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 14px
}

.benefit-item:nth-child(1),
.benefit-item:nth-child(2) {
  border-bottom: 1px solid var(--border)
}

.benefit-item:nth-child(odd) {
  border-right: 1px solid var(--border)
}

.benefit-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--burgundy);
  fill: none;
  stroke-width: 1.5
}

.benefit-text h4 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px
}

.benefit-text p {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4
}

/* ==========================================
   STORY SECTION
   ========================================== */
.story-section {
  padding: 48px 0
}

.story-inner {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.story-heading {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 16px
}

.story-body {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-soft)
}

.story-body p {
  margin-bottom: 14px
}

.story-body p:last-child {
  margin-bottom: 0
}

.story-images {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -20px;
  padding: 0 20px;
}

.story-images::-webkit-scrollbar {
  display: none
}

.story-images img {
  min-width: 220px;
  height: 260px;
  object-fit: cover;
  scroll-snap-align: start;
  flex-shrink: 0;
  border-radius: 0
}

/* ==========================================
   DETAIL SECTION
   ========================================== */
.detail-section {
  padding: 0 0 48px
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.detail-item {
  min-width: 0
}

.detail-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--grey);
  margin-bottom: 12px
}

.detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease
}

.detail-item:hover .detail-img img {
  transform: scale(1.03)
}

.detail-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 3px
}

.detail-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4
}

/* ==========================================
   PRODUCT BAR (Home)
   ========================================== */
.product-section {
  padding: 0 0 48px
}

.product-bar {
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column
}

.product-bar-images {
  display: flex;
  gap: 2px;
  padding: 16px 20px;
  background: var(--grey);
  border-bottom: 1px solid var(--border);
  justify-content: center
}

.product-bar-images img {
  width: 56px;
  height: 68px;
  object-fit: contain
}

.product-bar-info {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center
}

.product-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px
}

.product-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft)
}

.product-bar-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px
}

.product-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px
}

.product-form-row label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0
}

.size-select {
  height: 40px;
  border: 1px solid var(--border);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--white);
  cursor: pointer;
  appearance: auto;
  flex: 1;
  min-width: 0
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  height: 40px
}

.qty-btn {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-soft);
  cursor: pointer;
  transition: background 0.2s;
  user-select: none
}

.qty-btn:hover {
  background: var(--grey)
}

.qty-value {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border)
}

.btn-add-to-cart {
  background: var(--burgundy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-add-to-cart:hover {
  background: var(--burgundy-dark)
}

/* ==========================================
   PRODUCT PAGE (Shop)
   ========================================== */
.product-page {
  padding: 32px 0 48px
}

.product-grid {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.product-gallery {
  position: relative
}

.gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--grey);
  margin-bottom: 10px
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease
}

.gallery-thumbs {
  display: flex;
  gap: 6px
}

.thumb {
  width: 64px;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  background: var(--grey);
  cursor: pointer;
  transition: border-color 0.2s;
  overflow: hidden;
  padding: 0;
}

.thumb.active {
  border-color: var(--burgundy);
  border-width: 2px
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.product-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burgundy)
}

.product-full-title {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: -0.5px
}

.product-full-price {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px
}

.product-full-price span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400
}

.product-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0
}

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

.product-form-group>label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px
}

.form-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px
}

.form-group-header label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

.size-guide-link {
  font-size: 11px;
  color: var(--burgundy);
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500
}

.size-guide-link:hover {
  text-decoration: none
}

.size-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.size-btn {
  min-width: 48px;
  height: 44px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0 12px;
}

.size-btn.active {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy)
}

.size-btn:hover:not(.active) {
  background: var(--grey)
}

.product-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-soft)
}

.pf-item svg {
  flex-shrink: 0;
  stroke: var(--burgundy)
}

.payment-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5
}

.payment-note .shop-pay {
  color: #5a31f4;
  font-weight: 700
}

/* ==========================================
   FEATURES STRIP
   ========================================== */
.features-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 14px
}

.feature-item:nth-child(1),
.feature-item:nth-child(2) {
  border-bottom: 1px solid var(--border)
}

.feature-item:nth-child(odd) {
  border-right: 1px solid var(--border)
}

.feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--burgundy);
  fill: none;
  stroke-width: 1.5
}

.feature-text h5 {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px
}

.feature-text p {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4
}

/* ==========================================
   NEWSLETTER
   ========================================== */
.newsletter-section {
  padding: 48px 0
}

.newsletter-card {
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  padding: 28px 20px;
  gap: 18px;
}

.newsletter-logo {
  display: flex;
  justify-content: center
}

.newsletter-logo img {
  height: 48px;
  width: auto;
  filter: invert(1)
}

.newsletter-text h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px
}

.newsletter-text p {
  font-size: 11px;
  color: var(--text-muted)
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%
}

.newsletter-input {
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text);
  width: 100%;
  background: var(--white);
  text-align: center;
}

.newsletter-input::placeholder {
  color: #aaa;
  font-size: 11px
}

.btn-subscribe {
  height: 44px;
  width: 100%;
  background: var(--burgundy);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-subscribe:hover {
  background: var(--burgundy-dark)
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 32px
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  gap: 24px
}

.footer-brand {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px
}

.footer-logo-img {
  display: flex;
  justify-content: center;
  margin-bottom: 10px
}

.footer-logo-img img {
  height: 36px;
  width: auto;
  filter: invert(1)
}

/* Story page uses .footer-logo class */
.footer-logo {
  margin-bottom: 10px
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: invert(1);
  margin: 0 auto
}

.footer-copy {
  font-size: 11px;
  color: var(--text-muted)
}

.footer-column h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px
}

.footer-column ul li {
  margin-bottom: 8px
}

.footer-column ul li a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s
}

.footer-column ul li a:hover {
  color: var(--burgundy)
}

.footer-socials {
  display: flex;
  gap: 12px;
  justify-content: center
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: all 0.25s;
}

.footer-socials a:hover {
  border-color: var(--burgundy);
  background: var(--burgundy)
}

.footer-socials a:hover svg {
  stroke: var(--white)
}

.footer-socials a svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-soft);
  fill: none;
  stroke-width: 1.5
}

/* ==========================================
   MOBILE OVERLAY
   ========================================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  backdrop-filter: blur(2px);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible
}

/* ==========================================
   CART DRAWER
   ========================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  backdrop-filter: blur(2px);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 100%;
  height: 100dvh;
  background: var(--white);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
}

.cart-drawer.open {
  right: 0
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0
}

.cart-drawer-header h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px
}

.cart-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-soft);
  transition: color 0.2s
}

.cart-close-btn:hover {
  color: var(--burgundy)
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 16px;
  text-align: center
}

.cart-empty p {
  font-size: 13px;
  color: var(--text-muted)
}

.btn-continue-shopping {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}

.btn-continue-shopping:hover {
  background: var(--burgundy);
  color: var(--white)
}

.cart-items {
  padding: 0
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start
}

.cart-item-image {
  width: 72px;
  height: 72px;
  background: var(--grey);
  flex-shrink: 0;
  overflow: hidden
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.cart-item-details {
  flex: 1;
  min-width: 0
}

.cart-item-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 3px
}

.cart-item-size {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  width: fit-content;
  height: 28px
}

.cart-item-qty button {
  width: 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-soft);
  cursor: pointer;
  transition: background 0.15s
}

.cart-item-qty button:hover {
  background: var(--grey)
}

.cart-item-qty span {
  width: 28px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 28px
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0
}

.cart-item-price {
  font-size: 13px;
  font-weight: 600
}

.cart-item-remove {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.2s;
  padding: 2px 0
}

.cart-item-remove:hover {
  color: var(--burgundy)
}

.cart-drawer-footer {
  border-top: 1px solid var(--border);
  padding: 18px 20px 24px;
  flex-shrink: 0
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px
}

.cart-subtotal span:first-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px
}

.cart-subtotal span:last-child {
  font-size: 16px;
  font-weight: 700
}

.cart-shipping-note {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 14px
}

.btn-checkout {
  width: 100%;
  background: var(--burgundy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 8px;
}

.btn-checkout:hover {
  background: var(--burgundy-dark)
}

.btn-continue-shopping-sm {
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  text-decoration: underline;
  text-underline-offset: 3px
}

.btn-continue-shopping-sm:hover {
  color: var(--burgundy)
}

/* ==========================================
   MODALS
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(3px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100dvh;
  background: var(--white);
  z-index: 3001;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 0.3s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}

.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0
}

.modal-header h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-soft);
  transition: color 0.2s
}

.modal-close-btn:hover {
  color: var(--burgundy)
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1
}

.modal-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6
}

/* Size Table */
.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px
}

.size-table th {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-align: center;
  padding: 8px 6px;
  border-bottom: 2px solid var(--border)
}

.size-table th:first-child {
  text-align: left
}

.size-table td {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  padding: 10px 6px;
  border-bottom: 1px solid var(--border-light)
}

.size-table td:first-child {
  font-weight: 700;
  letter-spacing: 1px;
  text-align: left
}

.size-table tbody tr:hover {
  background: var(--grey)
}

.size-guide-tips {
  background: var(--grey);
  padding: 18px 20px;
  margin-top: 4px
}

.size-guide-tips h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px
}

.size-guide-tips ul li {
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 6px;
  padding-left: 14px;
  position: relative
}

.size-guide-tips li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-weight: 700
}

.size-tip {
  font-size: 11px;
  color: var(--burgundy);
  font-weight: 600;
  margin-top: 10px
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--border)
}

.faq-item {
  border-bottom: 1px solid var(--border)
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 14px;
  transition: color 0.2s
}

.faq-question:hover {
  color: var(--burgundy)
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 16px
}

.faq-answer p {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.7
}

/* ==========================================
   TOAST
   ========================================== */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 12px 24px;
  z-index: 5000;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.5px;
  border-radius: 2px;
}

.toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}

/* ==========================================
   STORY PAGE
   ========================================== */
.story-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 280px;
  overflow: hidden
}

.story-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.story-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%)
}

.story-hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 0;
  z-index: 2
}

.story-hero-title {
  font-size: 36px;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.5px
}

.story-page-content {
  padding: 40px 0
}

.story-text-block {
  max-width: 640px;
  margin-bottom: 40px
}

.story-text-block h2 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 16px
}

.story-text-block p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 14px
}

.story-text-block p:last-child {
  margin-bottom: 0
}

.story-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 40px
}

.editorial-cell {
  overflow: hidden
}

.editorial-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px
}

.editorial-cell--tall {
  grid-row: span 2
}

.story-quote {
  text-align: center;
  padding: 36px 16px;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1.5;
}

.story-detail-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px
}

.story-detail-item {
  text-align: center
}

.story-detail-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 8px
}

.story-detail-item h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase
}

.story-cta {
  text-align: center;
  padding: 32px 0 16px
}

.story-cta h2 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 12px
}

.story-cta p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px
}

/* ==========================================
   INTERACTIVE SIZE GUIDE
   ========================================== */
.size-finder {
  margin-bottom: 28px
}

.size-finder h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px
}

.size-finder-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px
}

.size-input-group {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.size-input-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted)
}

.size-input-group select,
.size-input-group input {
  height: 44px;
  border: 1px solid var(--border);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  appearance: auto;
  width: 100%;
}

.size-input-group input:focus,
.size-input-group select:focus {
  border-color: var(--burgundy);
  outline: none
}

.btn-find-size {
  grid-column: 1/-1;
  height: 44px;
  background: var(--text);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-find-size:hover {
  background: var(--burgundy)
}

.size-result {
  display: none;
  padding: 20px;
  background: var(--grey);
  text-align: center;
  animation: fadeUp 0.4s ease;
}

.size-result.active {
  display: block
}

.size-result-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px
}

.size-result-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--burgundy);
  margin-bottom: 4px
}

.size-result-note {
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.6
}

.size-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px
}

.size-divider::before,
.size-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border)
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards
}

.fade-up-delay-1 {
  animation-delay: 0.1s
}

.fade-up-delay-2 {
  animation-delay: 0.2s
}

.fade-up-delay-3 {
  animation-delay: 0.3s
}

.page-transition {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s
}

body.loaded .page-transition {
  opacity: 1;
  transform: translateY(0)
}

/* ==========================================
   SAFE AREAS
   ========================================== */
@supports(padding-bottom:env(safe-area-inset-bottom)) {
  .site-footer {
    padding-bottom: calc(32px + env(safe-area-inset-bottom))
  }

  .header-nav {
    padding-bottom: env(safe-area-inset-bottom)
  }

  .cart-drawer {
    padding-bottom: env(safe-area-inset-bottom)
  }

  .modal {
    padding-bottom: env(safe-area-inset-bottom)
  }
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important
  }

  .hero-slide {
    transition: none
  }

  .fade-up {
    opacity: 1
  }

  .page-transition {
    opacity: 1;
    transform: none
  }
}

/* ==========================================
   DESKTOP (min-width: 768px)
   ========================================== */
@media(min-width:768px) {
  .container {
    padding: 0 40px
  }

  .header-inner {
    height: 72px
  }

  .header-logo {
    font-size: 26px
  }

  /* Nav → horizontal row */
  .header-nav {
    position: static;
    width: auto;
    height: auto;
    flex-direction: row;
    gap: 36px;
    align-items: center;
    background: transparent;
    overflow: visible;
    box-shadow: none
  }

  .header-nav::before {
    display: none
  }

  .header-nav a {
    display: inline-block;
    width: auto;
    font-size: 11px;
    padding: 0;
    border: none !important;
    position: relative
  }

  .header-nav a.active {
    border-left: none !important
  }

  .header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--burgundy);
    transition: width 0.3s
  }

  .header-nav a:hover::after,
  .header-nav a.active::after {
    width: 100%
  }

  .header-nav a:hover,
  .header-nav a:active {
    background: transparent
  }

  .mobile-menu-toggle {
    display: none
  }

  .mobile-overlay {
    display: none
  }

  /* Hero → 2 columns */
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
    min-height: 580px;
    flex-direction: unset
  }

  .hero-content {
    padding: 48px 0;
    order: 0
  }

  .hero-title {
    font-size: clamp(60px, 9vw, 100px)
  }

  .hero-body {
    font-size: 14px
  }

  .btn-primary {
    width: auto
  }

  .hero-image {
    order: 0;
    margin: 0;
    height: 100%;
    overflow: hidden
  }

  .hero-slider {
    min-height: unset
  }

  /* Benefits → 4 columns */
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .benefit-item {
    padding: 32px 20px;
    border-bottom: none !important;
    border-right: none !important
  }

  .benefit-item:nth-child(1),
  .benefit-item:nth-child(2),
  .benefit-item:nth-child(3) {
    border-right: 1px solid var(--border) !important
  }

  .benefit-icon svg {
    width: 30px;
    height: 30px
  }

  .benefit-text h4 {
    font-size: 10px
  }

  .benefit-text p {
    font-size: 11px
  }

  /* Story → 2 columns */
  .story-section {
    padding: 64px 0
  }

  .story-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
    flex-direction: unset
  }

  .story-heading {
    font-size: clamp(24px, 3vw, 36px)
  }

  .story-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    overflow: visible;
    margin: 0;
    padding: 0
  }

  .story-images img {
    min-width: 0;
    height: 320px;
    width: 100%
  }

  /* Detail → grid */
  .detail-section {
    padding: 0 0 64px
  }

  .detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow: visible;
    margin: 0;
    padding: 0
  }

  .detail-item {
    min-width: 0
  }

  .detail-title {
    font-size: 11px
  }

  .detail-desc {
    font-size: 12px
  }

  /* Product bar → horizontal */
  .product-section {
    padding: 0 0 64px
  }

  .product-bar {
    flex-direction: row;
    align-items: center
  }

  .product-bar-images {
    border-bottom: none;
    border-right: 1px solid var(--border)
  }

  .product-bar-info {
    border-bottom: none;
    border-right: 1px solid var(--border);
    text-align: left;
    padding: 16px 28px
  }

  .product-bar-form {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    flex: 1
  }

  .btn-add-to-cart {
    width: auto;
    margin-left: auto;
    height: 36px;
    padding: 0 24px
  }

  /* Product page → 2 columns */
  .product-page {
    padding: 48px 0 64px
  }

  .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    flex-direction: unset
  }

  .thumb {
    width: 80px
  }

  .product-full-title {
    font-size: 36px
  }

  .product-full-price {
    font-size: 24px
  }

  /* Features → 4 columns */
  .features-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .feature-item {
    padding: 24px 20px;
    border-bottom: none !important;
    border-right: none !important
  }

  .feature-item:nth-child(1),
  .feature-item:nth-child(2),
  .feature-item:nth-child(3) {
    border-right: 1px solid var(--border) !important
  }

  /* Newsletter → 3 columns */
  .newsletter-section {
    padding: 64px 0
  }

  .newsletter-card {
    grid-template-columns: auto 1fr auto;
    text-align: left;
    padding: 32px 44px;
    gap: 44px
  }

  .newsletter-logo img {
    height: 60px
  }

  .newsletter-text h3 {
    font-size: 13px
  }

  .newsletter-text p {
    font-size: 12px
  }

  .newsletter-form {
    flex-direction: row;
    gap: 0;
    width: auto
  }

  .newsletter-input {
    height: 40px;
    text-align: left;
    width: 220px
  }

  .btn-subscribe {
    height: 40px;
    width: auto;
    padding: 0 20px;
    white-space: nowrap
  }

  /* Footer → 4 columns */
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    text-align: left;
    gap: 36px
  }

  .footer-brand {
    border-bottom: none;
    padding-bottom: 0
  }

  .footer-logo-img {
    justify-content: flex-start
  }

  .footer-logo-img img {
    margin: 0
  }

  .footer-logo img {
    margin: 0
  }

  .footer-socials {
    justify-content: flex-start
  }

  .footer-socials a {
    width: 32px;
    height: 32px
  }

  /* Cart → side panel */
  .cart-drawer {
    right: -420px;
    width: 400px;
    max-width: 400px
  }

  .cart-drawer-header {
    padding: 24px 28px
  }

  .cart-item {
    padding: 18px 28px
  }

  .cart-drawer-footer {
    padding: 18px 28px 24px
  }

  .cart-empty {
    padding: 60px 28px
  }

  /* Modal → centered */
  .modal {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: 580px;
    max-width: 92vw;
    height: auto;
    max-height: 85vh;
    transform: translate(-50%, -50%) scale(0.95)
  }

  .modal.active {
    transform: translate(-50%, -50%) scale(1)
  }

  .modal-header {
    padding: 22px 28px
  }

  .modal-body {
    padding: 24px 28px
  }

  /* Toast */
  .toast {
    bottom: 32px
  }

  /* Story page */
  .story-hero {
    height: 60vh;
    min-height: 400px
  }

  .story-hero-title {
    font-size: 52px
  }

  .story-page-content {
    padding: 64px 0
  }

  .story-text-block {
    margin-bottom: 48px
  }

  .story-text-block h2 {
    font-size: clamp(24px, 3vw, 36px)
  }

  .story-editorial-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 48px
  }

  .editorial-cell img {
    min-height: 260px
  }

  .story-quote {
    font-size: 28px;
    padding: 48px 20px;
    margin-bottom: 48px
  }

  .story-detail-row {
    gap: 20px;
    margin-bottom: 48px
  }
}

/* LARGE DESKTOP */
@media(min-width:1024px) {
  .hero-title {
    font-size: clamp(72px, 9vw, 100px)
  }

  .story-editorial-grid {
    gap: 12px
  }

  .editorial-cell img {
    min-height: 320px
  }
}
/* Dual Image Hero */
.hero-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  width: 100%;
}
.dual-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.dual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Premium Benefits Grid */
.premium-benefits {
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
}
.premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.premium-grid .benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px;
  border-right: 1px solid var(--border-light);
}
.premium-grid .benefit-item:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .premium-grid {
    grid-template-columns: 1fr 1fr;
  }
  .premium-grid .benefit-item:nth-child(2) {
    border-right: none;
  }
  .premium-grid .benefit-item:nth-child(1),
  .premium-grid .benefit-item:nth-child(2) {
    border-bottom: 1px solid var(--border-light);
  }
}

/* Enhanced Quantity Selector */
.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-dark, #000);
  border-radius: 4px;
  overflow: hidden;
  height: 48px;
}
.qty-selector .qty-btn {
  background: transparent;
  border: none;
  width: 48px;
  height: 100%;
  font-size: 18px;
  color: var(--text, #000);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.qty-selector .qty-btn:hover {
  background: var(--grey, #f5f5f5);
}
.qty-selector .qty-value {
  width: 48px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--border-light, #e0e0e0);
  border-right: 1px solid var(--border-light, #e0e0e0);
}


/* Animations & Life */
.product-gallery .gallery-main img {
  transition: transform 0.4s ease;
}
.product-gallery .gallery-main:hover img {
  transform: scale(1.03);
}
.detail-item .detail-img img, .editorial-cell img {
  transition: transform 0.6s ease;
}
.detail-item:hover .detail-img img, .editorial-cell:hover img {
  transform: scale(1.05);
}
.benefit-item {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.benefit-item:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

