/* ── HERO ── */
.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── TIMER SECTION ── */
.timer-section {
    background: #fff;
    padding: 48px 20px 40px;
    text-align: center;
    margin: 0 25px;
    border: 1px solid #E3E4EC;
    border-radius: 5px;
}
.timer-label {
    font-size: clamp(13px, 2vw, 15px);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 28px;
}
.timer {
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
}
.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: clamp(60px, 14vw, 110px);
}
.timer-digits {
    font-size: clamp(48px, 11vw, 130px);
    font-weight: 400;
    line-height: 1;
    color: #111;
    letter-spacing: -2px;
}
.timer-caption {
    font-size: clamp(9px, 1.5vw, 12px);
    color: #888;
    letter-spacing: 1px;
    text-transform: lowercase;
    margin-top: 6px;
}
.timer-sep {
    font-size: clamp(48px, 11vw, 96px);
    font-weight: 900;
    line-height: 1;
    color: #111;
    padding: 0 2px;
    align-self: flex-start;
}

/* ── CATEGORIES SECTION ── */
.categories-section {
    background: #fff;
    padding: 40px 20px 56px;
    text-align: center;
    margin: 10px 25px;
    border: 1px solid #E3E4EC;
    border-radius: 5px;
}
.categories-title {
    font-size: clamp(13px, 6vw, 24px);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 32px;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin: 0 auto;
}
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: 1px solid #E3E4EC;
    border-radius: 5px;
}
.category-card a {
    text-decoration: none;
}
.category-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 8px;
    transition: transform .2s;
}
.category-card:hover .category-img {
    transform: translateY(-4px);
}
.category-name {
    font-size: clamp(13px, 1.5vw, 24px);
    font-weight: 700;
    color: #111;
    text-align: center;
    line-height: 1.25;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .timer-sep { font-size: clamp(36px, 10vw, 56px); }
}
@media (max-width: 420px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .timer { gap: 2px; }
}

.fundraiser-section {
    background: #fff;
    padding: 48px 20px 40px;
    margin: 10px 25px 0 25px;
    border: 1px solid #E3E4EC;
    border-radius: 5px;
}
.second-grid {
    margin-top: 30px;
}
.sale-value {
    font-size: clamp(13px, 1vw, 16px);
    font-weight: 700;
    color: #111;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
