.dunk-home {
    --brand: #ff3131;
    --black: #111;
    --white: #fff;
    --gray: #222;
}

/* HERO */
.dunk-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--brand);
    color: var(--white);
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.dunk-hero__title {
    font-size: 4rem;
    line-height: 1.1;
    margin: 0 0 0.5rem;
    letter-spacing: -0.03em;
    color: #fff;
}

.dunk-hero__sub {
    font-size: 1.1rem;
    margin: 0 0 1.5rem;
    opacity: 0.8;
}

.dunk-hero__arrow {
    width: 36px;
    height: 36px;
    margin-top: 1.5rem;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* HERO V2 - with background image */
.dunk-hero--v2 {
    position: relative;
    background: transparent;
    min-height: auto;
    padding: 4rem 1rem 3rem;
    justify-content: center;
}

@media (min-width: 550px) {
    .dunk-hero--v2 {
        min-height: 80svh;
        padding: 5rem 1.5rem 4rem;
    }
}

@media (min-width: 850px) {
    .dunk-hero--v2 {
        min-height: 100svh;
        padding: 6rem 2rem 5rem;
    }
}

.dunk-hero--v2 .dunk-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%),
        url('../img/desktop-hero-bg.webp') center/cover no-repeat;
    background-color: var(--brand);
}

.dunk-hero--v2 .dunk-hero__badges-wrap {
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 !important;
}

.dunk-hero--v2 .dunk-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 !important;
}

.dunk-hero--v2 .dunk-hero__badges {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dunk-hero--v2 .dunk-hero__badges img {
    width: 55px;
    height: auto;
}

.dunk-hero--v2 .dunk-hero__badges--right {
    right: 1rem;
}

.dunk-hero--v2 .dunk-hero__badges--left {
    left: 1rem;
}

@media (min-width: 550px) {
    .dunk-hero--v2 .dunk-hero__badges img {
        width: 70px;
    }
}

@media (min-width: 850px) {
    .dunk-hero--v2 .dunk-hero__badges-wrap {
        top: 2rem;
    }

    .dunk-hero--v2 .dunk-hero__badges img {
        width: 100px;
    }

    .dunk-hero--v2 .dunk-hero__badges--right {
        right: 2rem;
    }

    .dunk-hero--v2 .dunk-hero__badges--left {
        left: 2rem;
    }
}

.dunk-hero--v2 .dunk-hero__title {
    animation: heroFadeIn 0.8s ease-out both;
}

.dunk-hero--v2 .dunk-hero__sub {
    animation: heroFadeIn 0.8s ease-out 0.15s both;
}

.dunk-hero--v2 .dunk-search {
    animation: heroFadeIn 0.8s ease-out 0.3s both;
}

.dunk-hero--v2 .dunk-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    animation: heroFadeIn 0.8s ease-out 0.45s both;
}

.dunk-hero--v2 .dunk-hero__ctas .dunk-btn {
    min-width: 140px;
}

.dunk-hero--v2 .dunk-btn--outline-light {
    background: transparent;
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.dunk-hero--v2 .dunk-hero__chips {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    animation: heroFadeIn 0.8s ease-out 0.6s both;
}

.dunk-hero--v2 .dunk-hero__chip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
}

.dunk-hero--v2 .dunk-hero__chip-row span {
    opacity: 0.6;
    margin-right: 0.25rem;
}

.dunk-hero--v2 .dunk-hero__chip-row a {
    color: #fff;
    text-decoration: none;
    padding: 0.35rem 0.7rem;
    background: rgba(255,255,255,0.12);
    border-radius: 50px;
    transition: background 0.2s, transform 0.2s;
}

.dunk-hero--v2 .dunk-hero__chip-row a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

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

/* SEARCH */
.dunk-search {
    position: relative;
    width: calc(100% - 2rem);
    max-width: 500px;
    margin: 0 auto 2rem;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border-radius: 9px;
}

.dunk-search .searchform,
.dunk-search form {
    display: flex !important;
    height: 56px;
    position: relative;
    background: var(--white);
    margin: 0 !important;
    border-radius: 9px;
}

.dunk-search .search-field,
.dunk-search input[type="search"],
.dunk-search input[type="text"] {
    flex: 1 !important;
    height: 100% !important;
    padding: 0 1.25rem !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 9px !important;
    font-size: 1rem !important;
    color: #111 !important;
    background: #fff !important;
    box-shadow: none !important;
    outline: none !important;
    text-align: center !important;
    caret-color: #111 !important;
    -webkit-text-fill-color: #111 !important;
}

@media (min-width: 850px) {
    .dunk-search .search-field,
    .dunk-search input[type="search"],
    .dunk-search input[type="text"] {
        border-radius: 9px 0 0 9px !important;
    }
}

.dunk-search .search-field::placeholder,
.dunk-search input::placeholder {
    color: #999 !important;
    transition: opacity 0.2s;
}

.dunk-search input:focus::placeholder {
    opacity: 0;
}

.dunk-search .flex-col:has(.submit-button) {
    display: none;
}

@media (min-width: 850px) {
    .dunk-search .flex-col:has(.submit-button) {
        display: flex;
    }

    .dunk-search .submit-button,
    .dunk-search .ux-search-submit,
    .dunk-search button[type="submit"] {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        background: var(--black) !important;
        border: none !important;
        border-radius: 0 9px 9px 0 !important;
        color: var(--white) !important;
        cursor: pointer;
    }
}

.dunk-search .ux-search-submit i,
.dunk-search button[type="submit"] i {
    color: var(--white) !important;
}

.dunk-search .live-search-results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 999;
    background: var(--white) !important;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 9px;
    max-height: 350px;
    overflow-y: auto;
}

.dunk-search .live-search-results .product-small,
.dunk-search .live-search-results .search-result,
.dunk-search .live-search-results li {
    background: var(--white) !important;
    border-bottom: 1px solid #eee;
}

.dunk-search .live-search-results a {
    color: var(--black) !important;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dunk-search .live-search-results a:hover {
    background: #f5f5f5 !important;
}

.dunk-search .live-search-results,
.dunk-search .live-search-results * {
    color: #111 !important;
}

.dunk-search .live-search-results .product-title,
.dunk-search .live-search-results .name,
.dunk-search .live-search-results h3,
.dunk-search .live-search-results h4 {
    color: #111 !important;
    -webkit-text-fill-color: #111 !important;
}

.dunk-search .live-search-results .price,
.dunk-search .live-search-results .amount {
    color: var(--brand) !important;
    -webkit-text-fill-color: var(--brand) !important;
}

/* BUTTONS */
.dunk-btn {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--black);
    border-radius: 8px;
    transition: 0.2s;
}

.dunk-btn:active {
    transform: scale(0.98);
}

.dunk-btn--big {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.dunk-btn--outline {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.dunk-hero .dunk-btn {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* USPs */
.dunk-usps {
    background: var(--black);
    color: var(--white);
}

.dunk-usps .container {
    display: flex;
    flex-wrap: wrap;
}

.dunk-usp {
    flex: 1;
    min-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid #333;
}

.dunk-usp:last-child {
    min-width: 100%;
}

.dunk-usp svg {
    width: 28px;
    height: 28px;
    stroke: var(--brand);
}

.dunk-usp span {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* CATEGORIES */
.dunk-cats {
    background: var(--black);
    padding: 0;
    margin: 0;
}

.dunk-cats .container {
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.dunk-cats__title {
    background: var(--white);
    padding: 1rem;
    margin: 0 !important;
    text-align: center;
}

.dunk-cats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin: 0;
    padding: 0;
}

.dunk-cats__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--black);
}

.dunk-cats__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.dunk-cats__item span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
}

.dunk-cats__item--no-img {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dunk-cats__item--no-img span {
    background: transparent;
    font-size: 1.3rem;
}

.dunk-cats__item:hover img,
.dunk-cats__item:active img {
    transform: scale(1.1);
}

/* BUNDLES */
.dunk-bundles {
    padding: 2.5rem 1rem;
    background: var(--black);
    text-align: center;
}

.dunk-bundles__title {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.dunk-bundles__sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 0 0 1.5rem;
}

.dunk-bundles__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.dunk-bundle {
    display: flex;
    flex-direction: column;
    background: var(--gray);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.2s, box-shadow 0.2s;
}

.dunk-bundle:active {
    transform: scale(0.98);
}

.dunk-bundle__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.dunk-bundle__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.dunk-bundle__content {
    padding: 1rem;
    text-align: left;
}

.dunk-bundle__title {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    margin: 0 0 0.25rem;
    letter-spacing: 0.02em;
}

.dunk-bundle__desc {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0 0 0.75rem;
}

.dunk-bundle__cta {
    font-size: 0.8rem;
    color: var(--brand);
    font-weight: 600;
}

@media (min-width: 550px) {
    .dunk-bundles__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dunk-bundle__image {
        aspect-ratio: 4/3;
    }
}

@media (min-width: 850px) {
    .dunk-bundles {
        padding: 3.5rem 2rem;
    }

    .dunk-bundle:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }

    .dunk-bundle:hover .dunk-bundle__image img {
        transform: scale(1.05);
    }

    .dunk-bundle__title {
        font-size: 1.4rem;
    }
}

/* PRODUCTS */
.dunk-products {
    padding: 2rem 0;
    text-align: center;
    background: var(--white);
}

.dunk-products .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.dunk-products .dunk-btn {
    margin-top: 1.5rem;
}


/* PRODUCT GRID */
.dunk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #ddd;
    margin-bottom: 1rem;
}

.dunk-product {
    display: flex;
    flex-direction: column;
    background: var(--white);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.dunk-product__image {
    position: relative;
    aspect-ratio: 1;
    background: #f5f5f5;
    overflow: hidden;
}

.dunk-product__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.dunk-product:active .dunk-product__image img {
    transform: scale(1.05);
}

.dunk-product__badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--brand);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    letter-spacing: 0.05em;
}

.dunk-product__info {
    padding: 0.75rem;
    text-align: left;
}

.dunk-product__title {
    font-size: 0.8rem;
    font-weight: normal;
    margin: 0 0 0.25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dunk-product__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dunk-product__price--old {
    font-size: 0.75rem;
    color: #999;
    text-decoration: line-through;
}

.dunk-product__price--old .woocommerce-Price-amount {
    color: #999;
}

.dunk-product__price--current {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--black);
}

.dunk-product__price--current .woocommerce-Price-amount {
    color: var(--black);
}

.dunk-product__price--current del {
    color: #999;
    font-weight: normal;
    font-size: 0.75rem;
}

.dunk-product__price--current ins {
    text-decoration: none;
    color: var(--brand);
}

/* TITLES */
.dunk-title {
    font-size: 1.2rem;
    margin: 0 0 1.5rem;
    letter-spacing: 0.05em;
}

/* BANNER */
.dunk-banner {
    background: var(--black);
    color: var(--white);
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.dunk-banner__label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.dunk-banner__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.dunk-banner__logo {
    height: 28px;
    width: auto;
}

.dunk-banner__logo--klarna {
    height: 22px;
}

.dunk-banner__logo--dhl {
    height: 28px;
}

/* BRANDS */
.dunk-brands {
    background: var(--white);
    padding: 2rem 1rem;
    text-align: center;
}

.dunk-brands__label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 1rem;
}

.dunk-brands__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.dunk-brands__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.dunk-brands__logo img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.2s;
}

.dunk-brands__logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.dunk-brands__logo span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 0.05em;
}

/* REVIEWS */
.dunk-reviews {
    padding: 2rem 0 0;
    text-align: center;
    background: var(--white);
}

.dunk-reviews .dunk-title {
    padding: 0 1rem;
}

.dunk-reviews iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

/* AUDIENCES */
.dunk-audiences {
    background: var(--black);
    padding: 2rem 1rem;
    text-align: center;
}

.dunk-audiences .dunk-title {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.dunk-audiences__sub {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
    margin: 0 0 1.5rem;
}

.dunk-audiences__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

button.dunk-audience {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    text-decoration: none;
    text-align: left;
    color: var(--white);
    background: transparent;
    border: 2px solid #333;
    cursor: pointer;
    transition: 0.2s;
    font-family: inherit;
}

button.dunk-audience:active {
    border-color: var(--brand);
}

.dunk-audience__level {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.dunk-audience h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.dunk-audience p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0 0 1rem;
    flex-grow: 1;
}

.dunk-audience__cta {
    font-size: 0.85rem;
    color: var(--brand);
    letter-spacing: 0.05em;
}

.dunk-audience--beginner {
    border-color: #2a5a2a;
}

.dunk-audience--intermediate {
    border-color: #5a5a2a;
}

.dunk-audience--expert {
    border-color: #5a2a2a;
}

/* SERVICES */
.dunk-services {
    background: var(--white);
    padding: 2rem 1rem;
    text-align: center;
}

.dunk-services .dunk-title {
    margin-bottom: 1.5rem;
}

.dunk-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.dunk-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: #f5f5f5;
    text-decoration: none;
    color: var(--black);
    transition: 0.2s;
}

.dunk-service:active {
    background: #eee;
}

.dunk-service svg {
    width: 32px;
    height: 32px;
    stroke: var(--brand);
}

.dunk-service h3 {
    font-size: 1rem;
    margin: 0;
    letter-spacing: 0.05em;
}

.dunk-service p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.7;
}

/* HELP */
.dunk-help {
    background: var(--gray);
    color: var(--white);
    padding: 2rem 1rem 3rem;
    text-align: center;
}

.dunk-help__title {
    font-size: 1.8rem;
    margin: 0 0 0.75rem;
    color: var(--white);
}

.dunk-help__text {
    font-size: 1.1rem;
    opacity: 1;
    margin: 0 0 1.5rem;
}

.dunk-help .dunk-btn {
    background: var(--brand);
    color: var(--white);
    border-color: var(--brand);
}

/* TABLET */
@media (min-width: 550px) {
    .dunk-hero__title {
        font-size: 5rem;
    }

    .dunk-usp {
        min-width: 33.333%;
        border-bottom: none;
        border-right: 1px solid #333;
    }

    .dunk-usp:last-child {
        min-width: 33.333%;
        border-right: none;
    }

    .dunk-cats__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .dunk-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .dunk-product__title {
        font-size: 0.85rem;
    }

    .dunk-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dunk-audiences__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* DESKTOP */
@media (min-width: 850px) {
    .dunk-search {
        display: none !important;
    }

    .dunk-hero {
        padding: 5rem 2rem 4rem;
    }

    .dunk-hero__title {
        font-size: 7rem;
    }

    .dunk-hero__sub {
        font-size: 1.3rem;
    }

    .dunk-cats__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .dunk-cats__item span {
        font-size: 1.2rem;
    }

    .dunk-products {
        padding: 3rem 0;
    }

    .dunk-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin: 0 auto 1rem;
    }

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

    .dunk-product__info {
        padding: 1rem;
    }

    .dunk-product__title {
        font-size: 0.9rem;
    }

    .dunk-banner {
        padding: 1.5rem 2rem;
    }

    .dunk-brands__logo img {
        height: 50px;
    }

    .dunk-service:hover {
        background: #eee;
        transform: translateY(-2px);
    }

    button.dunk-audience:hover {
        border-color: var(--brand);
        transform: translateY(-2px);
    }
}

