.czsf-body {
    --czsf-gray-50: #f9fafb;
    --czsf-gray-100: #f3f4f6;
    --czsf-gray-200: #e5e7eb;
    --czsf-gray-300: #d1d5db;
    --czsf-gray-400: #9ca3af;
    --czsf-gray-500: #6b7280;
    --czsf-gray-600: #4b5563;
    --czsf-gray-700: #374151;
    --czsf-gray-800: #1f2937;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    background: var(--czsf-body-bg, #f9fafb);
    color: var(--czsf-body-text, #1f2937);
    font-family: var(--czsf-font, Inter, sans-serif);
    font-size: 14px;
    line-height: 1.5;
}

.czsf-body :where(button, input, select, textarea) {
    font: inherit;
}

.czsf-body :where(button, a) {
    -webkit-tap-highlight-color: transparent;
}

.czsf-body svg {
    display: block;
}

.czsf-container {
    width: calc(100% - 32px);
    max-width: 1152px;
    margin-inline: auto;
}

.czsf-main {
    flex: 1 0 auto;
    min-width: 0;
}

.czsf-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 0;
    background: var(--czsf-header-bg, #fff);
    box-shadow: 0 1px 0 rgba(17, 24, 39, .04);
}

.czsf-header-inner {
    min-height: 64px;
    padding-block: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.czsf-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--czsf-header-text, #1f2937);
    text-decoration: none;
}

.czsf-brand img {
    width: auto;
    max-width: 220px;
    height: 40px;
    border-radius: 0;
    object-fit: contain;
}

.czsf-brand strong {
    max-width: min(55vw, 420px);
    overflow: hidden;
    color: var(--czsf-header-text, var(--czsf-primary));
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.czsf-header-icon {
    position: relative;
    width: 36px;
    height: 36px;
    padding: 8px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--czsf-header-text, #4b5563);
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}

.czsf-header-icon:hover {
    background: var(--czsf-gray-100);
}

.czsf-header-icon svg,
.czsf-search-overlay svg,
.czsf-mobile-menu svg,
.czsf-cart-drawer svg,
.czsf-footer svg,
.czsf-whatsapp svg,
.czsf-product-card svg,
.czsf-order-summary .czsf-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.czsf-mobile-menu-button {
    display: none;
}

.czsf-cart-link {
    gap: 0;
    white-space: normal;
}

.czsf-cart-link b {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.czsf-nav {
    overflow: visible;
    border-top: 1px solid color-mix(in srgb, var(--czsf-menu-text) 8%, transparent);
    background: var(--czsf-menu-bg, #fff);
}

.czsf-nav > .czsf-container {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.czsf-nav > .czsf-container::-webkit-scrollbar {
    display: none;
}

.czsf-nav-item {
    position: relative;
    flex: 0 0 auto;
    padding-block: 8px;
}

.czsf-nav-item > a {
    min-height: 30px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 999px;
    color: var(--czsf-menu-text, #4b5563);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    text-decoration: none;
    white-space: nowrap;
    transition: color .15s ease, background-color .15s ease;
}

.czsf-nav-item > a:hover,
.czsf-nav-item > a.is-active {
    background: color-mix(in srgb, var(--czsf-primary) 8%, transparent);
    color: var(--czsf-primary);
}

.czsf-nav-item > a.is-active {
    font-weight: 600;
}

.czsf-nav-item > a svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.czsf-nav-dropdown {
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    z-index: 50;
    min-width: 200px;
    padding: 6px 0;
    display: none;
    border: 1px solid var(--czsf-gray-200);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.czsf-nav-item:hover .czsf-nav-dropdown,
.czsf-nav-item:focus-within .czsf-nav-dropdown {
    display: block;
}

.czsf-nav-dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--czsf-gray-600);
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.czsf-nav-dropdown a:hover {
    background: var(--czsf-gray-50);
    color: var(--czsf-primary);
}

.czsf-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    padding: 24px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, .9);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.czsf-search-overlay[hidden] {
    display: none;
}

.czsf-search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.czsf-search-overlay > button {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    padding: 4px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .7);
    cursor: pointer;
}

.czsf-search-overlay > button svg {
    width: 32px;
    height: 32px;
}

.czsf-search-overlay > div {
    width: min(768px, 100%);
}

.czsf-search-overlay form {
    position: relative;
}

.czsf-search-overlay input {
    width: 100%;
    padding: 0 64px 16px 0;
    border: 0;
    border-bottom: 2px solid var(--czsf-primary);
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    outline: none;
}

.czsf-search-overlay input::placeholder {
    color: rgba(255, 255, 255, .5);
}

.czsf-search-overlay form button {
    position: absolute;
    top: 50%;
    right: 0;
    width: 48px;
    height: 48px;
    padding: 4px;
    transform: translateY(-58%);
    border: 0;
    background: transparent;
    color: var(--czsf-primary);
    cursor: pointer;
}

.czsf-search-overlay form button svg {
    width: 40px;
    height: 40px;
}

.czsf-search-overlay p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .4);
    font-size: 14px;
}

.czsf-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
}

.czsf-mobile-menu[hidden] {
    display: none;
}

.czsf-mobile-menu > div {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
}

.czsf-mobile-menu aside {
    position: relative;
    width: min(288px, 80vw);
    height: 100%;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .35);
}

.czsf-mobile-menu header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--czsf-gray-100);
}

.czsf-mobile-menu header strong {
    color: var(--czsf-gray-800);
    font-weight: 700;
}

.czsf-mobile-menu header button {
    padding: 4px;
    border: 0;
    background: transparent;
    color: var(--czsf-gray-400);
}

.czsf-mobile-menu nav {
    padding: 8px 0;
}

.czsf-mobile-menu nav a {
    display: block;
    padding: 12px 20px;
    color: var(--czsf-gray-700);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.czsf-mobile-menu nav a:hover {
    background: var(--czsf-gray-50);
}

.czsf-mobile-menu nav a.is-child {
    padding: 10px 32px;
    background: var(--czsf-gray-50);
    color: var(--czsf-gray-600);
    font-weight: 400;
}

.czsf-banner-slider {
    position: relative;
    overflow: hidden;
    background: var(--czsf-gray-200);
}

.czsf-banner-track {
    position: relative;
    min-height: 0;
    aspect-ratio: 1920 / 650;
}

.czsf-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease;
}

.czsf-banner-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.czsf-banner-slide a,
.czsf-banner-slide picture,
.czsf-banner-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.czsf-banner-slide img {
    object-fit: cover;
}

.czsf-banner-overlay,
.czsf-banner-arrow {
    display: none;
}

.czsf-banner-dots {
    position: absolute;
    z-index: 4;
    bottom: 12px;
    left: 50%;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.czsf-banner-dots button,
.czsf-banner-dots button.is-active {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
}

.czsf-banner-dots button.is-active {
    background: #fff;
}

.czsf-hero {
    padding: 64px 0;
    background: linear-gradient(120deg, var(--czsf-secondary), #30304e);
    color: #fff;
}

.czsf-hero small {
    color: var(--czsf-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

.czsf-hero h1 {
    margin: 8px 0 0;
    font-size: 40px;
    line-height: 1.1;
}

.czsf-hero p {
    max-width: 640px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
}

.czsf-hero a {
    min-height: 42px;
    margin-top: 20px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    background: var(--czsf-button-bg);
    color: var(--czsf-button-text);
    font-weight: 600;
    text-decoration: none;
}

.czsf-category-section {
    margin-top: 32px;
}

.czsf-products-section {
    margin: 40px 0 32px;
}

.czsf-section-title {
    min-height: 32px;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.czsf-section-title h2,
.czsf-section-title > div h2 {
    margin: 0;
    color: var(--czsf-gray-800);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.czsf-section-title small {
    display: none;
}

.czsf-section-title > div:last-child {
    display: flex;
    gap: 8px;
}

.czsf-section-title button {
    width: 32px;
    height: 32px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid var(--czsf-gray-300);
    border-radius: 50%;
    background: transparent;
    color: var(--czsf-gray-500);
    font-size: 22px;
    cursor: pointer;
}

.czsf-category-viewport {
    overflow: hidden;
}

.czsf-categories {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 112px) / 8);
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.czsf-categories::-webkit-scrollbar {
    display: none;
}

.czsf-categories a {
    min-width: 0;
    padding: 0;
    display: block;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--czsf-gray-700);
    text-align: center;
    text-decoration: none;
}

.czsf-categories a > span {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
    background: var(--czsf-gray-100);
    color: var(--czsf-gray-300);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
    transition: box-shadow .2s ease, transform .3s ease;
}

.czsf-categories a:hover > span {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1);
}

.czsf-categories img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.czsf-categories a:hover img {
    transform: scale(1.05);
}

.czsf-categories svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.czsf-categories strong {
    display: block;
    margin-top: 8px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.czsf-categories small {
    display: none;
}

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

.czsf-product-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 0;
    border-radius: var(--czsf-card-radius, 12px);
    background: #fff;
    box-shadow: var(--czsf-card-shadow, 0 1px 2px rgba(0, 0, 0, .05));
    transition: box-shadow .2s ease;
}

.czsf-product-card:hover {
    transform: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
}

.czsf-product-main {
    display: block;
    color: inherit;
    text-decoration: none;
}

.czsf-product-image {
    position: relative;
    height: auto;
    aspect-ratio: var(--czsf-image-ratio, 4/3);
    overflow: hidden;
    display: grid;
    place-items: center;
    background: var(--czsf-gray-100);
    color: var(--czsf-gray-400);
    font-size: 12px;
}

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

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

.czsf-product-image .czsf-sale-badge,
.czsf-product-image .czsf-featured-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
}

.czsf-product-image .czsf-featured-badge {
    right: 8px;
    left: auto;
    background: #facc15;
    color: #713f12;
}

.czsf-product-info {
    padding: 12px 12px 4px;
    display: block;
}

.czsf-product-info h3 {
    min-height: 40px;
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    color: var(--czsf-gray-800);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.czsf-product-info > div {
    min-height: 27px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.czsf-product-info del {
    color: var(--czsf-gray-400);
    font-size: 12px;
}

.czsf-product-info strong {
    color: var(--czsf-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
}

.czsf-product-actions {
    margin-top: auto;
    padding: 4px 12px 12px;
}

.czsf-product-actions > form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.czsf-product-actions > form > div {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
}

.czsf-product-actions > form > div button,
.czsf-product-actions > form > div input {
    width: 36px;
    height: 36px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid var(--czsf-gray-300);
    border-radius: 8px;
    background: #fff;
    color: var(--czsf-gray-600);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.czsf-product-actions > form > div input {
    width: 40px;
    color: var(--czsf-gray-800);
    font-size: 14px;
    font-weight: 400;
    appearance: textfield;
}

.czsf-product-actions input::-webkit-inner-spin-button,
.czsf-product-actions input::-webkit-outer-spin-button {
    appearance: none;
}

.czsf-card-primary,
.czsf-card-secondary {
    width: 100%;
    min-width: 0;
    height: 36px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 0;
    border-radius: 8px;
    background: var(--czsf-button-bg, var(--czsf-primary));
    color: var(--czsf-button-text, #fff);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .15s ease;
}

.czsf-card-primary:hover,
.czsf-card-secondary:hover {
    opacity: .9;
}

.czsf-card-primary:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.czsf-card-primary svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.czsf-card-secondary {
    border: 2px solid var(--czsf-button-bg, var(--czsf-primary));
    background: #fff;
    color: var(--czsf-button-bg, var(--czsf-primary));
}

.czsf-section {
    padding: 24px 0;
}

.czsf-section-muted {
    margin-top: 24px;
    padding: 40px 0;
    background: var(--czsf-gray-50);
}

.czsf-page-head {
    padding: 24px 0 0;
    background: transparent;
}

.czsf-page-head small {
    display: none;
}

.czsf-page-head h1 {
    margin: 0;
    color: var(--czsf-gray-800);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.czsf-page-head p {
    margin: 4px 0 0;
    color: var(--czsf-gray-500);
    font-size: 14px;
}

.czsf-empty {
    padding: 48px 20px;
    border: 1px dashed var(--czsf-gray-300);
    border-radius: 12px;
    color: var(--czsf-gray-400);
    text-align: center;
}

.czsf-breadcrumb {
    margin-bottom: 24px;
    gap: 8px;
    color: var(--czsf-gray-500);
    font-size: 14px;
}

.czsf-breadcrumb a {
    color: var(--czsf-gray-500);
}

.czsf-breadcrumb a:hover,
.czsf-product-summary > small {
    color: var(--czsf-primary);
}

.czsf-product-detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.czsf-gallery {
    min-width: 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    gap: 12px;
}

.czsf-main-image {
    grid-column: 2;
    grid-row: 1;
    height: auto;
    aspect-ratio: 1;
    border-radius: 12px;
    background: var(--czsf-gray-100);
}

.czsf-main-image img {
    object-fit: cover;
}

.czsf-thumbs {
    grid-column: 1;
    grid-row: 1;
    gap: 8px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
}

.czsf-thumbs button {
    width: 64px;
    height: 64px;
    border: 2px solid var(--czsf-gray-200);
    border-radius: 8px;
}

.czsf-thumbs button.is-active {
    border-color: var(--czsf-primary);
}

.czsf-product-summary > small {
    font-size: 14px;
    font-weight: 500;
}

.czsf-product-summary h1 {
    margin: 4px 0 16px;
    color: var(--czsf-gray-800);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.czsf-product-summary del {
    color: var(--czsf-gray-400);
    font-size: 18px;
}

.czsf-price {
    margin-top: 2px;
    color: var(--czsf-primary);
    font-size: 30px;
    font-weight: 700;
}

.czsf-stock {
    font-size: 13px;
    font-weight: 600;
}

.czsf-variation,
.czsf-product-quantity {
    margin-top: 16px;
    color: var(--czsf-gray-700);
    font-size: 14px;
    font-weight: 500;
}

.czsf-variation {
    padding: 0;
    border: 0;
}

.czsf-variation legend {
    padding: 0;
    margin-bottom: 8px;
}

.czsf-variation > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.czsf-variation label {
    cursor: pointer;
}

.czsf-variation input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.czsf-variation span {
    min-height: 38px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--czsf-gray-300);
    border-radius: 8px;
    background: #fff;
    color: var(--czsf-gray-600);
    font-size: 14px;
    font-weight: 500;
    transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}

.czsf-variation input:checked + span {
    border-color: var(--czsf-primary);
    background: color-mix(in srgb, var(--czsf-primary) 8%, #fff);
    color: var(--czsf-primary);
}

.czsf-variation input:focus-visible + span,
.czsf-fields input:focus,
.czsf-notes textarea:focus,
.czsf-newsletter-popup input:focus {
    border-color: var(--czsf-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--czsf-primary) 15%, transparent);
}

.czsf-product-quantity > span {
    display: block;
    margin-bottom: 8px;
}

.czsf-product-quantity > div {
    width: 120px;
    height: 42px;
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    border: 1px solid var(--czsf-gray-300);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.czsf-product-quantity button,
.czsf-product-quantity input {
    width: 100%;
    height: 40px;
    padding: 0;
    border: 0;
    background: #fff;
    color: var(--czsf-gray-700);
    font: inherit;
    text-align: center;
}

.czsf-product-quantity button {
    cursor: pointer;
    font-size: 18px;
}

.czsf-product-quantity button:hover {
    background: var(--czsf-gray-50);
    color: var(--czsf-primary);
}

.czsf-product-quantity input {
    border-right: 1px solid var(--czsf-gray-200);
    border-left: 1px solid var(--czsf-gray-200);
    outline: none;
    appearance: textfield;
}

.czsf-product-quantity input::-webkit-inner-spin-button,
.czsf-product-quantity input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.czsf-layer-open {
    overflow: hidden;
}

.czsf-buy {
    min-height: 56px;
    margin-top: 24px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

.czsf-description {
    margin-top: 24px;
    padding-top: 20px;
    color: var(--czsf-gray-600);
    font-size: 14px;
    line-height: 1.65;
}

.czsf-button {
    min-height: 44px;
    padding: 11px 18px;
    gap: 8px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.czsf-checkout-page {
    padding: 24px 0;
}

.czsf-checkout-layout {
    grid-template-columns: minmax(0, 1fr) 384px;
    gap: 24px;
}

.czsf-checkout-layout > * {
    min-width: 0;
}

.czsf-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.czsf-checkout-steps {
    display: grid;
    gap: 16px;
}

.czsf-checkout-step {
    overflow: hidden;
    border: 1px solid var(--czsf-gray-200);
    border-radius: 12px;
    background: #fff;
}

.czsf-checkout-step > header {
    min-height: 60px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.czsf-checkout-step > header > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--czsf-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.czsf-checkout-step h2 {
    margin: 0;
    color: var(--czsf-gray-800);
    font-size: 16px;
    font-weight: 600;
}

.czsf-checkout-step-body {
    padding: 16px 20px 20px;
    border-top: 1px solid var(--czsf-gray-100);
}

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

.czsf-fields label,
.czsf-notes,
.czsf-payment-label {
    gap: 4px;
    color: var(--czsf-gray-500);
    font-size: 12px;
    font-weight: 500;
}

.czsf-fields input,
.czsf-notes textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--czsf-gray-300);
    border-radius: 8px;
    background: #fff;
    color: var(--czsf-gray-800);
    font-size: 14px;
    outline: none;
}

.czsf-cep-field {
    align-items: flex-start;
}

.czsf-cep-control {
    position: relative;
    display: block;
    width: min(100%, 280px);
}

.czsf-cep-control input {
    width: 100%;
    padding-right: 42px;
    letter-spacing: .03em;
}

.czsf-cep-spinner {
    position: absolute;
    top: 50%;
    right: 14px;
    display: none;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    border: 2px solid var(--czsf-gray-200);
    border-top-color: var(--czsf-primary);
    border-radius: 50%;
    animation: czsf-cep-spin .75s linear infinite;
}

.czsf-address-fields.is-loading .czsf-cep-spinner {
    display: block;
}

.czsf-cep-status {
    display: block;
    min-height: 17px;
    color: var(--czsf-gray-500);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.45;
}

.czsf-address-fields.is-success .czsf-cep-status {
    color: #15803d;
}

.czsf-address-fields.is-error .czsf-cep-status {
    color: #b91c1c;
}

.czsf-address-fields.is-error .czsf-cep-control input {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .1);
}

@keyframes czsf-cep-spin {
    to { transform: rotate(360deg); }
}

.czsf-notes {
    margin-top: 16px;
}

.czsf-notes textarea {
    min-height: 88px;
    resize: vertical;
}

.czsf-notes > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--czsf-gray-800);
    font-size: 14px;
    font-weight: 600;
}

.czsf-notes > span small,
.czsf-notes > small {
    color: var(--czsf-gray-500);
    font-size: 11px;
    font-weight: 400;
}

.czsf-notes > small {
    margin-top: 2px;
    line-height: 1.45;
}

.czsf-payment-fieldset {
    min-width: 0;
    margin: 16px 0 0;
    padding: 0;
    border: 0;
}

.czsf-payment-fieldset legend {
    padding: 0;
    color: var(--czsf-gray-800);
    font-size: 14px;
    font-weight: 600;
}

.czsf-payment-fieldset legend > span[aria-hidden="true"] {
    color: var(--czsf-primary);
}

.czsf-payment-help {
    margin: 4px 0 10px;
    color: var(--czsf-gray-500);
    font-size: 12px;
    line-height: 1.45;
}

.czsf-payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: 10px;
    min-width: 0;
}

.czsf-payment-option {
    position: relative;
    display: grid !important;
    grid-template-columns: 20px 42px minmax(0, 1fr) 20px;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 0;
    min-height: 104px;
    margin: 0;
    padding: 14px !important;
    overflow: hidden;
    border: 2px solid var(--czsf-gray-200) !important;
    border-radius: 12px !important;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease, transform .18s ease;
}

.czsf-payment-option:hover {
    border-color: color-mix(in srgb, var(--czsf-primary) 48%, var(--czsf-gray-200)) !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .07);
    transform: translateY(-1px);
}

.czsf-payment-option:has(input:checked) {
    border-color: var(--czsf-primary) !important;
    background: color-mix(in srgb, var(--czsf-primary) 6%, white) !important;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--czsf-primary) 12%, transparent);
}

.czsf-payment-option:has(input:focus-visible) {
    outline: 3px solid color-mix(in srgb, var(--czsf-primary) 35%, transparent);
    outline-offset: 3px;
}

.czsf-payment-option > input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.czsf-payment-radio {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--czsf-gray-300);
    border-radius: 50%;
    background: #fff;
}

.czsf-payment-radio::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: inherit;
    background: var(--czsf-primary);
    opacity: 0;
    transform: scale(.4);
    transition: opacity .18s ease, transform .18s ease;
}

.czsf-payment-option:has(input:checked) .czsf-payment-radio {
    border-color: var(--czsf-primary);
}

.czsf-payment-option:has(input:checked) .czsf-payment-radio::after {
    opacity: 1;
    transform: scale(1);
}

.czsf-payment-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 10px;
    background: color-mix(in srgb, var(--czsf-primary) 10%, white);
    color: var(--czsf-primary);
}

.czsf-payment-icon svg,
.czsf-payment-check svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.czsf-payment-content {
    display: block;
    min-width: 0;
}

.czsf-payment-content strong {
    display: block;
    color: var(--czsf-gray-800);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

.czsf-payment-content small {
    display: block;
    margin-top: 4px;
    color: var(--czsf-gray-500);
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.czsf-payment-check {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--czsf-primary);
    color: #fff;
    opacity: 0;
    transform: scale(.65);
    transition: opacity .18s ease, transform .18s ease;
}

.czsf-payment-check svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.6;
}

.czsf-payment-option:has(input:checked) .czsf-payment-check {
    opacity: 1;
    transform: scale(1);
}

.czsf-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.czsf-coupon-box {
    padding: 0 0 16px !important;
}

.czsf-coupon-box > label {
    margin-bottom: 4px;
    color: var(--czsf-gray-500);
    font-size: 12px;
    font-weight: 500;
}

.czsf-coupon-box > div {
    gap: 8px;
}

.czsf-coupon-box input {
    height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--czsf-gray-300);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.czsf-coupon-box button {
    min-width: 88px;
    border-radius: 8px;
    background: var(--czsf-button-bg);
    color: var(--czsf-button-text);
    font-size: 14px;
    font-weight: 500;
}

.czsf-progressive-box {
    padding: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    background: #f0fdf4;
}

.czsf-progressive-box strong {
    width: 100%;
    color: #166534;
    font-size: 12px;
}

.czsf-progressive-box span {
    padding: 2px 8px;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    background: #fff;
    color: #15803d;
    font-size: 10px;
}

.czsf-order-summary {
    position: static;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--czsf-gray-200);
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
}

.czsf-order-summary > header {
    min-height: 60px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--czsf-gray-100);
    gap: 16px;
}

.czsf-order-summary > header h2 {
    margin: 0;
    color: var(--czsf-gray-800);
    font-size: 16px;
    font-weight: 600;
    min-width: 0;
}

.czsf-order-summary > header h2 span {
    color: var(--czsf-gray-400);
    font-weight: 400;
}

.czsf-order-summary > header a {
    flex: 0 0 auto;
    color: var(--czsf-gray-500);
    font-size: 14px;
    text-decoration: underline;
    white-space: nowrap;
}

.czsf-summary-products {
    width: 100%;
    max-height: none;
    margin: 0;
    padding: 12px 20px;
    display: block;
    overflow: visible;
    list-style: none;
}

.czsf-summary-products li {
    width: 100%;
    min-width: 0;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) max-content;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--czsf-gray-100);
}

.czsf-summary-products li:last-child {
    border-bottom: 0;
}

.czsf-summary-products img,
.czsf-summary-product-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: var(--czsf-gray-100);
    object-fit: cover;
}

.czsf-summary-product-info {
    min-width: 0;
}

.czsf-summary-product-info strong,
.czsf-summary-product-info small {
    display: block;
    overflow-wrap: anywhere;
}

.czsf-summary-product-info strong,
.czsf-summary-product-price {
    color: var(--czsf-gray-800);
    font-size: 13px;
    font-weight: 500;
}

.czsf-summary-product-info strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.35;
}

.czsf-summary-product-info small {
    margin-top: 3px;
    color: var(--czsf-gray-400);
    font-size: 11px;
    line-height: 1.35;
}

.czsf-summary-product-price {
    justify-self: end;
    white-space: nowrap;
}

.czsf-summary-values {
    width: 100%;
    padding: 16px 20px;
    display: block;
    border-top: 1px solid var(--czsf-gray-200);
}

.czsf-summary-values h3 {
    margin: 0 0 8px;
    color: var(--czsf-gray-800);
    font-size: 14px;
}

.czsf-summary-values > div {
    padding: 4px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    color: var(--czsf-gray-500);
    font-size: 14px;
}

.czsf-summary-values > div b {
    flex: 0 0 auto;
    color: var(--czsf-gray-800);
    font-weight: 400;
    white-space: nowrap;
}

.czsf-summary-values > div.is-discount,
.czsf-summary-values > div.is-discount b {
    color: #16a34a;
}

.czsf-summary-values > .czsf-summary-total {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--czsf-gray-100);
    color: var(--czsf-gray-800);
    font-size: 16px !important;
    font-weight: 700;
}

.czsf-summary-values > .czsf-summary-total b {
    color: var(--czsf-primary);
    font-weight: 700;
}

.czsf-order-summary > .czsf-button {
    width: calc(100% - 40px);
    margin: 0 20px;
}

.czsf-order-summary > .czsf-button svg {
    width: 20px;
    height: 20px;
}

.czsf-order-summary > p {
    margin: 8px 20px 20px;
    color: var(--czsf-gray-400);
    font-size: 10px;
    text-align: center;
}

.czsf-alert {
    padding: 16px;
    margin: 0;
    border: 1px solid #fecaca;
    border-radius: 8px;
    background: #fef2f2;
    color: #dc2626;
    font-size: 14px;
}

.czsf-cart-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
}

.czsf-cart-item {
    border-radius: 12px;
    background: #fff;
}

.czsf-footer {
    margin-top: 48px;
    padding: 32px 0 0;
    background: var(--czsf-footer-bg, #111827);
    color: var(--czsf-footer-text, #d1d5db);
}

.czsf-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.czsf-footer h3 {
    min-height: 27px;
    margin: 0 0 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.czsf-footer p {
    margin: 0 0 12px;
    color: color-mix(in srgb, var(--czsf-footer-text) 80%, transparent);
    font-size: 14px;
}

.czsf-footer ul {
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    list-style: none;
}

.czsf-footer a {
    color: var(--czsf-footer-text);
    font-size: 14px;
    text-decoration: none;
    transition: color .15s ease;
}

.czsf-footer a:hover {
    color: #fff;
}

.czsf-footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.czsf-footer-contact svg {
    width: 16px;
    height: 16px;
}

.czsf-socials {
    margin-top: 0;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.czsf-socials a {
    color: var(--czsf-footer-text);
}

.czsf-socials svg {
    width: 24px;
    height: 24px;
}

.czsf-footer-bottom {
    margin-top: 32px;
    padding: 24px 0 28px;
    border-top: 1px solid color-mix(in srgb, var(--czsf-footer-text) 12%, transparent);
    text-align: center;
}

.czsf-footer-bottom p {
    margin: 0 0 8px;
    color: color-mix(in srgb, var(--czsf-footer-text) 50%, transparent);
    font-size: 12px;
}

.czsf-footer-bottom strong {
    color: var(--czsf-footer-text);
}

.czsf-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    width: 56px;
    height: 56px;
    padding: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .2);
    animation: czsf-whatsapp-pulse 2s infinite;
    transition: transform .15s ease;
}

.czsf-whatsapp:hover {
    transform: scale(1.1);
}

.czsf-whatsapp svg {
    width: 28px;
    height: 28px;
}

@keyframes czsf-whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.czsf-cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    transition: opacity .25s ease;
}

.czsf-cart-backdrop[hidden],
.czsf-cart-drawer[hidden] {
    display: none;
}

.czsf-cart-backdrop.is-open {
    opacity: 1;
}

.czsf-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 51;
    width: min(448px, 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -20px 0 40px rgba(0, 0, 0, .16);
    transform: translateX(100%);
    transition: transform .3s ease;
}

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

.czsf-cart-drawer > header {
    min-height: 65px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--czsf-gray-200);
}

.czsf-cart-drawer > header h2 {
    margin: 0;
    color: var(--czsf-gray-800);
    font-size: 18px;
    font-weight: 600;
}

.czsf-cart-drawer > header button {
    width: 36px;
    height: 36px;
    padding: 8px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--czsf-gray-500);
}

.czsf-cart-drawer-items {
    flex: 1 1 auto;
    padding: 16px;
    display: grid;
    align-content: start;
    gap: 16px;
    overflow-y: auto;
}

.czsf-cart-drawer-empty {
    padding: 48px 0;
    color: var(--czsf-gray-400);
    text-align: center;
}

.czsf-cart-drawer-empty svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--czsf-gray-300);
    stroke-width: 1.5;
}

.czsf-cart-drawer-item {
    padding: 12px;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 12px;
    border-radius: 12px;
    background: var(--czsf-gray-50);
}

.czsf-cart-drawer-item > a,
.czsf-cart-drawer-item > a img,
.czsf-cart-drawer-item > a span {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: var(--czsf-gray-100);
    color: var(--czsf-gray-400);
    font-size: 10px;
    object-fit: cover;
    text-decoration: none;
}

.czsf-cart-drawer-item h4 {
    margin: 0;
    overflow: hidden;
    color: var(--czsf-gray-800);
    font-size: 14px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.czsf-cart-drawer-item small,
.czsf-cart-drawer-item strong {
    display: block;
}

.czsf-cart-drawer-item small {
    margin-top: 2px;
    color: var(--czsf-gray-500);
    font-size: 12px;
}

.czsf-cart-drawer-item strong {
    margin-top: 4px;
    color: var(--czsf-primary);
    font-size: 14px;
    font-weight: 600;
}

.czsf-drawer-item-actions {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.czsf-drawer-item-actions form:first-child {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--czsf-gray-200);
    border-radius: 8px;
}

.czsf-drawer-item-actions form:first-child button,
.czsf-drawer-item-actions form:first-child input {
    width: 32px;
    height: 32px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: #fff;
    color: var(--czsf-gray-500);
    text-align: center;
}

.czsf-drawer-item-actions form:first-child input {
    font-size: 14px;
    font-weight: 500;
    appearance: textfield;
}

.czsf-drawer-remove {
    width: 28px;
    height: 28px;
    padding: 6px;
    border: 0;
    background: transparent;
    color: #f87171;
    cursor: pointer;
}

.czsf-drawer-remove svg {
    width: 16px;
    height: 16px;
}

.czsf-cart-drawer > footer {
    padding: 16px;
    display: grid;
    gap: 12px;
    border-top: 1px solid var(--czsf-gray-200);
}

.czsf-cart-drawer > footer > div {
    display: flex;
    justify-content: space-between;
    color: var(--czsf-gray-800);
    font-size: 18px;
    font-weight: 600;
}

.czsf-cart-drawer > footer > a,
.czsf-cart-drawer > footer > button {
    min-height: 48px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: var(--czsf-button-bg);
    color: var(--czsf-button-text);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.czsf-cart-drawer > footer > button {
    border: 1px solid var(--czsf-gray-300);
    background: #fff;
    color: var(--czsf-gray-600);
    font-weight: 500;
}

.czsf-newsletter-backdrop {
    z-index: 60;
    padding: 16px;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: none;
}

.czsf-newsletter-popup {
    width: min(448px, 100%);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .35);
}

.czsf-newsletter-popup > button {
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    padding: 4px;
    color: var(--czsf-gray-400);
}

.czsf-newsletter-popup > button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.czsf-newsletter-icon,
.czsf-newsletter-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--czsf-primary) 15%, transparent);
    color: var(--czsf-primary);
}

.czsf-newsletter-success-icon {
    width: 64px;
    height: 64px;
    color: #22c55e;
    background: #dcfce7;
}

.czsf-newsletter-icon svg,
.czsf-newsletter-success-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.czsf-newsletter-popup h2 {
    margin: 0 0 8px;
    color: var(--czsf-gray-800);
    font-size: 20px;
    font-weight: 700;
}

.czsf-newsletter-popup > p {
    margin: 0 0 20px;
    color: var(--czsf-gray-500);
    font-size: 14px;
    line-height: 1.5;
}

.czsf-newsletter-popup form {
    gap: 12px;
}

.czsf-newsletter-popup form > label:not(.czsf-newsletter-consent) {
    color: var(--czsf-gray-600);
    font-size: 12px;
    font-weight: 500;
    text-align: left;
}

.czsf-newsletter-popup label > input[type=text],
.czsf-newsletter-popup label > input[type=email] {
    height: 42px;
    margin-top: 4px;
    padding: 10px 16px;
    border: 1px solid var(--czsf-gray-300);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.czsf-newsletter-popup form > button {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.czsf-newsletter-consent {
    gap: 8px;
    color: var(--czsf-gray-500);
    font-size: 11px;
    text-align: left;
}

.czsf-newsletter-consent input {
    margin: 2px 0 0;
    accent-color: var(--czsf-primary);
}

.czsf-newsletter-coupon {
    padding: 12px;
    border-radius: 8px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 14px;
}

.czsf-newsletter-coupon b {
    margin-left: 4px;
    font-family: ui-monospace, monospace;
    font-size: 18px;
}

.czsf-cookie {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    background: rgba(0, 0, 0, .9);
}

.czsf-cookie[hidden] {
    display: none;
}

.czsf-cookie > div {
    min-height: 58px;
    padding-block: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.czsf-cookie p {
    margin: 0;
    color: var(--czsf-gray-300);
    font-size: 14px;
}

.czsf-cookie a {
    color: #fff;
    text-decoration: underline;
}

.czsf-cookie button {
    min-width: 92px;
    padding: 6px 24px;
    flex: 0 0 auto;
    border: 1px solid #fff;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.czsf-cookie button:hover {
    background: #fff;
    color: #111827;
}

.czsf-blog-head .czsf-breadcrumb {
    margin-bottom: 24px;
}

.czsf-blog-head h1 {
    font-size: 30px;
}

.czsf-blog-grid {
    gap: 24px;
}

.czsf-blog-card {
    border: 1px solid var(--czsf-gray-100);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
    transition: box-shadow .2s ease, transform .2s ease;
}

.czsf-blog-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.czsf-blog-card .czsf-blog-image {
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: color-mix(in srgb, var(--czsf-primary) 12%, var(--czsf-gray-50));
}

.czsf-blog-card .czsf-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.czsf-blog-card .czsf-blog-image svg {
    width: 48px;
    height: 48px;
    color: color-mix(in srgb, var(--czsf-primary) 45%, transparent);
}

.czsf-blog-card div:not(.czsf-blog-image) {
    padding: 20px;
}

.czsf-blog-card h2 {
    margin: 8px 0;
    color: var(--czsf-gray-800);
    font-size: 18px;
    line-height: 1.4;
}

.czsf-blog-card p {
    margin: 0 0 16px;
    color: var(--czsf-gray-500);
    font-size: 14px;
    line-height: 1.6;
}

.czsf-blog-card span {
    font-size: 14px;
    font-weight: 600;
}

.czsf-content-body {
    max-width: 896px;
    padding-top: 32px;
    padding-bottom: 32px;
}

.czsf-content-cover {
    max-height: 520px;
    margin-bottom: 24px;
    border-radius: 12px;
}

.czsf-rich-text {
    color: var(--czsf-gray-700);
    font-size: 14px;
    line-height: 1.75;
}

.czsf-crm-page {
    min-height: 60vh;
    padding: 32px 16px;
    background: var(--czsf-gray-50);
}

.czsf-crm-card {
    width: min(512px, 100%);
    padding: 24px;
    border: 1px solid var(--czsf-gray-100);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}

.czsf-crm-card header {
    margin-bottom: 20px;
}

.czsf-crm-card header small {
    font-size: 12px;
    font-weight: 600;
}

.czsf-crm-card h1 {
    margin: 6px 0;
    color: var(--czsf-gray-800);
    font-size: 24px;
    line-height: 1.3;
}

.czsf-crm-card header p {
    margin: 0;
    font-size: 14px;
}

.czsf-crm-card form {
    gap: 16px;
}

.czsf-crm-card label {
    gap: 6px;
    color: var(--czsf-gray-700);
    font-size: 14px;
    font-weight: 500;
}

.czsf-crm-card input,
.czsf-crm-card select {
    height: 42px;
    padding: 9px 12px;
    border-color: var(--czsf-gray-300);
    border-radius: 8px;
    font-size: 14px;
}

.czsf-crm-card textarea {
    min-height: 112px;
    padding: 10px 12px;
    border-color: var(--czsf-gray-300);
    border-radius: 8px;
    font-size: 14px;
}

.czsf-crm-card button {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.czsf-confirmation-page {
    width: min(672px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0;
}

.czsf-confirmation {
    max-width: 100%;
}

.czsf-confirmation > .czsf-confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #dcfce7;
    color: #22c55e;
}

.czsf-confirmation-icon svg {
    width: 40px;
    height: 40px;
}

.czsf-confirmation h1 {
    margin: 0 0 8px;
    color: var(--czsf-gray-800);
    font-size: 24px;
    line-height: 1.35;
}

.czsf-confirmation > p {
    margin: 0 0 8px;
    color: var(--czsf-gray-500);
    font-size: 16px;
}

.czsf-confirmation > small {
    margin: 0 0 32px;
    color: var(--czsf-gray-400);
    font-size: 14px;
    font-weight: 400;
}

.czsf-confirmation-status {
    margin-bottom: 24px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    background: #fff7ed;
    text-align: left;
}

.czsf-confirmation-status > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #ffedd5;
    color: #ea580c;
}

.czsf-confirmation-status svg {
    width: 20px;
    height: 20px;
}

.czsf-confirmation-status strong,
.czsf-confirmation-status small {
    display: block;
}

.czsf-confirmation-status strong {
    color: #9a3412;
    font-size: 14px;
}

.czsf-confirmation-status small {
    margin-top: 2px;
    color: #ea580c;
    font-size: 14px;
}

.czsf-confirmation-box {
    margin: 0 0 24px;
    padding: 20px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}

.czsf-confirmation-box h2 {
    margin: 0 0 12px;
    font-size: 16px;
}

.czsf-confirmation-box > div {
    padding: 8px 0;
    font-size: 14px;
}

.czsf-confirmation-box > .czsf-summary-total {
    margin-top: 8px;
    padding-top: 12px;
    font-size: 18px !important;
}

.czsf-confirmation-box > .czsf-summary-total strong {
    color: var(--czsf-primary);
}

.czsf-confirmation-actions {
    display: grid;
    gap: 12px;
}

.czsf-confirmation-actions .czsf-button,
.czsf-confirmation-whatsapp {
    width: 100%;
    min-height: 48px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.czsf-confirmation-whatsapp {
    border: 2px solid #25d366;
    background: transparent;
    color: #25d366;
}

.czsf-confirmation-whatsapp:hover {
    background: #25d366;
    color: #fff;
}

.czsf-confirmation-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: none;
}

body.czsf-overlay-open {
    overflow: hidden;
}

@media (max-width: 980px) {
    .czsf-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .czsf-categories {
        grid-auto-columns: calc((100% - 80px) / 6);
    }

    .czsf-checkout-layout,
    .czsf-cart-layout {
        grid-template-columns: 1fr;
    }

    .czsf-order-summary {
        position: static;
    }
}

@media (max-width: 767px) {
    .czsf-mobile-menu-button {
        display: grid;
    }

    .czsf-header-inner {
        min-height: 64px;
        padding-block: 12px;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .czsf-brand {
        flex: 1 1 auto;
        justify-content: center;
    }

    .czsf-brand img {
        max-width: 170px;
        height: 40px;
    }

    .czsf-brand strong {
        max-width: 44vw;
        font-size: 18px;
    }

    .czsf-nav {
        display: none;
    }

    .czsf-search-overlay p {
        display: none;
    }

    .czsf-banner-track {
        aspect-ratio: 4 / 5;
    }

    .czsf-category-section {
        margin-top: 32px;
    }

    .czsf-categories {
        grid-auto-columns: calc((100% - 36px) / 4);
        gap: 12px;
    }

    .czsf-categories strong {
        margin-top: 6px;
        font-size: 12px;
    }

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

    .czsf-product-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .czsf-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .czsf-main-image {
        grid-column: 1;
        grid-row: 1;
    }

    .czsf-thumbs {
        grid-column: 1;
        grid-row: 2;
        flex-direction: row;
        overflow-x: auto;
    }

    .czsf-section,
    .czsf-checkout-page {
        padding: 24px 0;
    }

    .czsf-section-muted {
        padding: 32px 0;
    }

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

    .czsf-footer-grid > div:nth-child(3) h3 {
        display: none;
    }

    .czsf-footer-grid > div:nth-child(3) {
        margin-top: -20px;
    }
}

@media (max-width: 600px) {
    .czsf-fields {
        grid-template-columns: 1fr;
    }

    .czsf-field-wide {
        grid-column: auto;
    }

    .czsf-cep-control {
        width: 100%;
    }

    .czsf-checkout-step > header,
    .czsf-checkout-step-body,
    .czsf-order-summary > header,
    .czsf-summary-values {
        padding-right: 16px;
        padding-left: 16px;
    }

    .czsf-summary-products {
        padding-right: 16px;
        padding-left: 16px;
    }

    .czsf-summary-products li {
        grid-template-columns: 52px minmax(0, 1fr) max-content;
        gap: 10px;
    }

    .czsf-order-summary > .czsf-button {
        width: calc(100% - 32px);
        margin-inline: 16px;
    }

    .czsf-order-summary > p {
        margin-inline: 16px;
    }

    .czsf-cookie > div {
        padding-block: 12px;
        flex-direction: column;
        text-align: center;
    }

    .czsf-whatsapp {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 420px) {
    .czsf-payment-option {
        grid-template-columns: 18px 38px minmax(0, 1fr);
        gap: 10px !important;
        min-height: 96px;
        padding: 12px !important;
    }

    .czsf-payment-radio {
        width: 18px;
        height: 18px;
    }

    .czsf-payment-radio::after {
        inset: 3px;
    }

    .czsf-payment-icon {
        width: 38px;
        height: 38px;
    }

    .czsf-payment-check {
        position: absolute;
        top: 8px;
        right: 8px;
    }

    .czsf-order-summary > header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .czsf-summary-products li {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .czsf-summary-products img,
    .czsf-summary-product-placeholder {
        width: 48px;
        height: 48px;
    }

    .czsf-summary-product-price {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 480px) {
    .czsf-product-actions > form {
        gap: 6px;
    }

    .czsf-product-actions > form > div {
        gap: 2px;
    }

    .czsf-product-actions > form > div button,
    .czsf-product-actions > form > div input {
        width: 30px;
        height: 34px;
    }

    .czsf-product-actions > form > div input {
        width: 32px;
    }

    .czsf-card-primary,
    .czsf-card-secondary {
        height: 34px;
        padding-inline: 6px;
        font-size: 12px;
    }

    .czsf-product-info strong {
        font-size: 16px;
    }

    .czsf-product-info {
        padding-inline: 10px;
    }

    .czsf-product-actions {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .czsf-cep-spinner {
        animation-duration: 1.5s !important;
    }

    .czsf-payment-option,
    .czsf-payment-radio::after,
    .czsf-payment-check {
        transition: none !important;
    }

    .czsf-body *,
    .czsf-body *::before,
    .czsf-body *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
