.top-brands-section {
        margin: 0 auto;
        width: 100%;
        background: transparent;
        box-sizing: border-box;
    }

    .brands-container-wrapper {
        width: 100%;
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
        padding: 28px 0 26px;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        box-sizing: border-box;
    }

    .top-brands-header {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 28px;
        animation: skartCategoriesTitleReveal 0.55s cubic-bezier(.22, 1, .36, 1) both;
    }

    .top-brands-title {
        margin: 0;
        font-size: 25px;
        font-weight: 700;
        color: #111;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        text-align: center;
    }

    .brands-grid-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: clamp(16px, 1.6vw, 30px);
        align-items: start;
        width: 100%;
        margin: 0 auto;
    }

    .brand-item-wrapper {
        display: flex;
        justify-content: center;
        flex: 1 1 112px;
        min-width: 0;
        opacity: 0;
        animation: skartCategoryReveal 0.62s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    .brand-item-wrapper:nth-child(1) { animation-delay: .08s; }
    .brand-item-wrapper:nth-child(2) { animation-delay: .14s; }
    .brand-item-wrapper:nth-child(3) { animation-delay: .20s; }
    .brand-item-wrapper:nth-child(4) { animation-delay: .26s; }
    .brand-item-wrapper:nth-child(5) { animation-delay: .32s; }
    .brand-item-wrapper:nth-child(6) { animation-delay: .38s; }
    .brand-item-wrapper:nth-child(7) { animation-delay: .44s; }
    .brand-item-wrapper:nth-child(8) { animation-delay: .50s; }
    .brand-item-wrapper:nth-child(9) { animation-delay: .56s; }

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

    @keyframes skartCategoryReveal {
        from {
            opacity: 0;
            transform: translateY(22px) scale(.94);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .brand-link,
    .brands-view-all-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        text-align: center;
        transition: transform 0.32s cubic-bezier(.22, 1, .36, 1);
        width: 100%;
    }

    .brand-link:hover,
    .brands-view-all-link:hover {
        text-decoration: none;
        transform: translateY(-8px);
    }

    .brand-circle,
    .brands-view-all-btn {
        width: min(154px, 100%);
        aspect-ratio: 1 / 1;
        height: auto;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
    }

    .brand-circle {
        background: #f3f3f3;
        overflow: hidden;
        border: 1px solid #ededed;
        transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.32s cubic-bezier(.22, 1, .36, 1);
    }

    .brands-view-all-btn {
        width: min(154px, 100%);
        height: auto;
    }

    .brand-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.45s cubic-bezier(.22, 1, .36, 1), filter 0.3s ease;
    }

    .brand-link:hover .brand-circle img {
        transform: scale(1.1);
        filter: saturate(1.08) contrast(1.03);
    }

    .brand-name {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.35;
        color: #222;
        transition: color 0.25s ease, transform 0.3s ease, letter-spacing 0.3s ease;
    }

    .brands-view-all-btn {
        background: #e53935;
        color: #fff;
        font-size: 22px;
        box-shadow: 0 6px 14px rgba(229, 57, 53, 0.22);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .brands-view-all-icon {
        display: grid;
        grid-template-columns: repeat(2, 10px);
        gap: 4px;
    }

    .brands-view-all-icon span {
        width: 10px;
        height: 10px;
        border: 2px solid #fff;
        border-radius: 3px;
        line-height: 1;
    }

    .brands-view-all-link:hover .brands-view-all-btn {
        color: #fff;
        transform: scale(1.08) rotate(3deg);
        box-shadow: 0 12px 26px rgba(234, 67, 53, 0.28);
    }

    .brands-empty-state {
        text-align: center;
        padding: 24px 0 8px;
        color: #777;
        grid-column: 1 / -1;
    }

    @media (max-width: 1199px) {
        .brands-grid-container {
            gap: 14px;
        }

        .brand-item-wrapper {
            flex-basis: 120px;
        }

        .brand-circle {
            width: min(138px, 100%);
        }

        .brands-view-all-btn {
            width: min(138px, 100%);
        }
    }

    @media (max-width: 767px) {
        .brands-container-wrapper {
            padding: 22px 0 18px;
        }

        .top-brands-title {
            font-size: 18px;
        }

        .brands-grid-container {
            gap: 14px 10px;
        }

        .brand-item-wrapper {
            flex: 1 1 calc(33.333% - 10px);
        }

        .brand-circle {
            width: 88px;
            height: 88px;
            margin-bottom: 10px;
        }

        .brands-view-all-btn {
            width: 72px;
            height: 72px;
            margin-bottom: 10px;
        }

        .brands-view-all-icon {
            grid-template-columns: repeat(2, 8px);
            gap: 3px;
        }

        .brands-view-all-icon span {
            width: 8px;
            height: 8px;
            border-radius: 2px;
        }

        .brand-name {
            font-size: 12px;
        }
    }

    @media (max-width: 479px) {
        .brand-item-wrapper {
            flex-basis: calc(50% - 10px);
        }

        .brand-circle {
            width: 76px;
            height: 76px;
        }

        .brands-view-all-btn {
            width: 64px;
            height: 64px;
        }

        .brands-view-all-icon {
            grid-template-columns: repeat(2, 7px);
            gap: 3px;
        }

        .brands-view-all-icon span {
            width: 7px;
            height: 7px;
            border-width: 1.5px;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .top-brands-header,
        .brand-item-wrapper {
            opacity: 1;
            animation: none;
        }

        .brand-link,
        .brands-view-all-link,
        .brand-circle,
        .brand-circle img,
        .brand-name,
        .brands-view-all-btn {
            transition: none;
        }
    }
