/* AutoPneus Store - Front Styles */
:root {
    --primary: #1A235A;
    --secondary: #FDB515;
    --accent: var(--secondary);
    --header-blue: #1A235A;
    --primary-rgb: 26, 35, 90;
    --secondary-rgb: 253, 181, 21;
    --on-primary: #fff;
    --on-secondary: #1a1a1a;
    --theme-primary-hover: color-mix(in srgb, var(--primary) 86%, #000);
    --theme-secondary-hover: color-mix(in srgb, var(--secondary) 86%, #000);
    --theme-primary-soft: rgba(var(--primary-rgb), 0.12);
    --theme-secondary-soft: rgba(var(--secondary-rgb), 0.16);
    --font-primary: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --bs-body-font-family: var(--font-primary);
    --bs-primary: var(--primary);
    --bs-primary-rgb: var(--primary-rgb);
    --bs-secondary: var(--secondary);
    --bs-secondary-rgb: var(--secondary-rgb);
    --header-topbar-bg: #ffffff;
    --header-topbar-text: #555555;
    --header-bg: #ffffff;
    --header-text: #2b2b2b;
    --nav-bg: #1c1c1c;
    --nav-text: #ffffff;
    --nav-hover: var(--secondary);
    --nav-hover-bg: rgba(255, 255, 255, 0.10);
    --footer-bg: #ffffff;
    --footer-text: #888888;
    --footer-title: #1f1f1f;
    --footer-link-hover: var(--primary);
    --body-bg: #ffffff;
    --body-text: #333333;
    --link-color: var(--primary);
    --border-color: #ececec;
    --search-bg: #f1f1f1;
    --search-text: #444444;
    --cart-badge-bg: var(--secondary);
    --cart-badge-text: #1a1a1a;
    --nav-dropdown-hover-bg: #f5f7fb;
    --nav-dropdown-hover-text: var(--primary);
    --product-title-color: #555555;
    --price-color: #1a1a1a;
    --price-muted-color: #9b9b9b;
    --price-sale-color: #ee4266;
    --badge-discount-bg: #ee4266;
    --badge-discount-text: #ffffff;
    --pix-color: #00a868;
    --newsletter-bg: var(--primary);
    --newsletter-text: #ffffff;
    --newsletter-btn-color: var(--primary);
    --surface-bg: #ffffff;
    --card-bg: #ffffff;
    --input-bg: #ffffff;
    --input-text: #333333;
    --input-border: #e2e2e2;
    --button-primary-bg: var(--primary);
    --button-primary-text: var(--on-primary);
    --button-primary-hover: var(--theme-primary-hover);
    --button-secondary-bg: var(--secondary);
    --button-secondary-text: var(--on-secondary);
    --button-secondary-hover: var(--theme-secondary-hover);
    --cart-checkout-bg: #ffffff;
    --cart-checkout-card-bg: #ffffff;
    --cart-checkout-text: #1a1a1a;
    --cart-checkout-muted: #9aa0a6;
}

.product-review-summary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.product-review-summary-link:hover {
    color: var(--bs-primary);
}

.product-review-stars {
    display: inline-flex;
    gap: 2px;
    color: #f5a524;
    white-space: nowrap;
}

.product-review-rating-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-review-rating-stars {
    display: inline-flex;
    gap: 6px;
}

.product-review-rating-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: #dcdee2;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}

.product-review-rating-star:hover,
.product-review-rating-star.is-hover {
    color: #f5a524;
    transform: scale(1.05);
}

.product-review-rating-star.is-active {
    color: #f5a524;
}

.product-review-rating-label {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.product-reviews-section {
    margin-top: 48px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.product-reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ededed;
}

.product-reviews-kicker {
    display: block;
    margin-bottom: 6px;
    color: #9aa0a6;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-reviews-header h2 {
    margin: 0;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.product-reviews-score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    color: #9aa0a6;
    font-size: 12px;
}

.product-reviews-score strong {
    color: #1a1a1a;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}

.product-review-form-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.product-review-form-card .form-label {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.product-review-form-card .form-control {
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
    transition: border-color 0.15s ease;
}

.product-review-form-card .form-control:focus {
    border-color: #bdbdbd;
    box-shadow: none;
}

.product-review-form-card .btn-primary {
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    background: #1a1a1a;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.product-review-form-card .btn-primary:hover,
.product-review-form-card .btn-primary:focus {
    background: #333;
    border-color: #333;
}

.product-review-state {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 18px 20px;
    border: 1px solid #ededed;
    border-radius: 6px;
    background: #fafafa;
}

.product-review-state i {
    color: #1a1a1a;
    font-size: 22px;
}

.product-review-state strong,
.product-review-state span {
    display: block;
}

.product-review-state strong {
    color: #1a1a1a;
    font-weight: 600;
}

.product-review-state span {
    color: #9aa0a6;
    font-size: 13px;
}

.product-review-list {
    display: grid;
    gap: 0;
}

.product-review-item {
    padding: 22px 4px;
    border: 0;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    background: transparent;
}

.product-review-item:first-child {
    padding-top: 0;
}

.product-review-item:last-child {
    border-bottom: 0;
}

.product-review-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.product-review-item-head strong,
.product-review-item-head span {
    display: block;
}

.product-review-item-head strong {
    color: #1a1a1a;
    font-weight: 600;
}

.product-review-item-head span {
    color: #9aa0a6;
    font-size: 12px;
}

.product-review-item p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.65;
}

.product-review-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 56px 24px;
    border: 1px solid #ededed;
    border-radius: 6px;
    background: #fafafa;
    color: #9aa0a6;
    text-align: center;
}

.product-review-empty i {
    color: #c9ccd1;
    font-size: 30px;
}

.product-review-empty strong {
    color: #1a1a1a;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .product-reviews-section {
        margin-top: 36px;
    }

    .product-reviews-header,
    .product-review-item-head {
        flex-direction: column;
    }

    .product-reviews-header {
        align-items: flex-start;
    }

    .product-reviews-score {
        align-items: flex-start;
    }
}

/* Customer account */
.customer-account-page {
    padding: 34px 0 56px;
    background: #f6f7fb;
}

.customer-account-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    padding: 22px;
    border: 1px solid #e5eaf3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18, 28, 54, 0.06);
}

.customer-account-profile {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 16px;
}

.customer-account-profile img,
.customer-profile-photo img {
    border-radius: 50%;
    object-fit: cover;
}

.customer-account-profile img {
    width: 78px;
    height: 78px;
    border: 4px solid #f3f6fb;
}

.customer-account-profile span {
    display: block;
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.customer-account-profile h1 {
    margin: 2px 0 4px;
    color: var(--primary);
    font-size: 1.65rem;
    font-weight: 700;
}

.customer-account-profile p {
    margin: 0;
    color: #667085;
}

.customer-account-stats {
    display: flex;
    gap: 12px;
}

.customer-account-tabs-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding: 6px;
    border: 1px solid #e5eaf3;
    border-radius: 8px;
    background: #fff;
}

.customer-account-logout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #d4dae5;
    border-radius: 6px;
    background: #fff;
    color: #17213a;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.customer-account-logout:hover,
.customer-account-logout:focus {
    border-color: #d63638;
    background: #fff5f5;
    color: #b32d2e;
    text-decoration: none;
}

.customer-account-stats div {
    min-width: 112px;
    padding: 14px 16px;
    border: 1px solid #e5eaf3;
    border-radius: 8px;
    background: #f8fafc;
}

.customer-account-stats strong,
.customer-account-stats span {
    display: block;
}

.customer-account-stats strong {
    color: var(--primary);
    font-size: 1.35rem;
}

.customer-account-stats span {
    color: #667085;
    font-size: 0.82rem;
}

.customer-account-tabs {
    gap: 8px;
    margin-bottom: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    flex: 1;
    min-width: 0;
}

.customer-account-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    border: 0;
    border-radius: 6px;
    color: #44506a;
    font-weight: 600;
}

.customer-account-tabs .nav-link.active {
    background: var(--primary);
    color: #fff;
}

.customer-account-shortcuts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding: 8px;
    border: 1px solid #e5eaf3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18, 28, 54, 0.05);
}

.customer-account-shortcuts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.customer-account-shortcut {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #d4dae5;
    border-radius: 6px;
    background: #fff;
    color: #17213a;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.customer-account-shortcut:hover,
.customer-account-shortcut:focus,
.customer-account-shortcut.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}

.customer-account-shortcut-logout-form {
    display: contents;
}

button.customer-account-shortcut {
    font: inherit;
    cursor: pointer;
    width: auto;
}

.customer-account-shortcut--logout {
    flex-shrink: 0;
}

.customer-account-shortcut--logout:hover,
.customer-account-shortcut--logout:focus {
    border-color: #d63638;
    background: #fff5f5;
    color: #b32d2e;
}

.customer-account-content {
    min-height: 360px;
}

.customer-order-card,
.customer-account-panel,
.customer-profile-photo-card,
.customer-tracking-card,
.customer-empty-state {
    border: 1px solid #e5eaf3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18, 28, 54, 0.05);
}

.customer-orders-list {
    display: grid;
    gap: 12px;
}

.customer-order-card {
    overflow: hidden;
}

.customer-order-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.customer-order-head-info {
    display: grid;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.customer-order-head-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.customer-order-head-actions form {
    margin: 0;
}

.customer-order-meta {
    color: #9aa0a6;
    font-size: 0.8rem;
}

.customer-order-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    background: #fff;
    color: #555;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.customer-order-toggle:hover,
.customer-order-toggle:focus {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.customer-order-toggle i {
    transition: transform 0.2s ease;
}

.customer-order-toggle:not(.collapsed) i {
    transform: rotate(180deg);
}

.customer-order-body {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.customer-order-card .accordion-button {
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    box-shadow: none;
}

.customer-order-main,
.customer-order-summary {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-order-main {
    min-width: 0;
    flex: 1;
}

.customer-order-main strong {
    color: var(--primary);
    font-size: 1.05rem;
}

.customer-order-main small,
.customer-order-info span,
.customer-tracking-code span {
    color: #667085;
    font-size: 0.82rem;
}

.customer-order-summary {
    flex: 0 0 auto;
}

.customer-order-summary > strong {
    color: #111827;
}

.customer-order-progress {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 22px;
}

.customer-order-progress div {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 7px;
    color: #98a2b3;
    font-size: 0.78rem;
    font-weight: 600;
}

.customer-order-progress span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eef2f7;
    color: #667085;
}

.customer-order-progress .is-done span {
    background: var(--primary);
    color: #fff;
}

.customer-order-progress .is-done small {
    color: var(--primary);
}

.customer-order-grid,
.customer-profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
}

.customer-order-grid h3,
.customer-account-panel h2 {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
}

.customer-order-items {
    display: grid;
    gap: 10px;
}

.customer-order-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #edf1f7;
    border-radius: 8px;
    background: #fbfcfe;
}

.customer-order-item strong,
.customer-order-item small {
    display: block;
}

.customer-order-item small {
    color: #667085;
}

.customer-order-info,
.customer-order-total {
    display: grid;
    gap: 4px;
    margin-bottom: 12px;
    padding: 13px;
    border: 1px solid #edf1f7;
    border-radius: 8px;
    background: #fbfcfe;
}

.customer-order-info strong {
    color: #111827;
}

.customer-order-info small {
    color: #667085;
}

.customer-order-total {
    grid-template-columns: 1fr auto;
}

.customer-order-total span {
    color: #667085;
}

.customer-order-total strong:last-child {
    color: var(--primary);
    font-size: 1.1rem;
}

.customer-order-footer,
.admin-email-test-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.customer-order-footer form {
    margin: 0;
}

.customer-order-detail-actions form {
    margin: 0;
}

.customer-profile-layout {
    align-items: start;
    grid-template-columns: 300px minmax(0, 1fr);
}

.customer-profile-photo-card,
.customer-account-panel {
    padding: 20px;
}

.customer-profile-photo {
    position: relative;
    width: 148px;
    height: 148px;
    margin: 0 auto 18px;
}

.customer-profile-photo img {
    width: 148px;
    height: 148px;
    border: 5px solid #f3f6fb;
}

.customer-profile-photo .app-file-remove {
    position: absolute;
    right: 4px;
    bottom: 4px;
}

.customer-profile-photo.is-removing img {
    opacity: 0.35;
    filter: grayscale(1);
}

.customer-profile-photo .app-file-remove.is-active .app-file-remove-btn {
    background: #dc2626;
    color: #fff;
}

.customer-profile-sections {
    display: grid;
    gap: 16px;
}

.customer-profile-save {
    justify-self: end;
}

.customer-account-page .app-file-field {
    position: relative;
}

.customer-account-page .app-file-field-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.customer-account-page .app-file-field-box {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 88px;
    padding: 14px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    cursor: pointer;
}

.customer-account-page .app-file-field-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #eef2ff;
    color: var(--primary);
    flex: 0 0 auto;
}

.customer-account-page .app-file-field-body {
    display: grid;
    min-width: 0;
}

.customer-account-page .app-file-field-title {
    color: var(--primary);
    font-size: 0.88rem;
}

.customer-account-page .app-file-field-name,
.customer-account-page .app-file-field-hint {
    color: #667085;
    font-size: 0.78rem;
}

.customer-account-page .app-file-field-btn,
.customer-account-page .app-file-current {
    display: none;
}

.customer-account-page .app-file-remove-btn {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #fee2e2;
    border-radius: 50%;
    background: #fff;
    color: #dc2626;
}

.customer-account-page .app-file-remove-input {
    position: absolute;
    opacity: 0;
}

.customer-tracking-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.customer-tracking-card {
    padding: 18px;
}

.customer-tracking-head,
.customer-tracking-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.customer-tracking-head span {
    display: block;
    color: #667085;
    font-size: 0.82rem;
}

.customer-tracking-head strong,
.customer-tracking-code strong {
    color: var(--primary);
}

.customer-tracking-code {
    margin: 16px 0;
    padding: 13px;
    border-radius: 8px;
    background: #f8fafc;
}

.customer-tracking-timeline {
    display: grid;
    gap: 10px;
}

.customer-tracking-timeline div {
    display: grid;
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 10px;
}

.customer-tracking-timeline div > span {
    width: 10px;
    height: 10px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--secondary);
}

.customer-tracking-timeline p {
    margin: 0;
}

.customer-tracking-timeline small {
    display: block;
    color: #667085;
}

.customer-empty-state {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 44px 20px;
    text-align: center;
}

.customer-empty-state i {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #eef2ff;
    color: var(--primary);
    font-size: 1.6rem;
}

.customer-empty-state h2 {
    margin: 0;
    color: var(--primary);
    font-size: 1.25rem;
}

.customer-empty-state p {
    max-width: 460px;
    margin: 0;
    color: #667085;
}

.tracking-page {
    padding: 36px 0 56px;
}

.tracking-page-head {
    margin-bottom: 22px;
}

.tracking-page-head h1 {
    margin: 0 0 6px;
    color: var(--header-blue);
    font-size: 1.6rem;
    font-weight: 700;
}

.tracking-page-head p {
    margin: 0;
    color: #667085;
}

.tracking-page-search {
    max-width: 560px;
    margin-bottom: 24px;
    padding: 22px;
    border-radius: 8px;
}

.tracking-page-form-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.tracking-page-submit {
    min-width: 120px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.tracking-page-alert {
    max-width: 560px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tracking-page-result {
    max-width: 720px;
}

@media (max-width: 575.98px) {
    .tracking-page-form-row {
        grid-template-columns: 1fr;
    }
}

.customer-order-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
    padding: 22px;
    border: 1px solid #e5eaf3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18, 28, 54, 0.06);
}

.customer-order-detail-header span {
    display: block;
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.customer-order-detail-header h1 {
    margin: 2px 0 4px;
    color: var(--primary);
    font-size: 1.65rem;
    font-weight: 700;
}

.customer-order-detail-header p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #667085;
}

.customer-order-detail-actions,
.customer-order-local-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.customer-order-detail-actions {
    justify-content: flex-end;
}

.customer-order-local-nav {
    margin-bottom: 18px;
    padding: 8px;
    border: 1px solid #e5eaf3;
    border-radius: 8px;
    background: #fff;
}

.customer-order-local-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 6px;
    color: #44506a;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.customer-order-local-nav a:hover,
.customer-order-local-nav a:focus {
    background: #eef2ff;
    color: var(--primary);
}

.customer-order-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 18px;
    align-items: start;
}

.customer-order-detail-side {
    display: grid;
    gap: 18px;
}

.customer-order-detail-item-list {
    display: grid;
    gap: 12px;
}

.customer-order-detail-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid #edf1f7;
    border-radius: 8px;
    background: #fbfcfe;
}

.customer-order-detail-item img,
.customer-order-detail-item-placeholder {
    width: 74px;
    height: 74px;
    border: 1px solid #e5eaf3;
    border-radius: 8px;
    background: #fff;
}

.customer-order-detail-item img {
    object-fit: contain;
}

.customer-order-detail-item-placeholder {
    display: grid;
    place-items: center;
    color: #98a2b3;
    font-size: 1.3rem;
}

.customer-order-detail-item strong,
.customer-order-detail-item small {
    display: block;
}

.customer-order-detail-item small {
    color: #667085;
}

.customer-order-detail-item > strong:last-child {
    color: var(--primary);
    white-space: nowrap;
}

.customer-order-detail-history {
    margin-top: 4px;
}

@media (max-width: 991px) {
    .customer-account-hero,
    .customer-account-profile,
    .customer-account-stats,
    .customer-tracking-head,
    .customer-tracking-code {
        align-items: flex-start;
        flex-direction: column;
    }

    .customer-account-tabs-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .customer-account-shortcuts,
    .customer-order-detail-header {
        align-items: stretch;
        flex-direction: column;
    }

    .customer-account-shortcuts-list,
    .customer-order-detail-actions,
    .customer-order-detail-actions .btn,
    .customer-order-detail-actions form {
        width: 100%;
    }

    .customer-account-shortcut,
    .customer-order-detail-actions .btn,
    .customer-order-detail-actions button {
        width: 100%;
    }

    .customer-account-logout {
        width: 100%;
        justify-content: center;
    }

    .customer-account-stats {
        width: 100%;
        flex-direction: row;
    }

    .customer-account-stats div {
        flex: 1;
    }

    .customer-order-grid,
    .customer-profile-layout,
    .customer-tracking-list,
    .customer-order-detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .customer-account-page {
        padding-top: 22px;
    }

    .customer-account-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        width: 100%;
    }

    .customer-account-tabs .nav-link {
        white-space: nowrap;
    }

    .customer-order-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .customer-order-head-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .customer-order-head-actions .customer-account-btn,
    .customer-order-head-actions form,
    .customer-order-head-actions button {
        flex: 1 1 auto;
    }

    .customer-order-card .accordion-button,
    .customer-order-summary,
    .customer-order-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .customer-order-progress {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .customer-order-progress div {
        grid-template-columns: 30px minmax(0, 1fr);
        justify-items: start;
    }

    .customer-order-item {
        grid-template-columns: 1fr;
    }

    .customer-order-detail-item {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .customer-order-detail-item img,
    .customer-order-detail-item-placeholder {
        width: 64px;
        height: 64px;
    }

    .customer-order-detail-item > strong:last-child {
        grid-column: 1 / -1;
        justify-self: end;
    }

    .customer-order-local-nav a {
        width: 100%;
    }

    .customer-profile-save,
    .customer-order-footer .btn,
    .customer-order-footer form {
        width: 100%;
    }
}

body.site-body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: clip;
}

.site-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    background: var(--body-bg);
    color: var(--body-text);
}

.site-main {
    flex: 1;
    width: 100%;
    background: var(--body-bg);
}

/* Header: fundo full, conteúdo alinhado ao .container do site */
.site-header-band {
    width: 100%;
    flex-shrink: 0;
    z-index: 1030;
    overflow: visible;
}

.site-header {
    width: 100%;
    background: var(--header-bg);
    overflow: visible;
}
.bg-primary { background-color: var(--primary) !important; }
.text-primary { color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.text-secondary { color: var(--secondary) !important; }
.btn-primary { background-color: var(--button-primary-bg); border-color: var(--button-primary-bg); color: var(--button-primary-text); }
.btn-primary:hover { background-color: var(--button-primary-hover); border-color: var(--button-primary-hover); color: var(--button-primary-text); }
.btn-outline-primary { color: var(--header-blue); border-color: var(--header-blue); }
.btn-outline-primary:hover { background-color: var(--header-blue); color: var(--on-primary); }
.btn-secondary { background-color: var(--button-secondary-bg); border-color: var(--button-secondary-bg); color: var(--button-secondary-text); }
.btn-secondary:hover { background-color: var(--button-secondary-hover); border-color: var(--button-secondary-hover); color: var(--button-secondary-text); }
.btn-outline-secondary { color: var(--secondary); border-color: var(--secondary); }
.btn-outline-secondary:hover { background-color: var(--secondary); border-color: var(--secondary); color: var(--on-secondary); }

/* ========== HEADER LIMPO (ch-) ========== */
.ch-band {
    width: 100%;
    z-index: 1030;
}

/* Barra utilitaria (contatos + redes sociais) */
.ch-utility {
    background: var(--header-topbar-bg);
    border-bottom: 1px solid color-mix(in srgb, var(--header-topbar-text) 16%, transparent);
    font-size: 0.76rem;
    color: var(--header-topbar-text);
}

.ch-utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 38px;
}

.ch-utility-contacts {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.ch-utility-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--header-topbar-text);
    text-decoration: none;
    transition: color 0.2s;
}

.ch-utility-item:hover {
    color: var(--link-color);
}

.ch-utility-item i {
    font-size: 0.85rem;
}

/* Rastreio rapido (hover) */
.ch-tracking-wrap {
    position: relative;
}

.ch-tracking-wrap::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
}

.ch-tracking-trigger {
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.ch-tracking-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 1040;
    width: 260px;
    padding: 18px 16px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.ch-tracking-panel::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
    transform: translateX(-50%) rotate(45deg);
}

.ch-tracking-wrap:hover .ch-tracking-panel,
.ch-tracking-wrap:focus-within .ch-tracking-panel,
.ch-tracking-wrap.is-open .ch-tracking-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.ch-tracking-panel-title {
    margin: 0 0 12px;
    color: #333;
    font-size: 0.92rem;
    font-weight: 500;
}

.ch-tracking-form {
    display: grid;
    gap: 10px;
}

.ch-tracking-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d8d8d8;
    border-radius: 2px;
    font-size: 0.86rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s ease;
}

.ch-tracking-input:focus {
    border-color: var(--header-blue);
}

.ch-tracking-input::placeholder {
    color: #aaa;
}

.ch-tracking-submit {
    width: 100%;
    padding: 11px 14px;
    border: 0;
    border-radius: 2px;
    background: var(--nav-bg);
    color: var(--nav-text);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.ch-tracking-submit:hover {
    background: var(--primary);
    color: var(--on-primary);
}

/* Mensagens promocionais animadas */
.ch-promo-ticker {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
    max-width: 52%;
}

.ch-promo-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    min-height: 1.35em;
}

.ch-promo-track {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ch-promo-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 12px;
    color: var(--header-topbar-text);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.ch-promo-item.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ch-promo-item.is-exit {
    opacity: 0;
    transform: translateY(-10px);
}

.ch-utility-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ch-utility-social a {
    color: var(--header-topbar-text);
    font-size: 0.95rem;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
}

.ch-utility-social a:hover {
    color: var(--link-color);
    transform: translateY(-1px);
}

/* Cabecalho principal */
.ch-header {
    background: var(--header-bg);
}

.ch-header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 92px;
}

/* Logo */
.ch-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.ch-logo-img {
    max-height: 60px;
    max-width: 210px;
    width: auto;
    object-fit: contain;
}

.ch-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.ch-logo-name {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--header-blue);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.ch-logo-tagline {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #9aa0ad;
}

/* Busca central grande */
.ch-search {
    flex: 1 1 auto;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: var(--search-bg);
    border: 1px solid color-mix(in srgb, var(--border-color) 90%, transparent);
    border-radius: 999px;
    overflow: hidden;
}

.ch-search-input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 11px 20px;
    font-size: 0.86rem;
    color: var(--search-text);
}

.ch-search-input::placeholder {
    color: color-mix(in srgb, var(--search-text) 55%, transparent);
}

.ch-search-btn {
    border: 0;
    background: transparent;
    color: var(--search-text);
    padding: 0 16px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: color 0.2s;
}

.ch-search-btn:hover {
    color: var(--link-color);
}

/* Acoes (conta + carrinho) */
.ch-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.ch-account {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--header-text);
    text-decoration: none;
    transition: color 0.2s;
}

.ch-account:hover {
    color: var(--link-color);
}

.ch-account > i {
    font-size: 1.5rem;
}

.ch-account-avatar {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
}

.ch-account-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ch-account-label {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.ch-account-label small {
    font-size: 0.62rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ch-account-label strong {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ch-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--header-blue);
    font-size: 1.6rem;
    text-decoration: none;
    transition: color 0.2s;
}

.ch-cart:hover {
    color: var(--theme-primary-hover);
}

.ch-cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--cart-badge-bg);
    color: var(--cart-badge-text);
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1;
}

/* Barra de navegacao */
.ch-navbar {
    background: var(--nav-bg);
}

.ch-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.ch-nav-item {
    position: relative;
}

.ch-nav-link {
    display: inline-block;
    padding: 13px 16px;
    color: var(--nav-text);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.ch-nav-link:hover,
.ch-nav-link.show {
    color: var(--nav-hover);
    background: var(--nav-hover-bg);
}

.ch-nav-link.dropdown-toggle::after {
    display: none;
}

.ch-nav-dropdown {
    --bs-dropdown-spacer: 0;
    border: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    margin-top: 0;
    padding: 8px 0;
}

.ch-nav-dropdown .dropdown-item {
    font-size: 0.85rem;
    padding: 8px 18px;
}

.ch-nav-dropdown .dropdown-item:hover {
    background: var(--nav-dropdown-hover-bg);
    color: var(--nav-dropdown-hover-text);
}

@media (min-width: 992px) {
    .ch-nav-item.dropdown:hover > .ch-nav-dropdown,
    .ch-nav-item.dropdown:focus-within > .ch-nav-dropdown {
        display: block;
    }
}

/* Mobile */
.ch-menu-toggle {
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    color: var(--header-blue);
    font-size: 1.6rem;
    padding: 4px 8px;
    line-height: 1;
}

.ch-mobile-nav {
    background: var(--nav-bg);
}

.ch-mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.ch-mobile-nav-link {
    display: block;
    padding: 11px 4px;
    color: var(--nav-text);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.ch-mobile-subnav {
    list-style: none;
    margin: 0;
    padding: 0 0 8px;
}

.ch-mobile-subnav a {
    display: block;
    padding: 7px 16px;
    color: color-mix(in srgb, var(--nav-text) 70%, transparent);
    font-size: 0.83rem;
    text-decoration: none;
}

.ch-mobile-subnav a:hover {
    color: var(--nav-hover);
}

@media (max-width: 991.98px) {
    .ch-header-inner {
        flex-wrap: wrap;
        gap: 12px;
        min-height: auto;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .ch-logo {
        margin-right: auto;
    }

    .ch-logo-name {
        font-size: 1.35rem;
    }

    .ch-logo-img {
        max-height: 46px;
    }

    .ch-search {
        order: 3;
        flex: 1 0 100%;
        max-width: none;
        margin: 0;
    }

    .ch-actions {
        gap: 14px;
        padding-right: 12px;
    }

    .ch-account-label {
        display: none;
    }
}

/* ========== HEADER ESTILO E-COMMERCE AUTOMOTIVO ========== */

.topbar-utility {
    width: 100%;
    background: var(--accent);
    color: var(--on-secondary);
    font-size: 0.72rem;
    letter-spacing: 0.02em;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 7px 0;
    box-sizing: border-box;
}

.topbar-promo { line-height: 1.3; flex: 1; min-width: 0; }

.topbar-links { gap: 24px; flex-shrink: 0; }

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.68rem;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.topbar-link:hover { color: #000; opacity: 0.8; }
.topbar-link i { font-size: 0.95rem; }

.header-main {
    width: 100%;
    background: #fff;
    overflow: visible;
}

/* Grid: logo à esquerda (altura total) | busca em cima + menu embaixo à direita */
.header-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "logo actions"
        "logo nav";
    width: 100%;
    overflow: visible;
}

.header-logo-panel {
    grid-area: logo;
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
    background: transparent;
    padding: 14px 36px 14px 0;
    padding-left: calc(50vw - 50%);
    margin-left: calc(50% - 50vw);
    text-decoration: none;
    min-width: 260px;
    box-sizing: border-box;
    z-index: 2;
    isolation: isolate;
}

.header-logo-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: calc(100% + 40px);
    background: var(--header-blue);
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
    z-index: 0;
    pointer-events: none;
}

.header-logo-img {
    position: relative;
    z-index: 1;
    max-height: 72px;
    max-width: 240px;
    width: auto;
    object-fit: contain;
}

.header-logo-text {
    position: relative;
    z-index: 1;
    color: #fff;
    line-height: 1.2;
}

.header-logo-text .logo-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.header-logo-text .logo-tagline {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    margin-top: 2px;
}

.header-actions-row {
    grid-area: actions;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    gap: 18px;
    padding: 16px 0 12px 44px;
    min-width: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
}

.header-search-form {
    flex: 1;
    min-width: 0;
    max-width: none;
    align-self: center;
}

.header-search-wrap {
    display: flex;
    align-items: stretch;
    width: 100%;
    border: 1px solid #c5cad6;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.header-search-input {
    flex: 1;
    border: none;
    padding: 9px 14px;
    font-size: 0.82rem;
    color: #555;
    outline: none;
    min-width: 0;
}

.header-search-input::placeholder {
    color: #9aa0ad;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

.header-search-btn {
    border: none;
    background: transparent;
    padding: 0 14px;
    color: var(--header-blue);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s;
}

.header-search-btn:hover { color: var(--accent); }

.header-user {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
}

.header-user-account {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 5px 10px 5px 5px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.header-user-account:hover,
.header-user-account:focus-visible {
    background: #f5f7ff;
    border-color: rgba(var(--primary-rgb), 0.16);
    text-decoration: none;
}

.header-user-account:hover .header-user-account-label,
.header-user-account:focus-visible .header-user-account-label {
    color: var(--header-blue);
}

.header-user-greeting {
    display: block;
    color: var(--header-blue);
    font-weight: 800;
}

.header-user-account-label {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-top: 1px;
    color: #666;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
}

.header-user-account-label .bi {
    font-size: 0.62rem;
    line-height: 1;
}

.header-user-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 2px solid var(--header-blue);
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.header-user-icon-wrap.has-avatar {
    border-width: 1px;
}

.header-user-icon-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-user-icon {
    font-size: 1.15rem;
    color: var(--header-blue);
    line-height: 1;
}

.header-user-text {
    font-size: 0.68rem;
    color: #444;
    line-height: 1.35;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.header-user-link {
    color: var(--header-blue);
    text-decoration: none;
}

.header-user-link:hover { text-decoration: underline; color: var(--header-blue); }

.auth-drawer-open {
    overflow: hidden;
}

.auth-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1080;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.auth-drawer-overlay.open {
    opacity: 1;
}

.auth-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1081;
    width: min(390px, 100vw);
    height: 100vh;
    background: #fff;
    color: var(--primary);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
}

.auth-drawer.open {
    transform: translateX(0);
}

.auth-drawer-header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    min-height: 58px;
    padding: 0 18px;
    border-bottom: 1px solid #ededed;
    background: #fff;
}

.auth-drawer-icon {
    color: #1a1a1a;
    font-size: 1.2rem;
    line-height: 1;
}

.auth-drawer-title {
    margin: 0;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
}

.auth-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: auto;
    border: 1px solid #ededed;
    border-radius: 0;
    background: #fff;
    color: #1a1a1a;
    font-size: 1.05rem;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.auth-drawer-close:hover,
.auth-drawer-close:focus {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.auth-drawer-body {
    padding: 26px 26px 40px;
}

.auth-drawer-panel {
    display: none;
}

.auth-drawer-panel.active {
    display: block;
}

.auth-drawer-form {
    display: grid;
    gap: 12px;
}

.auth-drawer-input {
    width: 100%;
    min-height: 46px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    padding: 0 14px;
    color: #1a1a1a;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease;
}

.auth-drawer-input::placeholder {
    color: #9aa0a6;
}

.auth-drawer-input:focus {
    border-color: #1a1a1a;
}

.auth-drawer-forgot {
    justify-self: end;
    margin-top: 2px;
    color: #555;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s ease;
}

.auth-drawer-forgot:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

.auth-drawer-submit,
.auth-drawer-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.auth-drawer-submit {
    margin-top: 12px;
    border: 1px solid #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.auth-drawer-submit:hover,
.auth-drawer-submit:focus {
    background: #333;
    border-color: #333;
}

.auth-drawer-switch {
    margin-top: 40px;
    padding-top: 26px;
    border-top: 1px solid #ededed;
    text-align: center;
}

.auth-drawer-switch p {
    max-width: 280px;
    margin: 0 auto 14px;
    color: #555;
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.45;
}

.auth-drawer-outline {
    border: 1px solid #1a1a1a;
    background: #fff;
    color: #1a1a1a;
}

.auth-drawer-outline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.auth-drawer-outline:hover,
.auth-drawer-outline:focus {
    background: #1a1a1a;
    color: #fff;
}

.cart-drawer-open {
    overflow: hidden;
}

.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1082;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cart-drawer-overlay.open {
    opacity: 1;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1083;
    display: flex;
    flex-direction: column;
    width: min(390px, 100vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    color: var(--primary);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow: hidden;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-header {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    min-height: 58px;
    padding: 0 18px;
    border-bottom: 1px solid #ededed;
    background: #fff;
}

.cart-drawer-icon {
    color: #1a1a1a;
    font-size: 1.12rem;
    line-height: 1;
}

.cart-drawer-title {
    margin: 0;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
}

.cart-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: auto;
    border: 1px solid #ededed;
    border-radius: 0;
    background: #fff;
    color: #1a1a1a;
    font-size: 1.05rem;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.cart-drawer-close:hover,
.cart-drawer-close:focus {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.cart-drawer-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.cart-drawer-list {
    display: grid;
    padding: 8px 22px 0;
}

.cart-drawer-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-drawer-item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid #ededed;
    border-radius: 0;
    background: #fafafa;
    overflow: hidden;
}

.cart-drawer-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-drawer-item-info {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.cart-drawer-item-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 8px;
    align-items: start;
}

.cart-drawer-item-title {
    display: -webkit-box;
    overflow: hidden;
    color: #1a1a1a;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart-drawer-item-title:hover {
    color: #555;
}

.cart-drawer-remove-form {
    margin: 0;
}

.cart-drawer-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #9aa0a6;
    font-size: 0.9rem;
    line-height: 1;
    transition: color 0.15s ease;
}

.cart-drawer-remove:hover,
.cart-drawer-remove:focus {
    background: transparent;
    color: #1a1a1a;
}

.cart-drawer-item-variation,
.cart-drawer-item-meta span {
    display: block;
    color: #9aa0a6;
    font-size: 0.8rem;
    line-height: 1.2;
}

.cart-drawer-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cart-drawer-item-price {
    color: #555;
    font-size: 0.84rem;
    font-weight: 500;
    white-space: nowrap;
}

.cart-drawer-empty {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 48px 26px;
    text-align: center;
}

.cart-drawer-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #1a1a1a;
    font-size: 3.4rem;
    line-height: 1;
}

.cart-drawer-empty strong {
    color: #1a1a1a;
    font-size: 0.98rem;
    font-weight: 600;
}

.cart-drawer-empty p {
    margin: 0 0 8px;
    color: #9aa0a6;
    font-size: 0.86rem;
    line-height: 1.45;
}

.cart-drawer-footer {
    display: grid;
    gap: 10px;
    padding: 20px 22px 28px;
    border-top: 1px solid #ededed;
    background: #fff;
}

.cart-drawer-total-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cart-drawer-total-line strong {
    color: #1a1a1a;
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.cart-drawer-total-line--muted {
    margin-bottom: 0;
    color: #9aa0a6;
    font-size: 0.82rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.cart-drawer-total-line--muted strong {
    color: #9aa0a6;
    font-size: 0.84rem;
    font-weight: 500;
}

.cart-drawer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cart-drawer-button--primary {
    border: 1px solid #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.cart-drawer-button--primary:hover,
.cart-drawer-button--primary:focus {
    border-color: #333;
    background: #333;
    color: #fff;
}

.cart-drawer-button--outline {
    border: 1px solid #1a1a1a;
    background: #fff;
    color: #1a1a1a;
}

.cart-drawer-button--outline:hover,
.cart-drawer-button--outline:focus {
    background: #1a1a1a;
    color: #fff;
}

.customer-register-page {
    padding: 42px 0 76px;
    background: #fff;
}

.customer-register-heading {
    max-width: 760px;
    margin: 0 auto 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ededed;
    text-align: center;
    color: #1a1a1a;
}

.customer-register-heading h1 {
    margin: 0 0 8px;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.customer-register-heading p {
    margin: 0;
    color: #9aa0a6;
    font-size: 0.95rem;
    font-weight: 400;
}

.customer-type-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-top: 20px;
    border: 1px solid #e2e2e2;
}

.customer-type-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.customer-type-toggle label {
    min-width: 150px;
    padding: 11px 22px;
    border-radius: 0;
    color: #555;
    font-size: 0.86rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.customer-type-toggle label + input + label {
    border-left: 1px solid #e2e2e2;
}

.customer-type-toggle input:checked + label {
    background: #1a1a1a;
    color: #fff;
}

.customer-register-form {
    margin-top: 32px;
}

.customer-register-section h2 {
    margin: 0 0 20px;
    padding: 0 0 12px;
    border-bottom: 1px solid #ededed;
    background: transparent;
    color: #1a1a1a;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: left;
}

.customer-register-section .form-label {
    margin-bottom: 6px;
    color: #555;
    font-size: 0.82rem;
    font-weight: 500;
}

.customer-register-section .form-control,
.customer-register-section .form-select {
    min-height: 44px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    color: #1a1a1a;
    font-size: 0.92rem;
    box-shadow: none;
}

.customer-register-section .form-control:focus,
.customer-register-section .form-select:focus {
    border-color: #bdbdbd;
    box-shadow: none;
}

.customer-phone-grid {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 10px;
}

.customer-person-fields[hidden] {
    display: none !important;
}

.customer-ie-exempt {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    margin: 0;
    color: #555;
    font-size: 0.84rem;
    font-weight: 500;
}

.customer-ie-exempt input {
    width: 15px;
    height: 15px;
    accent-color: #1a1a1a;
}

.customer-cep-help-wrap {
    display: flex;
    align-items: end;
    padding-bottom: 11px;
}

.customer-cep-help {
    color: #1a1a1a;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.customer-cep-help:hover,
.customer-cep-help:focus {
    color: #555;
}

.customer-password-wrap {
    position: relative;
}

.customer-password-wrap .form-control {
    padding-right: 44px;
}

.customer-password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: #9aa0a6;
    font-size: 1.1rem;
    transform: translateY(-50%);
    cursor: pointer;
}

.customer-newsletter-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.86rem;
    font-weight: 500;
}

.customer-newsletter-check input {
    width: 15px;
    height: 15px;
    accent-color: #1a1a1a;
}

.customer-register-submit {
    width: 100%;
    min-height: 46px;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.customer-register-submit:hover,
.customer-register-submit:focus {
    background: #333;
    border-color: #333;
}

.cart-page {
    padding: 40px 0 70px;
    background: #fff;
}

.cart-page-heading {
    margin-bottom: 28px;
}

.cart-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #9aa0a6;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-page-heading h1 {
    margin: 8px 0 0;
    color: #1a1a1a;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.cart-empty-state {
    max-width: 560px;
    margin: 30px auto 0;
    padding: 56px 28px;
    border: 1px solid #ededed;
    border-radius: 6px;
    background: #fafafa;
    box-shadow: none;
    text-align: center;
}

.cart-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ededed;
    color: #1a1a1a;
    font-size: 1.7rem;
}

.cart-empty-state h2 {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 600;
}

.cart-empty-state p {
    color: #9aa0a6;
}

.cart-items-panel,
.cart-coupon-card,
.cart-summary-card {
    border: 1px solid #ededed;
    border-radius: 6px;
    background: #fff;
    box-shadow: none;
}

.cart-items-header {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) 0.65fr 0.45fr 0.75fr 42px;
    gap: 18px;
    padding: 16px 22px;
    border-bottom: 1px solid #f0f0f0;
    color: #9aa0a6;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-items-list {
    display: grid;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 0.65fr 0.45fr 0.75fr 42px;
    gap: 18px;
    align-items: center;
    padding: 20px 22px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-card:last-child {
    border-bottom: 0;
}

.cart-item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 4px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-title {
    display: -webkit-box;
    overflow: hidden;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart-item-title:hover {
    color: #555;
}

.cart-item-info small,
.cart-item-brand,
.cart-mobile-label {
    display: block;
    color: #9aa0a6;
    font-size: 0.76rem;
    font-weight: 500;
}

.cart-item-brand {
    margin-top: 5px;
    color: #9aa0a6;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cart-item-price strong,
.cart-item-subtotal strong {
    color: #555;
    font-size: 0.95rem;
    font-weight: 600;
}

.cart-item-subtotal strong {
    color: #1a1a1a;
}

.cart-mobile-label {
    display: none;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.cart-qty-form {
    margin: 0;
}

.cart-qty-input {
    width: 64px;
    height: 38px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    color: #1a1a1a;
    font-weight: 600;
    text-align: center;
}

.cart-qty-input:focus {
    border-color: #1a1a1a;
    outline: none;
}

.cart-remove-form {
    margin: 0;
}

.cart-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #ededed;
    border-radius: 0;
    background: #fff;
    color: #9aa0a6;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.cart-remove-btn:hover,
.cart-remove-btn:focus {
    border-color: #ee4266;
    background: #fff;
    color: #ee4266;
}

.cart-coupon-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-top: 18px;
    padding: 20px 22px;
}

.cart-coupon-card strong {
    display: block;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
}

.cart-coupon-card span {
    color: #9aa0a6;
    font-size: 0.78rem;
}

.cart-coupon-field {
    display: flex;
    gap: 10px;
}

.cart-coupon-field input {
    min-height: 42px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    box-shadow: none;
}

.cart-coupon-field input:focus {
    border-color: #bdbdbd;
    box-shadow: none;
}

.cart-coupon-field button {
    min-width: 104px;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    background: #fff;
    color: #1a1a1a;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.cart-coupon-field button:hover,
.cart-coupon-field button:focus {
    background: #1a1a1a;
    color: #fff;
}

.cart-summary-card {
    position: sticky;
    top: 150px;
    padding: 24px;
}

.cart-summary-card h2 {
    margin: 0 0 18px;
    color: #1a1a1a;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.cart-summary-row,
.cart-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cart-summary-row {
    padding: 9px 0;
    color: #777;
    font-size: 0.92rem;
}

.cart-summary-row strong {
    color: #1a1a1a;
    font-weight: 600;
}

.cart-summary-row--discount,
.cart-summary-row--discount strong {
    color: #00a868;
}

.cart-summary-total {
    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid #ededed;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
}

.cart-summary-total strong {
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 700;
}

.cart-primary-action,
.cart-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    border-radius: 0;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cart-primary-action {
    margin-top: 22px;
    border: 1px solid #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.cart-primary-action:hover,
.cart-primary-action:focus {
    background: #333;
    border-color: #333;
    color: #fff;
}

.cart-secondary-action {
    margin-top: 10px;
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #555;
}

.cart-secondary-action:hover,
.cart-secondary-action:focus {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.cart-summary-benefits {
    display: grid;
    gap: 9px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #ededed;
    color: #9aa0a6;
    font-size: 0.8rem;
    font-weight: 500;
}

.cart-summary-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cart-summary-benefits i {
    color: #9aa0a6;
    font-size: 1rem;
}

.checkout-page {
    padding: 34px 0 72px;
    background: linear-gradient(180deg, #f7f8fb 0%, #fff 42%);
}

.checkout-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.checkout-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-heading h1 {
    margin: 7px 0 6px;
    color: #1f2430;
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    font-weight: 600;
}

.checkout-heading p {
    max-width: 640px;
    margin: 0;
    color: #667080;
    font-size: 0.96rem;
}

.checkout-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.checkout-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #e7eaf2;
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(18, 26, 66, 0.06);
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: 24px;
    align-items: start;
}

.checkout-main {
    display: grid;
    gap: 18px;
}

.checkout-login-card,
.checkout-section-card,
.checkout-summary {
    border: 1px solid #edf0f4;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(20, 25, 50, 0.07);
}

.checkout-login-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
}

.checkout-login-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(var(--secondary-rgb), 0.16);
    color: var(--primary);
    font-size: 1.25rem;
}

.checkout-login-card > div strong,
.checkout-login-card > div span {
    display: block;
}

.checkout-login-card strong {
    color: var(--primary);
    font-size: 0.96rem;
    font-weight: 700;
}

.checkout-login-card span {
    color: #697180;
    font-size: 0.84rem;
}

.checkout-login-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid var(--primary);
    border-radius: 7px;
    color: var(--primary);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
}

.checkout-login-card a:hover,
.checkout-login-card a:focus {
    background: var(--primary);
    color: #fff;
}

.checkout-section-card {
    padding: 22px;
}

.checkout-section-header {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.checkout-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.checkout-section-header h2 {
    margin: 0;
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 700;
}

.checkout-section-header p {
    margin: 3px 0 0;
    color: #7a818d;
    font-size: 0.84rem;
}

.checkout-fields {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.checkout-field {
    grid-column: span 12;
}

.checkout-field--half {
    grid-column: span 6;
}

.checkout-field--third {
    grid-column: span 4;
}

.checkout-card-fields {
    border-top: 1px solid #e8edf5;
    padding-top: 4px;
}

.checkout-payment-result {
    border-radius: 16px;
}

.checkout-field--zip,
.checkout-field--number {
    grid-column: span 4;
}

.checkout-field--street {
    grid-column: span 8;
}

.checkout-field--complement,
.checkout-field--neighborhood {
    grid-column: span 4;
}

.checkout-field label {
    display: block;
    margin-bottom: 7px;
    color: #2c3240;
    font-size: 0.84rem;
    font-weight: 600;
}

.checkout-field .form-control {
    min-height: 44px;
    border: 1px solid #dfe4ec;
    border-radius: 8px;
    color: #202636;
    font-size: 0.93rem;
    box-shadow: none;
}

.checkout-field .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.checkout-shipping-options {
    display: grid;
    gap: 10px;
}

.checkout-shipping-empty {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px dashed #cfd5df;
    border-radius: 10px;
    background: #f8f9fc;
    color: #6b7280;
    font-size: 0.9rem;
}

.checkout-shipping-empty i {
    color: var(--primary);
    font-size: 1.15rem;
}

.checkout-shipping-option {
    position: relative;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 64px;
    padding: 12px 14px;
    border: 1px solid #e2e6ee;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.checkout-section-card.is-pickup-selected {
    border-color: rgba(var(--secondary-rgb), 0.55);
}

.checkout-shipping-option:hover {
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 10px 26px rgba(18, 26, 66, 0.08);
}

.checkout-shipping-option input {
    accent-color: var(--primary);
}

.checkout-shipping-copy strong,
.checkout-shipping-copy small {
    display: block;
}

.checkout-shipping-copy strong {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.checkout-shipping-copy small {
    color: #7a818d;
    font-size: 0.78rem;
}

.checkout-shipping-price {
    color: #1f2430;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.checkout-shipping-note {
    grid-column: 2 / -1;
    color: #7a818d;
    font-size: 0.76rem;
    font-style: normal;
    line-height: 1.35;
}

.checkout-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.checkout-payment-option {
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 74px;
    padding: 12px;
    border: 1px solid #e2e6ee;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-payment-option:hover,
.checkout-payment-option:has(input:checked) {
    border-color: var(--primary);
    box-shadow: 0 10px 26px rgba(18, 26, 66, 0.08);
}

.checkout-payment-option input {
    position: absolute;
    top: 10px;
    right: 10px;
    accent-color: var(--primary);
}

.checkout-payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f4f6fb;
    color: var(--primary);
    font-size: 1.08rem;
}

.checkout-payment-option:has(input:checked) .checkout-payment-icon {
    background: rgba(var(--secondary-rgb), 0.18);
    color: var(--primary);
}

.checkout-payment-option strong,
.checkout-payment-option small {
    display: block;
}

.checkout-payment-option strong {
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.2;
}

.checkout-payment-option small {
    margin-top: 2px;
    color: #7a818d;
    font-size: 0.74rem;
}

.checkout-summary {
    position: sticky;
    top: 150px;
    padding: 22px;
}

.checkout-summary-header {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #edf0f4;
}

.checkout-summary-header > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 1.15rem;
}

.checkout-summary-header h2 {
    margin: 0;
    color: var(--primary);
    font-size: 1.12rem;
    font-weight: 700;
}

.checkout-summary-header p {
    margin: 2px 0 0;
    color: #7b828f;
    font-size: 0.8rem;
}

.checkout-summary-items {
    display: grid;
    max-height: 280px;
    overflow-y: auto;
    padding: 8px 0;
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f6;
}

.checkout-summary-item:last-child {
    border-bottom: 0;
}

.checkout-summary-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: #f7f8fb;
    overflow: hidden;
}

.checkout-summary-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-summary-info {
    min-width: 0;
}

.checkout-summary-info a {
    display: -webkit-box;
    overflow: hidden;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.checkout-summary-info a:hover {
    color: var(--secondary);
}

.checkout-summary-info span {
    display: block;
    margin-top: 4px;
    color: #858b96;
    font-size: 0.76rem;
}

.checkout-summary-item > strong {
    color: #363b46;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.checkout-summary-totals {
    display: grid;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid #edf0f4;
}

.checkout-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #596170;
    font-size: 0.92rem;
}

.checkout-total-row strong {
    color: #262c38;
    font-weight: 600;
}

.checkout-total-row--discount,
.checkout-total-row--discount strong {
    color: #16803d;
}

.checkout-total-row--grand {
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px solid #dfe4ec;
    color: #1f2430;
    font-size: 1.08rem;
    font-weight: 700;
}

.checkout-total-row--grand strong {
    color: var(--primary);
    font-size: 1.28rem;
    font-weight: 700;
}

.checkout-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    margin-top: 20px;
    border: 0;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.checkout-submit:hover,
.checkout-submit:focus {
    background: var(--secondary);
}

.checkout-summary-footer {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #edf0f4;
    color: #6b7280;
    font-size: 0.78rem;
}

.checkout-summary-footer span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.checkout-summary-footer i {
    color: var(--accent);
    font-size: 0.95rem;
}

/* Checkout - minimal premium theme */
.checkout-page {
    background: #fff;
}

.checkout-eyebrow {
    color: #9aa0a6;
    font-size: 11px;
    font-weight: 500;
}

.checkout-heading h1 {
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.checkout-heading p {
    color: #777;
}

.checkout-trust-badges span {
    border-color: #ededed;
    border-radius: 0;
    color: #555;
    box-shadow: none;
}

.checkout-login-card,
.checkout-section-card,
.checkout-summary {
    border: 1px solid #ededed;
    border-radius: 0;
    box-shadow: none;
}

.checkout-login-icon,
.checkout-step,
.checkout-summary-header > span,
.checkout-payment-icon {
    border-radius: 0;
}

.checkout-login-icon,
.checkout-payment-icon {
    border: 1px solid #ededed;
    background: #fafafa;
    color: #1a1a1a;
}

.checkout-step,
.checkout-summary-header > span {
    background: #1a1a1a;
    color: #fff;
}

.checkout-login-card strong,
.checkout-section-header h2,
.checkout-summary-header h2,
.checkout-summary-info a,
.checkout-shipping-copy strong,
.checkout-payment-option strong {
    color: #1a1a1a;
    font-weight: 600;
}

.checkout-login-card span,
.checkout-section-header p,
.checkout-summary-header p,
.checkout-summary-info span,
.checkout-shipping-copy small,
.checkout-payment-option small,
.checkout-summary-footer {
    color: #9aa0a6;
}

.checkout-login-card a {
    border-color: #1a1a1a;
    border-radius: 0;
    color: #1a1a1a;
    font-weight: 500;
}

.checkout-login-card a:hover,
.checkout-login-card a:focus {
    background: #1a1a1a;
    color: #fff;
}

.checkout-section-header,
.checkout-summary-header,
.checkout-summary-totals,
.checkout-total-row--grand,
.checkout-summary-footer {
    border-color: #ededed;
}

.checkout-card-fields {
    border-top-color: #ededed;
}

.checkout-field label {
    color: #555;
    font-size: 0.82rem;
    font-weight: 500;
}

.checkout-field .form-control,
.checkout-field .form-select {
    min-height: 44px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    color: #1a1a1a;
    box-shadow: none;
}

.checkout-field .form-control:focus,
.checkout-field .form-select:focus {
    border-color: #bdbdbd;
    box-shadow: none;
}

.checkout-shipping-empty,
.checkout-shipping-option,
.checkout-payment-option {
    border-color: #ededed;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.checkout-shipping-empty {
    background: #fafafa;
}

.checkout-shipping-empty i,
.checkout-summary-footer i {
    color: #9aa0a6;
}

.checkout-shipping-option:hover,
.checkout-payment-option:hover,
.checkout-payment-option:has(input:checked) {
    border-color: #1a1a1a;
    box-shadow: none;
}

.checkout-section-card.is-pickup-selected {
    border-color: #1a1a1a;
}

.checkout-payment-option:has(input:checked) .checkout-payment-icon {
    background: #1a1a1a;
    color: #fff;
}

.checkout-summary-image {
    border: 1px solid #f0f0f0;
    border-radius: 0;
    background: #fafafa;
}

.checkout-total-row {
    color: #777;
}

.checkout-total-row strong,
.checkout-summary-item > strong,
.checkout-total-row--grand,
.checkout-total-row--grand strong {
    color: #1a1a1a;
}

.checkout-total-row--discount,
.checkout-total-row--discount strong {
    color: #00a868;
}

.checkout-submit {
    border: 1px solid #1a1a1a;
    border-radius: 0;
    background: #1a1a1a;
    font-weight: 600;
}

.checkout-submit:hover,
.checkout-submit:focus {
    border-color: #333;
    background: #333;
}

.header-cart-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    padding: 0 0 0 20px;
    padding-right: calc(50vw - 50%);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
    z-index: 4;
    isolation: isolate;
}

.header-cart-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: calc(100% + 40px);
    background: #fff;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
    pointer-events: none;
}

.header-cart {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--header-blue);
    font-size: 1.85rem;
    text-decoration: none;
    padding: 2px 12px 2px 4px;
    line-height: 1;
    flex-shrink: 0;
}

.header-cart:hover { color: var(--theme-primary-hover); }

.header-cart-badge {
    position: absolute;
    top: -4px;
    right: -8px;
    background: var(--accent);
    color: #1a1a1a;
    font-size: 0.62rem;
    font-weight: 800;
    min-width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Menu de categorias — apenas na coluna direita (área branca) */
.header-category-nav {
    grid-area: nav;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eef0f4;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
}

.header-nav-toggle {
    width: 100%;
    border: none;
    background: #f5f6f8;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--header-blue);
    text-align: left;
    box-sizing: border-box;
}

.header-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: stretch;
}

.header-category-item {
    position: relative;
    flex: 1;
    display: flex;
}

.header-category-item + .header-category-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22%;
    height: 56%;
    width: 1px;
    background: #dfe3eb;
    z-index: 1;
}

.header-category-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    padding: 10px 6px 12px;
    text-decoration: none;
    color: var(--header-blue);
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
}

.header-category-link.dropdown-toggle::after {
    display: none;
}

.header-category-link:hover,
.header-category-link.show {
    color: var(--header-blue);
}

.header-category-link:hover .header-category-label,
.header-category-link.show .header-category-label {
    color: var(--secondary);
}

.header-category-icon {
    font-size: 1.65rem;
    line-height: 1;
}

.header-category-img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.header-category-label {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.15;
    text-transform: uppercase;
}

.header-category-dropdown {
    --bs-dropdown-spacer: 0;
    top: calc(100% - 8px);
    left: 0;
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-radius: 0 0 6px 6px;
    margin-top: 0 !important;
}

.header-category-dropdown .dropdown-item {
    font-size: 0.85rem;
    padding: 8px 20px;
}

.header-category-dropdown .dropdown-item:hover {
    background: #f5f7fb;
    color: var(--header-blue);
}

@media (min-width: 992px) {
    .header-category-item.dropdown:hover > .header-category-dropdown,
    .header-category-item.dropdown:focus-within > .header-category-dropdown {
        display: block;
    }

    .header-category-item.dropdown:hover > .header-category-link .header-category-label,
    .header-category-item.dropdown:focus-within > .header-category-link .header-category-label {
        color: var(--secondary);
    }
}

/* ========== RESTANTE DA LOJA ========== */

.banner-img {
    height: clamp(460px, 34vw, 560px);
    object-fit: cover;
}

.hero-banner .carousel-control-prev,
.hero-banner .carousel-control-next {
    top: 50%;
    bottom: auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #1c1c1c;
    opacity: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: opacity 0.3s ease, background 0.2s ease, color 0.2s ease, transform 0.3s ease;
}

.hero-banner .carousel-control-prev {
    left: 22px;
    transform: translateY(-50%) translateX(-24px);
}

.hero-banner .carousel-control-next {
    right: 22px;
    transform: translateY(-50%) translateX(24px);
}

.hero-banner:hover .carousel-control-prev,
.hero-banner:hover .carousel-control-next,
.hero-banner:focus-within .carousel-control-prev,
.hero-banner:focus-within .carousel-control-next {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.hero-banner .carousel-control-prev:hover,
.hero-banner .carousel-control-next:hover,
.hero-banner .carousel-control-prev:focus,
.hero-banner .carousel-control-next:focus {
    background: #fff;
    color: var(--header-blue);
}

.hero-banner:hover .carousel-control-prev:hover,
.hero-banner:hover .carousel-control-next:hover,
.hero-banner:focus-within .carousel-control-prev:focus,
.hero-banner:focus-within .carousel-control-next:focus {
    transform: translateY(-50%) translateX(0) scale(1.06);
}

.hero-banner .carousel-control-prev-icon,
.hero-banner .carousel-control-next-icon {
    position: relative;
    width: 16px;
    height: 16px;
    background-image: none;
}

.hero-banner .carousel-control-prev-icon::before,
.hero-banner .carousel-control-next-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    border: solid currentColor;
    border-width: 0 0 3px 3px;
}

.hero-banner .carousel-control-prev-icon::before {
    transform: translate(-35%, -50%) rotate(45deg);
}

.hero-banner .carousel-control-next-icon::before {
    transform: translate(-65%, -50%) rotate(-135deg);
}

.hero-banner .carousel-indicators {
    bottom: 18px;
    gap: 8px;
    margin-bottom: 0;
}

.hero-banner .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    margin: 0;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    opacity: 0.85;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.hero-banner .carousel-indicators [data-bs-target]:hover,
.hero-banner .carousel-indicators [data-bs-target]:focus {
    background: var(--secondary);
    border-color: var(--secondary);
    opacity: 1;
    transform: scale(1.15);
}

.hero-banner .carousel-indicators .active {
    background: var(--primary);
    border-color: var(--primary);
    opacity: 1;
    transform: scale(1.15);
}

.hero-placeholder { border-radius: 0; background: var(--header-blue) !important; }

/* Barra de benefícios (home) */
.home-benefits-bar {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.15rem 0;
    margin-bottom: 1.5rem;
}

.home-benefits-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1 1 0;
    min-width: 0;
}

.home-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.65rem;
    line-height: 1;
    color: var(--primary);
}

.home-benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.home-benefit-text strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--primary);
}

.home-benefit-text span {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.3;
    color: color-mix(in srgb, var(--primary) 72%, #6b7280);
}

.home-highlight-card {
    position: relative;
    display: flex;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 0;
    background: #1c1c1c;
    text-decoration: none;
    color: #fff;
}

.home-highlight-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.home-highlight-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    transition: background 0.35s ease;
    z-index: 1;
}

.home-highlight-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem 1rem;
    text-align: center;
}

.home-highlight-title {
    margin: 0;
    font-size: clamp(1.1rem, 1.8vw, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
}

.home-highlight-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 9.5rem;
    padding: 0.55rem 1.5rem;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.home-highlights-section {
    padding: 0 0 1.75rem;
}

.home-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.home-highlight-card:hover .home-highlight-img,
.home-highlight-card:focus-visible .home-highlight-img {
    transform: scale(1.06);
}

.home-highlight-card:hover .home-highlight-overlay,
.home-highlight-card:focus-visible .home-highlight-overlay {
    background: rgba(0, 0, 0, 0.48);
}

.home-highlight-card:hover .home-highlight-btn,
.home-highlight-card:focus-visible .home-highlight-btn {
    background: #fff;
    color: #111;
}

.promo-popup {
    position: fixed;
    inset: 0;
    z-index: 1090;
    display: grid;
    place-items: center;
    padding: 18px;
}

.promo-popup[hidden] {
    display: none;
}

body.promo-popup-open {
    overflow: hidden;
}

.promo-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(2px);
}

.promo-popup__dialog {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.promo-popup__close {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--on-secondary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.promo-popup__media {
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.promo-popup__image {
    display: block;
    width: 100%;
    max-height: min(80vh, 720px);
    object-fit: contain;
}

.products-page {
    background: #fff;
}

.product-mobile-filter-bar,
.product-filter-mobile-head {
    display: none;
}

.product-filter-overlay {
    display: none;
}

.product-filter-panel {
    position: sticky;
    top: 150px;
    display: grid;
    gap: 0;
    color: #1a1a1a;
}

.product-filter-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 0 12px;
    border-bottom: 1px solid #ededed;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.product-filter-title i {
    color: #9aa0a6;
    font-size: 1rem;
}

.product-filter-group {
    border-bottom: 1px solid #f0f0f0;
}

.product-filter-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 0 11px;
    color: #1a1a1a;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.2;
    list-style: none;
    cursor: pointer;
}

.product-filter-group summary::-webkit-details-marker {
    display: none;
}

.product-filter-group summary::after {
    content: '\F282';
    color: #9aa0a6;
    font-family: 'bootstrap-icons';
    font-size: 0.85rem;
    line-height: 1;
    transition: transform 0.18s ease;
}

.product-filter-group[open] summary::after {
    transform: rotate(180deg);
}

.product-filter-options {
    display: grid;
    gap: 9px;
    padding: 0 0 14px;
}

.product-filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    color: #555;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.2;
    cursor: pointer;
}

.product-filter-option > span {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 8px;
}

.product-filter-option input[type="checkbox"] {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    margin: 0;
    border: 1px solid #c9ccd1;
    border-radius: 0;
    accent-color: #1a1a1a;
}

.product-filter-option small {
    color: #9aa0a6;
    font-size: 0.8rem;
    font-weight: 400;
}

.product-filter-body {
    padding: 0 0 14px;
}

.product-filter-input {
    width: 100%;
    min-height: 40px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    padding: 8px 10px;
    color: #1a1a1a;
    font-size: 0.85rem;
    outline: none;
}

.product-filter-input:focus {
    border-color: #bdbdbd;
    box-shadow: none;
}

.product-filter-price {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 0 14px;
}

.product-filter-submit,
.product-filter-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: 16px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.product-filter-submit {
    border: 1px solid #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.product-filter-submit:hover,
.product-filter-submit:focus {
    background: #333;
    border-color: #333;
}

.product-filter-clear {
    margin-top: 8px;
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #555;
}

.product-filter-clear:hover,
.product-filter-clear:focus {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.product-list-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ededed;
}

.product-list-toolbar h1 {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.product-list-toolbar span {
    display: block;
    margin-top: 4px;
    color: #9aa0a6;
    font-size: 0.82rem;
}

.product-sort-form {
    min-width: 190px;
}

.product-sort-form .form-select {
    border: 1px solid #e2e2e2;
    border-radius: 0;
    box-shadow: none;
}

.product-sort-form .form-select:focus {
    border-color: #bdbdbd;
    box-shadow: none;
}

.product-empty-state {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 56px 28px;
    border: 1px solid #ededed;
    border-radius: 0;
    background: #fafafa;
    text-align: center;
}

.product-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 0;
    border: 1px solid #ededed;
    background: #fff;
    color: #1a1a1a;
    font-size: 1.4rem;
}

.product-empty-state h2 {
    margin: 4px 0 0;
    color: #1a1a1a;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
}

.product-empty-state p {
    max-width: 520px;
    margin: 0;
    color: #9aa0a6;
    font-size: 0.92rem;
    line-height: 1.55;
}

.product-empty-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.product-empty-primary,
.product-empty-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.product-empty-primary {
    border: 1px solid #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.product-empty-primary:hover,
.product-empty-primary:focus {
    background: #333;
    border-color: #333;
    color: #fff;
}

.product-empty-secondary {
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #555;
}

.product-empty-secondary:hover,
.product-empty-secondary:focus {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.products-page .pagination {
    gap: 6px;
}

.product-pagination {
    display: grid;
    gap: 18px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #ededed;
}

.product-pagination-meta {
    margin: 0;
    color: #9aa0a6;
    font-size: 0.84rem;
    line-height: 1.5;
    text-align: center;
}

.product-pagination-meta strong {
    color: #1a1a1a;
    font-weight: 600;
}

.product-pagination-meta-sep {
    margin: 0 6px;
    color: #d0d0d0;
}

.product-pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.product-pagination-btn:hover,
.product-pagination-btn:focus {
    border-color: #1a1a1a;
    background: #fff;
    color: #1a1a1a;
}

.product-pagination-btn.is-disabled {
    border-color: #f0f0f0;
    background: #fafafa;
    color: #c4c4c4;
    cursor: default;
    pointer-events: none;
}

.product-pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-pagination-list > li {
    display: flex;
}

.product-pagination-page,
.product-pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    background: #fff;
    color: #555;
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.product-pagination-page:hover,
.product-pagination-page:focus {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.product-pagination-page.is-active {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.product-pagination-ellipsis {
    min-width: 34px;
    padding: 0;
    border-color: transparent;
    background: transparent;
    color: #bdbdbd;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.products-page .page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    background: #fff;
    color: #555;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: none;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.products-page .page-item .page-link:hover,
.products-page .page-item .page-link:focus {
    border-color: #1a1a1a;
    background: #fff;
    color: #1a1a1a;
    box-shadow: none;
}

.products-page .page-item.active .page-link {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 12px;
    box-shadow: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: #efefef;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16), 0 6px 14px rgba(15, 23, 42, 0.08);
}

.product-media {
    position: relative;
    padding: 16px 18px 0;
    background: #fff;
}

.product-img-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
}

.product-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    transition: opacity 0.25s ease, transform 0.4s ease;
}

.product-card:hover .product-img--primary {
    transform: scale(1.05);
}

.product-card:hover .product-img-link.has-secondary-image .product-img--primary {
    transform: none;
}

.product-img--secondary {
    opacity: 0;
}

.product-card:hover .product-img-link.has-secondary-image .product-img--secondary {
    opacity: 1;
}

.product-card:hover .product-img-link.has-secondary-image .product-img--primary {
    opacity: 0;
}

.product-badge {
    position: absolute;
    z-index: 3;
    display: block;
    object-fit: contain;
    pointer-events: none;
}

.product-badge--left_vertical {
    top: 14px;
    left: 10px;
    width: 24px;
    height: 220px;
}

.product-badge--right {
    top: 55px;
    right: 10px;
    width: 72px;
    max-height: 72px;
}

.product-badge--top_left {
    top: 10px;
    left: 42px;
    width: 72px;
    max-height: 54px;
}

.product-badge--top_right {
    top: 10px;
    right: 10px;
    width: 72px;
    max-height: 54px;
}

.badge-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background: var(--badge-discount-bg);
    color: var(--badge-discount-text);
    padding: 5px 9px;
    border-radius: 3px;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
}

.product-info {
    flex: 1;
    padding: 10px 26px 18px;
    text-align: center;
}

.product-title {
    min-height: 42px;
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--product-title-color);
}

.product-title a {
    display: -webkit-box;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card .price-original {
    color: var(--price-muted-color);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.1;
    text-decoration: line-through;
}

.product-card .price-main {
    margin-top: 2px;
    color: var(--price-color);
    font-size: 1.28rem;
    font-weight: 600;
    line-height: 1.15;
}

.product-card .price-installment {
    margin-top: 6px;
    color: var(--price-muted-color);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.25;
}

.product-card .price-installment strong {
    color: color-mix(in srgb, var(--body-text) 75%, transparent);
    font-weight: 600;
}

.product-card .price-pix {
    margin-top: 3px;
    color: var(--price-muted-color);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.25;
}

.product-card .price-pix strong {
    color: #3f3f3f;
    font-weight: 600;
}

.product-buy-form,
.product-cart-form {
    margin: 0;
}

/* Ações reveladas no hover */
.product-actions {
    display: grid;
    grid-template-rows: 0fr;
    gap: 8px;
    padding: 0 14px;
    opacity: 0;
    overflow: hidden;
    transition: grid-template-rows 0.3s ease, opacity 0.25s ease, padding-bottom 0.3s ease;
}

.product-card:hover .product-actions,
.product-card:focus-within .product-actions {
    grid-template-rows: 1fr;
    opacity: 1;
    padding-bottom: 16px;
}

.product-actions > * {
    min-height: 0;
}

.product-buy-btn,
.product-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.product-buy-btn {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.24);
}

.product-buy-btn:hover,
.product-buy-btn:focus {
    background: var(--theme-primary-hover, #16407a);
}

.product-cart-btn {
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 0.84rem;
}

.product-cart-btn i {
    font-size: 1.05rem;
}

.product-cart-btn:hover,
.product-cart-btn:focus {
    background: var(--primary);
    color: #fff;
}

.section-title {
    position: relative;
    width: 100%;
    padding-bottom: 8px;
    color: var(--primary);
    font-size: 1.45rem;
    font-weight: 700;
}

/* Título refinado das vitrines da home */
.product-section .section-title {
    padding-bottom: 14px;
    color: #2b2b2b;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
}

.product-section .section-title::before {
    display: none;
}

.product-section .section-title::after {
    left: 50%;
    width: 48px;
    height: 2px;
    background: #2b2b2b;
    transform: translateX(-50%);
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
}

.section-title::before {
    width: 100%;
    background: var(--primary);
}

.section-title::after {
    width: min(260px, 42%);
    background: var(--accent);
}

.product-original-label {
    position: absolute;
    top: 16px;
    left: 10px;
    z-index: 2;
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    pointer-events: none;
}

.product-suggestions-section {
    margin-top: 3.5rem;
    padding: 0;
}

.product-suggestions-section .section-title {
    width: 100%;
    padding-bottom: 16px;
    margin-bottom: 0;
    border-bottom: 1px solid #ededed;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.product-suggestions-section .section-title::before,
.product-suggestions-section .section-title::after {
    display: none;
}

.product-suggestions-carousel {
    position: relative;
    margin-top: 1.5rem;
    padding: 0 54px;
}

.product-suggestions-track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.product-suggestions-track-wrap::-webkit-scrollbar {
    display: none;
}

.product-suggestions-track {
    display: flex;
    gap: 16px;
    padding: 4px 2px 8px;
}

.product-suggestions-item {
    flex: 0 0 calc(25% - 12px);
    min-width: calc(25% - 12px);
    scroll-snap-align: start;
}

.product-suggestions-item .product-card {
    height: 100%;
}

.suggestions-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    background: #fff;
    color: #555;
    font-size: 1.2rem;
    line-height: 1;
    box-shadow: none;
    transform: translateY(-50%);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.suggestions-nav:hover:not(:disabled),
.suggestions-nav:focus:not(:disabled) {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.suggestions-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.suggestions-nav--prev {
    left: 0;
}

.suggestions-nav--next {
    right: 0;
}

.product-main-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f9fa;
}

.main-product-img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: contain;
    background: #f8f9fa;
}

.main-product-video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

.product-main-media.is-image {
    cursor: zoom-in;
}

.product-main-media.is-video {
    cursor: default;
}

.product-zoom-lens {
    position: absolute;
    z-index: 5;
    width: 170px;
    height: 170px;
    border: 4px solid rgba(160, 160, 160, 0.9);
    border-radius: 50%;
    background-repeat: no-repeat;
    background-color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.15s ease;
}

.product-main-media:hover .product-zoom-lens {
    opacity: 1;
}

.product-media-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.product-media-thumb {
    position: relative;
    width: 74px;
    height: 74px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
}

.product-media-thumb.active,
.product-media-thumb:hover,
.product-media-thumb:focus {
    border-color: var(--accent);
}

.product-media-thumb .thumb-img {
    width: 100%;
    height: 100%;
    border: 0;
}

.product-media-thumb--video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.product-media-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    transform: translate(-50%, -50%);
}

.breadcrumb {
    --bs-breadcrumb-divider-color: #b8b8b8;
    display: flex;
    flex-wrap: nowrap;
    min-width: 0;
    color: #9b9b9b;
}

.breadcrumb a,
.breadcrumb-item,
.breadcrumb-item.active {
    color: #9b9b9b;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus {
    color: #777;
}

.breadcrumb-item {
    min-width: 0;
    white-space: nowrap;
}

.breadcrumb-item.active {
    overflow: hidden;
    max-width: min(620px, 52vw);
    text-overflow: ellipsis;
}

.product-heading-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.product-category-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.product-category-kicker:hover,
.product-category-kicker:focus {
    color: var(--primary);
}

.product-category-kicker-icon {
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.product-category-kicker-img {
    width: 30px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

.product-brand-mark {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 120px;
    flex-shrink: 0;
}

.product-brand-logo {
    display: block;
    max-width: 160px;
    max-height: 34px;
    object-fit: contain;
}

.product-brand-text {
    color: var(--accent);
    font-size: 1.15rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.04em;
}

.product-buy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.96fr);
    gap: 30px;
    align-items: start;
    margin-top: 26px;
}

.product-buy-main {
    min-width: 0;
}

.product-price-block {
    margin-top: 4px;
}

.product-price-from {
    display: inline-block;
    margin-bottom: 2px;
    color: var(--price-muted-color);
    font-size: 0.95rem;
    text-decoration: line-through;
}

.product-price-now {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--price-color);
    font-size: clamp(1.7rem, 2.4vw, 2.05rem);
    font-weight: 800;
    line-height: 1.05;
}

.product-price-off {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 3px;
    background: var(--price-sale-color);
    color: var(--badge-discount-text);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
}

.product-pix-main {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-top: 6px;
    color: var(--pix-color);
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    font-weight: 700;
    line-height: 1;
}

.product-pix-main small {
    margin-bottom: 2px;
    color: #00a868;
    font-size: 0.72rem;
    font-weight: 600;
}

.product-card-installment {
    margin-top: 6px;
    color: #777;
    font-size: 0.88rem;
    font-weight: 700;
}

.product-card-installment strong {
    color: var(--primary);
    font-weight: 900;
}

.product-buy-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.product-installments-card {
    border: 1px solid #e3e3e3;
    background: #fff;
    padding: 14px 18px 16px;
}

.product-installments-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ececec;
}

.product-installments-flags {
    height: 26px;
    width: auto;
    max-width: 60%;
    object-fit: contain;
}

.product-installments-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #444;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}

.product-installments-title i {
    font-size: 0.8rem;
    color: #888;
    transition: transform 0.2s ease;
}

.product-installments-title[aria-expanded="false"] i {
    transform: rotate(-90deg);
}

.product-installments-list {
    column-count: 2;
    column-gap: 28px;
    color: #444;
    font-size: 0.9rem;
    line-height: 1.35;
}

.product-installments-list.is-collapsed {
    display: none;
}

.product-installments-list.is-collapsed + * {
    margin-top: 0;
}

.product-installments-card:has(.product-installments-list.is-collapsed) .product-installments-head {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.product-installment-line {
    text-align: left;
    margin-bottom: 6px;
    break-inside: avoid;
}

.product-installment-line strong {
    color: #121212;
    font-weight: 700;
}

.product-share-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.product-share-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 400;
    white-space: nowrap;
}

.product-share-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.product-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #8a8a8a;
    font-size: 1.15rem;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.product-share-link:hover,
.product-share-link:focus {
    color: #444;
}

.tire-pack-selector {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 18px;
    margin-top: 22px;
}

.tire-pack-option {
    position: relative;
    width: 72px;
    min-height: 62px;
    padding: 6px 4px 9px;
    border: 1px solid transparent;
    border-bottom: 2px solid #cfcfcf;
    border-radius: 3px 3px 0 0;
    background: #fff;
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tire-pack-option:hover,
.tire-pack-option:focus {
    color: var(--secondary);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.tire-pack-option.active {
    border-color: var(--accent);
    border-bottom-color: var(--accent);
}

.tire-pack-option.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -9px;
    width: 14px;
    height: 14px;
    background: var(--accent);
    transform: translateX(-50%) rotate(45deg);
    z-index: -1;
}

.tire-pack-option:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.tire-pack-icon {
    display: block;
    width: 48px;
    height: 24px;
    object-fit: contain;
    margin: 0 auto 5px;
}

.product-option-block {
    display: grid;
    gap: 10px;
}

.product-option-label {
    display: block;
    color: #1a1a1a;
    font-size: 0.88rem;
    font-weight: 600;
}

.product-color-options,
.product-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-color-option {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 64px;
    padding: 8px 10px 10px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    background: #fff;
    color: #555;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.product-color-option img,
.product-color-swatch {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border: 1px solid #ededed;
}

.product-color-swatch {
    display: block;
    border-radius: 0;
}

.product-color-option small {
    font-size: 0.76rem;
    line-height: 1.2;
}

.product-color-option.is-active,
.product-size-option.is-active {
    border-color: #1a1a1a;
    box-shadow: inset 0 0 0 1px #1a1a1a;
    color: #1a1a1a;
}

.product-size-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.product-size-option:hover,
.product-color-option:hover {
    border-color: #1a1a1a;
}

.product-purchase-form {
    width: 100%;
}

.product-purchase-row {
    display: grid;
    grid-template-columns: 116px minmax(180px, 1fr);
    align-items: stretch;
    gap: 14px;
    max-width: 520px;
}

.product-qty-stepper {
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    align-items: stretch;
    height: 52px;
    border: 1px solid #d9d9d9;
    border-radius: 0;
    background: #fff;
}

.product-qty-input {
    width: 100%;
    min-width: 0;
    border: none;
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
    outline: none;
    appearance: textfield;
}

.product-qty-input::-webkit-outer-spin-button,
.product-qty-input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.product-qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0;
    background: #fff;
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}

.product-qty-btn:hover,
.product-qty-btn:focus {
    background: #f4f6fb;
}

.product-qty-input:disabled,
.product-qty-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.product-detail-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: none;
    border-radius: 0;
    background: #00a868;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
}

.product-detail-buy-btn:hover,
.product-detail-buy-btn:focus {
    background: #00935b;
    color: #fff;
}

.product-detail-buy-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.product-shipping-box {
    margin-top: 26px;
}

.product-shipping-label {
    display: block;
    margin-bottom: 8px;
    color: #8f8f8f;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.product-shipping-row {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.product-shipping-input {
    width: 164px;
    height: 38px;
    border: 2px solid var(--primary);
    border-right: none;
    padding: 0 10px;
    color: var(--primary);
    font-weight: 700;
    outline: none;
}

.product-shipping-btn {
    width: 46px;
    height: 38px;
    border: 2px solid var(--primary);
    background: var(--primary);
    color: #fff;
    font-weight: 900;
}

.product-shipping-help {
    margin-left: 10px;
    color: #000;
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.product-shipping-help:hover {
    color: var(--primary);
}

.cart-shipping-box {
    margin: 16px 0;
    padding-top: 16px;
    border-top: 1px solid #e8edf5;
}

.cart-shipping-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #17213a;
    margin-bottom: 8px;
}

.cart-shipping-row {
    display: flex;
    gap: 8px;
}

.cart-shipping-input {
    flex: 1;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    padding: 8px 10px;
    font-size: 0.9rem;
}

.cart-shipping-input:focus {
    border-color: #bdbdbd;
    outline: none;
}

.cart-shipping-btn {
    border: 1px solid #1a1a1a;
    border-radius: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 8px 16px;
    font-weight: 500;
    transition: background 0.15s ease;
}

.cart-shipping-btn:hover,
.cart-shipping-btn:focus {
    background: #333;
}

.cart-shipping-results {
    margin-top: 10px;
}

.cart-shipping-option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #edf1f7;
    cursor: pointer;
    font-size: 0.82rem;
}

.cart-shipping-option span {
    display: block;
}

.cart-shipping-option small {
    color: #657080;
}

.product-detail-tabs {
    width: 100%;
}

.product-tabs {
    border-bottom: 1px solid var(--primary);
    gap: 2px;
}

.product-tabs .nav-link {
    min-width: 170px;
    border: none;
    border-radius: 6px 6px 0 0;
    background: #9b9b9b;
    color: #fff;
    font-weight: 800;
    text-align: center;
    padding: 10px 22px;
}

.product-tabs .nav-link:hover,
.product-tabs .nav-link:focus {
    background: var(--secondary);
    color: #fff;
}

.product-tabs .nav-link.active {
    background: var(--primary);
    color: #fff;
}

.product-tabs-content {
    padding-top: 12px;
}

.product-tab-card {
    border-radius: 0;
    border: 1px solid #ececec !important;
    box-shadow: none !important;
}

.product-tab-card .card-body {
    padding: 24px;
}

.product-description-title {
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e6e6e6;
    color: #111;
    font-size: 1.25rem;
    font-weight: 700;
}

.product-description {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.65;
}

.product-description p {
    margin: 0 0 16px;
}

.product-description p:last-child {
    margin-bottom: 0;
}

.product-description h2,
.product-description h3 {
    margin: 0 0 12px;
    color: #111;
    font-weight: 700;
}

.product-description h2 {
    font-size: 1.2rem;
}

.product-description h3 {
    font-size: 1.05rem;
}

.product-description ol,
.product-description ul {
    margin: 0 0 16px;
    padding-left: 1.25rem;
}

.product-description li {
    margin-bottom: 6px;
}

.product-description a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.product-description blockquote {
    margin: 0 0 16px;
    padding: 12px 16px;
    border-left: 3px solid var(--primary);
    background: #f8f9fa;
    color: #444;
}

.tire-info-panel {
    background: #f7f7f7;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1rem;
}

.tire-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
}

.tire-info-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.tire-label-card {
    height: 100%;
    min-height: 100%;
    padding: 12px;
    border: 1px solid #dedede;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tire-label-figure {
    position: relative;
    width: min(100%, 269px);
    margin: 0 auto;
}

.tire-label-img {
    display: block;
    width: 100%;
    height: auto;
}

.tire-label-value {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.tire-label-value--fuel,
.tire-label-value--wet {
    top: var(--label-y, 24.9%);
    height: 7%;
    min-width: 15%;
    padding: 0 3% 0 5%;
    font-size: clamp(0.9rem, 1.5vw, 1.45rem);
    clip-path: polygon(0 50%, 24% 0, 100% 0, 100% 100%, 24% 100%);
}

.tire-label-value--fuel {
    left: 49%;
}

.tire-label-value--wet {
    left: 84%;
}

.tire-label-value--noise {
    left: 82%;
    top: 69.6%;
    min-width: 32%;
    padding: 2.6% 3% 2.6% 6%;
    font-size: clamp(0.78rem, 1.15vw, 1.15rem);
    clip-path: polygon(0 50%, 18% 0, 100% 0, 100% 100%, 18% 100%);
}

.thumb-img { width: 70px; height: 70px; object-fit: cover; cursor: pointer; border: 2px solid transparent; }
.thumb-img:hover { border-color: var(--header-blue); }

.brand-logo { transition: transform 0.2s; }
.brand-logo:hover { transform: scale(1.05); }

/* Carrossel de marcas */
.brands-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brands-track-wrap {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.brands-track-wrap::-webkit-scrollbar {
    display: none;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brands-track-wrap.is-centered .brands-track {
    justify-content: center;
}

.brand-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(120px, 16vw, 170px);
    height: 96px;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.brand-item:hover {
    transform: translateY(-2px);
}

.brand-item-logo {
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.brand-item:hover .brand-item-logo {
    filter: grayscale(0);
    opacity: 1;
}

.brand-item-name {
    color: #555;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.brands-nav {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #e4e4e4;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.brands-nav:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.brands-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

@media (max-width: 575.98px) {
    .brand-item {
        width: clamp(108px, 40vw, 150px);
        height: 84px;
    }

    .brands-nav {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
}

/* Categorias em destaque (home) */
.home-categories-section {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

.home-categories-section .section-title {
    margin-bottom: 0;
}

.home-categories-carousel {
    position: relative;
    padding: 0 54px;
    --cat-thumb: 118px;
}

.home-categories-track-wrap {
    overflow: hidden;
}

.home-categories-track {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 8px 0 4px;
    width: max-content;
    will-change: transform;
    transition: transform 0.55s ease;
}

.home-categories-track-wrap.is-centered .home-categories-track {
    width: 100%;
    justify-content: center;
    transform: none !important;
}

.home-category-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 132px;
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease, transform 0.2s ease;
}

.home-category-item:hover,
.home-category-item:focus {
    color: var(--primary);
    transform: translateY(-4px);
}

.home-category-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--cat-thumb);
    height: var(--cat-thumb);
    border-radius: 50%;
    overflow: hidden;
    background: #f3f5f5;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.home-category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-category-thumb-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(var(--bs-primary-rgb, 40, 195, 195), 0.18), rgba(var(--bs-primary-rgb, 40, 195, 195), 0.05));
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
}

.home-category-name {
    max-width: 100%;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
}

.home-categories-nav {
    position: absolute;
    top: calc(8px + var(--cat-thumb) / 2);
    transform: translateY(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #e4e4e4;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.home-categories-nav--prev {
    left: 0;
}

.home-categories-nav--next {
    right: 0;
}

.home-categories-nav:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.home-categories-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.home-categories-nav[hidden] {
    display: none;
}

@media (max-width: 575.98px) {
    .home-categories-carousel {
        padding: 0 38px;
    }

    .home-categories-track {
        gap: 16px;
    }

    .home-category-name {
        font-size: 0.85rem;
    }

    .home-categories-nav {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
}

/* Vídeo em destaque (home) */
.home-featured-video-section {
    padding-bottom: 2rem;
}

.home-featured-video {
    width: 100%;
}

.home-featured-video-trigger,
.home-featured-video-static {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    overflow: hidden;
    border-radius: 4px;
}

.home-featured-video-trigger {
    cursor: pointer;
}

.home-featured-video-cover {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 6.5;
    object-fit: cover;
    object-position: center;
}

.home-featured-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.18);
    transition: background 0.25s ease;
}

.home-featured-video-play i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    padding-left: 4px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, background 0.25s ease;
}

.home-featured-video-trigger:hover .home-featured-video-play,
.home-featured-video-trigger:focus-visible .home-featured-video-play {
    background: rgba(0, 0, 0, 0.28);
}

.home-featured-video-trigger:hover .home-featured-video-play i,
.home-featured-video-trigger:focus-visible .home-featured-video-play i {
    transform: scale(1.06);
    background: var(--theme-primary-hover, var(--primary));
}

.home-video-modal {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.home-video-modal[hidden] {
    display: none !important;
}

body.home-video-modal-open {
    overflow: hidden;
}

.home-video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 24, 0.78);
}

.home-video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
}

.home-video-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.home-video-modal__frame-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.home-video-modal__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767.98px) {
    .home-featured-video-cover {
        aspect-ratio: 16 / 10;
    }

    .home-featured-video-play i {
        width: 58px;
        height: 58px;
        font-size: 1.65rem;
    }

    .home-video-modal {
        padding: 16px;
    }

    .home-video-modal__close {
        top: -40px;
    }
}

/* Depoimentos na home */
.home-testimonials-section {
    background: #fff;
}

.home-testimonials-head {
    text-align: center;
}

.home-testimonials-foot {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.home-testimonials-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 500;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-testimonials-cta:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.home-testimonials-carousel {
    overflow: hidden;
    padding: 12px 0 40px;
}

.home-testimonials-track {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    will-change: transform;
}

.home-testimonial-card {
    position: relative;
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    margin-top: 30px;
    padding: 38px 20px 22px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-testimonial-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.home-testimonial-avatar-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid #e8e8e8;
    background: #f5f5f5;
    overflow: hidden;
}

.home-testimonial-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-testimonial-name {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 600;
    color: #111;
}

.home-testimonial-city {
    margin: 0 0 10px;
    font-size: 0.85rem;
    color: #8a8a8a;
}

.home-testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 14px;
    color: #f5b301;
    font-size: 0.95rem;
}

.home-testimonial-text {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.55;
    color: #555;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
}

.home-testimonial-text.is-expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.home-testimonial-more {
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
}

.home-testimonial-more[hidden] {
    display: none;
}

.home-testimonial-more:hover {
    text-decoration: underline;
}

.home-testimonials-empty {
    margin: 0;
    color: #777;
    font-size: 0.95rem;
}

.testimonial-modal {
    position: fixed;
    inset: 0;
    z-index: 1095;
    display: grid;
    place-items: center;
    padding: 18px;
}

.testimonial-modal[hidden] {
    display: none;
}

body.testimonial-modal-open {
    overflow: hidden;
}

.testimonial-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 16, 40, 0.58);
    backdrop-filter: blur(4px);
}

.testimonial-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    padding: 28px 28px 24px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.testimonial-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f3f4f8;
    color: #333;
}

.testimonial-modal__header {
    text-align: center;
    margin-bottom: 20px;
    padding-right: 28px;
}

.testimonial-modal__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary) 12%, #fff);
    color: var(--primary);
    font-size: 1.35rem;
}

.testimonial-modal__header h3 {
    margin: 0 0 6px;
    font-size: 1.35rem;
    font-weight: 600;
    color: #111;
}

.testimonial-modal__header p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.testimonial-modal__form .form-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: #333;
}

.testimonial-modal__form .form-control {
    border-radius: 10px;
    border-color: #dde1ea;
    padding: 10px 12px;
}

.testimonial-modal__form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--primary) 18%, transparent);
}

.testimonial-modal__submit {
    width: 100%;
    margin-top: 18px;
    padding: 12px 18px;
    border: 0;
    border-radius: 12px;
    background: var(--primary);
    color: var(--on-primary, #fff);
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.testimonial-modal__submit:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .home-testimonial-card {
        flex: 0 0 calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 575.98px) {
    .home-testimonials-track {
        gap: 16px;
    }

    .home-testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .testimonial-modal__dialog {
        padding: 22px 18px 18px;
        border-radius: 18px;
    }
}

.institutional-page {
    padding: 48px 0 70px;
    background: var(--body-bg, #fff);
}

.institutional-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.institutional-sidebar {
    position: sticky;
    top: 24px;
    padding: 14px;
    border: 1px solid #edf0f4;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(20, 25, 50, 0.07);
}

.institutional-sidebar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 0;
    background: var(--primary);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.institutional-sidebar-title i {
    font-size: 1.05rem;
    color: var(--secondary);
}

.institutional-nav {
    display: grid;
    gap: 4px;
    margin-top: 10px;
}

.institutional-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-decoration: none;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.institutional-nav-link::before {
    content: "\F285";
    font-family: "bootstrap-icons";
    font-size: 0.85rem;
    color: var(--secondary);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.institutional-nav-link:hover,
.institutional-nav-link:focus {
    background: var(--theme-primary-soft);
    border-color: transparent;
    color: var(--primary);
}

.institutional-nav-link.active {
    background: var(--primary);
    color: #fff;
}

.institutional-nav-link.active::before,
.institutional-nav-link:hover::before,
.institutional-nav-link:focus::before {
    opacity: 1;
    transform: translateX(0);
}

.institutional-nav-link.active::before {
    color: var(--secondary);
}

.institutional-card {
    min-height: 560px;
    padding: 32px;
    border: 1px solid #edf0f4;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(20, 25, 50, 0.07);
}

.institutional-video {
    width: 100%;
    margin-bottom: 32px;
    aspect-ratio: 16 / 5.2;
    border-radius: 14px;
    background: #eef0f5;
    overflow: hidden;
}

.institutional-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.institutional-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 36%);
    align-items: stretch;
    gap: 0;
    margin: 4px 0 32px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(18, 28, 54, 0.06);
}

.institutional-feature h2 {
    display: flex;
    align-items: center;
    min-height: 56px;
    margin: 0;
    padding: 14px 22px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
}

.institutional-feature img {
    width: 100%;
    height: 100%;
    min-height: 114px;
    object-fit: cover;
}

.institutional-title {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 14px;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
}

.institutional-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 3px;
    border-radius: 999px;
    background: var(--secondary);
}

.institutional-intro,
.institutional-content {
    color: var(--body-text, #333);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.65;
}

.institutional-intro {
    margin-bottom: 24px;
}

.institutional-highlight {
    display: block;
    margin: 24px 0;
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    background: var(--theme-secondary-soft);
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.55;
}

.institutional-highlight p {
    margin: 0;
}

.institutional-highlight + .institutional-content {
    margin-top: 26px;
}

.institutional-content p {
    margin: 0 0 18px;
}

.institutional-content ol,
.institutional-content ul {
    margin: 0 0 24px;
    padding-left: 20px;
}

.institutional-content li {
    margin-bottom: 6px;
    font-weight: 500;
}

.institutional-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.institutional-content a:hover {
    color: var(--theme-primary-hover);
}

.institutional-stores-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.institutional-store-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    background: #fff;
    color: var(--body-text, #333);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(18, 26, 66, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

a.institutional-store-card:hover,
a.institutional-store-card:focus {
    transform: translateY(-3px);
    border-color: rgba(var(--primary-rgb), 0.25);
    box-shadow: 0 16px 34px rgba(18, 26, 66, 0.12);
}

.institutional-store-card:hover .institutional-store-name,
.institutional-store-card:focus .institutional-store-name {
    color: var(--primary);
}

.institutional-store-img,
.institutional-store-placeholder {
    width: 100%;
    aspect-ratio: 16 / 7.6;
    margin-bottom: 10px;
    border-radius: 10px;
    object-fit: cover;
}

.institutional-store-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #d3d8e4;
    background: linear-gradient(135deg, #f7f8fb, #eef1f7);
    color: var(--primary);
    font-size: 2rem;
}

.institutional-store-name {
    color: var(--primary);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.25;
}

.institutional-store-city {
    margin-top: 6px;
    color: var(--body-text, #1a1a1a);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.2;
}

.institutional-store-address {
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
}

.institutional-store-phone {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

.site-newsletter {
    overflow: hidden;
    background: var(--newsletter-bg);
    color: var(--newsletter-text);
    padding: 30px 0;
}

.site-newsletter + .site-footer {
    margin-top: 0;
}

.site-newsletter-content {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.site-newsletter-content h2 {
    margin: 0;
    color: var(--newsletter-text);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
}

.site-newsletter-content p {
    margin: 4px 0 16px;
    color: color-mix(in srgb, var(--newsletter-text) 78%, transparent);
    font-size: 0.9rem;
    line-height: 1.4;
}

.site-newsletter-form {
    position: relative;
    display: flex;
    align-items: stretch;
    max-width: 460px;
    margin: 0 auto;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.site-newsletter-form input:not(.site-newsletter-hp) {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 46px;
    border: 0;
    background: transparent;
    color: #333;
    padding: 0 18px;
    font-size: 0.9rem;
}

.site-newsletter-form input::placeholder {
    color: #9aa0a6;
    opacity: 1;
}

.site-newsletter-form input:focus {
    outline: none;
}

.site-newsletter-form button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-height: 46px;
    border: 0;
    background: transparent;
    color: var(--newsletter-btn-color);
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-newsletter-form button:hover,
.site-newsletter-form button:focus {
    transform: translateX(2px);
}

.site-newsletter-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.site-footer {
    margin-top: 48px;
    background: var(--footer-bg);
    color: var(--footer-text);
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 46px 0 40px;
}

.site-footer-col h2 {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 10px;
    color: var(--footer-title);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}

.site-footer-col h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26px;
    height: 2px;
    background: var(--footer-title);
}

.site-footer-about {
    margin: 0;
    color: var(--footer-text);
    font-size: 0.84rem;
    line-height: 1.75;
}

.site-footer-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer-list a {
    color: var(--footer-text);
    font-size: 0.86rem;
    font-weight: 400;
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-list a:hover,
.site-footer-list a:focus,
.site-footer-contact a:hover,
.site-footer-contact a:focus {
    color: var(--footer-link-hover);
}

.site-footer-contact {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: 1px solid color-mix(in srgb, var(--footer-text) 40%, transparent);
    border-radius: 50%;
    color: var(--footer-text);
    font-size: 0.82rem;
}

.site-footer-contact a {
    color: var(--footer-text);
    font-size: 0.86rem;
    text-decoration: none;
}

.site-footer-hours {
    margin: 16px 0 0;
    color: var(--footer-text);
    font-size: 0.82rem;
    line-height: 1.55;
}

.site-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 210px;
}

.site-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid color-mix(in srgb, var(--footer-text) 35%, transparent);
    border-radius: 7px;
    color: var(--footer-text);
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer-social a:hover,
.site-footer-social a:focus {
    color: var(--footer-link-hover);
    border-color: var(--footer-link-hover);
    transform: translateY(-2px);
}

.site-footer-extra {
    background: color-mix(in srgb, var(--footer-bg) 93%, #000);
    padding: 32px 0;
}

.site-footer-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.site-footer-extra-col h2 {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 10px;
    color: var(--footer-title);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-footer-extra-col h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26px;
    height: 2px;
    background: var(--footer-title);
}

.site-footer-extra-img {
    display: block;
    max-width: 100%;
    max-height: 64px;
    height: auto;
    object-fit: contain;
}

.site-footer-bottom {
    background: var(--footer-bg);
    border-top: 1px solid color-mix(in srgb, var(--footer-text) 18%, transparent);
    padding: 18px 0;
}

.site-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-footer-copyright,
.site-footer-credits {
    margin: 0;
    color: color-mix(in srgb, var(--footer-text) 85%, transparent);
    font-size: 0.78rem;
    line-height: 1.4;
}

.site-footer-credits {
    text-align: right;
}

.site-footer-powered {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.site-footer-powered span {
    color: color-mix(in srgb, var(--footer-text) 85%, transparent);
    font-size: 0.78rem;
    line-height: 1;
}

.site-footer-powered-logo {
    height: 22px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.site-footer-powered-name {
    color: #888;
    font-size: 0.85rem;
    font-weight: 700;
}

.site-footer-powered:hover .site-footer-powered-logo,
.site-footer-powered:focus .site-footer-powered-logo {
    filter: grayscale(0);
    opacity: 1;
}

.site-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 28px;
    z-index: 1070;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #4cc362;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(20, 80, 34, 0.28);
    transition: transform 0.2s ease, background 0.2s ease;
}

.site-whatsapp-float:hover,
.site-whatsapp-float:focus {
    background: #38b953;
    color: #fff;
    transform: translateY(-2px);
}

.site-back-to-top {
    position: fixed;
    left: 24px;
    bottom: 28px;
    z-index: 1069;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 0;
    background: #1a1a1a;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.85);
    box-shadow: 0 10px 30px rgba(15, 15, 15, 0.22);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s linear 0.45s,
                background 0.2s ease;
}

.site-back-to-top[hidden] {
    display: inline-flex;
}

.site-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s linear 0s,
                background 0.2s ease;
}

.site-back-to-top:hover,
.site-back-to-top:focus-visible {
    background: #333;
    transform: translateY(-3px) scale(1);
}

.site-back-to-top i {
    transition: transform 0.25s ease;
}

.site-back-to-top:hover i {
    transform: translateY(-2px);
}

.header-mobile-search {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eef0f4;
    padding: 10px 0;
    box-sizing: border-box;
}

.header-mobile-search .header-search-wrap { width: 100%; }

@media (max-width: 991px) {
    .product-mobile-filter-bar {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0 0 16px;
    }

    .product-mobile-filter-btn {
        display: inline-flex;
        flex: 1 1 auto;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 44px;
        border: 1px solid #1a1a1a;
        border-radius: 0;
        background: #1a1a1a;
        color: #fff;
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.1;
    }

    .product-mobile-filter-btn i {
        color: #fff;
        font-size: 1.02rem;
        line-height: 1;
    }

    .product-mobile-filter-btn small {
        padding: 3px 7px;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.18);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 500;
    }

    .product-mobile-filter-total {
        flex: 0 0 auto;
        color: #9aa0a6;
        font-size: 0.78rem;
        font-weight: 500;
        white-space: nowrap;
    }

    .product-filter-overlay {
        position: fixed;
        inset: 0;
        z-index: 1084;
        display: block;
        background: rgba(10, 14, 40, 0.44);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s ease;
    }

    .product-filter-overlay[hidden] {
        display: none;
    }

    .product-filter-open {
        overflow: hidden;
    }

    .product-filter-open .product-filter-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .product-filter-sidebar {
        position: fixed;
        top: auto;
        right: 0;
        bottom: -100vh;
        left: 0;
        z-index: 1085;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 86dvh;
        margin: 0;
        padding: 0 !important;
        border-radius: 18px 18px 0 0;
        background: #fff;
        box-shadow: 0 -18px 42px rgba(5, 10, 30, 0.2);
        transform: none;
        transition: none;
        overflow: hidden;
    }

    .product-filter-open .product-filter-sidebar,
    .product-filter-sidebar.open {
        bottom: 0;
        transform: none;
    }

    .product-filter-panel {
        position: static;
        display: flex;
        flex-direction: column;
        max-height: 86dvh;
        margin-bottom: 0;
        padding: 0 18px 18px;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .product-filter-mobile-head {
        position: sticky;
        top: 0;
        z-index: 3;
        display: grid;
        grid-template-columns: 42px 1fr 42px;
        align-items: center;
        min-height: 58px;
        margin: 0 -18px 4px;
        padding: 0 12px;
        border-bottom: 1px solid #ededed;
        background: #fff;
        color: #1a1a1a;
    }

    .product-filter-mobile-head span {
        grid-column: 2;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
    }

    .product-filter-mobile-head button {
        grid-column: 3;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        margin-left: auto;
        border: 1px solid #ededed;
        border-radius: 0;
        background: #fff;
        color: #1a1a1a;
        font-size: 0.96rem;
    }

    .product-filter-title {
        display: none;
    }

    .product-filter-group summary {
        min-height: 44px;
        padding: 12px 0;
        font-size: 0.95rem;
    }

    .product-filter-options {
        padding-bottom: 14px;
    }

    .product-filter-option {
        min-height: 31px;
        font-size: 0.86rem;
    }

    .product-filter-input {
        min-height: 40px;
        font-size: 0.9rem;
    }

    .product-filter-submit {
        position: sticky;
        bottom: 0;
        z-index: 2;
        width: calc(100% + 36px);
        min-height: 44px;
        margin: 16px -18px 0;
        border-radius: 0;
        box-shadow: 0 -10px 18px rgba(255, 255, 255, 0.96);
    }

    .product-filter-clear {
        min-height: 40px;
        margin-bottom: 4px;
    }

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

    .product-sort-form {
        width: 100%;
        min-width: 0;
    }

    .product-pagination-controls {
        gap: 8px;
    }

    .product-pagination-btn--nav span {
        display: none;
    }

    .product-pagination-btn--nav {
        min-width: 42px;
        padding: 0 12px;
    }

    .product-pagination-page,
    .product-pagination-ellipsis {
        min-width: 38px;
        height: 38px;
        font-size: 0.82rem;
    }

    .product-pagination-meta-sep,
    .product-pagination-meta-page {
        display: none;
    }

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

    .institutional-sidebar {
        position: static;
        top: auto;
    }

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

    .institutional-card {
        padding: 24px;
    }

    .institutional-video {
        margin-bottom: 28px;
        aspect-ratio: 16 / 7;
    }

    .institutional-feature {
        grid-template-columns: 1fr;
    }

    .institutional-feature img {
        height: auto;
        max-height: 220px;
    }

    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 42px;
    }

    .site-footer-extra-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .site-footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .site-footer-credits {
        text-align: left;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }

    .checkout-payment-grid {
        grid-template-columns: 1fr;
    }

    .cart-summary-card {
        position: static;
    }

    .cart-items-header {
        display: none;
    }

    .cart-item-card {
        grid-template-columns: 78px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .cart-item-info {
        grid-column: 2 / 3;
    }

    .cart-item-price,
    .cart-qty-form,
    .cart-item-subtotal {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 90px;
    }

    .cart-remove-form {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
    }

    .cart-mobile-label {
        display: block;
    }

    .product-buy-layout {
        grid-template-columns: 1fr;
    }

    .product-installments-card {
        max-width: 460px;
    }

    .header-layout {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        grid-template-areas:
            "logo actions"
            "nav nav";
    }

    .header-logo-panel {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
        padding: 10px 12px 10px 0;
        padding-left: calc(50vw - 50%);
        margin-left: calc(50% - 50vw);
    }

    .header-logo-panel::before {
        width: calc(100% + 28px);
        clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
    }

    .header-logo-img {
        max-height: 44px;
        max-width: min(160px, 48vw);
    }

    .header-actions-row {
        padding: 10px 0;
        justify-content: flex-end;
        gap: 12px;
        flex-shrink: 0;
    }

    .header-cart-panel {
        padding-left: 12px;
        padding-right: calc(50vw - 50%);
        margin-right: calc(50% - 50vw);
    }

    .header-cart-panel::before {
        width: calc(100% + 28px);
        clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
    }

    .header-cart {
        font-size: 1.65rem;
        padding-right: 10px;
    }

    .header-category-nav {
        border-top: 1px solid #eef0f4;
    }

    .header-category-link {
        flex-direction: row;
        justify-content: flex-start;
        padding: 12px 16px;
        width: 100%;
        border-bottom: 1px solid #eef0f4;
        gap: 12px;
    }

    .header-category-list {
        flex-direction: column;
        align-items: stretch;
    }

    .header-category-item { flex: none; }

    .header-category-item + .header-category-item::before { display: none; }

    .header-category-icon { font-size: 1.25rem; }

    .header-category-img {
        width: 26px;
        height: 26px;
    }

    .header-category-label {
        font-size: 0.88rem;
        font-weight: 800;
    }

    .topbar-inner { padding: 7px 0; }
}

@media (max-width: 768px) {
    .institutional-page {
        padding: 28px 0 48px;
    }

    .institutional-nav {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .institutional-card {
        padding: 18px;
        border-radius: 14px;
    }

    .institutional-video {
        margin-bottom: 24px;
        aspect-ratio: 16 / 9;
    }

    .institutional-feature {
        margin-bottom: 26px;
    }

    .institutional-feature h2 {
        min-height: 48px;
        font-size: 1.2rem;
    }

    .institutional-title {
        font-size: 1.28rem;
    }

    .institutional-stores-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .institutional-store-city {
        font-size: 1rem;
    }

    .site-newsletter {
        padding: 24px 0;
    }

    .site-newsletter-content h2 {
        font-size: 1.25rem;
    }

    .site-newsletter-content p {
        font-size: 0.86rem;
    }

    .site-footer {
        margin-top: 0;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 34px 0 30px;
    }

    .site-footer-col h2 {
        margin-bottom: 14px;
    }

    .site-footer-extra {
        padding: 26px 0;
    }

    .site-footer-extra-grid {
        gap: 24px;
        text-align: center;
    }

    .site-footer-extra-col h2 {
        margin-bottom: 14px;
    }

    .site-footer-extra-col h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .site-footer-extra-img {
        margin: 0 auto;
        max-height: 52px;
    }

    .site-footer-bottom {
        padding-top: 16px;
        padding-bottom: 18px;
    }

    .site-footer-bottom-inner {
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .site-footer-copyright,
    .site-footer-credits {
        text-align: center;
    }

    .site-footer-powered {
        justify-content: center;
    }

    .site-whatsapp-float {
        right: 16px;
        bottom: 18px;
        width: 54px;
        height: 54px;
        font-size: 1.85rem;
    }

    .checkout-page {
        padding: 24px 0 52px;
    }

    .checkout-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .checkout-trust-badges {
        justify-content: flex-start;
    }

    .checkout-login-card {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .checkout-login-card a {
        grid-column: 1 / -1;
    }

    .checkout-section-card,
    .checkout-summary {
        padding: 18px;
        border-radius: 10px;
    }

    .checkout-section-header {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 12px;
    }

    .checkout-step {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .checkout-field--half,
    .checkout-field--zip,
    .checkout-field--street,
    .checkout-field--number,
    .checkout-field--complement,
    .checkout-field--neighborhood {
        grid-column: span 12;
    }

    .checkout-shipping-option {
        grid-template-columns: 20px minmax(0, 1fr);
    }

    .checkout-shipping-price {
        grid-column: 2 / 3;
    }

    .checkout-summary-item {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .checkout-summary-image {
        width: 48px;
        height: 48px;
    }

    .checkout-summary-item > strong {
        grid-column: 2 / 3;
    }

    .cart-page {
        padding: 24px 0 52px;
    }

    .cart-page-heading h1 {
        font-size: 1.7rem;
    }

    .cart-coupon-card {
        grid-template-columns: 1fr;
    }

    .cart-coupon-field {
        flex-direction: column;
    }

    .cart-coupon-field button {
        min-height: 42px;
    }

    .cart-item-card {
        padding: 16px;
    }

    .cart-item-price,
    .cart-qty-form,
    .cart-item-subtotal {
        padding-left: 0;
    }

    .customer-register-page {
        padding: 28px 0 54px;
    }

    .customer-register-heading p {
        font-size: 0.9rem;
    }

    .customer-type-toggle {
        display: flex;
        width: 100%;
        gap: 0;
    }

    .customer-type-toggle label {
        min-width: 0;
        flex: 1;
        padding: 11px 12px;
        font-size: 0.82rem;
        text-align: center;
    }

    .customer-register-section h2 {
        font-size: 0.98rem;
        letter-spacing: -0.01em;
    }

    .breadcrumb-item.active {
        max-width: 42vw;
    }

    .product-heading-meta {
        align-items: flex-start;
        gap: 10px;
    }

    .product-category-kicker {
        font-size: 0.74rem;
        letter-spacing: 0.04em;
    }

    .product-brand-mark {
        min-width: 96px;
    }

    .product-brand-logo {
        max-width: 120px;
        max-height: 28px;
    }

    .tire-pack-selector {
        gap: 10px;
    }

    .tire-pack-option {
        width: calc(25% - 8px);
        min-width: 64px;
    }

    .product-purchase-row {
        grid-template-columns: 110px 1fr;
        gap: 12px;
        max-width: none;
    }

    .product-detail-buy-btn {
        width: 100%;
    }

    .product-media {
        padding: 12px 12px 0;
    }

    .product-img-link {
        aspect-ratio: 1 / 1;
    }

    .product-title {
        font-size: 0.92rem;
    }

    .product-card .price-main {
        font-size: 1.08rem;
    }

    .product-card {
        border-color: #efefef;
        box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    }

    .product-actions {
        grid-template-rows: 1fr;
        opacity: 1;
        padding-bottom: 14px;
    }

    .product-buy-btn,
    .product-cart-btn {
        min-height: 40px;
        font-size: 0.78rem;
    }

    .product-cart-btn {
        font-size: 0.72rem;
    }

    .product-badge--left_vertical {
        left: 8px;
        width: 20px;
        height: 180px;
    }

    .product-badge--right,
    .product-badge--top_left,
    .product-badge--top_right {
        width: 56px;
        max-height: 56px;
    }

    .product-suggestions-item {
        flex-basis: calc(50% - 8px);
        min-width: calc(50% - 8px);
    }

    .suggestions-nav {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .suggestions-nav--prev {
        left: -8px;
    }

    .suggestions-nav--next {
        right: -8px;
    }

    .product-suggestions-carousel {
        padding: 0 8px;
    }

    .product-suggestions-item {
        flex-basis: calc(50% - 8px);
        min-width: calc(50% - 8px);
    }

    .banner-img {
        height: auto;
        aspect-ratio: 776 / 767;
    }
    .hero-banner .carousel-control-prev,
    .hero-banner .carousel-control-next {
        width: 36px;
        height: 36px;
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }

    .hero-banner .carousel-control-prev { left: 12px; }
    .hero-banner .carousel-control-next { right: 12px; }
    .hero-banner .carousel-indicators { bottom: 12px; }

    .home-benefits-bar {
        padding: 1.1rem 0;
        margin-bottom: 1rem;
    }

    .home-benefits-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.25rem 0.5rem;
    }

    .home-benefit-item {
        flex: 0 0 calc(33.333% - 0.5rem);
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.45rem;
    }

    .home-benefit-icon {
        width: 2.1rem;
        height: 2.1rem;
        font-size: 1.6rem;
    }

    .home-benefit-text {
        align-items: center;
        text-align: center;
        gap: 0.05rem;
    }

    .home-benefit-text strong {
        font-size: 0.62rem;
    }

    .home-benefit-text span {
        font-size: 0.66rem;
        line-height: 1.25;
    }

    .home-highlights-section {
        padding: 0 0 1.25rem;
    }

    .home-highlights-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .home-highlight-card {
        aspect-ratio: 16 / 11;
        min-height: 220px;
    }

    .home-highlight-content {
        gap: 0.85rem;
        padding: 1.25rem 1rem;
    }

    .home-highlight-title {
        font-size: 1.15rem;
    }

    .home-highlight-btn {
        min-width: 8.5rem;
        padding: 0.5rem 1.25rem;
        font-size: 0.72rem;
    }

    .topbar-promo { font-size: 0.65rem; }
}

@media (max-width: 380px) {
    .home-benefits-list {
        gap: 1.1rem 0.6rem;
    }

    .home-benefit-item {
        flex: 0 0 calc(50% - 0.6rem);
    }

    .home-benefit-text strong {
        font-size: 0.66rem;
    }

    .home-benefit-text span {
        font-size: 0.7rem;
    }
}

.checkout-page .form-control,
.checkout-page .form-select,
.checkout-page button,
.checkout-page a,
.checkout-page label,
.checkout-page span,
.checkout-page aside,
.checkout-page article,
.checkout-page .checkout-section-card,
.checkout-page .checkout-summary,
.checkout-page .checkout-login-card,
.checkout-page .checkout-trust-badges span,
.checkout-page .checkout-shipping-empty,
.checkout-page .checkout-shipping-option,
.checkout-page .checkout-payment-option,
.checkout-page .checkout-summary-image,
.checkout-page .checkout-payment-icon,
.checkout-page .checkout-step,
.checkout-page .checkout-summary-header > span,
.checkout-page .checkout-payment-result {
    border-radius: 0;
}

/* Minha conta - minimal premium theme */
.customer-account-page {
    background: #fff;
}

.customer-account-hero,
.customer-order-card,
.customer-account-panel,
.customer-profile-photo-card,
.customer-tracking-card,
.customer-empty-state,
.customer-order-detail-header,
.customer-account-shortcuts {
    border: 1px solid #ededed;
    border-radius: 0;
    box-shadow: none;
}

.customer-account-hero {
    margin-bottom: 16px;
    padding: 24px;
}

.customer-account-profile span {
    color: #9aa0a6;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.customer-account-profile h1 {
    color: #1a1a1a;
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.customer-account-profile p {
    color: #777;
}

.customer-account-stat,
.customer-account-stats div {
    display: block;
    min-width: 112px;
    padding: 14px 16px;
    border: 1px solid #ededed;
    border-radius: 0;
    background: #fafafa;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.customer-account-stat:hover,
.customer-account-stat:focus,
.customer-account-stat.active {
    border-color: #1a1a1a;
    background: #fff;
    text-decoration: none;
}

.customer-account-stat strong,
.customer-account-stats strong {
    color: #1a1a1a;
    font-size: 1.35rem;
    font-weight: 700;
}

.customer-account-stat span,
.customer-account-stats span {
    color: #9aa0a6;
    font-size: 0.82rem;
}

.customer-account-shortcuts {
    margin-bottom: 16px;
    padding: 8px;
    background: #fff;
}

.customer-account-shortcut {
    border: 1px solid #e2e2e2;
    border-radius: 0;
    color: #555;
    font-weight: 500;
}

.customer-account-shortcut:hover,
.customer-account-shortcut:focus,
.customer-account-shortcut.active {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.customer-account-shortcut--logout:hover,
.customer-account-shortcut--logout:focus {
    border-color: #ee4266;
    background: #fff;
    color: #ee4266;
}

.customer-account-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 14px 16px;
    border: 1px solid #f0d9a8;
    border-radius: 0;
    background: #fffaf0;
    color: #6b5a2e;
}

.customer-account-alert i {
    margin-top: 2px;
    font-size: 1.1rem;
}

.customer-account-alert strong,
.customer-account-alert span {
    display: block;
}

.customer-account-alert strong {
    color: #1a1a1a;
    font-weight: 600;
}

.customer-account-alert span {
    margin-top: 2px;
    font-size: 0.86rem;
}

.customer-account-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.customer-account-btn--primary {
    background: #1a1a1a;
    color: #fff;
}

.customer-account-btn--primary:hover,
.customer-account-btn--primary:focus {
    border-color: #333;
    background: #333;
    color: #fff;
}

.customer-account-btn--outline:hover,
.customer-account-btn--outline:focus {
    background: #1a1a1a;
    color: #fff;
}

.customer-order-card .accordion-button {
    padding: 18px 20px;
    border-radius: 0;
    box-shadow: none;
}

.customer-order-card .accordion-button:not(.collapsed) {
    background: #fafafa;
    color: #1a1a1a;
    box-shadow: none;
}

.customer-order-main strong,
.customer-account-panel h2,
.customer-order-grid h3,
.customer-order-detail-header h1,
.customer-tracking-head strong,
.customer-empty-state h2 {
    color: #1a1a1a;
    font-weight: 600;
}

.customer-order-main small,
.customer-order-info span,
.customer-tracking-code span,
.customer-tracking-head span,
.customer-empty-state p,
.customer-order-detail-header p {
    color: #9aa0a6;
}

.customer-order-summary > strong,
.customer-order-item > strong:last-child,
.customer-order-total strong:last-child,
.customer-order-detail-item > strong:last-child {
    color: #1a1a1a;
}

.customer-order-progress span {
    border-radius: 0;
    background: #f0f0f0;
    color: #777;
}

.customer-order-progress .is-done span {
    background: #1a1a1a;
    color: #fff;
}

.customer-order-progress .is-done small {
    color: #1a1a1a;
}

.customer-order-item,
.customer-order-info,
.customer-order-total,
.customer-order-detail-item,
.customer-tracking-code,
.customer-order-local-nav {
    border: 1px solid #ededed;
    border-radius: 0;
    background: #fafafa;
}

.customer-order-detail-header {
    margin-bottom: 16px;
    padding: 24px;
}

.customer-order-detail-header span {
    color: #9aa0a6;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.customer-order-local-nav {
    margin-bottom: 16px;
    padding: 8px;
    background: #fff;
}

.customer-order-local-nav a {
    border-radius: 0;
    color: #555;
    font-weight: 500;
}

.customer-order-local-nav a:hover,
.customer-order-local-nav a:focus {
    background: #1a1a1a;
    color: #fff;
}

.customer-tracking-actions {
    margin-top: 14px;
}

.customer-tracking-empty {
    margin: 0;
    color: #9aa0a6;
    font-size: 0.86rem;
}

.customer-empty-state i {
    border-radius: 0;
    background: #fafafa;
    border: 1px solid #ededed;
    color: #1a1a1a;
}

.customer-account-page .form-control,
.customer-account-page .form-select,
.customer-account-page .app-file-field-box,
.customer-account-page .customer-account-btn,
.customer-account-page .customer-account-shortcut,
.customer-account-page .customer-order-local-nav a {
    border-radius: 0;
}

.customer-account-page .form-control,
.customer-account-page .form-select {
    border: 1px solid #e2e2e2;
    box-shadow: none;
}

.customer-account-page .form-control:focus,
.customer-account-page .form-select:focus {
    border-color: #bdbdbd;
    box-shadow: none;
}

.customer-account-page .form-label {
    color: #555;
    font-size: 0.82rem;
    font-weight: 500;
}

.customer-account-page .app-file-field-box {
    border-color: #e2e2e2;
    background: #fafafa;
}

.customer-account-page .app-file-field-icon {
    border-radius: 0;
    background: #fff;
    border: 1px solid #ededed;
    color: #1a1a1a;
}

.customer-tracking-timeline div > span {
    border-radius: 0;
    background: #1a1a1a;
}

@media (max-width: 991px) {
    .customer-account-stats {
        width: 100%;
    }

    .customer-account-stat {
        flex: 1;
    }
}

/* ========== THEME CUSTOMIZATION OVERRIDES ========== */
a {
    color: var(--link-color);
}

.form-control,
.form-select {
    background-color: var(--input-bg);
    border-color: var(--input-border);
    color: var(--input-text);
}

.form-control:focus,
.form-select:focus {
    background-color: var(--input-bg);
    border-color: var(--button-primary-bg);
    color: var(--input-text);
    box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--button-primary-bg) 16%, transparent);
}

.card,
.product-card,
.auth-drawer-panel,
.cart-drawer,
.modal-content {
    background-color: var(--card-bg);
}

.cart-page,
.checkout-page {
    background: var(--cart-checkout-bg);
    color: var(--cart-checkout-text);
}

.cart-items-panel,
.cart-coupon-card,
.cart-summary-card,
.cart-empty-state,
.checkout-login-card,
.checkout-section-card,
.checkout-summary {
    background: var(--cart-checkout-card-bg);
    border-color: var(--border-color);
    color: var(--cart-checkout-text);
}

.cart-page-heading h1,
.cart-empty-state h2,
.cart-item-title,
.cart-coupon-card strong,
.cart-summary-card h2,
.cart-summary-row strong,
.cart-summary-total,
.cart-summary-total strong,
.checkout-heading h1,
.checkout-login-card strong,
.checkout-section-header h2,
.checkout-summary-header h2,
.checkout-summary-info a,
.checkout-shipping-copy strong,
.checkout-payment-option strong,
.checkout-total-row strong,
.checkout-summary-item > strong,
.checkout-total-row--grand,
.checkout-total-row--grand strong {
    color: var(--cart-checkout-text);
}

.cart-eyebrow,
.cart-empty-state p,
.cart-items-header,
.cart-item-info small,
.cart-item-brand,
.cart-mobile-label,
.cart-coupon-card span,
.cart-summary-row,
.checkout-eyebrow,
.checkout-heading p,
.checkout-login-card span,
.checkout-section-header p,
.checkout-summary-header p,
.checkout-summary-info span,
.checkout-shipping-copy small,
.checkout-payment-option small,
.checkout-summary-footer {
    color: var(--cart-checkout-muted);
}

.cart-qty-input,
.cart-coupon-field input,
.checkout-field .form-control,
.checkout-field .form-select {
    background: var(--input-bg);
    border-color: var(--input-border);
    color: var(--input-text);
}

.cart-primary-action,
.checkout-submit,
.product-cart-btn,
.cart-drawer-button--primary {
    background: var(--button-primary-bg);
    border-color: var(--button-primary-bg);
    color: var(--button-primary-text);
}

.cart-primary-action:hover,
.cart-primary-action:focus,
.checkout-submit:hover,
.checkout-submit:focus,
.product-cart-btn:hover,
.product-cart-btn:focus,
.cart-drawer-button--primary:hover,
.cart-drawer-button--primary:focus {
    background: var(--button-primary-hover);
    border-color: var(--button-primary-hover);
    color: var(--button-primary-text);
}

.cart-secondary-action,
.cart-coupon-field button,
.cart-drawer-button--outline {
    background: transparent;
    border-color: var(--button-secondary-bg);
    color: var(--button-secondary-bg);
}

.cart-secondary-action:hover,
.cart-secondary-action:focus,
.cart-coupon-field button:hover,
.cart-coupon-field button:focus,
.cart-drawer-button--outline:hover,
.cart-drawer-button--outline:focus {
    background: var(--button-secondary-bg);
    border-color: var(--button-secondary-bg);
    color: var(--button-secondary-text);
}

.cart-remove-btn:hover,
.cart-remove-btn:focus {
    border-color: var(--price-sale-color);
    color: var(--price-sale-color);
}

.cart-summary-row--discount,
.cart-summary-row--discount strong,
.checkout-total-row--discount,
.checkout-total-row--discount strong {
    color: var(--pix-color);
}
