:root {
    --bg-color: #000000;
    --card-bg: #0b0b0f;
    --accent: #f8b500;
    --accent-soft: rgba(248, 181, 0, 0.35);
    --border-soft: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;
    background: radial-gradient(circle at top, #1b1b23 0, #000 45%, #000 100%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top bar with title */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px 0;
}

.top-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
}

/* Main area */
.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 16px 40px;
}

.headline {
    text-align: center;
    margin-bottom: 18px;
}

.headline h1 {
    font-size: 28px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 10px 0 6px;
}

.headline p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

/* Cards container - 3 cards in same row */
.cards-wrapper {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

/* Card */
.card {
    position: relative;
    background: linear-gradient(145deg, #050509, #11111a);
    border-radius: 24px;
    padding: 18px 18px 28px;
    flex: 0 1 460px;
    width: calc((100% - 44px) / 3);
    min-width: 0;
    min-height: 500px;
    height: auto;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 24px 60px rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: radial-gradient(circle at top, var(--accent-soft), transparent 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 26px 80px rgba(0, 0, 0, 0.95);
    border-color: rgba(248, 181, 0, 0.35);
}

.card:hover::before {
    opacity: 1;
}

.card-header {
    text-align: left;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.18;
}

.card-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.35;
}

/* Standard product image section */
.product-img-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0 18px;
    min-height: 250px;
    position: relative;
    z-index: 2;
}

/* Product image */
.product-img {
    width: 100%;
    max-width: 260px;
    max-height: 300px;
    object-fit: contain;
    border-radius: 12px;
}

.card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.benefits {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.35;
}

.benefits span {
    color: var(--accent);
}

/* Buy buttons */
.buy-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}

.buy-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-btn-img {
    height: 40px;
    width: auto;
    max-width: 100%;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.buy-btn-img:hover {
    transform: translateY(-3px) scale(1.02);
    filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 1));
}

.badge {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

/* Powder slider styles */
.slider-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 0 16px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    flex: 1;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
}

.slide {
    min-width: 100%;
    text-align: center;
    padding: 4px 0;
}

.slide img {
    width: 100%;
    max-width: 290px;
    max-height: 300px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.flavour-name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
}

.benefits-line {
    text-align: center;
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

.benefits-line span {
    color: var(--accent);
    font-weight: normal;
}

.normal-text {
    color: var(--text-muted) !important;
    font-weight: normal;
}

.nav-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.14);
    transform: scale(1.05);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    padding: 0;
}

.dot.active {
    background: var(--accent);
}

/* Contact section */
.contact-section {
    margin-top: 40px;
    padding: 40px 20px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-section h2 {
    color: var(--accent);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-section p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.contact-info {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    text-align: left;
}

.contact-info .item {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-start;
}

.contact-info .label {
    color: var(--text-main);
    font-weight: 600;
}

.contact-info .value {
    color: var(--accent);
    text-decoration: none;
}

.contact-info .value:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 10px 20px 16px;
    font-size: 11px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.site-footer span {
    color: var(--accent);
}

/* Medium desktop / laptop */
@media (max-width: 1400px) {
    .cards-wrapper {
        max-width: 1260px;
        gap: 18px;
    }

    .card {
        padding: 16px 16px 26px;
        min-height: 470px;
    }

    .card-title {
        font-size: 19px;
    }

    .product-img {
        max-width: 230px;
        max-height: 270px;
    }

    .slide img {
        max-width: 260px;
        max-height: 270px;
    }

    .buy-btn-img {
        height: 36px;
    }

    .nav-btn {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 16px;
    }
}

/* Small laptop - still 3 cards in same line */
@media (max-width: 1200px) {
    .cards-wrapper {
        gap: 14px;
        max-width: 1080px;
    }

    .card {
        width: calc((100% - 28px) / 3);
        min-height: 430px;
        border-radius: 20px;
    }

    .card-title {
        font-size: 17px;
        letter-spacing: 0.04em;
    }

    .card-subtitle {
        font-size: 12px;
    }

    .product-img-wrapper {
        min-height: 220px;
    }

    .product-img {
        max-width: 200px;
        max-height: 240px;
    }

    .slide img {
        max-width: 220px;
        max-height: 240px;
    }

    .flavour-name {
        font-size: 16px;
    }

    .benefits {
        font-size: 12px;
    }

    .buy-btn-img {
        height: 34px;
    }
}

/* Tablet and mobile - stack cards */
@media (max-width: 900px) {
    .headline h1 {
        font-size: 22px;
    }

    .cards-wrapper {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        gap: 22px;
    }

    .card {
        width: 90vw;
        max-width: 560px;
        min-height: unset;
        height: auto;
    }

    .product-img-wrapper {
        min-height: 260px;
    }

    .product-img {
        max-width: 280px;
        max-height: 60vw;
    }

    .slide img {
        max-width: 320px;
        max-height: 62vw;
    }

    .card-title {
        font-size: 20px;
    }

    .card-subtitle {
        font-size: 12px;
    }

    .benefits-line {
        font-size: 13px;
    }

    .flavour-name {
        font-size: 18px;
    }

    .nav-btn {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .top-title {
        font-size: 30px;
    }

    .headline h1 {
        font-size: 20px;
    }

    .headline p {
        font-size: 13px;
    }

    .card {
        width: 92vw;
        padding: 16px 16px 24px;
    }

    .card-title {
        font-size: 18px;
    }

    .buy-btn-img {
        height: 36px;
    }

    .buy-buttons {
        gap: 10px;
        flex-wrap: wrap;
    }

    .nav-btn {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 16px;
    }

    .flavour-name {
        font-size: 16px;
    }

    .benefits-line {
        font-size: 13px;
        color: var(--text-muted);
        text-align: center;
    }

    .benefits-line span {
        color: var(--accent);
        font-weight: normal;
    }
}