:root {
    --p: #C94277;
    --p-d: #94524A;
    --p-l: #f5dce8;
    --acc: #94524A;
    --acc-d: #7a3f38;
    --dark: #2F0A28;
    --dark2: #3d1035;
    --mid: #A27E6F;
    --muted: #A27E6F;
    --border: #e8dbd7;
    --surface: #f7f3f1;
    --white: #ffffff;
    --shadow: 0 2px 12px rgba(47,10,40,0.07);
    --shadow-lg: 0 12px 40px rgba(47,10,40,0.13);
    --r: 12px;
    --r-lg: 20px;
}

/* ── Scroll-reveal base ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ── Section wrapper ── */
.hp-section {
    padding: 80px 20px;
}
.hp-section-inner {
    max-width: 1260px;
    margin: 0 auto;
}
.hp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--p-l);
    color: var(--p);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.hp-section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}
.hp-section-sub {
    font-size: 1.02rem;
    color: var(--muted);
    margin: 0 0 40px;
    line-height: 1.6;
}
.hp-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}
.hp-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--p);
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s;
}
.hp-view-all:hover { gap: 10px; color: var(--p-d); }

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--p);
    color: #fff;
    padding: 15px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.97rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(201,66,119,0.3);
}
.btn-primary:hover { background: var(--p-d); transform: translateY(-2px); color:#fff; box-shadow: 0 8px 24px rgba(201,66,119,0.4); }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: #fff;
    padding: 15px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.97rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.38);
    transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); color:#fff; }
.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--acc);
    color: #fff;
    padding: 15px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.97rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(148,82,74,0.35);
}
.btn-accent:hover { background: var(--acc-d); transform: translateY(-2px); color:#fff; }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hp-hero {
    position: relative;
    background: linear-gradient(135deg, #2F0A28 0%, #3d1035 45%, #94524A 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 20px 60px;
}

/* Animated background grid */
.hp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,66,119,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,66,119,0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
    0%   { background-position: 0 0; }
    100% { background-position: 48px 48px; }
}

/* Glowing orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero-orb-1 {
    width: 600px; height: 600px;
    background: rgba(201,66,119,0.18);
    top: -200px; right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px; height: 400px;
    background: rgba(148,82,74,0.15);
    bottom: -100px; left: 10%;
    animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-30px) scale(1.05); }
}

.hp-hero-inner {
    position: relative;
    max-width: 1260px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero text */
.hero-text-block {
    color: #fff;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,66,119,0.25);
    border: 1px solid rgba(201,66,119,0.5);
    color: #f0b8d0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 22px;
}
.hero-tag i { font-size: 0.7rem; }
.hero-h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin: 0 0 22px;
    color: #fff;
}
.hero-h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #C94277, #f0b8d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.1rem;
    color: #d4b8c8;
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 480px;
}
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}
.hero-stats-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-stat-num {
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
}
.hero-stat-num span { color: var(--acc); }
.hero-stat-label {
    font-size: 0.78rem;
    color: #c4a0b4;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Hero photo panel ── */
.hero-photo-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.hero-photo-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    flex-shrink: 0;
}
.hero-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hero-photo-main:hover img { transform: scale(1.04); }
.hero-photo-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(47,10,40,0.25) 0%, transparent 50%, rgba(47,10,40,0.45) 100%);
    border-radius: 20px;
    pointer-events: none;
}
.hero-photo-label {
    position: absolute;
    bottom: 14px;
    left: 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.hero-photo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-photo-secondary {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.hero-photo-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hero-photo-secondary:hover img { transform: scale(1.06); }
.hero-photo-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(47,10,40,0.2) 0%, transparent 60%);
    border-radius: 16px;
    pointer-events: none;
}

.hero-photo-stat-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px 16px;
    text-align: center;
}
.hero-photo-stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(201,66,119,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0b8d0;
    font-size: 1rem;
    margin-bottom: 4px;
}
.hero-photo-stat-num {
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}
.hero-photo-stat-text {
    font-size: 0.72rem;
    color: #c4a0b4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}
.hero-photo-stat-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    background: var(--p);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.hero-photo-stat-cta:hover { background: var(--p-d); transform: translateY(-1px); color: #fff; }

/* ════════════════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════════════════ */
.hp-trust-bar {
    background: var(--dark);
    padding: 0;
    overflow: hidden;
}
.hp-trust-bar-inner {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    divide: yes;
}
.hp-trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    border-right: 1px solid rgba(255,255,255,0.08);
    min-width: 0;
}
.hp-trust-item:last-child { border-right: none; }
.hp-trust-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,66,119,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0b8d0;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.hp-trust-text strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.hp-trust-text span {
    font-size: 0.78rem;
    color: #c4a0b4;
}

/* ════════════════════════════════════════════════════════════
   FEATURED PRODUCTS
   ════════════════════════════════════════════════════════════ */
.hp-products-section {
    background: var(--surface);
}
.hp-prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.hp-prod-card {
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--dark);
    position: relative;
    transition: transform 0.22s, box-shadow 0.22s;
}
.hp-prod-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: var(--dark);
}
.hp-prod-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--surface);
}
.hp-prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.hp-prod-card:hover .hp-prod-img-wrap img { transform: scale(1.05); }
.hp-prod-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 2.5rem;
}
.hp-prod-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc2626;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    z-index: 2;
}
.hp-prod-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--muted);
    font-size: 0.92rem;
    transition: color 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.hp-prod-fav:hover, .hp-prod-fav.active { color: #ef4444; }
.hp-prod-body {
    padding: 14px 16px 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hp-prod-name {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-prod-size {
    font-size: 0.77rem;
    color: var(--muted);
}
.hp-prod-size i { margin-right: 3px; font-size: 0.72rem; }
.hp-prod-pricing {
    margin-top: auto;
    padding-top: 8px;
}
.hp-prod-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--p);
}
.hp-prod-was {
    font-size: 0.78rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 5px;
}
.hp-prod-cta {
    display: block;
    margin: 10px 14px 14px;
    background: var(--p);
    color: #fff;
    text-align: center;
    padding: 9px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}
.hp-prod-cta:hover { background: var(--p-d); color: #fff; }

/* ════════════════════════════════════════════════════════════
   COLLECTIONS
   ════════════════════════════════════════════════════════════ */
.hp-collections-section {
    background: var(--white);
}
.hp-coll-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.hp-coll-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
    background: var(--dark2);
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}
.hp-coll-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: var(--shadow-lg);
}
.hp-coll-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    position: absolute;
    inset: 0;
}
.hp-coll-card:hover .hp-coll-img { transform: scale(1.08); }
.hp-coll-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
}
.hp-coll-no-img {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2F0A28 0%, #94524A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.25);
}
.hp-coll-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px;
    color: #fff;
}
.hp-coll-icon-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(15,118,110,0.7);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(52,211,153,0.3);
    color: #6ee7e1;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}
.hp-coll-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -0.3px;
}
.hp-coll-count {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 5px;
}
.hp-coll-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    transition: background 0.2s, transform 0.2s;
}
.hp-coll-card:hover .hp-coll-arrow {
    background: var(--p);
    transform: translateX(3px);
}

/* ════════════════════════════════════════════════════════════
   WHY CHOOSE METAL — SPLIT PANEL
   ════════════════════════════════════════════════════════════ */
.hp-why-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #94524A 100%);
    color: #fff;
}
.hp-why-inner {
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.hp-why-text .hp-section-label {
    background: rgba(201,66,119,0.2);
    color: #f0b8d0;
    border: 1px solid rgba(201,66,119,0.35);
}
.hp-why-text .hp-section-title { color: #fff; }
.hp-why-text .hp-section-sub { color: #d4b8c8; margin-bottom: 32px; }
.hp-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hp-why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r);
    transition: background 0.2s, border-color 0.2s;
}
.hp-why-item:hover {
    background: rgba(201,66,119,0.15);
    border-color: rgba(240,184,208,0.25);
}
.hp-why-icon {
    width: 40px;
    height: 40px;
    background: rgba(201,66,119,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0b8d0;
    font-size: 1rem;
    flex-shrink: 0;
}
.hp-why-item-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}
.hp-why-item-text span {
    font-size: 0.82rem;
    color: #d4b8c8;
    line-height: 1.5;
}

/* Why — image grid side */
.hp-why-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.hp-why-visual-item {
    border-radius: var(--r);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #3d1035;
    position: relative;
}
.hp-why-visual-item:first-child {
    grid-column: 1 / 3;
    aspect-ratio: 16/8;
}
.hp-why-visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.hp-why-visual-item:hover img { transform: scale(1.04); }
.hp-why-visual-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3d1035, #94524A);
    color: rgba(255,255,255,0.2);
    font-size: 2.5rem;
}

/* ════════════════════════════════════════════════════════════
   SALE / BEST VALUE STRIP
   ════════════════════════════════════════════════════════════ */
.hp-sale-section {
    background: var(--surface);
}
.hp-sale-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.hp-sale-card {
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--border);
    overflow: hidden;
    text-decoration: none;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.22s, box-shadow 0.22s;
}
.hp-sale-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: var(--dark);
}
.hp-sale-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--surface);
    position: relative;
}
.hp-sale-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.hp-sale-card:hover .hp-sale-img-wrap img { transform: scale(1.05); }
.hp-sale-ribbon {
    position: absolute;
    top: 14px;
    left: -6px;
    background: #dc2626;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 14px 5px 12px;
    clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
}
.hp-sale-body {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hp-sale-name {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-sale-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
}
.hp-sale-now {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--p);
}
.hp-sale-was {
    font-size: 0.82rem;
    color: var(--muted);
    text-decoration: line-through;
}
.hp-sale-saving {
    font-size: 0.75rem;
    font-weight: 700;
    color: #dc2626;
    background: #fef2f2;
    padding: 2px 7px;
    border-radius: 4px;
}
.hp-sale-cta {
    display: block;
    margin: 10px 14px 14px;
    background: var(--acc);
    color: #fff;
    text-align: center;
    padding: 9px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}
.hp-sale-cta:hover { background: var(--acc-d); color:#fff; }

/* ════════════════════════════════════════════════════════════
   USP / HOW IT WORKS
   ════════════════════════════════════════════════════════════ */
.hp-usp-section {
    background: var(--white);
}
.hp-usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    counter-reset: usp;
}
.hp-usp-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--surface);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    counter-increment: usp;
}
.hp-usp-card::before {
    content: counter(usp, decimal-leading-zero);
    position: absolute;
    top: 18px;
    left: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--p-l);
    letter-spacing: 0.5px;
}
.hp-usp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--p-l);
}
.hp-usp-icon {
    width: 64px;
    height: 64px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: var(--p);
    transition: background 0.2s, transform 0.2s;
}
.hp-usp-card:hover .hp-usp-icon {
    background: var(--p);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}
.hp-usp-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px;
}
.hp-usp-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════
   DARK CTA BANNER
   ════════════════════════════════════════════════════════════ */
.hp-cta-section {
    background: linear-gradient(135deg, #2F0A28 0%, #3d1035 50%, #94524A 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hp-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,66,119,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,66,119,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}
.hp-cta-inner {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}
.hp-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(201,66,119,0.2);
    border: 1px solid rgba(201,66,119,0.4);
    color: #f0b8d0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.hp-cta-inner h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -1px;
    line-height: 1.1;
}
.hp-cta-inner h2 em {
    font-style: normal;
    background: linear-gradient(90deg, #C94277, #f0b8d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hp-cta-inner p {
    color: #d4b8c8;
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 36px;
}
.hp-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hp-prod-grid,
    .hp-sale-grid { grid-template-columns: repeat(3, 1fr); }
    .hp-usp-grid  { grid-template-columns: repeat(2, 1fr); }
    .hp-coll-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .hp-hero-inner { grid-template-columns: 1fr; }
    .hp-hero { min-height: auto; padding: 80px 20px 60px; }
    .hero-photo-panel { display: none; }
    .hp-why-inner  { grid-template-columns: 1fr; gap: 40px; }
    .hp-why-visual { display: none; }
    .hp-trust-bar-inner { flex-wrap: wrap; }
    .hp-trust-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 640px) {
    .hp-prod-grid,
    .hp-sale-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hp-coll-grid { grid-template-columns: 1fr; }
    .hp-usp-grid  { grid-template-columns: 1fr; gap: 14px; }
    .hp-section   { padding: 56px 16px; }
    .hp-trust-item { flex: 0 0 100%; }
    .hero-stats-row { gap: 20px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn-primary,
    .hero-btns .btn-ghost { justify-content: center; }

    /* USP cards — horizontal row layout on mobile */
    .hp-usp-card {
        text-align: left;
        padding: 18px 16px;
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .hp-usp-card::before {
        display: none; /* counter hidden in row layout */
    }
    .hp-usp-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        flex-shrink: 0;
        margin: 0;
        font-size: 1.3rem;
    }
    .hp-usp-card h3 { font-size: 0.93rem; margin-bottom: 4px; }
    .hp-usp-card p  { font-size: 0.82rem; margin: 0; }
}

/* Back to top */
.backToTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--p);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(15,118,110,0.4);
    z-index: 999;
    transition: background 0.2s, transform 0.2s;
}
.backToTop:hover { background: var(--p-d); transform: translateY(-3px); color:#fff; }

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
