* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    background-color: #f7f7f7
}

body {
    font-family: var(--font-family);
    background-color: #fff;
    color: var(--color-text-primary)
}

#root {
    background-color: #f7f7f7
}

.container {
    max-width: 480px;
    margin: 0 auto;
    background: var(--color-background);
    min-height: 100vh
}

.header {
    background: var(--color-background);
    padding: 10px var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    max-width: 480px;
    margin: 0 auto;
    border-bottom: 1px solid var(--color-border-light)
}

.header-back-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px
}

.header-back-btn .header-icon-svg {
    width: 20px;
    height: 20px
}

.header-search-wrapper {
    flex: 1;
    position: relative
}

.header-search {
    width: 100%;
    background: var(--color-background-alt);
    border: none;
    border-radius: 6px;
    padding: 9px var(--spacing-lg) 9px 40px;
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    outline: none;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.header-search-icon-btn {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    color: #000
}

.header-search-icon-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none
}

.header-search::placeholder {
    color: var(--color-text-light)
}

.header-icons {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center
}

.header-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.header-icon-svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-text-primary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.header-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--color-error);
    color: var(--color-text-white);
    border-radius: var(--radius-full);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-width: 18px;
    height: 18px;
    padding: 0 var(--spacing-xs);
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
    justify-content: center
}

.store-section {
    background: var(--color-background);
    padding: 10px 17px;
    margin-top: 55px;
    border-bottom: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.store-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-md)
}

.store-logo {
    width: 48px;
    height: 48px;
    background: #f0f0f0;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-3xl)
}

.store-info h2 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: 2px
}

.store-info p {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-tertiary)
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.store-follow-btn {
    background: #ff2b56;
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all .3s ease;
    min-width: 100px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.store-follow-btn:hover {
    background: #c2185b;
    transform: scale(1.02)
}

.store-follow-btn.following {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #E0E0E0
}

.store-follow-btn.following:hover {
    background: #eee
}

.store-message-btn {
    background: var(--color-background);
    border: 1px solid var(--color-border-medium);
    color: var(--color-text-secondary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: var(--font-size-base);
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.store-message-btn:hover {
    background: #f5f5f5;
    border-color: #999
}

.nav-tabs {
    background: var(--color-background);
    display: flex;
    justify-content: center;
    gap: 24px;
    border-bottom: none;
    padding: 0 var(--spacing-lg);
    position: sticky;
    top: 56px;
    z-index: 99;
    margin-bottom: 0
}

.nav-tabs:before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: #f5f5f5
}

.nav-tab {
    background: none;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-base);
    color: #949191;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    border-bottom: 2px solid transparent;
    transition: all .2s;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.nav-tab.active {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semibold);
    border-bottom-color: #000
}

.filter-chips {
    background: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 5px var(--spacing-lg);
    overflow-x: auto;
    position: sticky;
    top: 99px;
    z-index: 98;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    margin-top: 0;
    margin-bottom: 0
}

.filter-chips::-webkit-scrollbar {
    display: none
}

.filter-chip {
    background: transparent;
    border: none;
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    transition: all .2s;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.filter-chip:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: var(--color-border-light)
}

.filter-chip.active {
    font-weight: 700;
    background: transparent;
    color: var(--color-text-primary)
}

.filter-chip:hover {
    opacity: .8
}

.filter-chip .filter-arrow {
    flex-shrink: 0
}

.filter-chip.filter-menu {
    padding: var(--spacing-xs);
    min-width: 32px;
    justify-content: center
}

.view-toggle-btn {
    background: transparent;
    border: none;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-3xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 32px;
    margin-left: auto;
    transition: all .2s
}

.view-toggle-btn svg {
    stroke: var(--color-text-secondary)
}

.view-toggle-btn:hover {
    opacity: .8
}

.coupons-container {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-bottom: 0
}

.coupons-container::-webkit-scrollbar {
    display: none
}

.coupon-card {
    padding: 10px;
    border-radius: 6px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 252px;
    flex-shrink: 0;
    position: relative;
    overflow: visible
}

.coupon-text {
    flex: 1;
    position: relative;
    z-index: 2
}

.coupon-btn {
    position: relative;
    z-index: 2
}

.coupon-title {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: #333;
    margin-bottom: 2px
}

.coupon-subtitle {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-regular);
    color: #666
}

.coupon-btn {
    background: #00bcd4;
    color: #fff;
    border: none;
    padding: 6px;
    border-radius: 6px;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    cursor: pointer
}

.product-list {
    padding: var(--spacing-lg)
}

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md)
}

.product-card {
    background: var(--color-background);
    border-radius: var(--radius-xl);
    padding: 0;
    margin-bottom: var(--spacing-lg);
    box-shadow: none;
    display: flex;
    gap: var(--spacing-md)
}

.product-card-grid {
    flex-direction: column;
    margin-bottom: 0
}

.product-image {
    width: 136px;
    height: 136px;
    object-fit: cover;
    background: #fafafa;
    border-radius: var(--radius-md);
    flex-shrink: 0
}

.product-card-grid .product-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    margin-bottom: var(--spacing-sm)
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column
}

.product-name {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.product-card-grid .product-name {
    font-size: var(--font-size-sm)
}

.product-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap
}

.product-badge-discount {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffe3ea;
    color: #ff2b56;
    padding: 0 4px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    position: relative
}

.product-badge-discount svg {
    width: 10px;
    height: 10px
}

.product-badge {
    background: #e1ffff;
    color: #00b517;
    padding: 0 4px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: var(--font-weight-medium);
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.product-sales {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin-bottom: 8px
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-sm)
}

.star-icon {
    width: 14px;
    height: 14px;
    fill: var(--color-accent);
    flex-shrink: 0
}

.rating-value {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base)
}

.rating-count {
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-regular)
}

.product-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto
}

.product-card-grid .product-price-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px
}

.current-price {
    color: var(--color-primary);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold)
}

.current-price .currency {
    font-size: .6em;
    font-weight: var(--font-weight-normal)
}

.product-card-grid .product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px
}

.product-card-grid .current-price {
    font-size: var(--font-size-2xl);
    white-space: nowrap
}

.old-price {
    color: var(--color-text-light);
    font-size: var(--font-size-sm);
    text-decoration: line-through
}

.product-card-grid .old-price {
    font-size: var(--font-size-xs)
}

.product-actions {
    display: flex;
    gap: 0;
    align-items: stretch
}

.add-to-cart-btn {
    background: #ffe3ea;
    color: #ff2b56;
    border: 1px solid #FFE3EA;
    border-right: none;
    padding: 6px 10px;
    border-radius: 6px 0 0 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    min-width: 36px
}

.add-to-cart-btn:hover {
    background: #ffd4e0
}

.add-to-cart-btn svg {
    color: #ff2b56;
    width: 18px;
    height: 18px
}

.buy-btn {
    background: #ff2b56;
    color: #fff;
    border: 1px solid #FF2B56;
    padding: 6px;
    border-radius: 0 6px 6px 0;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    flex: 1;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize
}

.product-card-grid .add-to-cart-btn {
    border-radius: 50%;
    border: 1px solid #FFE3EA;
    border-right: 1px solid #FFE3EA;
    width: 36px;
    height: 36px;
    padding: 0;
    min-width: 36px
}

.product-card-grid .buy-btn {
    display: none
}

.buy-btn:hover {
    background: #e6214b;
    border-color: #e6214b
}

.product-card-grid .buy-btn {
    width: 100%;
    padding: var(--spacing-sm);
    font-size: var(--font-size-sm)
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    max-width: 480px;
    margin: 0 auto;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border-light)
}

.address-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    background: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    max-width: 480px;
    margin: 0 auto;
    border-bottom: 1px solid var(--color-border-light)
}

.cart-header-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-primary);
    flex: 1;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.cart-content {
    margin-top: 56px;
    padding: var(--spacing-lg);
    padding-bottom: 150px
}

.cart-empty {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-lg);
    color: var(--color-text-light)
}

.cart-empty p {
    font-size: var(--font-size-lg);
    margin: var(--spacing-lg) 0
}

.cart-empty-link {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-xl);
    background: var(--color-primary);
    color: var(--color-text-white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    margin-top: var(--spacing-md)
}

.cart-free-shipping-banner-wrapper {
    margin-left: calc(-1 * var(--spacing-lg));
    margin-right: calc(-1 * var(--spacing-lg));
    margin-top: 8px;
    margin-bottom: 8px
}

.cart-free-shipping-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px var(--spacing-lg);
    background: #f0fafb;
    border-radius: 0;
    width: 100%
}

.cart-free-shipping-banner svg {
    flex-shrink: 0
}

.cart-free-shipping-banner span {
    font-size: 13px;
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium)
}

.cart-select-all {
    background: var(--color-background);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.cart-checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-size: var(--font-size-base);
    font-weight: 700
}

.cart-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid var(--color-border-medium);
    background: #fff;
    position: relative;
    transition: all .2s
}

.cart-checkbox:checked {
    background: var(--color-primary);
    border-color: var(--color-primary)
}

.cart-checkbox:checked:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg)
}

.cart-delete-btn {
    background: var(--color-error-light);
    color: var(--color-error);
    border: none;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: opacity .2s
}

.cart-delete-btn:hover {
    opacity: .8
}

.cart-delete-btn svg {
    stroke: var(--color-error)
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: 10px
}

.cart-item {
    background: var(--color-background);
    border-radius: var(--radius-lg);
    display: flex;
    gap: var(--spacing-md);
    box-shadow: none
}

.cart-item-checkbox {
    display: flex;
    align-items: center;
    padding-top: 4px
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    background: #fafafa;
    border-radius: var(--radius-md);
    flex-shrink: 0
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm)
}

.cart-item-name {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: color .2s ease
}

.cart-item-name:hover {
    color: #007bff
}

.cart-item-variation-btn {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px;
    background: #efefef;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    color: #222;
    cursor: pointer;
    transition: background .2s;
    gap: 5px
}

.cart-item-variation-btn:hover {
    background: #e8e8e8
}

.cart-item-variation-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0
}

.cart-item-info .product-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px
}

.cart-item-info .current-price .currency {
    font-size: 1em
}

.cart-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%
}

.cart-price-with-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 4px
}

.cart-price-with-icon.cart-price-brinde {
    flex-direction: column;
    align-items: flex-start
}

.cart-price-row .cart-item-quantity {
    margin-left: auto
}

.cart-old-price-row {
    display: flex;
    align-items: start;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%
}

.cart-old-price-row .cart-item-quantity {
    margin-left: auto
}

.cart-item-price-row,
.cart-item-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm)
}

.cart-item-current-price {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary)
}

.cart-item-old-price {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    text-decoration: line-through
}

.cart-item-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: auto
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: #efefef;
    border-radius: 6px;
    padding: 4px
}

.cart-qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--font-size-lg);
    color: var(--color-text-primary)
}

.cart-qty-value {
    min-width: 12px;
    text-align: center;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold)
}

.cart-item-subtotal {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary)
}

.cart-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    max-width: 480px;
    width: 100%;
    background: var(--color-background);
    border-top: 1px solid var(--color-border-light);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-bottom-nav);
    z-index: 100
}

.cart-footer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md)
}

.cart-footer-label {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium)
}

.cart-footer-price {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary)
}

.cart-checkout-btn {
    width: 100%;
    background: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: opacity .2s
}

.cart-checkout-btn:hover:not(:disabled) {
    opacity: .9
}

.cart-checkout-btn:disabled {
    opacity: .5;
    cursor: not-allowed
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000080;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1000
}

.modal-content {
    background: var(--color-background);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    overflow-y: auto;
    position: relative;
    animation: slideUp .3s ease-out
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
        opacity: 0
    }
    to {
        transform: translateY(0);
        opacity: 1
    }
}

.product-variations-modal {
    padding: var(--spacing-lg);
    padding-top: var(--spacing-2xl)
}

.modal-close-btn {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 10;
    color: #000
}

.modal-close-btn svg {
    stroke: #000
}

.modal-header-product {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md)
}

.modal-product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background: #fafafa;
    border-radius: var(--radius-md);
    flex-shrink: 0
}

.modal-product-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs)
}

.modal-product-discount {
    background: #ff2b56;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    width: fit-content
}

.modal-product-price {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary)
}

.modal-product-old-price {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    text-decoration: line-through
}

.modal-product-name {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-lg)
}

.variations-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.variation-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md)
}

.variation-label {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.variation-colors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md)
}

.variation-color-btn {
    background: var(--color-background);
    border: 1px solid var(--color-border-medium);
    border-radius: 6px;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    transition: all .2s;
    overflow: hidden
}

.variation-color-btn.selected {
    border-color: var(--color-primary)
}

.variation-color-btn img,
.variation-color-btn .color-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    object-fit: cover;
    background: #f5f5f5;
    display: block
}

.variation-color-btn span {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    text-align: center;
    padding: 6px;
    width: 100%
}

.variation-color-btn.selected span {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold)
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm)
}

.variation-option-btn {
    background: var(--color-background);
    border: 1px solid var(--color-border-medium);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all .2s;
    min-width: 60px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.variation-option-btn.selected {
    border-color: var(--color-primary);
    background: var(--color-background);
    color: var(--color-primary)
}

.variation-option-btn:hover {
    border-color: var(--color-primary)
}

.modal-quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: var(--spacing-lg)
}

.modal-quantity-label {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary)
}

.modal-quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    background: #efefef;
    border-radius: 6px;
    padding: var(--spacing-xs)
}

.modal-qty-btn {
    background: none;
    border: none;
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--font-size-2xl);
    color: var(--color-text-primary)
}

.modal-qty-value {
    min-width: 15px;
    text-align: center;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold)
}

.modal-add-to-cart-btn {
    width: 100%;
    background: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    transition: opacity .2s
}

.modal-add-to-cart-btn:hover:not(:disabled) {
    opacity: .9
}

.modal-add-to-cart-btn:disabled {
    opacity: .5;
    cursor: not-allowed
}

.modal-buy-now-btn {
    background: var(--color-primary);
    border: none;
    border-radius: 6px;
    padding: 5px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.modal-buy-price {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.modal-buy-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    opacity: .95;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    max-width: 480px;
    width: 100%;
    background: var(--color-background);
    border-top: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
    box-shadow: var(--shadow-bottom-nav);
    gap: var(--spacing-sm);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-size: var(--font-size-base);
    position: relative;
    padding: 0 5px;
    transition: color .2s;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.nav-item.active {
    color: var(--color-text-primary)
}

.nav-item.active .nav-icon-svg {
    stroke: var(--color-text-primary);
    fill: none
}

.nav-icon-svg {
    width: 21px;
    height: 26px;
    stroke: #000;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.nav-cart-wrapper {
    position: relative
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--color-error);
    color: var(--color-text-white);
    border-radius: var(--radius-full);
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
    justify-content: center
}

.nav-add-cart-btn {
    background: #ffe5e5;
    border: none;
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 65px;
    height: 48px
}

.nav-cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.nav-cart-icon {
    width: 24px;
    height: 24px;
    stroke: #e91e63;
    stroke-width: 2;
    fill: none
}

.nav-cart-plus {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700
}

.nav-buy-now-btn {
    flex: 1;
    background: var(--color-primary);
    border: none;
    border-radius: 6px;
    padding: 5px 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #fff
}

.nav-buy-price {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.nav-buy-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    opacity: .95;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.review-card {
    background: var(--color-background);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-lg)
}

.review-header {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-md)
}

.review-user {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start
}

.review-avatar {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background: var(--color-avatar-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    flex-shrink: 0
}

.review-user-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-width: 0
}

.review-user-name {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.review-user-location {
    font-size: var(--font-size-base);
    color: var(--color-text-light);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.review-stars {
    display: flex;
    gap: 2px;
    align-items: center
}

.review-star-icon {
    width: 16px;
    height: 16px;
    fill: var(--color-review-star-color)
}

.review-comment {
    font-size: var(--font-size-md);
    line-height: 1.6;
    font-weight: 500;
    color: #333;
    margin-bottom: var(--spacing-md);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.review-photo {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d0d0d0 transparent;
    padding-bottom: 4px
}

.review-photo::-webkit-scrollbar {
    height: 6px
}

.review-photo::-webkit-scrollbar-track {
    background: transparent
}

.review-photo::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 3px
}

.review-photo::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0
}

.review-photo img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0
}

.admin-container {
    max-width: 100%;
    min-height: 100vh;
    background: #f5f5f5;
    padding-bottom: 0
}

.admin-header {
    background: #1a1a1a;
    color: #fff;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px #0000001a
}

.admin-header h1 {
    font-size: 24px;
    font-weight: 600
}

.admin-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px
}

.admin-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px
}

.admin-top-bar h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a
}

.admin-btn {
    background: #4caf50;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: opacity .2s
}

.admin-btn:hover {
    opacity: .9
}

.admin-btn-danger {
    background: #f44336
}

.admin-btn-primary {
    background: #2196f3
}

.admin-btn-logout {
    background: #ff2b56;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px
}

.admin-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px #00000014
}

.admin-table {
    width: 100%;
    border-collapse: collapse
}

.admin-table thead tr {
    border-bottom: 2px solid #e0e0e0
}

.admin-table th {
    padding: 16px 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .5px
}

.admin-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background .2s
}

.admin-table tbody tr:hover {
    background: #fafafa
}

.admin-table td {
    padding: 16px 12px;
    font-size: 15px
}

.admin-product-name {
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px
}

.admin-product-meta {
    font-size: 13px;
    color: #999
}

.admin-price {
    color: #ff2b56;
    font-weight: 700;
    font-size: 16px
}

.admin-price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-top: 4px
}

.admin-stock-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600
}

.admin-stock-high {
    background: #e8f5e9;
    color: #2e7d32
}

.admin-stock-low {
    background: #fff3e0;
    color: #f57c00
}

.admin-actions {
    display: flex;
    gap: 8px;
    justify-content: center
}

.admin-actions button,
.admin-actions a button {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: opacity .2s
}

.admin-actions button:hover {
    opacity: .85
}

.admin-note {
    margin-top: 24px;
    padding: 16px 20px;
    background: #e3f2fd;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #1565c0
}

.admin-note strong {
    font-weight: 600
}

.admin-form {
    max-width: 100%
}

.admin-form-group {
    margin-bottom: 24px
}

.admin-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.admin-form-input,
.admin-form-textarea,
.admin-form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s
}

.admin-form-input:focus,
.admin-form-textarea:focus,
.admin-form-select:focus {
    outline: none;
    border-color: #2196f3
}

.admin-form-textarea {
    min-height: 120px;
    resize: vertical
}

.admin-form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px
}

.admin-form-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #2196f3
}

.admin-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0
}

.admin-form-actions button {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity .2s
}

.admin-form-actions button:hover {
    opacity: .9
}

@media(max-width:768px) {
    .admin-content,
    .admin-header {
        padding: 16px
    }
    .admin-header h1 {
        font-size: 18px
    }
    .admin-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }
    .admin-top-bar h2 {
        font-size: 20px
    }
    .admin-table {
        font-size: 13px
    }
    .admin-table th,
    .admin-table td {
        padding: 10px 6px
    }
    .admin-actions {
        flex-direction: column
    }
    .admin-actions button {
        width: 100%
    }
}

.fly-to-cart-icon {
    position: fixed;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 4px 12px #e91e6366
}

.fly-to-cart-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2;
    fill: none
}

@keyframes flyToCart {
    0% {
        transform: scale(1) translate(0);
        opacity: 1
    }
    50% {
        transform: scale(.8)
    }
    to {
        transform: scale(.3);
        opacity: .5
    }
}

.fly-to-cart-animation {
    animation: flyToCart .8s cubic-bezier(.4, 0, .2, 1) forwards
}

.checkout-container {
    min-height: 100vh;
    background: var(--color-background-light);
    padding-bottom: 100px;
    max-width: 480px;
    margin: 0 auto
}

.checkout-action-buttons {
    margin-top: 56px;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    position: relative;
    padding-bottom: calc(var(--spacing-md) + 1px);
    z-index: 1
}

.checkout-action-buttons:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(to right, #FF2B56 0, #FF2B56 16px, transparent 16px, transparent 20px, #00BCD4 20px, #00BCD4 36px, transparent 36px, transparent 40px);
    pointer-events: none;
    z-index: 0
}

.checkout-action-divider {
    height: 1px;
    background: #e0e0e0;
    margin: var(--spacing-sm) 0;
    margin-left: calc(-1 * var(--spacing-md));
    margin-right: calc(-1 * var(--spacing-md));
    width: calc(100% + 2 * var(--spacing-md))
}

.checkout-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    color: var(--color-text-primary);
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: background-color .2s
}

.checkout-action-btn:hover {
    background: #e8e8e8
}

.checkout-action-btn svg {
    flex-shrink: 0;
    color: var(--color-text-primary);
    padding-left: 0;
    padding-right: 0;
    margin-left: 15px;
    margin-right: 0
}

.checkout-action-btn span {
    flex: 1
}

.checkout-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    max-width: 480px;
    width: 100%;
    background: var(--color-background);
    border-bottom: 1px solid var(--color-border-light);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    z-index: 100;
    box-shadow: var(--shadow-card)
}

.checkout-header-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.checkout-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0
}

.checkout-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #4caf501a;
    color: #4caf50;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500
}

.checkout-badge svg {
    width: 16px;
    height: 16px
}

.checkout-content {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.checkout-cart-summary {
    background: #fff;
    padding: var(--spacing-lg);
    padding-bottom: 0;
    box-shadow: var(--shadow-card)
}

.checkout-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-md) 0
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg)
}

.checkout-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-background-light);
    border-radius: var(--radius-md);
    align-items: center
}

.checkout-item-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: var(--color-background);
    border-radius: var(--radius-sm)
}

.checkout-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.checkout-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.3
}

.checkout-item-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    color: var(--color-primary)
}

.checkout-item-old-price {
    font-size: 12px;
    color: var(--color-text-secondary);
    text-decoration: line-through;
    font-weight: 400
}

.checkout-item-quantity {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm)
}

.checkout-qty-label {
    color: var(--color-text-secondary);
    font-size: 14px
}

.checkout-qty-value {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 14px
}

.checkout-item-total {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary)
}

.checkout-discount-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: #e91e630d;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    font-size: 14px;
    color: var(--color-text-primary)
}

.checkout-discount-row svg {
    flex-shrink: 0
}

.checkout-discount-row span:last-child {
    margin-left: auto
}

.checkout-discount-value {
    font-weight: 600;
    color: var(--color-primary)
}

.checkout-summary-totals {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm)
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--color-text-secondary)
}

.checkout-summary-row.discount {
    color: var(--color-primary)
}

.checkout-free {
    color: #4caf50;
    font-weight: 600
}

.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border-light);
    margin-top: var(--spacing-sm)
}

.checkout-tax-note {
    font-size: 11px;
    color: var(--color-text-secondary);
    text-align: right
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) 0;
    margin: var(--spacing-lg) 0
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    flex: 1
}

.checkout-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-background-light);
    border: 2px solid var(--color-border-light);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all .3s
}

.checkout-step.active .checkout-step-number {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff
}

.checkout-step-label {
    font-size: 11px;
    color: var(--color-text-secondary);
    font-weight: 500
}

.checkout-step.active .checkout-step-label {
    color: var(--color-primary);
    font-weight: 600
}

.checkout-step-line {
    flex: 1;
    height: 2px;
    background: var(--color-border-light);
    margin: 0 var(--spacing-xs);
    margin-bottom: 24px
}

.checkout-savings-message {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 6px;
    background: linear-gradient(135deg, #4caf501a, #4caf500d);
    color: #2e7d32;
    font-size: 13px;
    font-weight: 500;
    margin-left: calc(-1 * var(--spacing-lg));
    margin-right: calc(-1 * var(--spacing-lg));
    width: calc(100% + 2 * var(--spacing-lg));
    box-sizing: border-box;
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: 10px
}

.checkout-savings-message svg {
    flex-shrink: 0;
    color: #4caf50
}

.checkout-form-section {
    background: var(--color-background);
    padding: var(--spacing-lg);
    margin-bottom: 50px
}

.checkout-form-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md)
}

.checkout-form-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px
}

.checkout-form-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    letter-spacing: .5px
}

.checkout-form-description {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: var(--spacing-lg)
}

.checkout-form-group {
    margin-bottom: var(--spacing-md)
}

.checkout-form-row {
    display: flex;
    gap: var(--spacing-md)
}

.checkout-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs)
}

.checkout-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--color-text-primary);
    background: var(--color-background);
    transition: all .2s;
    box-sizing: border-box
}

.checkout-form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px #e91e631a
}

.checkout-form-input::placeholder {
    color: var(--color-text-secondary);
    opacity: .6
}

.checkout-form-input select {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.checkout-continue-btn {
    width: 100%;
    padding: 14px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    margin-top: var(--spacing-md)
}

.checkout-continue-btn:hover:not(:disabled) {
    background: #d81b60;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px #e91e634d
}

.checkout-continue-btn:disabled {
    background: var(--color-border-light);
    color: var(--color-text-secondary);
    cursor: not-allowed;
    opacity: .6
}

.checkout-footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    max-width: 480px;
    width: 100%;
    background: var(--color-background);
    padding: 0 16px 12px;
    box-shadow: 0 -2px 8px #0000000d;
    z-index: 100
}

.checkout-footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm)
}

.checkout-footer-label {
    font-size: 14px;
    font-weight: 700
}

.checkout-footer-total {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary)
}

.checkout-coupon-expiry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #ff6b00;
    font-weight: 500
}

.checkout-coupon-expiry svg {
    width: 16px;
    height: 16px
}

.checkout-shipping-section {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border-light)
}

.checkout-shipping-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-md) 0
}

.checkout-shipping-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md)
}

.checkout-shipping-option {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all .2s;
    background: var(--color-background)
}

.checkout-shipping-option:hover {
    border-color: var(--color-primary);
    background: #e91e6305
}

.checkout-shipping-option.selected {
    border-color: var(--color-primary);
    background: #e91e630d;
    box-shadow: 0 0 0 1px var(--color-primary)
}

.checkout-shipping-radio {
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--color-primary)
}

.checkout-shipping-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.checkout-shipping-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600
}

.checkout-shipping-logo {
    font-size: 20px
}

.checkout-shipping-name {
    font-size: 14px;
    color: var(--color-text-primary)
}

.checkout-shipping-price {
    margin-left: auto;
    font-size: 16px;
    color: var(--color-text-primary);
    font-weight: 700
}

.checkout-shipping-price-free {
    margin-left: auto;
    font-size: 14px;
    color: #4caf50;
    font-weight: 700
}

.checkout-shipping-description {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-left: 28px
}

.checkout-shipping-note {
    font-size: 12px;
    color: #4caf50;
    line-height: 1.4;
    padding: var(--spacing-sm);
    background: #4caf500d;
    border-radius: var(--radius-sm);
    border-left: 3px solid #4CAF50
}

.checkout-summary-card {
    background: var(--color-background);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-card)
}

.checkout-summary-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md)
}

.checkout-summary-icon {
    width: 48px;
    height: 48px;
    background: #e91e631a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0
}

.checkout-summary-content {
    flex: 1
}

.checkout-summary-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-xs) 0;
    letter-spacing: .5px
}

.checkout-summary-text {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 4px 0;
    line-height: 1.5
}

.checkout-summary-edit {
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    padding: 4px;
    transition: all .2s;
    flex-shrink: 0
}

.checkout-summary-edit:hover {
    opacity: .7;
    transform: scale(1.1)
}

.checkout-payment-option {
    border: 2px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-sm);
    transition: all .2s
}

.checkout-payment-option.selected {
    border-color: var(--color-primary);
    background: #e91e6305
}

.checkout-payment-radio {
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--color-primary)
}

.checkout-payment-info {
    flex: 1
}

.checkout-payment-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm)
}

.checkout-payment-icon {
    font-size: 24px
}

.checkout-payment-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary)
}

.checkout-payment-description {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: var(--spacing-sm) 0;
    line-height: 1.5
}

.checkout-payment-value {
    font-size: 14px;
    color: #4caf50;
    margin-top: var(--spacing-sm)
}

.checkout-payment-value strong {
    font-size: 18px;
    font-weight: 700
}

.checkout-order-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: #e91e6305;
    border-radius: var(--radius-md);
    border: 2px dashed rgba(233, 30, 99, .2)
}

.checkout-order-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--color-background);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md)
}

.checkout-order-item-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: var(--color-background-light);
    border-radius: var(--radius-sm)
}

.checkout-order-item-info {
    flex: 1
}

.checkout-order-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0 0 4px
}

.checkout-order-item-prices {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm)
}

.checkout-order-item-old-price {
    font-size: 12px;
    color: var(--color-text-secondary);
    text-decoration: line-through
}

.checkout-order-item-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary)
}

.checkout-order-item-add-btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap
}

.checkout-order-item-add-btn:hover {
    background: #d81b60;
    transform: translateY(-1px)
}

.checkout-payment-method {
    background: var(--color-background-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md)
}

.checkout-payment-method-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 var(--spacing-sm) 0
}

.checkout-payment-method-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--color-background);
    border-radius: var(--radius-sm)
}

.checkout-payment-method-icon {
    font-size: 20px
}

.checkout-payment-method-radio {
    margin-left: auto;
    cursor: pointer;
    accent-color: var(--color-primary)
}

.checkout-payment-note {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-sm);
    background: #ff98000d;
    border-radius: var(--radius-sm);
    border-left: 3px solid #FF9800
}

.checkout-finish-btn {
    width: 100%;
    padding: 16px;
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    margin-bottom: var(--spacing-lg);
    letter-spacing: .5px
}

.checkout-finish-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px #4caf504d
}

.checkout-trust-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg)
}

.checkout-trust-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-background);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card)
}

.checkout-trust-icon {
    font-size: 48px;
    flex-shrink: 0
}

.checkout-trust-content {
    flex: 1
}

.checkout-trust-stars {
    font-size: 14px;
    margin-bottom: 4px
}

.checkout-trust-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 4px
}

.checkout-trust-text {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0
}

.checkout-security-badges {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg)
}

.checkout-security-badge {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--color-background);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light)
}

.checkout-security-badge svg {
    color: #4caf50;
    flex-shrink: 0
}

.checkout-security-badge strong {
    font-size: 12px;
    color: var(--color-text-primary);
    display: block;
    margin: 0
}

.checkout-security-badge p {
    font-size: 11px;
    color: var(--color-text-secondary);
    margin: 0
}

.modal-loading {
    background: var(--color-background);
    border-radius: 0;
    padding: 48px 32px;
    text-align: center;
    max-width: none;
    width: 100%;
    height: 100%;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.loading-gif {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 24px
}

.loading-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 12px
}

.loading-text {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin: 0
}

.pix-payment-container {
    max-width: 480px;
    margin: auto;
    background: var(--color-background-light);
    padding-bottom: 80px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.pix-payment-header {
    background: var(--color-background);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-card);
    position: sticky;
    top: 0;
    z-index: 100
}

.pix-payment-back-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary)
}

.pix-payment-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.pix-payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #4caf501a;
    color: #4caf50;
    font-size: 14px;
    font-weight: 500
}

.pix-payment-content {
    display: flex;
    margin-top: 10px;
    flex-direction: column;
    gap: var(--spacing-md)
}

.pix-payment-card {
    background: var(--color-background);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-card)
}

.pix-payment-card-title {
    font-size: 25px;
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: start;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.pix-payment-card-text {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-align: center;
    margin: 0 0 24px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.pix-payment-waiting {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 0
}

.pix-payment-waiting-gif {
    width: 80px;
    height: 80px;
    object-fit: contain
}

.pix-payment-waiting-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0
}

.pix-payment-section-title {
    font-size: 14px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--color-text-primary);
    margin: 0 0 8px
}

.pix-payment-section-text {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0 0 24px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.pix-payment-qr-container {
    display: flex;
    justify-content: center;
    padding: 24px;
    background: #f5f5f5;
    border-radius: var(--radius-md);
    margin-bottom: 20px
}

.pix-payment-qr-code {
    background: #fff;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px #0000001a
}

.pix-payment-code-container {
    margin-bottom: 16px
}

.pix-payment-code {
    background: #f5f5f5;
    padding: 16px;
    border-radius: var(--radius-md);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 12px;
    color: var(--color-text-secondary);
    word-break: break-all;
    text-align: center
}

.pix-payment-copy-btn {
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.pix-payment-copy-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px)
}

.pix-payment-copy-btn:active {
    transform: translateY(0)
}

.pix-payment-instructions-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.pix-payment-step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px
}

.pix-payment-step:last-child {
    margin-bottom: 0
}

.pix-payment-step-number {
    width: 32px;
    height: 32px;
    background: var(--color-text-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.pix-payment-step-content {
    flex: 1;
    display: flex;
    gap: 12px
}

.pix-payment-step-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.pix-payment-step-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0 0 4px
}

.pix-payment-step-text {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.pix-payment-savings {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #ffd3db;
    border-radius: var(--radius-md);
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 500
}

.pix-payment-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-background);
    padding: var(--spacing-md);
    box-shadow: 0 -2px 10px #0000001a;
    z-index: 100
}

.pix-payment-footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px
}

.pix-payment-footer-label {
    font-size: 14px;
    color: var(--color-text-secondary)
}

.pix-payment-footer-total {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary)
}

.pix-payment-footer-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text-secondary)
}

.sucesso-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg)
}

.sucesso-content {
    background: var(--color-background);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px #0000004d;
    text-align: center
}

.sucesso-icon {
    margin-bottom: var(--spacing-lg);
    animation: scaleIn .6s ease-out
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0
    }
    50% {
        transform: scale(1.2)
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

.sucesso-title {
    font-size: 32px;
    font-weight: 700;
    color: #4caf50;
    margin: 0 0 16px
}

.sucesso-message {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin: 0 0 32px;
    line-height: 1.6
}

.sucesso-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: 32px;
    text-align: left
}

.sucesso-info-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-background-light);
    border-radius: var(--radius-md);
    align-items: flex-start
}

.sucesso-info-item svg {
    flex-shrink: 0;
    color: var(--color-primary)
}

.sucesso-info-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 4px
}

.sucesso-info-item p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5
}

.sucesso-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm)
}

.sucesso-btn-primary {
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s
}

.sucesso-btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #e91e634d
}

.sucesso-btn-secondary {
    width: 100%;
    padding: 16px;
    background: #fff;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s
}

.sucesso-btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #e91e6333
}

.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000b3;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
    z-index: 10000;
    animation: fadeIn .2s ease-out
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.search-modal {
    background: var(--color-background);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 500px;
    animation: slideDown .3s ease-out;
    box-shadow: 0 10px 40px #0000004d
}

@keyframes slideDown {
    0% {
        transform: translateY(-50px);
        opacity: 0
    }
    to {
        transform: translateY(0);
        opacity: 1
    }
}

.search-modal-header {
    padding: var(--spacing-md);
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid var(--color-border-light)
}

.search-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: background .2s
}

.search-modal-close:hover {
    background: var(--color-background-alt)
}

.search-modal-body {
    padding: var(--spacing-xl)
}

.search-modal-input {
    width: 100%;
    background: var(--color-background-alt);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-xl);
    padding: 18px var(--spacing-xl);
    font-size: 20px;
    color: var(--color-text-primary);
    outline: none;
    transition: all .2s
}

.search-modal-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px #e91e631a
}

.search-modal-input::placeholder {
    color: var(--color-text-light)
}

.address-input-group {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.address-input {
    border: none;
    border-radius: 0;
    margin: 0
}

.address-input:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px
}

.address-input:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px
}

.address-input-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0 var(--spacing-md)
}

.payment-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    padding: 10px;
    min-height: 79.2px
}

.admin-sidebar-nav::-webkit-scrollbar {
    width: 8px
}

.admin-sidebar-nav::-webkit-scrollbar-track {
    background: #1a1a1a
}

.admin-sidebar-nav::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 4px
}

.admin-sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: #888
}

.admin-sidebar-nav {
    scrollbar-width: thin;
    scrollbar-color: #666 #1a1a1a
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

@keyframes pulseLeft {
    0%,
    to {
        transform: translateY(-50%) translate(0);
        opacity: .7
    }
    50% {
        transform: translateY(-50%) translate(-5px);
        opacity: 1
    }
}

@keyframes pulseRight {
    0%,
    to {
        transform: translateY(-50%) translate(0);
        opacity: .7
    }
    50% {
        transform: translateY(-50%) translate(5px);
        opacity: 1
    }
}

.notification-modal {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 16px;
    box-shadow: 0 12px 32px #ff6b6b66, 0 4px 12px #0003;
    padding: 20px;
    min-width: 340px;
    max-width: 380px;
    z-index: 1000;
    animation: slideDown .3s ease-out;
    cursor: pointer;
    transition: all .3s ease;
    border: 2px solid rgba(255, 255, 255, .3)
}

.notification-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px #ff6b6b80, 0 6px 16px #00000040
}

.notification-arrow {
    position: absolute;
    top: -7px;
    right: 24px;
    width: 14px;
    height: 14px;
    background: #ff6b6b;
    transform: rotate(45deg);
    border-top: 2px solid rgba(255, 255, 255, .3);
    border-left: 2px solid rgba(255, 255, 255, .3)
}

.notification-content {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.notification-icon {
    font-size: 28px;
    flex-shrink: 0;
    animation: pulse 2s infinite
}

.notification-text {
    flex: 1;
    color: #fff
}

.notification-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .2)
}

.notification-text p {
    margin: 0;
    font-size: 14px;
    color: #fffffff2;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .1)
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {
    0%,
    to {
        transform: scale(1)
    }
    50% {
        transform: scale(1.1)
    }
}

.loading-container {
    display: flex;
    height: 200px;
    align-items: center;
    justify-content: center
}

.loading-spinner {
    display: flex;
    align-items: center
}

.spinner-dot {
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: inline-block;
    margin: 0;
    position: relative
}

.spinner-dot-1 {
    background: #fe2c55;
    animation: clockwise 1.2s infinite linear
}

.spinner-dot-2 {
    mix-blend-mode: darken;
    background: #25f4ee;
    margin-left: -5px;
    animation: counter-clockwise 1.2s infinite linear
}

@keyframes clockwise {
    0% {
        transform: translate(0);
        width: 20px
    }
    25% {
        width: 25px
    }
    50% {
        transform: translate(100%);
        width: 20px
    }
}

@keyframes counter-clockwise {
    0% {
        transform: translate(0)
    }
    50% {
        transform: translate(-100%)
    }
}