.dm-hero-wrap { width: 100%; }
.dm-hero { position: relative; width: 100%; height: 560px; overflow: hidden; }
.dm-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dm-hero .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.95) 100%); }
.dm-hero-overlay-text { position: absolute; bottom: 24px; left: 24px; right: 24px; }
.dm-eyebrow { color: #c9a24b; font-size: 11px; letter-spacing: 0.25em; font-weight: 600; margin-bottom: 10px; font-family: 'Inter', sans-serif; }
.dm-hero-title { color: #fff; font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; line-height: 1.05; margin: 0; }
.dm-hero-desc { color: #999; font-size: 14px; margin-top: 10px; line-height: 1.5; max-width: 420px; font-family: 'Inter', sans-serif; }
.dm-hero-info { padding: 22px 24px 32px; border-top: 1px solid #262626; background: #0a0a0a; }
.dm-hero-desktop-title { display: none; }
.dm-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dm-price { color: #fff; font-size: 22px; font-weight: 700; font-family: 'Inter', sans-serif; }
.dm-sizes { display: flex; gap: 6px; }
.dm-size { border: 1px solid #3a3a3a; color: #aaa; font-size: 12px; padding: 5px 9px; font-weight: 600; font-family: 'Inter', sans-serif; }
.dm-cta { display: block; text-align: center; background: #fff; color: #0a0a0a !important; font-size: 16px; font-weight: 700; letter-spacing: 0.03em; padding: 18px; width: 100%; font-family: 'Inter', sans-serif; }
.dm-cta:hover { background: #e5e5e5; }
.dm-note { text-align: center; color: #777; font-size: 12px; margin-top: 12px; font-family: 'Inter', sans-serif; }
@media (min-width: 900px) {
  .dm-hero-wrap { display: grid; grid-template-columns: 1.1fr 1fr; }
  .dm-hero { height: 100%; min-height: 640px; }
  .dm-hero-info { border-top: none; border-left: 1px solid #262626; display: flex; flex-direction: column; justify-content: center; padding: 56px; }
  .dm-hero-overlay-text { display: none; }
  .dm-hero-desktop-title { display: block; }
  .dm-hero-desktop-title .dm-hero-title { font-size: 52px; margin-bottom: 16px; }
  .dm-hero-desktop-title .dm-hero-desc { font-size: 16px; margin-bottom: 36px; }
  .dm-hero-desktop-title .dm-eyebrow { font-size: 12px; margin-bottom: 14px; }
}

.dm-shop-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.dm-card { display: block; background: #111; border: 1px solid #1f1f1f; }
.dm-card-img-wrap { overflow: hidden; height: 280px; }
.dm-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dm-card:hover .dm-card-img { transform: scale(1.04); }
.dm-card-body { padding: 18px 20px; }
.dm-card-name { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.dm-card-price { color: #c9a24b; font-size: 15px; font-weight: 700; font-family: 'Inter', sans-serif; }
@media (max-width: 899px) {
  .dm-shop-grid.dm-cols-mobile-1 { grid-template-columns: 1fr !important; }
  .dm-shop-grid.dm-cols-mobile-2 { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
}
@media (min-width: 900px) {
  .dm-shop-grid.dm-cols-1 { grid-template-columns: 1fr; }
  .dm-shop-grid.dm-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .dm-shop-grid.dm-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .dm-shop-grid.dm-cols-4 { grid-template-columns: repeat(4, 1fr); }
}
