@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700;1,800;1,900&family=Barlow:wght@400;500;600;700&display=swap');

:root {
    --blue:        #0066FF;
    --blue-dark:   #0044CC;
    --pink:        #FF0066;
    --pink-dark:   #CC0052;
    --orange:      #FF4500;
    --red:         #CC0000;
    --black:       #0D0D0D;
    --ink:         #1A1A1A;
    --gray:        #666666;
    --gray-light:  #888888;
    --light:       #F7F7F7;
    --lighter:     #FAFAFA;
    --border:      #EEEEEE;
    --border-dark: #DDDDDD;
    --white:       #FFFFFF;
    --yellow:      #FFB800;

    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;

    --section-px: 60px;
    --section-py: 24px;
    --card-gap:   16px;
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
    
    margin: 0 auto;
    padding: 0 var(--section-px);
}

/* ──────────────────────────────────────
   SECTION HEADERS
   ────────────────────────────────────── */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
}
.section-label {
    font-size: 12px;
    color: var(--gray-light);
    margin-bottom: 4px;
}
.section-label-alt {
    font-size: 12px;
    color: var(--gray-light);
    font-style: italic;
}
.view-all-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    transition: color 0.15s;
}
.view-all-btn:hover { color: var(--blue-dark); }

/* ──────────────────────────────────────
   HERO SECTION — 3-Column
   ────────────────────────────────────── */
.hero {
    padding: var(--section-py) var(--section-px);
    background: var(--white);
    overflow: hidden;
}
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 480px;
}

/* Left: Text */
.hero-text {
    flex: 0 0 360px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--black);
}
.hero-title .accent-line {
    color: var(--pink);
    font-style: italic;
    display: block;
    border-bottom: 6px solid var(--pink);
    padding-bottom: 4px;
}
.hero-sub {
    font-size: 13px;
    color: var(--gray);
    margin-top: 12px;
    max-width: 320px;
    line-height: 1.5;
}
.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.btn-hero-primary {
    background: var(--black);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.15s;
    border: none;
    cursor: pointer;
}
.btn-hero-primary:hover { background: var(--ink); }
.btn-hero-ghost {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
    cursor: pointer;
}
.btn-hero-ghost:hover { background: var(--black); color: var(--white); }

/* Center: Model Image */
.hero-model {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 500px;
}
.hero-model img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}
.hero-doodle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    z-index: 1;
    background:
        radial-gradient(circle at 20% 30%, rgba(0,102,255,0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(0,102,255,0.12) 0%, transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(0,102,255,0.1) 0%, transparent 30%);
}
.hero-doodle::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 80%;
    height: 80%;
    border: 3px solid rgba(0,102,255,0.2);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(-5deg);
}
.hero-doodle::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 60%;
    height: 65%;
    border: 2px solid rgba(0,102,255,0.15);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    transform: rotate(10deg);
}

/* Right: Product Highlight Cards */
.hero-products {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hero-prod-card {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 10px;
    text-align: center;
    border: 1px solid var(--border);
}
.hero-prod-card img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    margin-bottom: 6px;
}
.hero-prod-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.hero-prod-badge.hot {
    background: var(--orange);
    color: var(--white);
}
.hero-prod-badge.new {
    background: var(--blue);
    color: var(--white);
}
.hero-prod-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
}

/* ──────────────────────────────────────
   TRUST BAR
   ────────────────────────────────────── */
.trust-bar {
    background: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0 var(--section-px);
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 56px;
    gap: 16px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #444444;
    white-space: nowrap;
}
.trust-sub {
    font-size: 11px;
    font-weight: 400;
    color: #999999;
}
.trust-item svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

/* ──────────────────────────────────────
   FLASH SALE BANNER
   ────────────────────────────────────── */
.flash-sale {
    display: flex;
    height: 140px;
}
.flash-sale-pink {
    background: var(--pink);
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    padding: 0 50px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.flash-sale-label {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 900;
    color: var(--white);
    font-style: italic;
    line-height: 1;
    white-space: nowrap;
}
.flash-sale-label svg {
    width: 28px;
    height: 28px;
    display: inline;
    vertical-align: middle;
    margin-right: 8px;
}
.flash-sale-black {
    background: var(--black);
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 50px;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.flash-sale-offer {
    display: flex;
    align-items: center;
    gap: 16px;
}
.flash-sale-pct {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.flash-sale-upto {
    font-size: 15px;
    color: var(--white);
    font-weight: 800;
    line-height: 1.2;
}
.flash-sale-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.flash-sale-orange {
    background: var(--orange);
    flex: 0 0 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}
.flash-sale-cd-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.flash-sale-cd-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
}
.flash-cd-boxes {
    display: flex;
    gap: 5px;
}
.flash-cd-box {
    background: var(--white);
    color: var(--orange);
    width: 44px;
    height: 44px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
}
.flash-cd-box-num {
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}
.flash-cd-box-sub {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.7;
}
.flash-cd-sep {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    display: flex;
    align-items: center;
}
.btn-flash-sale {
    background: var(--black);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-body);
    white-space: nowrap;
    transition: background 0.15s;
    margin-top: 4px;
}
.btn-flash-sale:hover { background: var(--ink); }

/* ──────────────────────────────────────
   CATEGORY CARDS
   ────────────────────────────────────── */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--card-gap);
    margin-top: 20px;
}
.cat-card {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    color: var(--white);
}
.cat-card:nth-child(1) { background: var(--blue); }
.cat-card:nth-child(2) { background: var(--pink); }
.cat-card:nth-child(3) { background: var(--orange); }
.cat-card:nth-child(4) { background: #E8E8E8; color: var(--black); }
.cat-card:nth-child(5) { background: var(--pink); }
.cat-card-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 16px 16px 0;
    line-height: 1.2;
}
.cat-card-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.cat-card-img img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
}
.cat-card-btn {
    display: block;
    background: var(--white);
    color: var(--black);
    text-align: center;
    padding: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 12px 12px;
    border-radius: 3px;
    transition: background 0.15s;
}
.cat-card-btn:hover { background: #E0E0E0; }

/* ──────────────────────────────────────
   PRODUCT GRID (6 Cols)
   ────────────────────────────────────── */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--card-gap);
    margin-top: 20px;
}
.prod-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
.prod-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.prod-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.prod-img-wrap {
    position: relative;
    background: var(--light);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prod-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 900;
    padding: 3px 7px;
    border-radius: 3px;
    text-transform: uppercase;
    color: var(--white);
}
.prod-badge.hot { background: var(--orange); }
.prod-badge.new { background: var(--blue); }
.prod-badge.limited { background: var(--black); }
.prod-badge.toppick { background: var(--blue); }
.prod-badge.red { background: var(--orange); }
.prod-badge.green { background: #22AA44; }
.prod-badge.purple { background: #7C3AED; }
.prod-badge.blue { background: var(--blue); }
.prod-wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    color: #CCCCCC;
    font-size: 14px;
    padding: 0;
}
.prod-wishlist:hover, .prod-wishlist.active { color: var(--pink); border-color: var(--pink); }
.prod-info {
    padding: 10px 12px 12px;
}
.prod-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.prod-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
}
.prod-price .price-old {
    color: #AAAAAA;
    text-decoration: line-through;
    font-size: 11px;
    font-weight: 400;
    margin-left: 4px;
}
.prod-sizes {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}
.prod-size {
    font-size: 9px;
    color: var(--gray-light);
    border: 1px solid var(--border-dark);
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}
.prod-size:hover { border-color: var(--black); color: var(--black); }

/* Product-card partial backward compatibility */
.prod-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.prod-link .prod-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.prod-link .prod-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.prod-img {
    position: relative;
    background: var(--light);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.prod-img .prod-badge {
    position: absolute;
    top: 8px;
    left: 8px;
}
.prod-img .prod-wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
}
.prod-hover-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.25s;
    cursor: pointer;
    font-family: var(--font-display);
    letter-spacing: 1px;
}
.prod-card:hover .prod-hover-cta {
    opacity: 1;
    transform: translateY(0);
}
.prod-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 4px;
}
.prod-info {
    padding: 10px 12px 12px;
}
.prod-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 4px 0 6px;
}
.prod-rating .stars {
    color: var(--yellow);
    font-size: 11px;
    letter-spacing: 1px;
}
.prod-rating .rating-val {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
}
.prod-rating .rating-cnt {
    font-size: 11px;
    color: var(--gray-light);
}
.prod-price .old {
    color: #AAAAAA;
    text-decoration: line-through;
    font-size: 11px;
    font-weight: 400;
    margin-left: 4px;
}

/* ──────────────────────────────────────
   THEME COLLECTIONS
   ────────────────────────────────────── */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--card-gap);
    margin-top: 20px;
}
.theme-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 220px;
    display: flex;
    align-items: flex-end;
}
.theme-card.tc-black { background: #111111; }
.theme-card.tc-pink { background: var(--pink); }
.theme-card.tc-blue { background: var(--blue); }
.theme-card.tc-red { background: var(--red); }
.theme-card img {
    position: absolute;
    right: -30px;
    bottom: 0;
    width: 70%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}
.theme-card-text {
    position: relative;
    z-index: 2;
    padding: 20px;
}
.theme-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
}
.theme-card-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    font-style: italic;
    margin-top: 4px;
}

/* ──────────────────────────────────────
   CREATOR CTA
   ────────────────────────────────────── */
.creator-cta {
    padding: 24px var(--section-px);
    background: var(--white);
    overflow: hidden;
}
.creator-cta-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}
.creator-cta-text {
    flex: 0 0 42%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.creator-cta-heading {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 10px;
}
.creator-cta-heading-line {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--black);
}
.creator-cta-heading-line.accent {
    color: var(--blue);
}
.creator-cta-sub {
    font-size: 12px;
    font-weight: 400;
    color: #555555;
    line-height: 1.6;
    max-width: 320px;
}
.creator-bottom-row {
    display: flex;
    align-items: center;
    gap: 20px;
}
.creator-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
    margin-top: 12px;
}
.creator-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    color: var(--ink);
}
.creator-feature-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
}
.creator-cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.btn-creator-primary {
    background: var(--blue);
    color: var(--white);
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-body);
    transition: background 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-creator-primary:hover { background: var(--blue-dark); }
.btn-creator-secondary {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--black);
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    white-space: nowrap;
}
.btn-creator-secondary:hover { background: var(--black); color: var(--white); }

/* Right Visual Column — absolute positioning */
.creator-visual {
    flex: 0 0 58%;
    position: relative;
    height: 260px;
}

.creator-mockup-stack {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 180px;
    height: 220px;
    z-index: 2;
}
.creator-tablet {
    width: 100%;
    height: 100%;
    background: var(--ink);
    border-radius: 12px;
    border: 3px solid #333;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.creator-tablet-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a0a2e 0%, #2A0A4A 60%, #1a0040 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.creator-tablet-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: var(--pink);
    text-transform: uppercase;
    line-height: 1.1;
    text-align: center;
    letter-spacing: 1px;
}

.creator-tshirt-stack {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 55%;
    height: 100%;
}
.creator-tshirt-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
}

.creator-model-stack {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 50%;
    height: 100%;
    overflow: hidden;
}
.creator-model-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-badge-artist {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 5;
    background: var(--pink);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(255,0,102,0.3);
}

.creator-earnings-card {
    position: absolute;
    right: 0;
    bottom: 5px;
    z-index: 4;
    background: var(--white);
    border-radius: 12px;
    padding: 14px 18px;
    min-width: 160px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.creator-earnings-card::before {
    content: '+10%';
    position: absolute;
    top: -10px;
    right: 14px;
    background: #00CC66;
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
}
.creator-earnings-label {
    font-size: 10px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.creator-earnings-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 6px;
}
.creator-earnings-sparkline {
    height: 28px;
    width: 100%;
}

.creator-deco-arrow {
    position: absolute;
    top: 40px;
    left: 50%;
    z-index: 1;
    color: var(--pink);
    opacity: 0.7;
    transform: translateX(-50%);
}
.creator-deco-arrow svg {
    width: 40px;
    height: 40px;
}

.creator-deco-circle {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 1;
    width: 80px;
    height: 80px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    opacity: 0.2;
}

/* ──────────────────────────────────────
   HOW IT WORKS
   ────────────────────────────────────── */
.how-it-works {
    padding: 30px var(--section-px);
    background: var(--light);
}
.how-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    margin-top: 40px;
}
.how-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    width: calc(100% / 6 - 12px);
    position: relative;
}
.how-step-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: #999;
    line-height: 1;
    min-width: 28px;
    flex-shrink: 0;
}
.how-step-icon {
    width: 40px;
    height: 40px;
    color: #999;
    flex-shrink: 0;
}
.how-step-icon svg {
    width: 40px;
    height: 40px;
}
.how-step-text {
    font-size: 11px;
    font-weight: 400;
    color: #444444;
    line-height: 1.4;
    max-width: 76px;
    word-break: break-word;
}

/* ──────────────────────────────────────
   TESTIMONIALS
   ────────────────────────────────────── */
.testimonials {
    padding: var(--section-py) var(--section-px);
    background: var(--white);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--card-gap);
    margin-top: 20px;
}
.testi-card {
    background: var(--lighter);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
}
.testi-stars {
    color: var(--yellow);
    font-size: 12px;
    margin-bottom: 8px;
}
.testi-text {
    font-size: 12px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 12px;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.testi-name {
    font-size: 13px;
    font-weight: 600;
}
.testi-role {
    font-size: 11px;
    color: var(--gray-light);
}

/* ──────────────────────────────────────
   SECTION PADDING UTILS
   ────────────────────────────────────── */
.section { padding: var(--section-py) var(--section-px); }
.section-alt { background: var(--lighter); }
.section-light { background: var(--light); }

/* ──────────────────────────────────────
   PAGINATION
   ────────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.pagination .page-item { list-style: none; }
.pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    transition: all 0.15s;
}
.pagination .page-link:hover { border-color: var(--black); }
.pagination .active .page-link {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ──────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────── */
@media (max-width: 1024px) {
    :root { --section-px: 24px; }
    .hero-inner { flex-direction: column; text-align: center; min-height: auto; }
    .hero-text { flex: none; }
    .hero-sub { max-width: none; }
    .hero-actions { justify-content: center; }
    .hero-model { max-width: 300px; }
    .hero-products { flex-direction: row; flex: none; justify-content: center; }
    .hero-prod-card { width: 140px; }
    .prod-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .theme-grid { grid-template-columns: repeat(2, 1fr); }
    .creator-cta-inner { flex-direction: column; }
    .creator-cta-text { flex: none; }
    .creator-visual { flex: none; width: 100%; height: 200px; }
    .creator-mockup-stack { left: 10px; width: 130px; height: 170px; }
    .creator-tshirt-stack { left: 30%; width: 140px; height: 160px; }
    .creator-model-stack { right: 40px; width: 70px; height: 150px; }
    .creator-badge-artist { right: 20px; top: 0; }
    .creator-earnings-card { right: 0; bottom: 0; }
    .creator-bottom-row { flex-direction: column; align-items: flex-start; }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { flex-wrap: wrap; gap: 20px; justify-content: flex-start; }
    .how-step { width: calc(33.33% - 14px); }
    .trust-bar-inner { flex-wrap: wrap; height: auto; padding: 12px 0; gap: 12px; }
    .flash-sale { flex-direction: column; height: auto; }
    .flash-sale-pink,
    .flash-sale-black,
    .flash-sale-orange { flex: none; width: 100%; padding: 20px; }
}

@media (max-width: 640px) {
    :root { --section-px: 16px; }
    .hero-inner { gap: 20px; }
    .hero-title { font-size: 40px; }
    .btn-hero-primary, .btn-hero-ghost { padding: 10px 18px; font-size: 12px; }
    .hero-products { display: none; }
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .theme-grid { grid-template-columns: 1fr; }
    .theme-card { height: 160px; }
    .testi-grid { grid-template-columns: 1fr; }
    .how-steps { flex-direction: column; gap: 24px; }
    .how-step { width: 100%; }
    .creator-features { grid-template-columns: 1fr; }
    .creator-cta-heading-line { font-size: 32px; }
    .creator-cta-actions { flex-direction: column; width: 100%; }
    .btn-creator-primary, .btn-creator-secondary { width: 100%; text-align: center; justify-content: center; }
    .creator-visual { height: 160px; }
    .creator-tshirt-stack { left: 5%; width: 50%; height: 140px; }
    .creator-model-stack { right: 5px; width: 45%; height: 140px; }
    .creator-badge-artist { top: -5px; right: 5px; font-size: 9px; padding: 4px 10px; }
    .creator-earnings-card { right: 0; bottom: 0; padding: 8px 12px; min-width: auto; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .flash-sale-label { font-size: 24px; }
    .flash-sale-pct { font-size: 40px; }
    .flash-cd-box { width: 38px; height: 38px; }
    .flash-cd-box-num { font-size: 16px; }
    .trust-item { font-size: 11px; }
}
