:root {
    --navy-950: #071936;
    --navy-900: #0b2349;
    --navy-800: #123565;
    --navy-700: #174984;
    --blue-600: #2167d5;
    --blue-100: #eaf2ff;
    --orange-500: #ff7a1a;
    --orange-100: #fff0e4;
    --green-600: #118753;
    --green-100: #e8f8f0;
    --red-600: #c93636;
    --red-100: #fff0f0;
    --gray-950: #111827;
    --gray-800: #293246;
    --gray-700: #485469;
    --gray-600: #657086;
    --gray-500: #8791a4;
    --gray-400: #aeb6c5;
    --gray-300: #d7dce5;
    --gray-200: #e8ebf0;
    --gray-100: #f4f6f9;
    --gray-50: #fafbfd;
    --white: #ffffff;
    --shadow-sm: 0 4px 16px rgba(7, 25, 54, 0.07);
    --shadow-md: 0 12px 35px rgba(7, 25, 54, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --container: 1440px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--gray-950);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
select,
input {
    outline: none;
}

button,
select {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

/* Barra superior */

.topbar {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    background: var(--navy-950);
}

.topbar-content {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.topbar-links a {
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.2s ease;
}

.topbar-links a:hover {
    color: var(--white);
}

/* Cabeçalho */

.header {
    position: relative;
    z-index: 50;
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    box-shadow: 0 3px 12px rgba(7, 25, 54, 0.04);
}

.header-main {
    min-height: 86px;
    display: grid;
    grid-template-columns: 200px minmax(320px, 1fr) auto;
    align-items: center;
    gap: 30px;
}

.logo {
    width: fit-content;
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--navy-900);
    line-height: 1;
}

.logo-rhh3 {
    font-size: 31px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px;
}

.logo-store {
    color: var(--orange-500);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.search-form {
    min-height: 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--gray-300);
    border-radius: 999px;
    background: var(--gray-50);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.search-form:focus-within {
    border-color: var(--blue-600);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(33, 103, 213, 0.1);
}

.search-icon {
    padding-left: 20px;
    font-size: 16px;
}

.search-form input {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    color: var(--gray-950);
    border: 0;
    background: transparent;
}

.search-form input::placeholder {
    color: var(--gray-500);
}

.search-form button {
    height: 38px;
    margin-right: 5px;
    padding: 0 22px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    border: 0;
    border-radius: 999px;
    background: var(--navy-900);
    transition: background 0.2s ease;
}

.search-form button:hover {
    background: var(--blue-600);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-action {
    position: relative;
    min-width: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--navy-900);
    font-size: 11px;
    font-weight: 700;
}

.header-action:hover {
    color: var(--blue-600);
}

.action-icon {
    font-size: 24px;
    line-height: 1;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: 3px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 10px;
    border-radius: 999px;
    background: var(--orange-500);
}

.main-navigation {
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

.navigation-content {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.navigation-content::-webkit-scrollbar {
    display: none;
}

.navigation-content a {
    position: relative;
    flex: 0 0 auto;
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.25px;
    text-transform: uppercase;
}

.navigation-content a::after {
    position: absolute;
    right: 0;
    bottom: -17px;
    left: 0;
    height: 3px;
    content: "";
    border-radius: 999px;
    background: var(--orange-500);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.navigation-content a:hover::after {
    transform: scaleX(1);
}

.navigation-content .navigation-highlight {
    color: var(--orange-500);
}

/* Mensagens */

.messages {
    padding-top: 18px;
}

.message {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: var(--blue-100);
}

.message-success {
    color: var(--green-600);
    background: var(--green-100);
}

.message-error {
    color: var(--red-600);
    background: var(--red-100);
}

/* Hero */

.catalog-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(
            circle at 82% 35%,
            rgba(64, 135, 242, 0.4),
            transparent 27%
        ),
        linear-gradient(
            120deg,
            var(--navy-950),
            var(--navy-800)
        );
}

.catalog-hero::after {
    position: absolute;
    top: -120px;
    right: 8%;
    width: 360px;
    height: 360px;
    content: "";
    border: 60px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.catalog-hero-content {
    position: relative;
    z-index: 1;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-label,
.section-eyebrow,
.results-label {
    display: block;
    margin-bottom: 8px;
    color: var(--orange-500);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.catalog-hero h1 {
    max-width: 760px;
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -2px;
}

.catalog-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.6;
}

.hero-badge {
    min-width: 290px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.hero-badge strong {
    font-size: 16px;
}

.hero-badge span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* Clubes */

.clubs-section {
    padding: 38px 0;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.section-heading {
    margin-bottom: 22px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.section-heading h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: 25px;
}

.clubs-list {
    display: grid;
    grid-template-columns: repeat(12, minmax(80px, 1fr));
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.club-item {
    min-width: 84px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-800);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.club-shield {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--navy-900);
    font-size: 17px;
    font-weight: 900;
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.club-shield img {
    width: 43px;
    height: 43px;
    object-fit: contain;
}

.club-item:hover .club-shield {
    border-color: var(--blue-600);
    transform: translateY(-4px);
}

/* Catálogo */

.catalog-section {
    padding: 28px 0 80px;
}

.breadcrumb {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 13px;
}

.breadcrumb a:hover {
    color: var(--blue-600);
}

.breadcrumb strong {
    color: var(--navy-900);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 255px minmax(0, 1fr);
    align-items: start;
    gap: 30px;
}

/* Filtros */

.filters {
    position: sticky;
    top: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
}

.filters-header {
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: var(--white);
    background: var(--navy-900);
}

.filters-header span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
}

.filters-header h2 {
    margin: 0;
    font-size: 21px;
}

.filters-header a {
    color: var(--orange-500);
    font-size: 11px;
    font-weight: 800;
}

.filters-form details {
    border-bottom: 1px solid var(--gray-200);
}

.filters-form details:last-of-type {
    border-bottom: 0;
}

.filters-form summary {
    position: relative;
    padding: 17px 20px;
    color: var(--navy-900);
    font-size: 14px;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
}

.filters-form summary::-webkit-details-marker {
    display: none;
}

.filters-form summary::after {
    position: absolute;
    right: 20px;
    content: "+";
    color: var(--blue-600);
    font-size: 18px;
    font-weight: 500;
}

.filters-form details[open] summary::after {
    content: "−";
}

.filter-options {
    max-height: 225px;
    padding: 0 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    overflow-y: auto;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--gray-700);
    font-size: 13px;
    cursor: pointer;
}

.radio-option input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--blue-600);
}

.radio-option:hover {
    color: var(--navy-900);
}

.filter-empty {
    color: var(--gray-500);
    font-size: 12px;
    line-height: 1.45;
}

.size-filter-grid {
    padding: 0 20px 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.size-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.size-option span {
    min-height: 36px;
    display: grid;
    place-items: center;
    color: var(--gray-700);
    font-size: 12px;
    font-weight: 750;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    cursor: pointer;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.size-option input:checked + span,
.size-option span:hover {
    color: var(--white);
    border-color: var(--navy-900);
    background: var(--navy-900);
}

.price-filter {
    padding: 0 20px 18px;
    display: grid;
    gap: 12px;
}

.price-filter label {
    display: grid;
    gap: 6px;
}

.price-filter span {
    color: var(--gray-600);
    font-size: 11px;
    font-weight: 700;
}

.price-filter input {
    width: 100%;
    height: 40px;
    padding: 0 11px;
    border: 1px solid var(--gray-300);
    border-radius: 7px;
    background: var(--white);
}

.price-filter input:focus {
    border-color: var(--blue-600);
}

.apply-filters {
    width: calc(100% - 40px);
    height: 44px;
    margin: 20px;
    color: var(--white);
    font-size: 13px;
    font-weight: 850;
    border: 0;
    border-radius: 8px;
    background: var(--navy-900);
    transition: background 0.2s ease;
}

.apply-filters:hover {
    background: var(--blue-600);
}

.mobile-filter-button {
    display: none;
}

/* Barra de produtos */

.products-toolbar {
    min-height: 70px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.products-toolbar h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: 19px;
}

.ordering-form {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 700;
}

.ordering-form select {
    min-width: 175px;
    height: 42px;
    padding: 0 36px 0 13px;
    color: var(--gray-800);
    border: 1px solid var(--gray-300);
    border-radius: 7px;
    background: var(--white);
}

/* Cards */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 18px;
}

.product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: var(--white);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.product-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    aspect-ratio: 0.88;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #f0f1f3;
}

.product-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image > img {
    transform: scale(1.035);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    gap: 6px;
    color: var(--navy-900);
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            var(--white),
            var(--gray-200)
        );
}

.product-image-placeholder span {
    font-size: 32px;
    font-weight: 950;
    font-style: italic;
}

.product-image-placeholder small {
    color: var(--gray-500);
    font-size: 11px;
}

.favorite-button {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    color: var(--navy-900);
    font-size: 25px;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(6px);
}

.favorite-button:hover {
    color: var(--orange-500);
}

.product-badges {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-badges span {
    padding: 5px 9px;
    color: var(--white);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-radius: 999px;
    background: var(--navy-900);
}

.product-badges span + span {
    color: var(--navy-900);
    background: var(--white);
}

.product-content {
    padding: 16px 11px 13px;
}

.product-category {
    display: block;
    margin-bottom: 7px;
    color: var(--gray-500);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-content h3 {
    min-height: 44px;
    margin: 0 0 9px;
    color: var(--gray-800);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.product-content h3 a:hover {
    color: var(--blue-600);
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 750;
}

.availability::before {
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 50%;
    background: currentColor;
}

.availability.available {
    color: var(--green-600);
}

.availability.unavailable {
    color: var(--red-600);
}

.product-price {
    min-height: 54px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.product-price strong {
    color: var(--navy-900);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.product-price span {
    color: var(--green-600);
    font-size: 10px;
    font-weight: 700;
}

.card-sizes {
    min-height: 34px;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}

.card-sizes span {
    min-width: 32px;
    height: 30px;
    padding: 0 7px;
    display: grid;
    place-items: center;
    color: var(--gray-700);
    font-size: 10px;
    font-weight: 800;
    border: 1px solid var(--gray-300);
    border-radius: 5px;
}

.product-button {
    width: 100%;
    min-height: 43px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 12px;
    font-weight: 850;
    border: 1px solid var(--navy-900);
    border-radius: 7px;
    background: var(--navy-900);
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.product-button:hover {
    color: var(--navy-900);
    background: var(--white);
}

.product-button.disabled {
    color: var(--gray-500);
    border-color: var(--gray-300);
    background: var(--gray-100);
}

/* Catálogo vazio */

.empty-products {
    grid-column: 1 / -1;
    min-height: 390px;
    padding: 55px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-align: center;
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
}

.empty-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    font-size: 32px;
    border-radius: 50%;
    background: var(--blue-100);
}

.empty-products h3 {
    margin: 0 0 8px;
    color: var(--navy-900);
    font-size: 23px;
}

.empty-products p {
    max-width: 480px;
    margin: 0 0 22px;
    line-height: 1.6;
}

.empty-products a {
    padding: 12px 20px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    border-radius: 8px;
    background: var(--navy-900);
}

/* Paginação */

.pagination {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--gray-600);
    font-size: 13px;
}

.pagination a {
    padding: 10px 15px;
    color: var(--navy-900);
    font-weight: 800;
    border: 1px solid var(--gray-300);
    border-radius: 7px;
    background: var(--white);
}

.pagination a:hover {
    color: var(--white);
    border-color: var(--navy-900);
    background: var(--navy-900);
}

/* Rodapé */

.footer {
    color: rgba(255, 255, 255, 0.72);
    background: var(--navy-950);
}

.footer-grid {
    padding-top: 60px;
    padding-bottom: 45px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 55px;
}

.footer-logo {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 25px;
    font-weight: 900;
}

.footer h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 14px;
}

.footer p {
    max-width: 340px;
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}

.footer section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer section a {
    margin-bottom: 10px;
    font-size: 13px;
}

.footer section a:hover {
    color: var(--white);
}

.footer-bottom {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */

@media (max-width: 1240px) {
    .header-main {
        grid-template-columns: 160px 1fr auto;
        gap: 20px;
    }

    .header-actions {
        gap: 14px;
    }

    .header-action > span:last-child:not(.cart-count) {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .topbar-content > span {
        display: none;
    }

    .topbar-content {
        justify-content: center;
    }

    .header-main {
        min-height: auto;
        padding-top: 18px;
        padding-bottom: 18px;
        grid-template-columns: 1fr auto;
    }

    .search-form {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .catalog-hero-content {
        min-height: 230px;
    }

    .hero-badge {
        display: none;
    }

    .catalog-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .topbar-links {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        overflow-x: auto;
    }

    .topbar-links a {
        flex: 0 0 auto;
    }

    .header-main {
        grid-template-columns: 1fr auto;
    }

    .logo-rhh3 {
        font-size: 27px;
    }

    .header-actions {
        gap: 13px;
    }

    .header-action {
        min-width: auto;
    }

    .navigation-content {
        justify-content: flex-start;
    }

    .catalog-hero-content {
        min-height: 210px;
    }

    .catalog-hero h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .catalog-hero p {
        font-size: 15px;
    }

    .mobile-filter-button {
        margin-bottom: 18px;
        display: block;
    }

    .mobile-filter-button button {
        width: 100%;
        height: 46px;
        color: var(--white);
        font-size: 13px;
        font-weight: 800;
        border: 0;
        border-radius: 8px;
        background: var(--navy-900);
    }

    .catalog-layout {
        display: block;
    }

    .filters {
        position: static;
        display: none;
        margin-bottom: 24px;
    }

    .filters.filters-open {
        display: block;
    }

    .products-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .ordering-form {
        width: 100%;
        justify-content: space-between;
    }

    .ordering-form select {
        flex: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .topbar-links a:nth-child(2) {
        display: none;
    }

    .header-actions {
        gap: 17px;
    }

    .search-form button {
        padding: 0 15px;
    }

    .catalog-hero h1 {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .product-image {
        aspect-ratio: 1 / 1.08;
    }

    .product-content h3 {
        min-height: auto;
    }

    .clubs-list {
        grid-template-columns: repeat(12, 78px);
    }
}
/* Integração dos botões de favoritos */
.product-favorite-form {
    margin: 0;
}

.favorite-button {
    text-decoration: none;
}

.favorite-button.favorited {
    color: #ff641f;
    background: #fff3ed;
}
