:root {
    --black: #ffffff;
    --gold: #111111;
    --gold-dim: rgba(17,17,17,0.06);
    --gold-mid: rgba(17,17,17,0.22);
    --white: #111111;
    --grey: #f4f4f1;
    --grey2: #e9e9e5;
    --text-muted: #686868;
}

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

  html {
    overflow-x: clip;
    scroll-behavior: smooth;
  }

  body {
    background: var(--black);
    color: var(--white) !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 400;
    overflow-x: clip;
    cursor: none;
  }

  button,
  input,
  select,
  textarea {
    font-family: 'DM Sans', sans-serif;
  }

  html,
  body {
    background-color: var(--black) !important;
  }

  /* NAV */
  .dz-nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), transparent);
    backdrop-filter: blur(2px);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    letter-spacing: 6px;
    color: var(--white);
    text-decoration: none;
  }
  .nav-logo span,
  .footer-brand-logo span {
    color: var(--white);
    -webkit-text-stroke: 0;
  }

  .nav-links {
    display: flex; gap: 40px; list-style: none;
  }
  .nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-icons {
    display: flex; gap: 24px; align-items: center;
  }
  body .nav-icons button {
    background: none; border: none; cursor: none;
    color: var(--text-muted); font-size: 18px;
    transition: color 0.3s;
  }
  body .nav-icons button:hover { color: var(--gold); }
  .cart-badge {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; letter-spacing: 2px;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 18px;
    transition: all 0.3s;
  }
  .cart-badge:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
  }

  /* HERO */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 0 60px 80px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(105deg, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0.2) 100%),
      url('https://images.unsplash.com/photo-1617137968427-85924c800a22?w=1800&q=80') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
    filter: saturate(0.9) contrast(1.02);
  }
  @keyframes heroZoom { to { transform: scale(1); } }

  .hero-noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4; pointer-events: none;
  }

  .hero-gold-line {
    position: absolute; top: 0; left: 60px;
    width: 1px; height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
    opacity: 0.3;
  }

  .hero-content { position: relative; max-width: 700px; }

  .hero-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 16px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }
  .hero-tag::before {
    content: ''; display: block;
    width: 40px; height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(72px, 10vw, 140px);
    line-height: 0.92;
    letter-spacing: 4px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s 0.5s forwards;
  }
  .hero-title .accent { color: var(--gold); }

  .hero-sub {
    font-size: 15px; font-weight: 300;
    line-height: 1.8;
    color: rgba(17,17,17,0.6);
    max-width: 420px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.9s 0.7s forwards;
  }

  .hero-ctas {
    display: flex; gap: 20px; align-items: center;
    opacity: 0;
    animation: fadeUp 0.9s 0.9s forwards;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    padding: 16px 40px;
    border: none; cursor: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(17,17,17,0.25);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase;
    padding: 15px 40px;
    border: 1px solid rgba(17,17,17,0.3);
    cursor: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-stats {
    position: absolute; right: 60px; bottom: 80px;
    display: flex; flex-direction: column; gap: 32px;
    text-align: right;
    opacity: 0;
    animation: fadeUp 0.9s 1.1s forwards;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; letter-spacing: 2px;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* MARQUEE TICKER */
  .ticker {
    width: 100%;
    max-width: 100vw;
    background: var(--gold);
    padding: 12px 0;
    overflow: clip;
    white-space: nowrap;
    contain: paint;
  }
  .ticker-inner {
    display: inline-flex;
    animation: ticker 25s linear infinite;
  }
  .ticker-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; letter-spacing: 6px;
    color: var(--black);
    padding: 0 40px;
  }
  .ticker-sep {
    color: rgba(255,255,255,0.4);
    padding: 0 10px;
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* SECTION HEADERS */
  .section-header {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
  }
  .section-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 72px);
    letter-spacing: 3px;
    line-height: 1;
  }
  .section-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-mid);
    padding-bottom: 4px;
    transition: all 0.3s;
    white-space: nowrap;
    margin-bottom: 8px;
  }
  .section-link:hover { border-color: var(--gold); }

  /* CATEGORIES */
  .categories { padding: 100px 60px; }

  .cat-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 360px 360px;
    gap: 3px;
  }

  .cat-card {
    position: relative;
    overflow: hidden;
    cursor: none;
  }
  .cat-card:first-child { grid-row: 1 / 3; }

  .cat-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: saturate(0.92) contrast(1.02) brightness(0.78);
  }
  .cat-card:hover .cat-img { transform: scale(1.06); filter: saturate(1) contrast(1.04) brightness(0.7); }

  .cat-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.9) 0%, transparent 60%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
  }

  .cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; letter-spacing: 4px;
    margin-bottom: 8px;
  }
  .cat-count {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
  }
  .cat-arrow {
    position: absolute; top: 24px; right: 24px;
    width: 40px; height: 40px;
    border: 1px solid rgba(17,17,17,0.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 18px;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.3s;
  }
  .cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

  /* PRODUCTS */
  .products { padding: 100px 60px; background: var(--grey); }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .product-card {
    cursor: none;
    group: true;
  }

  .product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 20px;
    background: var(--grey2);
  }

  .product-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: saturate(0.94) contrast(1.02) brightness(0.98);
  }
  .product-card:hover .product-img { transform: scale(1.05); }

  .product-badge {
    position: absolute; top: 16px; left: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 12px;
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
  }
  .product-badge.new { background: var(--white); }
  .product-badge.sale { background: var(--white); color: var(--black); }

  .product-actions {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 16px;
    display: flex; gap: 8px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .product-card:hover .product-actions { transform: translateY(0); }

  .btn-cart {
    flex: 1;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    padding: 11px;
    cursor: none;
    transition: background 0.2s;
  }
  .btn-cart:hover { background: var(--white); }

  .btn-wish {
    width: 42px;
    background: transparent;
    border: 1px solid rgba(17,17,17,0.4);
    color: var(--gold);
    cursor: none;
    font-size: 16px;
    transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
  }
  .btn-wish:hover { background: var(--gold-dim); border-color: var(--gold); }

  .product-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 6px;
  }
  .product-meta {
    display: flex; justify-content: space-between;
    align-items: center;
  }
  .product-cat {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 2px; text-transform: uppercase;
  }
  .product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; letter-spacing: 2px;
    color: var(--gold);
  }
  .product-price .old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 8px;
  }

  /* FEATURE BANNER */
  .feature-banner {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: flex; align-items: center;
  }
  .feature-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(to right, rgba(255,255,255,0.95) 45%, rgba(255,255,255,0.2) 100%),
      url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1800&q=80') center/cover no-repeat;
    filter: saturate(0.9) contrast(1.02);
  }
  .feature-content {
    position: relative;
    padding: 0 60px;
    max-width: 560px;
  }
  .feature-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px; letter-spacing: 4px;
    line-height: 0.95;
    margin-bottom: 24px;
  }
  .feature-desc {
    font-size: 15px; font-weight: 300;
    line-height: 1.8;
    color: rgba(17,17,17,0.55);
    margin-bottom: 40px;
  }
  .feature-stats {
    display: flex; gap: 48px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(17,17,17,0.2);
  }
  .fstat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px; color: var(--gold);
    line-height: 1;
  }
  .fstat-label {
    font-size: 11px; letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
  }

  /* RECOMMENDATIONS */
  .recommendations { padding: 100px 60px; }

  .rec-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
  }
  .rec-sidebar {
    position: sticky; top: 120px;
  }
  .rec-sidebar .section-tag { margin-bottom: 12px; }
  .rec-sidebar .section-title { margin-bottom: 24px; }
  .rec-desc {
    font-size: 14px; line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 32px;
  }
  .style-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .style-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border: 1px solid rgba(17,17,17,0.25);
    color: var(--text-muted);
    cursor: none;
    transition: all 0.3s;
  }
  .style-tag:hover, .style-tag.active {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
  }

  .rec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  .rec-card {
    position: relative;
    overflow: hidden;
    cursor: none;
  }
  .rec-img {
    width: 100%; aspect-ratio: 2/3;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: saturate(0.92) contrast(1.02) brightness(0.82);
  }
  .rec-card:hover .rec-img {
    filter: saturate(1) contrast(1.04) brightness(0.72);
    transform: scale(1.04);
  }
  .rec-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(to top, rgba(255,255,255,0.85) 0%, transparent 55%);
  }
  .rec-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 4px;
  }
  .rec-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; color: var(--gold);
    letter-spacing: 2px;
  }
  .rec-hover-content {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .rec-card:hover .rec-hover-content { opacity: 1; }

  /* OFFERS STRIP */
  .offers-strip {
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    background: var(--grey);
  }
  .offer-card {
    padding: 40px;
    border-left: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .offer-card:hover { border-color: var(--gold); }
  .offer-icon {
    font-size: 32px; margin-bottom: 20px;
  }
  .offer-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px; letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .offer-desc {
    font-size: 13px; color: var(--text-muted);
    line-height: 1.7;
  }

  /* NEWSLETTER */
  .newsletter {
    padding: 120px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .newsletter::before {
    content: 'STYLE';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 280px;
    color: rgb(17 17 17 / 5%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 20px;
  }
  .newsletter .section-tag { text-align: center; margin-bottom: 16px; }
  .newsletter .section-title { margin-bottom: 20px; }
  .newsletter-sub {
    font-size: 15px; color: var(--text-muted);
    margin-bottom: 48px; line-height: 1.7;
  }
  .newsletter-form {
    display: flex; max-width: 520px;
    margin: 0 auto;
    gap: 0;
    position: relative;
  }
  .newsletter-input {
    flex: 1;
    background: var(--grey);
    border: 1px solid rgba(17,17,17,0.2);
    border-right: none;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    padding: 16px 24px;
    outline: none;
    transition: border-color 0.3s;
  }
  .newsletter-input::placeholder { color: var(--text-muted); }
  .newsletter-input:focus { border-color: var(--gold); }
  .newsletter-btn {
    background: var(--gold);
    border: none; color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    padding: 16px 32px; cursor: none;
    transition: background 0.3s;
    white-space: nowrap;
  }
  .newsletter-btn:hover { background: var(--white); }

  /* FOOTER */
  footer {
    background: var(--grey);
    border-top: 1px solid rgba(17,17,17,0.1);
    padding: 80px 60px 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-brand-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; letter-spacing: 6px;
    margin-bottom: 20px;
  }
  .footer-brand-logo span {
    color: var(--white);
    -webkit-text-stroke: 0;
  }

  .dz-content-page img {
    filter: none;
  }
  .footer-desc {
    font-size: 13px; color: var(--text-muted);
    line-height: 1.8; margin-bottom: 32px;
    max-width: 260px;
  }
  .social-links { display: flex; gap: 12px; }
  .social-link {
    width: 38px; height: 38px;
    border: 1px solid rgba(17,17,17,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
  }
  .social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
  }
  .footer-col-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 28px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-links a {
    font-size: 13px; color: var(--text-muted);
    text-decoration: none; transition: color 0.3s;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 1px;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(17,17,17,0.1);
    padding-top: 32px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-copy {
    font-size: 12px; color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 2px;
  }
  .footer-copy span { color: var(--gold); }
  .payment-icons { display: flex; gap: 12px; }
  .pay-icon {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(17,17,17,0.2);
    padding: 5px 10px;
    color: var(--text-muted);
  }

  /* SCROLL REVEAL */
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* GOLD DIVIDER */
  .gold-line {
    width: 60px; height: 2px;
    background: var(--gold);
    margin: 0 auto 16px;
  }

  /* FLOATING PROMO */
  .promo-float {
    position: fixed; bottom: 40px; right: 40px;
    z-index: 50;
    background: var(--gold);
    color: var(--black);
    padding: 14px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase;
    cursor: none;
    animation: floatPulse 2.5s ease-in-out infinite;
    transition: background 0.3s;
  }
  .promo-float:hover { background: var(--white); }
  @keyframes floatPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(17,17,17,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(17,17,17,0); }
  }

  /* GOLD GLOW ACCENT */
  .glow-accent {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17,17,17,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  /* SHARED HEADER */
  .site-header { position: relative; z-index: 1000; }
  .nav-links a.active { color: var(--gold); }
  .nav-icons a { text-decoration: none; }
  .dz-search-toggle {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .dz-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    margin-left: 7px;
    padding: 0 5px;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    line-height: 1;
  }
  body .dz-nav .dz-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 9px;
    border: 1px solid rgba(17,17,17,0.25);
    background: rgba(255,255,255,0.9);
  }
  .dz-menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 100%;
    height: 1px;
    margin: 5px 0;
    background: var(--gold);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .dz-menu-toggle[aria-expanded='true'] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .dz-menu-toggle[aria-expanded='true'] > span:nth-child(2) { opacity: 0; }
  .dz-menu-toggle[aria-expanded='true'] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .dz-search-panel {
    position: fixed;
    top: 88px;
    right: 60px;
    z-index: 1001;
    width: min(460px, calc(100vw - 40px));
    padding: 18px;
    border: 1px solid rgba(17,17,17,0.25);
    background: rgba(255,255,255,0.98);
    box-shadow: 0 20px 60px rgba(17,17,17,0.14);
  }
  .dz-search-panel[hidden] { display: none; }
  .dz-search-panel form { display: flex; margin: 0; }
  .dz-search-panel input[type='search'] {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0 16px;
    border: 1px solid rgba(17,17,17,0.25);
    border-radius: 0;
    background: #fafaf8;
    color: var(--white);
  }
  body .dz-search-panel button {
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 0;
    background: var(--gold);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* SHARED FOOTER */
  .footer-brand-logo { display: inline-block; color: var(--white); text-decoration: none; }
  .site-footer { clear: both; 
  max-width: 100% !important; }

  /* STANDARD AND WOOCOMMERCE CONTENT PAGES */
  .dz-content-page {
    width: min(1440px, calc(100% - 64px));
    min-height: 65vh;
    margin: 0 auto;
    padding: 140px 0 100px;
    color: var(--white);
  }
  .dz-page-entry + .dz-page-entry { margin-top: 64px; }
  .dz-page-header { margin-bottom: 32px; border-bottom: 1px solid rgba(17,17,17,0.15); }
  .dz-page-header .entry-title {
    margin: 0;
    padding-bottom: 20px;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  .dz-page-header .entry-title a { color: inherit; text-decoration: none; }
  .dz-content-page .entry-content { color: #aaaab0; line-height: 1.75; }
  .dz-content-page .woocommerce table.shop_table,
  .dz-content-page .wc-block-cart-items {
    border-color: rgba(17,17,17,0.18);
    color: var(--white);
  }
  .dz-content-page .woocommerce table.shop_table th,
  .dz-content-page .woocommerce table.shop_table td {
    border-color: rgba(17,17,17,0.12);
  }
  .dz-content-page .woocommerce a { color: var(--gold); }
  .dz-content-page .woocommerce .button,
  .dz-content-page .wp-element-button {
    border-radius: 0 !important;
    background: var(--gold) !important;
    color: var(--black) !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .dz-content-page .woocommerce input,
  .dz-content-page .woocommerce select,
  .dz-content-page .woocommerce textarea {
    border: 1px solid rgba(17,17,17,0.22);
    border-radius: 0;
    background: #ffffff;
    color: var(--white);
  }

  @media (max-width: 900px) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
    .dz-nav { padding: 18px 24px; }
    body .dz-nav .dz-menu-toggle { display: block; order: 3; }
    .nav-links {
      position: absolute;
      top: 100%;
      right: 20px;
      left: 20px;
      display: none;
      flex-direction: column;
      gap: 0;
      padding: 12px 0;
      border: 1px solid rgba(17,17,17,0.2);
      background: rgba(255,255,255,0.98);
    }
    .nav-links.is-open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 13px 20px; }
    .nav-icons { margin-left: auto; margin-right: 12px; gap: 12px; }
    .dz-search-toggle { display: none !important; }
    .dz-search-panel { top: 78px; right: 20px; }
    .hero {
      min-height: 820px;
      height: auto;
      padding: 140px 32px 150px;
    }
    .hero-content {
      width: 100%;
      max-width: 620px;
    }
    .hero-title {
      font-size: clamp(58px, 12vw, 88px);
      letter-spacing: 1px;
    }
    .hero-stats {
      right: 32px;
      bottom: 38px;
      left: 32px;
      flex-direction: row;
      justify-content: space-between;
      gap: 18px;
      text-align: left;
    }
    footer { padding: 60px 28px 30px; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px; }
  }

  @media (max-width: 600px) {
    .nav-logo { font-size: 23px; letter-spacing: 4px; }
    .cart-badge { padding: 6px 10px; font-size: 11px; }
    .hero {
      min-height: 820px;
      padding: 118px 24px 132px;
    }
    .hero-gold-line { left: 24px; }
    .hero-content { max-width: none; }
    .hero-tag {
      gap: 10px;
      margin-bottom: 16px;
      font-size: 9px;
      letter-spacing: 3px;
    }
    .hero-tag::before { width: 28px; }
    .hero-title {
      margin-bottom: 22px;
      font-size: clamp(48px, 14.5vw, 62px);
      line-height: 0.88;
      letter-spacing: 0;
    }
    .hero-sub {
      max-width: 100%;
      margin-bottom: 28px;
      font-size: 13px;
      line-height: 1.65;
    }
    .hero-ctas {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }
    .hero-ctas a {
      padding: 14px 10px;
      font-size: 10px;
      letter-spacing: 2px;
      text-align: center;
    }
    .hero-stats {
      right: 24px;
      bottom: 30px;
      left: 24px;
      text-align: center;
    }
    .stat-num { font-size: 28px; }
    .stat-label { font-size: 8px; letter-spacing: 2px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 20px; }
    .payment-icons { flex-wrap: wrap; }
    .dz-content-page { width: calc(100% - 40px); padding-top: 16px; }
  }

  @media (hover: none), (pointer: coarse) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
    a, button, input, select, textarea { cursor: auto !important; }
  }

/* Black shared header and footer on the light storefront. */
.dz-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(14px);
}

.dz-nav .nav-logo,
.dz-nav .nav-logo span,
.dz-nav .nav-links a.active,
.dz-nav .nav-links a:hover,
.dz-nav .nav-icons button:hover {
  color: #ffffff;
}

.dz-nav .nav-links a,
.dz-nav .nav-icons button {
  color: #b8b8b8;
}

.dz-nav .cart-badge {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.dz-nav .cart-badge:hover {
  background: #ffffff !important;
  color: #111111 !important;
}

.dz-nav .dz-cart-count {
  background: #ffffff;
  color: #111111;
}

body .dz-nav .dz-menu-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
}

.dz-nav .dz-menu-toggle > span:not(.screen-reader-text) {
  background: #ffffff;
}

.dz-nav a:focus,
.dz-nav button:focus,
.site-footer a:focus {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.dz-search-panel {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 10, 0.99);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.dz-search-panel input[type='search'] {
  border-color: rgba(255, 255, 255, 0.25);
  background: #171717;
  color: #ffffff;
}

.dz-search-panel input[type='search']::placeholder {
  color: #9a9a9a;
}

body .dz-search-panel button {
  background: #ffffff;
  color: #111111;
}

footer.site-footer {
  border-top-color: #0a0a0a;
  background: #0a0a0a;
  color: #ffffff;
}

.site-footer .footer-brand-logo,
.site-footer .footer-brand-logo span,
.site-footer .footer-col-title,
.site-footer .footer-copy span {
  color: #ffffff;
}

.site-footer .footer-desc,
.site-footer .footer-links a,
.site-footer .footer-copy,
.site-footer .pay-icon,
.site-footer .social-link {
  color: #a8a8a8;
}

.site-footer .footer-links a:hover,
.site-footer .social-link:hover {
  color: #ffffff;
}

.site-footer .social-link,
.site-footer .pay-icon {
  border-color: rgba(255, 255, 255, 0.24);
}

.site-footer .social-link:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 900px) {
  .dz-nav .nav-links {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(10, 10, 10, 0.99);
  }
}

/* Modern menswear storefront refresh */
body.home,
body.front-page {
  background: #eef0f5;
  color: #111827;
}

body.home .dz-store-home {
  width: 100%;
  padding: 24px 0 0;
  background: #eef0f5;
  color: #111827;
  font-family: "DM Sans", Arial, sans-serif;
}

.dz-store-home a {
  color: inherit;
}

.dz-home-hero,
.dz-home-services,
.dz-home-categories,
.dz-home-lookbook,
.dz-home-product-panel,
.dz-home-deals,
.dz-menswear-edit,
.dz-home-newsletter {
  width: min(1440px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.dz-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  gap: 28px;
  align-items: stretch;
  min-height: 560px;
  margin-bottom: 24px;
}

.dz-home-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 8px;
  background: #111821;
  color: #ffffff;
  overflow: hidden;
}

.dz-home-eyebrow,
.dz-section-heading span,
.dz-menswear-edit__content > span,
.dz-home-newsletter span {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff3b3f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dz-home-hero h1 {
  max-width: 620px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.dz-home-hero p {
  max-width: 520px;
  margin: 0 0 28px;
  color: #cbd1dc;
  font-size: 17px;
  line-height: 1.7;
}

.dz-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.dz-store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.dz-store-button:hover {
  transform: translateY(-2px);
}

.dz-store-button--dark {
  background: #ff3b3f !important;
  color: #ffffff !important;
}

.dz-store-button--light {
  background: #ffffff !important;
  color: #111827 !important;
}

.dz-home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
}

.dz-home-hero__stats span {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #aeb6c5;
  font-size: 12px;
}

.dz-home-hero__stats strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.dz-home-slider {
  position: relative;
  border-radius: 8px;
  background: #dfe4ea;
  overflow: hidden;
}

.dz-home-slider__track {
  display: flex;
  width: 300%;
  height: 100%;
  min-height: 560px;
  animation: dzHomeSlider 15s infinite;
}

.dz-home-slider:hover .dz-home-slider__track {
  animation-play-state: paused;
}

.dz-home-slide {
  position: relative;
  flex: 0 0 33.333333%;
  min-height: 560px;
  overflow: hidden;
}

.dz-home-slide img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dz-home-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.64));
}

.dz-home-slide > div {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  z-index: 1;
  color: #ffffff;
}

.dz-home-slide span {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dz-home-slide h2 {
  max-width: 420px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.05;
}

.dz-home-slider__dots {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.dz-home-slider__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.dz-home-slider__dots span:first-child {
  background: #ffffff;
}

@keyframes dzHomeSlider {
  0%,
  28% {
    transform: translateX(0);
  }
  36%,
  64% {
    transform: translateX(-33.333333%);
  }
  72%,
  94% {
    transform: translateX(-66.666666%);
  }
  100% {
    transform: translateX(0);
  }
}

.dz-home-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.dz-home-services div {
  padding: 20px;
  border: 1px solid #d7dbe3;
  border-radius: 8px;
  background: #ffffff;
}

.dz-home-services strong,
.dz-home-services span {
  display: block;
}

.dz-home-services strong {
  margin-bottom: 4px;
  color: #111827;
  font-size: 15px;
}

.dz-home-services span {
  color: #7b8494;
  font-size: 13px;
}

.dz-home-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.dz-category-tile {
  position: relative;
  min-height: 178px;
  padding: 28px;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
}

.dz-category-tile--ink {
  background: #1d2531;
}

.dz-category-tile--red {
  background: #ff3b3f;
}

.dz-category-tile--teal {
  background: #0b9fb0;
}

.dz-category-tile--blue {
  background: #1f4a82;
}

.dz-category-tile span,
.dz-category-tile strong,
.dz-category-tile em {
  position: relative;
  z-index: 1;
  display: block;
}

.dz-category-tile span {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
}

.dz-category-tile strong {
  max-width: 150px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
}

.dz-category-tile em {
  width: max-content;
  padding: 10px 15px;
  border-radius: 6px;
  background: #4b65ff;
  color: #ffffff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.dz-category-tile img {
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 58%;
  max-height: 160px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.dz-category-tile:hover img {
  transform: translateY(-6px) scale(1.04);
}

.dz-home-lookbook {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(330px, 0.46fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 59, 63, 0.18), transparent 28%),
    linear-gradient(135deg, #101722 0%, #1b2230 100%);
  color: #ffffff;
  overflow: hidden;
}

.dz-home-lookbook * {
  box-sizing: border-box;
}

.dz-lookbook__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: clamp(28px, 3.2vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.dz-lookbook__intro span {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff6266;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dz-lookbook__intro h2 {
  max-width: 420px;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  line-height: 0.98;
}

.dz-lookbook__intro p {
  max-width: 430px;
  margin: 0 0 28px;
  color: #c6cedb;
  font-size: 15px;
  line-height: 1.75;
}

.dz-lookbook__intro .dz-store-button {
  width: max-content;
  background: #ff3b3f !important;
}

.dz-lookbook__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dz-look-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 420px;
  padding: 18px;
  border-radius: 14px;
  background: #ffffff;
  color: #111827;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dz-look-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.dz-look-card::before {
  position: absolute;
  inset: 0;
  height: 45%;
  content: "";
}

.dz-look-card--red::before {
  background: linear-gradient(135deg, #ff3b3f, #ff7a59);
}

.dz-look-card--blue::before {
  background: linear-gradient(135deg, #2c4cff, #151b2a);
}

.dz-look-card--teal::before {
  background: linear-gradient(135deg, #06a9b5, #16394d);
}

.dz-look-card__number {
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.58);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.dz-look-card__images {
  position: relative;
  z-index: 1;
  min-height: 190px;
  margin-bottom: 20px;
}

.dz-look-card__images img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.22));
  transition: transform 0.22s ease;
}

.dz-look-card:hover .dz-look-card__images img {
  transform: translateY(-5px);
}

.dz-look-card__image-1 {
  left: 10%;
  bottom: 0;
  width: 45%;
  height: 150px;
}

.dz-look-card__image-2 {
  right: 8%;
  bottom: 18px;
  width: 48%;
  height: 168px;
}

.dz-look-card__image-3 {
  left: 42%;
  top: 16px;
  width: 34%;
  height: 94px;
}

.dz-look-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
}

.dz-look-card__body > span {
  margin-bottom: 7px;
  color: #ff3b3f;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dz-look-card__body h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
}

.dz-look-card__body p {
  margin: 0 0 16px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
}

.dz-look-card__body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.dz-look-card__body li {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef0f5;
  color: #394150;
  font-size: 11px;
  font-weight: 900;
}

.dz-look-card__body em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.dz-home-product-panel {
  margin-bottom: 24px;
  padding: 30px 40px 38px;
  border-radius: 8px;
  background: #ffffff;
}

.dz-home-product-panel--flat {
  background: #ffffff;
}

.dz-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.dz-section-heading span {
  margin-bottom: 7px;
  color: #5b65ff;
}

.dz-section-heading h2 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.dz-section-heading a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f1f3f8;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.dz-home-rule {
  height: 1px;
  margin-bottom: 36px;
  background: #929bab;
}

.dz-home-rule span {
  display: block;
  width: 180px;
  height: 2px;
  background: #ff3b3f;
  transform: translateY(-1px);
}

.dz-home-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
}

.dz-store-product {
  min-width: 0;
}

.dz-store-product__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #eef0f5;
  overflow: hidden;
  text-decoration: none;
}

.dz-store-product__image img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  transition: transform 0.22s ease;
}

.dz-store-product:hover .dz-store-product__image img {
  transform: scale(1.05);
}

.dz-store-product__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 6px;
  background: #ff3b3f;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.dz-store-product__cat {
  display: block;
  margin-bottom: 6px;
  color: #737c8d;
  font-size: 12px;
}

.dz-store-product h3 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.dz-store-product h3 a {
  color: #111827;
  text-decoration: none;
}

.dz-store-product__price {
  min-height: 28px;
  margin-bottom: 12px;
  color: #1f2937;
  font-size: 18px;
  font-weight: 900;
}

.dz-store-product__price del {
  margin-right: 8px;
  color: #9aa2af;
  font-size: 13px;
  font-weight: 700;
}

.dz-store-product__price ins {
  color: #1f2937;
  text-decoration: none;
}

.dz-store-product__button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 38px;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: #111827 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.dz-store-product__button:hover {
  background: #ff3b3f !important;
}

.dz-home-deals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.dz-deal-card {
  position: relative;
  min-height: 260px;
  padding: 44px;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
}

.dz-deal-card--dark {
  background: #1d2531;
}

.dz-deal-card--warm {
  background: #d9b99b;
}

.dz-deal-card img {
  position: absolute;
  right: 34px;
  bottom: 20px;
  width: 45%;
  max-height: 220px;
  object-fit: contain;
}

.dz-deal-card span,
.dz-deal-card strong,
.dz-deal-card em {
  position: relative;
  z-index: 1;
  display: block;
}

.dz-deal-card span {
  margin-bottom: 8px;
  color: #ff3333;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dz-deal-card--warm span {
  color: #c42b2b;
}

.dz-deal-card strong {
  max-width: 330px;
  margin-bottom: 26px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
}

.dz-deal-card--warm strong {
  color: #111111;
}

.dz-deal-card em {
  width: max-content;
  padding: 12px 20px;
  border-radius: 8px;
  background: #ff3333;
  color: #ffffff;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.dz-menswear-edit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 24px;
}

.dz-menswear-edit__media,
.dz-menswear-edit__content {
  border-radius: 8px;
  overflow: hidden;
}

.dz-menswear-edit__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.dz-menswear-edit__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 60px);
  background: #111827;
  color: #ffffff;
}

.dz-menswear-edit__content h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.dz-menswear-edit__content p {
  margin: 0 0 28px;
  color: #c5ccda;
  font-size: 16px;
  line-height: 1.75;
}

.dz-menswear-edit__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dz-menswear-edit__links a {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.dz-home-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 72px;
  padding: 42px;
  border-radius: 8px;
  background: #08b4bd;
  color: #ffffff;
}

.dz-home-newsletter span {
  color: #ffffff;
}

.dz-home-newsletter h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.dz-home-newsletter form,
.dz-footer-newsletter form {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  background: #ffffff;
}

.dz-home-newsletter input,
.dz-footer-newsletter input {
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: #111827;
  outline: 0;
}

.dz-home-newsletter button,
.dz-footer-newsletter button {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: #f59b18;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

footer.site-footer.dz-footer {
  padding: 0;
  border: 0;
  background: #101216;
  color: #ffffff;
}

.dz-footer__inner {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  padding: 84px 0 72px;
}

.dz-footer-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding-bottom: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.dz-footer-service {
  display: flex;
  gap: 18px;
  align-items: center;
}

.dz-footer-service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.dz-footer-service strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.dz-footer-service p {
  margin: 0;
  color: #969daa;
  font-size: 13px;
}

.dz-footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr 1.5fr;
  gap: 56px;
  padding-top: 58px;
}

.dz-footer .footer-brand-logo {
  display: inline-block;
  margin-bottom: 26px;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 8px;
  text-decoration: none;
}

.dz-footer .footer-brand-logo span {
  color: #ffffff;
}

.dz-footer .footer-desc {
  max-width: 300px;
  margin: 0 0 28px;
  color: #969daa;
  font-size: 14px;
  line-height: 1.7;
}

.dz-footer .social-links {
  display: flex;
  gap: 12px;
}

.dz-footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #969daa;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.dz-footer .footer-col-title {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.dz-footer .footer-links {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dz-footer .footer-links a,
.dz-footer .footer-links span {
  color: #969daa;
  font-size: 14px;
  text-decoration: none;
}

.dz-footer .footer-links a:hover {
  color: #ffffff;
}

.dz-footer-newsletter span {
  display: block;
  margin-bottom: 18px;
  color: #969daa;
  font-size: 14px;
  font-weight: 900;
}

.dz-footer-newsletter h2 {
  max-width: 440px;
  margin: 0 0 28px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
}

.dz-footer-newsletter form {
  background: #2c323e;
}

.dz-footer-newsletter input {
  color: #ffffff;
}

.dz-footer-newsletter input::placeholder {
  color: #9ba3b0;
}

.dz-footer-newsletter button {
  background: #ff3b3f;
}

.dz-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(36px, calc((100vw - 1280px) / 2 + 36px));
  background: #17181b;
}

.dz-footer-bottom .footer-copy {
  margin: 0;
  color: #969daa;
  font-size: 13px;
}

.dz-footer-policy {
  display: flex;
  gap: 22px;
  align-items: center;
}

.dz-footer-policy a {
  color: #b8bfca;
  font-size: 13px;
  text-decoration: none;
}

.dz-footer-policy a:hover {
  color: #ffffff;
}

@media (max-width: 1120px) {
  .dz-home-hero,
  .dz-home-lookbook,
  .dz-menswear-edit,
  .dz-home-newsletter {
    grid-template-columns: 1fr;
  }

  .dz-home-categories,
  .dz-home-services,
  .dz-footer-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dz-home-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dz-lookbook__intro {
    min-height: 0;
  }

  .dz-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.home .dz-store-home {
    padding-top: 24px;
  }

  .dz-home-hero,
  .dz-home-services,
  .dz-home-categories,
  .dz-home-lookbook,
  .dz-home-product-panel,
  .dz-home-deals,
  .dz-menswear-edit,
  .dz-home-newsletter,
  .dz-footer__inner {
    width: calc(100% - 40px);
  }

  .dz-home-hero {
    min-height: 0;
  }

  .dz-home-hero__copy {
    padding: 30px 24px;
  }

  .dz-home-hero h1 {
    font-size: 42px;
  }

  .dz-home-hero__stats,
  .dz-home-services,
  .dz-home-categories,
  .dz-home-deals,
  .dz-lookbook__grid,
  .dz-footer-services,
  .dz-footer-main,
  .dz-home-newsletter form,
  .dz-footer-newsletter form {
    grid-template-columns: 1fr;
  }

  .dz-home-slider__track,
  .dz-home-slide,
  .dz-home-slide img {
    min-height: 430px;
  }

  .dz-home-product-panel {
    padding: 24px 18px 28px;
  }

  .dz-home-lookbook {
    padding: 18px;
    border-radius: 16px;
  }

  .dz-lookbook__intro {
    padding: 28px 22px;
  }

  .dz-lookbook__intro h2 {
    font-size: 36px;
  }

  .dz-look-card {
    min-height: 380px;
  }

  .dz-lookbook__grid {
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .dz-look-card {
    scroll-snap-align: start;
  }

  .dz-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .dz-home-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .dz-deal-card {
    min-height: 220px;
    padding: 28px;
  }

  .dz-deal-card img {
    width: 44%;
    opacity: 0.92;
  }

  .dz-menswear-edit__media img {
    min-height: 300px;
  }

  .dz-home-newsletter {
    padding: 28px 20px;
  }

  .dz-footer__inner {
    padding: 56px 0 48px;
  }

  .dz-footer-services {
    padding-bottom: 38px;
  }

  .dz-footer-main {
    gap: 34px;
    padding-top: 38px;
  }

  .dz-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 16px;
  }
}

@media (max-width: 460px) {
  .dz-home-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .dz-category-tile img {
    width: 48%;
  }

  .dz-look-card {
    min-height: 360px;
    padding: 16px;
  }

  .dz-look-card__images {
    min-height: 168px;
  }

  .dz-look-card__image-1 {
    left: 5%;
    width: 48%;
    height: 132px;
  }

  .dz-look-card__image-2 {
    right: 3%;
    width: 52%;
    height: 146px;
  }

  .dz-look-card__image-3 {
    left: 40%;
    width: 36%;
    height: 80px;
  }

  .dz-look-card__body h3 {
    font-size: 23px;
  }
}

/* Premium storefront header */
.dz-site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background :rgba(9, 10, 14, 0.97);
  color: #ffffff;
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.dz-site-header.is-scrolled {
  background: rgba(9, 10, 14, 0.97);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.dz-header-promo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 34px;
  padding: 0 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: #aeb6c5;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.dz-header-promo a {
  color: #ffffff;
  text-decoration: none;
}

.dz-header-promo a:first-child {
  justify-self: start;
}

.dz-header-promo span {
  justify-self: center;
}

.dz-header-promo .dz-promo-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.dz-promo-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.dz-promo-social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.dz-promo-social a:hover {
  color: #ffffff;
}

.dz-promo-social .dashicons {
  font-size: 14px;
  width: 14px;
  height: 14px;
}

.dz-site-header .dz-nav {
  position: relative;
  inset: auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) auto minmax(280px, 0.85fr);
  gap: 26px;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 0 42px;
  border: 0;
  background: transparent !important;
  color: #ffffff;
  backdrop-filter: none !important;
}

.dz-site-header .dz-nav-brand {
  display: inline-grid;
  gap: 2px;
  justify-self: start;
  min-width: 0;
}

.dz-site-header .nav-logo {
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 6px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.dz-site-header .nav-logo span {
  color: #ffffff;
}

.dz-brand-tagline {
  color: #8d96a6;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.dz-site-header .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  list-style: none;
}

.dz-site-header .nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  color: #c6ccd6;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.dz-site-header .nav-links a:hover,
.dz-site-header .nav-links a.active {
  background: #ffffff;
  color: #101418;
  transform: translateY(-1px);
}

.dz-site-header .nav-icons {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

body .dz-site-header .nav-icons button,
.dz-site-header .dz-account-link,
.dz-site-header .cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: #ffffff;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: none;
  cursor: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

body .dz-site-header .nav-icons button,
.dz-site-header .dz-account-link {
  gap: 9px;
  padding: 0 15px;
}

.dz-site-header .cart-badge {
  gap: 10px;
  padding: 0 8px 0 16px;
}

body .dz-site-header .nav-icons button:hover,
.dz-site-header .dz-account-link:hover,
.dz-site-header .cart-badge:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: #ffffff !important;
  color: #101418 !important;
  transform: translateY(-1px);
}

.dz-action-icon {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.dz-action-icon--search::before {
  position: absolute;
  inset: 2px 4px 4px 2px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.dz-action-icon--search::after {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 7px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
  transform: rotate(45deg);
  transform-origin: center;
}

.dz-action-icon--account::before {
  position: absolute;
  top: 1px;
  left: 5px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.dz-action-icon--account::after {
  position: absolute;
  right: 2px;
  bottom: 1px;
  left: 2px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 999px 999px 0 0;
  content: "";
}

.dz-site-header .dz-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  margin: 0;
  padding: 0 8px;
  border-radius: 999px;
  background: #ff3b3f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.dz-site-header .cart-badge:hover .dz-cart-count {
  background: #101418;
  color: #ffffff;
}

body .dz-site-header .dz-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  cursor: none;
}

.dz-site-header .dz-menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.dz-site-header .dz-menu-toggle[aria-expanded='true'] > span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.dz-site-header .dz-menu-toggle[aria-expanded='true'] > span:nth-child(2) {
  opacity: 0;
}

.dz-site-header .dz-menu-toggle[aria-expanded='true'] > span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.dz-site-header .dz-search-panel {
  top: 126px;
  right: 42px;
  width: min(520px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.98);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.dz-site-header.is-scrolled .dz-search-panel {
  top: 92px;
}

.dz-site-header .dz-search-panel form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.dz-site-header .dz-search-panel input[type='search'] {
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.dz-site-header .dz-search-panel input[type='search']::placeholder {
  color: #9ca3af;
}

body .dz-site-header .dz-search-panel button {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 12px;
  background: #ff3b3f;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1120px) {
  .dz-site-header .dz-nav {
    grid-template-columns: minmax(190px, 1fr) auto auto;
    padding: 0 28px;
  }

  body .dz-site-header .dz-menu-toggle {
    display: block;
    justify-self: center;
    order: 0;
  }

  .dz-site-header .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 28px;
    left: 28px;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(17, 24, 39, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  }

  .dz-site-header .nav-links.is-open {
    display: flex;
  }

  .dz-site-header .nav-links li {
    width: 100%;
  }

  .dz-site-header .nav-links a {
    justify-content: center;
    width: 100%;
    min-height: 46px;
  }

  .dz-site-header .nav-icons {
    margin: 0;
  }
}

@media (max-width: 760px) {
  .dz-header-promo {
    grid-template-columns: 1fr;
    gap: 3px;
    min-height: 48px;
    padding: 7px 18px;
    text-align: center;
  }

  .dz-header-promo a:first-child,
  .dz-header-promo span,
  .dz-header-promo .dz-promo-right {
    justify-self: center;
  }

  .dz-header-promo .dz-promo-right {
    display: none;
  }

  .dz-site-header .dz-nav {
    grid-template-columns: 1fr auto auto;
    min-height: 68px;
    gap: 10px;
    padding: 0 16px;
  }

  .dz-site-header .nav-logo {
    font-size: 23px;
    letter-spacing: 4px;
  }

  .dz-brand-tagline,
  .dz-site-header .dz-account-link,
  .dz-site-header .dz-action-label,
  .dz-site-header .dz-cart-label {
    display: none;
  }

  body .dz-site-header .nav-icons button,
  .dz-site-header .dz-account-link,
  .dz-site-header .cart-badge {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .dz-site-header .cart-badge {
    position: relative;
  }

  .dz-site-header .cart-badge::before {
    width: 18px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 3px;
    content: "";
  }

  .dz-site-header .cart-badge::after {
    position: absolute;
    top: 11px;
    width: 8px;
    height: 6px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 999px 999px 0 0;
    content: "";
  }

  .dz-site-header .dz-cart-count {
    position: absolute;
    right: -5px;
    top: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 10px;
  }

  .dz-site-header .nav-icons {
    gap: 8px;
  }

  body .dz-site-header .dz-search-toggle {
    display: inline-flex !important;
  }

  .dz-site-header .nav-links {
    right: 16px;
    left: 16px;
  }

  .dz-site-header .dz-search-panel,
  .dz-site-header.is-scrolled .dz-search-panel {
    top: 124px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .dz-site-header .dz-search-panel form {
    grid-template-columns: 1fr;
  }
}

/* Campaign hero redesign */
.dz-home-hero.dz-home-hero--campaign {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.8fr);
  grid-template-rows: 1fr auto;
  gap: 24px 34px;
  align-items: center;
  min-height: min(640px, calc(100vh - 132px));
  padding: clamp(28px, 4vw, 44px);
  border-radius: 18px;
  background: #101722;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.dz-home-hero--campaign::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 15, 24, 0.96) 0%, rgba(10, 15, 24, 0.84) 42%, rgba(10, 15, 24, 0.42) 100%),
    linear-gradient(180deg, rgba(255, 59, 63, 0.18), transparent 34%);
  content: "";
}

.dz-hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.dz-hero-bg-slider span {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  animation: dzHeroImageFade 18s infinite;
}

.dz-hero-bg-slider span:nth-child(2) {
  background-position: center right;
  animation-delay: 6s;
}

.dz-hero-bg-slider span:nth-child(3) {
  background-position: center right;
  animation-delay: 12s;
}

@keyframes dzHeroImageFade {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
  7%,
  30% {
    opacity: 1;
    transform: scale(1);
  }
  38% {
    opacity: 0;
    transform: scale(1.03);
  }
}

.dz-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.dz-home-hero--campaign .dz-home-eyebrow {
  margin-bottom: 18px;
  color: #ff4a4f;
}

.dz-home-hero--campaign h1 {
  max-width: 720px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(48px, 6.3vw, 78px);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
}

.dz-home-hero--campaign p {
  max-width: 590px;
  margin: 0 0 24px;
  color: #d5dbe5;
  font-size: 16px;
  line-height: 1.62;
}

.dz-home-hero--campaign .dz-home-hero__actions {
  margin-bottom: 24px;
}

.dz-home-hero--campaign .dz-store-button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
}

.dz-home-hero--campaign .dz-store-button--dark {
  background: #ff3b3f !important;
}

.dz-home-hero--campaign .dz-store-button--light {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
}

.dz-hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.dz-hero-benefits span {
  display: grid;
  gap: 4px;
  min-height: 66px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #b8c0ce;
  font-size: 12px;
  backdrop-filter: blur(12px);
}

.dz-hero-benefits strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.dz-hero-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-self: stretch;
  min-height: 0;
}

.dz-hero-product {
  position: relative;
  display: grid;
  align-content: end;
  justify-items: center;
  min-height: 320px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.dz-hero-product--main img {
  position: absolute;
  top: 16px;
  left: 50%;
  width: min(290px, 68%);
  height: 214px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 26px 26px rgba(0, 0, 0, 0.32));
  transition: transform 0.25s ease;
}

.dz-hero-product:hover img {
  transform: translateX(-50%) translateY(-6px) scale(1.03);
}

.dz-hero-product span,
.dz-hero-product strong,
.dz-hero-product em {
  position: relative;
  z-index: 1;
  display: block;
}

.dz-hero-product span {
  margin-bottom: 10px;
  color: #ff6266;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dz-hero-product strong {
  color: #ffffff;
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
}

.dz-hero-product em {
  margin-top: 8px;
  color: #cbd5e1;
  font-style: normal;
  font-weight: 800;
}

.dz-hero-sale {
  position: absolute;
  right: -10px;
  top: 34px;
  z-index: 3;
  display: grid;
  gap: 2px;
  justify-items: center;
  width: 100px;
  height: 100px;
  padding-top: 22px;
  border-radius: 50%;
  background: #ff3b3f;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(255, 59, 63, 0.28);
}

.dz-hero-sale strong {
  color: #ffffff;
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.dz-hero-sale span {
  max-width: 70px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.dz-hero-mini-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dz-hero-mini-product {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.dz-hero-mini-product img {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  object-fit: contain;
}

.dz-hero-category-strip {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-top: 0;
}

.dz-hero-category-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.dz-hero-category-strip a:hover {
  background: #ffffff;
  color: #101418;
}

@media (max-width: 1120px) {
  .dz-home-hero.dz-home-hero--campaign {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dz-hero-showcase {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .dz-home-hero.dz-home-hero--campaign {
    width: calc(100% - 40px);
    gap: 20px;
    padding: 28px 20px;
    border-radius: 16px;
  }

  .dz-home-hero--campaign h1 {
    font-size: 40px;
  }

  .dz-home-hero--campaign p {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .dz-home-hero--campaign .dz-home-hero__actions {
    margin-bottom: 18px;
  }

  .dz-home-hero--campaign .dz-store-button {
    min-height: 46px;
    padding: 0 17px;
  }

  .dz-hero-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .dz-hero-benefits span {
    min-height: 58px;
    padding: 10px 8px;
    font-size: 10px;
  }

  .dz-hero-benefits strong {
    font-size: 18px;
  }

  .dz-hero-product {
    min-height: 286px;
  }

  .dz-hero-product--main img {
    width: min(230px, 72%);
    height: 174px;
  }

  .dz-hero-product strong {
    font-size: 22px;
  }

  .dz-hero-mini-products {
    display: none;
  }

  .dz-hero-sale {
    right: 12px;
    top: 18px;
    width: 80px;
    height: 80px;
    padding-top: 16px;
  }

  .dz-hero-sale strong {
    font-size: 22px;
  }

  .dz-hero-sale span {
    max-width: 58px;
    font-size: 9px;
  }

  .dz-hero-category-strip {
    display: none;
  }
}

/* Responsive hardening for the shared storefront shell and home page. */
@media (max-width: 1280px) {
  .dz-site-header .dz-nav {
    grid-template-columns: minmax(180px, 0.75fr) auto minmax(230px, 0.75fr);
    gap: 14px;
    padding: 0 24px;
  }

  .dz-site-header .nav-links a {
    min-height: 36px;
    padding: 0 11px;
    font-size: 11px;
  }

  body .dz-site-header .nav-icons button,
  .dz-site-header .dz-account-link {
    padding: 0 12px;
  }

  .dz-site-header .cart-badge {
    padding-left: 12px;
  }
}

@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }
}

@media (max-width: 760px) {
  .dz-home-hero__actions,
  .dz-home-hero--campaign .dz-home-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .dz-store-button {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .dz-home-hero--campaign .dz-store-button {
    padding-right: 14px;
    padding-left: 14px;
  }

  .dz-home-hero--campaign .dz-home-eyebrow,
  .dz-section-heading span,
  .dz-menswear-edit__content > span,
  .dz-home-newsletter span {
    line-height: 1.35;
  }

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

  .dz-hero-benefits span {
    min-height: 0;
  }

  .dz-home-product-panel,
  .dz-home-lookbook,
  .dz-menswear-edit__content,
  .dz-home-newsletter {
    overflow-wrap: anywhere;
  }

  .dz-category-tile,
  .dz-deal-card {
    min-height: 210px;
  }

  .dz-home-newsletter h2 {
    font-size: 30px;
  }

  .dz-footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

@media (max-width: 420px) {
  .dz-header-promo {
    font-size: 11px;
    line-height: 1.35;
  }

  .dz-site-header .dz-nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 0 12px;
  }

  .dz-site-header .nav-logo {
    font-size: 21px;
    letter-spacing: 3px;
  }

  .dz-site-header .nav-links {
    right: 12px;
    left: 12px;
  }

  .dz-site-header .dz-search-panel,
  .dz-site-header.is-scrolled .dz-search-panel {
    right: 12px;
    left: 12px;
  }

  .dz-home-hero.dz-home-hero--campaign,
  .dz-home-services,
  .dz-home-categories,
  .dz-home-lookbook,
  .dz-home-product-panel,
  .dz-home-deals,
  .dz-menswear-edit,
  .dz-home-newsletter,
  .dz-footer__inner {
    width: calc(100% - 32px);
  }

  .dz-home-hero.dz-home-hero--campaign {
    padding: 24px 16px;
  }

  .dz-home-hero--campaign h1 {
    font-size: 34px;
  }

  .dz-category-tile,
  .dz-deal-card {
    padding: 22px;
  }

  .dz-deal-card img {
    width: 52%;
    opacity: 0.78;
  }

  .dz-home-newsletter form,
  .dz-footer-newsletter form {
    grid-template-columns: 1fr;
  }
}

#wpcf7-f113-p114-o1 .wpcf7-text , #wpcf7-f113-p114-o1 .wpcf7-textarea  {
    background-color: #f2f3f5;
    max-width: 100%;
    height: 55px;
    border-radius: 10px;
    padding: 0 0 0 30px;
     margin-bottom:20px;
     width: 80%;
    border-style: solid;
    border-width: 0;
    transition: all ease-out .3s;
}
#wpcf7-f113-p114-o1 .wpcf7-textarea  {
    background-color: #f2f3f5;
    max-width: 100%;
    height: 150px;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 10px 0 0 30px;
  width: 80%;
    border-style: solid;
    border-width: 0;
    transition: all ease-out .3s;
}
#wpcf7-f113-p114-o1 .wpcf7-text:focus  {
      border-style: solid;
    border-width: 1px;
    border-color: #fb3c3c !important;
}

#wpcf7-f113-p114-o1   .wpcf7-submit {
     position: relative;
    font-size: 16px !important;
    font-weight: 400 !important;
    background-color: #fb3c3c !important;
    text-transform: capitalize !important;
    letter-spacing: 0px !important;
    color: #fff;


    border-radius: 10px !important;
    padding: 15px 50px !important;
    margin: 7px 0 0 !important;
}
#wpcf7-f113-p114-o1 .wpcf7-submit:hover {

    background-color: #000000 !important;
  
}



.contact-map{
  border: 1px solid #c6ccd961;
    border-radius: 30px;
    box-shadow: -15px 30px 50px 0px rgba(112, 121.00000000000001, 139, .2);
}


.contact-info {
    width: 100%;
    background: #fff;
    /* padding: 60px 20px; */
        margin-top: 80px;
}

.contact-container {
    /* max-width: 1080px; */
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.contact-item {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 30px;
}

.icon-box {
    width: 90px;
    height: 90px;
    min-width: 90px;

    background: #f1f2f3;
    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;
}
/* 
.icon-box:hover {
    background: #ff3b40;
} */
.icon {
    font-size: 38px;
    color: #ff3b40;
    font-weight: bold;
}
.elementor-icon:hover {
 color: #fff;
    fill: #f1f2f3 !important;
  
}

.contact-content h3 {
  
    font-size: 18px;
    font-weight: 700;
    color: #111827;

    margin-bottom: 14px;
}

.contact-content p {
   
    font-size: 12px;
    line-height: 18px;
    color: #555;
}

/* Responsive */
@media (max-width: 900px) {

    .contact-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

    .contact-item {
        width: 100%;
    }
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    width: 100%;
    padding: 80px 0px;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.contact-container-second {
    /* max-width: 1100px; */
    margin: 0 auto;
    display: block;
}


/* =========================
   SECTION HEADING
========================= */

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.heading-line {
    display: block;
    width: 45px;
    height: 3px;
    background: #111;
    margin: 0 auto 18px;
}

.section-label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #777;
}

.section-heading h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
    color: #222;
}

.section-description {
    max-width: 600px;
    margin: 15px auto 0;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================
   CONTACT GRID
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}


/* =========================
   CONTACT CARD
========================= */

.contact-card {
    position: relative;
    text-align: center;
    text-decoration: none;
    padding: 42px 25px 38px;
    border-right: 1px solid #eeeeee;
    transition: all 0.35s ease;
}

.contact-card:last-child {
    border-right: none;
}

.contact-card:hover {
    background: #fafafa;
    transform: translateY(-5px);
}


/* =========================
   ICON
========================= */

.icon-circle {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid;
    background: #fff;

    font-size: 22px;

    transition: all 0.35s ease;
}


/* Email */

.email-icon {
    color: #9b3fc0;
    border-color: #9b3fc0;
}


/* Facebook */

.facebook-icon {
    color: #4267a9;
    border-color: #4267a9;
}


/* Instagram */

.instagram-icon {
    color: #d62976;
    border-color: #d62976;
}


/* Phone */

.phone-icon {
    color: #ff3d5a;
    border-color: #ff3d5a;
}


/* =========================
   ICON HOVER
========================= */

.contact-card:hover .icon-circle {
    transform: scale(1.08);
    color: #fff;
}

.contact-card:hover .email-icon {
    background: #9b3fc0;
}

.contact-card:hover .facebook-icon {
    background: #4267a9;
}

.contact-card:hover .instagram-icon {
    background: #d62976;
}

.contact-card:hover .phone-icon {
    background: #ff3d5a;
}


/* =========================
   TEXT
========================= */

.contact-card h3 {
    margin: 0 0 10px;

    font-size: 21px;
    font-weight: 500;

    color: #222;
}

.contact-card p {
    margin: 0;

    min-height: 72px;

    font-size: 14px;
    line-height: 1.55;

    color: #777;
}


/* =========================
   LINK
========================= */

.contact-link {
    display: inline-block;

    margin-top: 18px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.5px;

    color: #222;

    opacity: 0;

    transform: translateY(5px);

    transition: all 0.3s ease;
}

.contact-card:hover .contact-link {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card:nth-child(2) {
        border-right: none;
    }

    .contact-card:nth-child(-n + 2) {
        border-bottom: 1px solid #eeeeee;
    }
}


@media (max-width: 600px) {

    .contact-section {
        padding: 60px 15px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .section-description {
        font-size: 14px;
    }

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

    .contact-card {
        border-right: none;
        border-bottom: 1px solid #eeeeee;
        padding: 35px 20px;
    }

    .contact-card:last-child {
        border-bottom: none;
    }

    .contact-card:nth-child(-n + 2) {
        border-bottom: 1px solid #eeeeee;
    }

    .contact-link {
        opacity: 1;
        transform: none;
    }
}

/* Reset Cursor to Default Globally */
*, body {
    cursor: auto !important;
}

a, button, input[type="submit"], input[type="button"], .dz-icon-btn, .dz-menu-toggle, .dz-search-toggle, .btn-cart, .dz-social-link, .nav-logo {
    cursor: pointer !important;
}

.cursor, .cursor-ring {
    display: none !important;
}

/* ==========================================
   CONTACT PAGE MOBILE RESPONSIVE FIXES
   ========================================== */
@media (max-width: 900px) {
	/* Contact Page Container Spacing */
	.dz-content-page {
		width: min(100% - 24px, 1440px) !important;
		padding-top: 16px !important;
		padding-bottom: calc(90px + env(safe-area-inset-bottom)) !important;
	}

	.dz-content-page .dz-page-header {
		margin-bottom: 16px !important;
		padding-bottom: 8px !important;
		border-bottom: 1px solid #eef0f4 !important;
		text-align: center;
	}

	.dz-content-page .dz-page-header .entry-title {
		font-size: 26px !important;
		letter-spacing: 2px !important;
		padding-bottom: 4px !important;
	}

	/* Force Elementor Flexbox Containers and Section Columns into 1-Column Stack */
	.dz-content-page .entry-content,
	.dz-content-page .entry-content .elementor,
	.dz-content-page .entry-content .elementor-section,
	.dz-content-page .entry-content .elementor-container,
	.dz-content-page .entry-content .elementor-row,
	.dz-content-page .entry-content .e-con,
	.dz-content-page .entry-content .e-con-inner,
	.dz-content-page .entry-content .e-parent,
	.dz-content-page .entry-content .e-child,
	.contact-container,
	.contact-info {
		--flex-direction: column !important;
		--width: 100% !important;
		--flex-wrap: wrap !important;
		display: flex !important;
		flex-direction: column !important;
		flex-wrap: wrap !important;
		width: 100% !important;
		max-width: 100% !important;
		gap: 20px !important;
		margin-right: auto !important;
		margin-left: auto !important;
		padding-right: 0 !important;
		padding-left: 0 !important;
		box-sizing: border-box !important;
	}

	.dz-content-page .entry-content .elementor-column,
	.dz-content-page .entry-content .elementor-top-column,
	.dz-content-page .entry-content [class*="elementor-col-"],
	.dz-content-page .entry-content .e-con > .e-con,
	.dz-content-page .entry-content .e-con-inner > .e-con,
	.contact-item {
		--width: 100% !important;
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
		flex-basis: 100% !important;
		margin: 0 0 16px 0 !important;
	}

	/* Force Map Column / Widget BELOW the form with 100% width */
	.contact-map,
	.elementor-widget-google_maps,
	.elementor-widget-google_maps .elementor-widget-container,
	.elementor-widget-google_maps .elementor-custom-embed,
	.elementor-widget-google_maps iframe,
	iframe[src*="google.com/maps"],
	iframe[src*="maps.google.com"] {
		width: 100% !important;
		max-width: 100% !important;
		min-height: 320px !important;
		height: 320px !important;
		border-radius: 16px !important;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
		margin-top: 16px !important;
		border: 1px solid #e2e5eb !important;
		display: block !important;
		order: 99 !important;
	}

	/* Ensure Form Container / Widget comes FIRST */
	.elementor-widget-form,
	.wpcf7,
	.wpcf7-form,
	.dz-content-page form {
		width: 100% !important;
		max-width: 100% !important;
		order: 1 !important;
	}

	/* Form Inputs & Fields Styling */
	.dz-content-page input[type="text"],
	.dz-content-page input[type="email"],
	.dz-content-page input[type="tel"],
	.dz-content-page textarea,
	.wpcf7-form-control-wrap input,
	.wpcf7-form-control-wrap textarea,
	.wpcf7-form input[type="text"],
	.wpcf7-form input[type="email"],
	.wpcf7-form textarea,
	.elementor-field-textual {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		height: 48px;
		border-radius: 10px !important;
		font-size: 14px !important;
		padding: 0 16px !important;
		background: #f4f4f6 !important;
		border: 1px solid #dcdfe5 !important;
		color: #111111 !important;
		outline: none !important;
	}

	.dz-content-page textarea,
	.wpcf7-form-control-wrap textarea,
	.wpcf7-form textarea {
		height: 110px !important;
		padding: 12px 16px !important;
	}

	.dz-content-page input:focus,
	.dz-content-page textarea:focus,
	.wpcf7-form input:focus,
	.wpcf7-form textarea:focus {
		border-color: #ff3333 !important;
		background: #ffffff !important;
		box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.12) !important;
	}

	/* Submit Button */
	.wpcf7-submit,
	.dz-content-page input[type="submit"],
	.dz-content-page button[type="submit"],
	.elementor-button {
		width: 100% !important;
		min-height: 50px !important;
		border-radius: 10px !important;
		background: #ff3333 !important;
		color: #ffffff !important;
		font-size: 15px !important;
		font-weight: 800 !important;
		text-transform: uppercase !important;
		letter-spacing: 1px !important;
		border: none !important;
		margin-top: 10px !important;
		cursor: pointer !important;
	}

	.wpcf7-submit:hover,
	.dz-content-page input[type="submit"]:hover,
	.elementor-button:hover {
		background: #d32f2f !important;
	}

	/* Contact Info Grid Cards */
	.contact-section {
		padding: 32px 0 !important;
	}

	.section-heading {
		margin-bottom: 28px !important;
	}

	.section-heading h2 {
		font-size: 26px !important;
	}

	.contact-grid {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px !important;
		border: none !important;
	}

	.contact-card {
		border: 1px solid #e5e7eb !important;
		border-radius: 12px !important;
		padding: 22px 14px !important;
		background: #ffffff !important;
		text-align: center !important;
	}

	.contact-card:nth-child(n) {
		border-right: 1px solid #e5e7eb !important;
		border-bottom: 1px solid #e5e7eb !important;
	}

	.contact-card h3 {
		font-size: 17px !important;
		margin-bottom: 6px !important;
	}

	.contact-card p {
		min-height: 0 !important;
		font-size: 12px !important;
		line-height: 1.4 !important;
	}
}

@media (max-width: 540px) {
	.contact-grid {
		grid-template-columns: 1fr !important;
	}
}

/* ==========================================
   HOME PAGE MOBILE RESPONSIVE POLISH
   ========================================== */
@media (max-width: 760px) {
	/* Top Spacing & Sticky Header Alignment */
	body.home .dz-store-home {
		padding-top: 16px !important;
	}

	.dz-home-hero.dz-home-hero--campaign {
		padding: 24px 18px !important;
		border-radius: 16px !important;
		margin-top: 0 !important;
	}

	.dz-home-hero--campaign h1 {
		font-size: 30px !important;
		line-height: 1.12 !important;
		margin-bottom: 12px !important;
	}

	.dz-home-hero--campaign p {
		font-size: 14px !important;
		line-height: 1.5 !important;
		margin-bottom: 20px !important;
	}

	/* Hero Pick Product Card on Mobile */
	.dz-hero-product {
		min-height: 320px !important;
		padding: 20px 16px 20px !important;
		border-radius: 16px !important;
	}

	.dz-hero-product--main img {
		position: absolute !important;
		top: 20px !important;
		left: 50% !important;
		width: auto !important;
		max-width: 75% !important;
		height: 150px !important;
		object-fit: contain !important;
		transform: translateX(-50%) !important;
	}

	.dz-hero-product span {
		margin-top: 154px !important;
		margin-bottom: 4px !important;
		font-size: 11px !important;
	}

	.dz-hero-product strong {
		font-size: 20px !important;
		line-height: 1.2 !important;
		margin-bottom: 2px !important;
	}

	.dz-hero-product em {
		font-size: 14px !important;
		margin-top: 4px !important;
	}

	/* Promo Banner Cards (Hoodie season & Polos and tees) */
	.dz-home-deals {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}

	.dz-deal-card {
		position: relative !important;
		display: flex !important;
		flex-direction: column !important;
		justify-content: center !important;
		min-height: 200px !important;
		padding: 22px 20px !important;
		border-radius: 14px !important;
		overflow: hidden !important;
	}

	.dz-deal-card span {
		color: #ff3333 !important;
		font-size: 13px !important;
		font-weight: 900 !important;
		text-transform: uppercase !important;
		letter-spacing: 1px !important;
		margin-bottom: 6px !important;
	}

	.dz-deal-card--warm span {
		color: #b91c1c !important;
	}

	.dz-deal-card strong {
		font-size: clamp(20px, 5vw, 26px) !important;
		line-height: 1.15 !important;
		max-width: 54% !important;
		margin-bottom: 16px !important;
		z-index: 2 !important;
	}

	.dz-deal-card--dark strong {
		color: #ffffff !important;
	}

	.dz-deal-card--warm strong {
		color: #111111 !important;
	}

	.dz-deal-card em {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		width: max-content !important;
		padding: 10px 18px !important;
		border-radius: 8px !important;
		background: #ff3333 !important;
		color: #ffffff !important;
		font-style: normal !important;
		font-size: 13px !important;
		font-weight: 800 !important;
		z-index: 2 !important;
		box-shadow: none !important;
	}

	.dz-deal-card img {
		position: absolute !important;
		right: 10px !important;
		bottom: 10px !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
		width: 40% !important;
		max-height: 160px !important;
		object-fit: contain !important;
		z-index: 1 !important;
		pointer-events: none !important;
		opacity: 1 !important;
	}
}