/* CSS Reset & Variable Definitions */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --neutral-50: #fcfcfd;
    --neutral-100: #f4f4f7;
    --neutral-200: #e2e2e9;
    --neutral-300: #c9c9d6;
    --neutral-500: #7b7b8f;
    --neutral-800: #2c2c38;
    --neutral-900: #121217;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-pill: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body);
    background-color: var(--neutral-50);
    color: var(--neutral-900);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

input, select, textarea {
    font-family: inherit;
    outline: none;
}

.hidden {
    display: none !important;
}

/* App Width Container */
.app-width-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

/* Header */
.app-header {
    background-color: var(--primary-color);
    color: var(--primary-contrast);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    height: 60px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary-contrast);
    transition: var(--transition-fast);
}

.btn-icon:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.store-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 200px;
}

.store-logo {
    max-height: 38px;
    max-width: 100%;
    object-fit: contain;
}

.store-name-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.cart-btn-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: var(--neutral-900);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Sliding Search Bar */
.search-bar-container {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 8px 16px;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    z-index: 99;
}

.search-bar-container.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.search-input-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: 44px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.search-icon {
    color: var(--neutral-500);
    margin-right: 8px;
}

#searchInput {
    flex: 1;
    border: none;
    font-size: 1rem;
    color: var(--neutral-900);
    height: 100%;
}

#searchInput::placeholder {
    color: var(--neutral-300);
}

.search-close {
    color: var(--neutral-500);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Drawer */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    z-index: 199;
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 85%;
    background-color: var(--neutral-50);
    z-index: 200;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

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

.drawer-header {
    padding: 16px;
    border-bottom: 1px solid var(--neutral-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer-header h3 {
    font-size: 1.25rem;
    color: var(--neutral-900);
}

.drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
}

.drawer-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--neutral-800);
    transition: var(--transition-fast);
}

.drawer-nav-item:hover, .drawer-nav-item.active {
    background-color: var(--neutral-100);
    color: var(--primary-color);
}

.drawer-divider {
    height: 1px;
    background-color: var(--neutral-200);
    margin: 16px 24px;
}

.drawer-section-title {
    padding: 0 24px 8px 24px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--neutral-500);
}

.drawer-footer {
    padding: 16px;
    border-top: 1px solid var(--neutral-200);
    text-align: center;
}

.pedix-badge {
    font-size: 0.8rem;
    color: var(--neutral-500);
    font-weight: 600;
}

.pedix-badge:hover {
    color: var(--primary-color);
}

/* Main Layout */
.main-layout {
    padding-top: 0;
    padding-bottom: 80px; /* Space for bottom floating bar */
    min-height: calc(100vh - 60px);
}

.section-categories {
    padding-top: 24px;
}

#defaultCategoryChips {
    margin-top: 24px;
}

/* Announcement Banner */
.announcement-banner {
    background-color: #e0f2fe !important;
    color: #0369a1 !important;
    border-bottom: 1.5px solid rgba(3, 105, 161, 0.1) !important;
    padding: 10px 16px;
    width: 100%;
    margin-bottom: 0 !important;
    box-shadow: var(--shadow-sm);
}

.announcement-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    position: relative;
    padding-left: 0;
    padding-right: 28px;
}

.announcement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0369a1 !important;
}

.announcement-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.announcement-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 700;
    color: #0369a1;
    line-height: 1.25;
}

.announcement-content p {
    font-size: 0.82rem;
    line-height: 1.3;
    color: #0369a1;
}

.announcement-close {
    position: absolute;
    right: 0;
    top: 2px;
    background: none;
    border: none;
    color: #0369a1;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.announcement-close:hover {
    color: #0284c7;
    transform: scale(1.15);
}

/* Section Title */
.section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--neutral-900);
    position: relative;
    padding-bottom: 6px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-pill);
}

/* Categories View */
.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-bottom: 2.5em;
}

.category-card {
    height: 110px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    width: 100%;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease-in-out;
}

.category-card:hover .category-card-bg {
    transform: scale(1.03);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: 0.3;
    z-index: 1;
    transition: var(--transition-normal);
}

.category-card:hover .category-card-overlay {
    opacity: 0.4;
}

.category-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    color: #fff;
    padding: 12px;
}

.category-card-content h3 {
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(18, 18, 18, 0.5);
    font-family: var(--font-heading);
    margin: 0;
}

@media (min-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Catalog View & Category Chips */
.category-chips-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 20px;
    scrollbar-width: none; /* Firefox */
}

.category-chips-scroll::-webkit-scrollbar {
    display: none; /* Safari & Chrome */
}

.chip {
    white-space: nowrap;
    padding: 8px 16px;
    background-color: var(--neutral-100);
    border-radius: var(--border-radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neutral-800);
    transition: var(--transition-fast);
}

.chip:hover, .chip.active {
    background-color: var(--primary-color);
    color: var(--primary-contrast);
}

/* Category Circles style */
.category-circles-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 4px 16px 4px;
    margin-bottom: 12px;
    scrollbar-width: none; /* Firefox */
    width: 100%;
}

.category-circles-scroll::-webkit-scrollbar {
    display: none; /* Safari & Chrome */
}

.circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    cursor: pointer;
    flex: 0 0 82px; /* default width */
    min-width: 0;
}

/* Dynamic width configuration for mobile viewports using helper classes */
@media (max-width: 640px) {
    .visible-items-3 .circle-item {
        flex: 0 0 calc((100% - 2 * 10px) / 3);
    }
    .visible-items-3-5 .circle-item,
    .category-circles-scroll:not([class*="visible-items-"]) .circle-item {
        flex: 0 0 calc((100% - 2.5 * 10px) / 3.5);
    }
    .visible-items-4 .circle-item {
        flex: 0 0 calc((100% - 3 * 10px) / 4);
    }
}

.circle-img-wrapper {
    width: 87px;
    height: 87px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    padding: 2px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease-in-out;
}

.circle-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.circle-all-icon {
    font-size: 1.6rem;
}

.circle-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    transition: all 0.2s ease-in-out;
}

.circle-item.active .circle-img-wrapper {
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px -1px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.circle-item.active .circle-label {
    color: var(--primary-color);
    font-weight: 800;
}

.catalog-header-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.btn-back:hover {
    opacity: 0.8;
}

.active-category-title {
    font-size: 1.5rem;
    color: var(--neutral-900);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-card-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--neutral-100);
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

.product-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: var(--primary-color);
    color: var(--primary-contrast);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
}

.product-card-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-group {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--neutral-500);
    margin-bottom: 4px;
}

.product-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

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

.product-card-prices {
    display: flex;
    flex-direction: column;
}

.card-price-discount {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--neutral-900);
}

.card-price-original {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--neutral-500);
}

.card-btn-add {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--neutral-100);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.product-card:hover .card-btn-add {
    background-color: var(--primary-color);
    color: var(--primary-contrast);
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--neutral-500);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Bottom Floating Bar */
.cart-floating-bar {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background-color: var(--primary-color);
    color: var(--primary-contrast);
    border-radius: var(--border-radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(233, 30, 99, 0.35);
    z-index: 90;
    max-width: 500px;
    margin: 0 auto;
    transform: translateY(0);
    transition: var(--transition-normal);
}

.cart-floating-bar.hidden {
    transform: translateY(120%);
    opacity: 0;
}

.cart-bar-content {
    display: flex;
    flex-direction: column;
}

.cart-bar-items {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.cart-bar-total {
    font-size: 1.25rem;
    font-weight: 800;
}

.btn-cart-action {
    background-color: var(--primary-contrast);
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--border-radius-pill);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.btn-cart-action:hover {
    transform: scale(1.03);
}

/* Modals & Overlays */
.modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.modal.open {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
}

.modal-container {
    background-color: #fff;
    width: 600px;
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    z-index: 301;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.modal.open .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.05);
    color: var(--neutral-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background-color: rgba(0,0,0,0.1);
}

.modal-content {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Product Gallery Carousel */
.product-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 1.2 / 1;
    background-color: var(--neutral-100);
}

.carousel-track-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform var(--transition-normal);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.8);
    color: var(--neutral-900);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 5;
    transition: var(--transition-fast);
}

.carousel-nav:hover {
    background-color: #fff;
}

.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background-color: #fff;
    width: 16px;
    border-radius: var(--border-radius-pill);
}

/* Product Modal Info */
.product-details-info {
    padding: 24px;
}

.modal-product-title {
    font-size: 1.5rem;
    color: var(--neutral-900);
    margin-bottom: 12px;
}

.modal-price-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.price-discounted {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-original {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--neutral-500);
}

.discount-badge {
    background-color: var(--primary-color);
    color: var(--primary-contrast);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
}

.modal-product-desc {
    font-size: 0.95rem;
    color: var(--neutral-800);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Variations Selector styling */
.product-options-container {
    margin-bottom: 24px;
}

.options-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--neutral-500);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-pill-label {
    cursor: pointer;
}

.option-pill-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-pill-design {
    display: inline-block;
    padding: 8px 16px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--border-radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neutral-800);
    transition: var(--transition-fast);
}

.option-pill-label input:checked + .option-pill-design {
    border-color: var(--primary-color);
    background-color: rgba(233, 30, 99, 0.05);
    color: var(--primary-color);
}

.option-pill-label input:hover + .option-pill-design {
    border-color: var(--neutral-500);
}

/* Quantity Selector & Modal Actions */
.modal-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    border-top: 1px solid var(--neutral-200);
    padding-top: 20px;
    margin-top: 12px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--border-radius-pill);
    height: 48px;
    padding: 0 4px;
    background-color: var(--neutral-50);
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neutral-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background-color: var(--neutral-200);
}

.qty-number {
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 32px;
    text-align: center;
}

.btn-primary {
    flex: 1;
    background-color: var(--primary-color);
    color: var(--primary-contrast);
    font-size: 1rem;
    font-weight: 700;
    height: 48px;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Info Modal Custom design */
.info-modal-container {
    width: 450px;
}

.info-modal-content {
    padding: 24px;
}

.info-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
}

.info-store-logo {
    max-height: 80px;
    margin-bottom: 12px;
}

.info-logo-wrapper h3 {
    font-size: 1.4rem;
}

.info-section {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--neutral-200);
    padding-bottom: 16px;
}

.info-section:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.info-section h4 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--neutral-500);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.info-section p {
    font-size: 0.95rem;
    color: var(--neutral-800);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-icon {
    color: var(--primary-color);
}

.working-hours-notice {
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    display: inline-flex !important;
}

.working-hours-notice.closed {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.hours-hint {
    font-size: 0.8rem !important;
    color: var(--neutral-500) !important;
    margin-top: 6px;
    line-height: 1.4;
}

/* Checkout / Cart Drawer styling */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 250;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.drawer.open {
    opacity: 1;
    pointer-events: all;
}



.drawer-container {
    background-color: #fff;
    width: 480px;
    max-width: 100%;
    height: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 251;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition-normal);
}

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

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

/* Cart Items */
.cart-items-section {
    margin-bottom: 24px;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: flex;
    gap: 14px;
    background-color: #ffffff;
    border-radius: 14px;
    padding: 16px;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-fast);
}

.cart-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.cart-item-img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
    background-color: var(--neutral-100);
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 24px;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 2px;
    line-height: 1.3;
}

.cart-item-variant {
    font-size: 0.82rem;
    color: var(--neutral-500);
    margin-bottom: 10px;
}

.cart-item-observations {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 8px;
}

.cart-item-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: #ff4d4d;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    color: #d32f2f;
    transform: scale(1.15);
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    background-color: var(--neutral-100);
    border-radius: var(--border-radius-pill);
    height: 32px;
    padding: 0 4px;
}

.cart-qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neutral-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

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

.cart-qty-number {
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    color: var(--neutral-900);
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--neutral-900);
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--neutral-500);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn-secondary {
    background-color: var(--neutral-100);
    color: var(--neutral-800);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--border-radius-pill);
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background-color: var(--neutral-200);
}

/* Form Styles */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 6px;
}

.form-group input, .form-group select {
    width: 100%;
    height: 40px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--border-radius-sm);
    padding: 0 12px;
    font-size: 0.9rem;
    color: var(--neutral-900);
    background-color: #fff;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary-color);
}

.error-msg {
    display: block;
    font-size: 0.75rem;
    color: #dc3545;
    margin-top: 4px;
}

/* Delivery Zone Options & Payment method */
.delivery-options, .payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.delivery-radio-label, .payment-radio-label {
    cursor: pointer;
}

.delivery-radio-label input, .payment-radio-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-custom-card {
    display: flex;
    flex-direction: column;
    padding: 12px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--border-radius-md);
    height: 100%;
    transition: var(--transition-fast);
}

.delivery-radio-label input:checked + .radio-custom-card,
.payment-radio-label input:checked + .radio-custom-card {
    border-color: var(--primary-color);
    background-color: rgba(233, 30, 99, 0.03);
}

.radio-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--neutral-900);
}

.radio-subtitle {
    font-size: 0.75rem;
    color: var(--neutral-500);
    margin-top: 2px;
}

/* Bank Details Card */
.bank-card {
    background-color: var(--neutral-100);
    border-radius: var(--border-radius-md);
    padding: 12px 16px;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
    border: 1px solid var(--neutral-200);
}

.bank-hint {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 6px;
}

/* Coupon Section */
.coupon-section {
    border-top: 1px solid var(--neutral-200);
    padding-top: 16px;
    margin-top: 20px;
}

.coupon-section label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 6px;
    display: block;
}

.coupon-input-group {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.coupon-input-group input {
    flex: 1;
    min-width: 0;
    height: 38px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--border-radius-sm);
    padding: 0 12px;
    font-size: 0.9rem;
}

.coupon-input-group button {
    height: 38px;
    flex-shrink: 0;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: var(--border-radius-sm);
}

.coupon-applied-msg {
    margin-top: 8px;
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.coupon-remove {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
    line-height: 1;
}

/* Checkout Summary Footer */
.drawer-footer-checkout {
    border-top: 1px solid var(--neutral-200);
    padding: 20px 24px;
    background-color: #fff;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--neutral-800);
    margin-bottom: 8px;
}

.discount-line {
    color: #28a745;
    font-weight: 600;
}

.total-line {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--neutral-900);
    margin-top: 12px;
    margin-bottom: 16px;
    border-top: 1px dashed var(--neutral-200);
    padding-top: 12px;
}

.btn-checkout {
    width: 100%;
}

/* Responsiveness Media Queries */
@media (min-width: 768px) {
    /* Layout with categories on sidebar for larger screens */
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 576px) {
    /* Mobile adjustment */
    .app-header {
        height: 55px;
    }
    .search-bar-container {
        top: 55px;
    }
    .store-logo {
        max-height: 32px;
    }
    .modal-container {
        height: 100vh;
        max-height: 100vh;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
    .modal.open .modal-container {
        transform: translateY(0);
    }
    .modal {
        align-items: flex-end;
    }
    .modal-content {
        height: calc(100vh - 50px);
    }
    .product-gallery {
        aspect-ratio: 1.1 / 1;
    }
    .modal-close {
        top: 12px;
        right: 12px;
    }
}

.sticky-category-headers {
    position: -webkit-sticky;
    position: sticky;
    top: 60px;
    z-index: 98;
}

@media (max-width: 576px) {
    .sticky-category-headers {
        top: 55px;
    }
}

/* Category Sub-Header & Chips */
.category-header-band {
    background-color: var(--secondary-color);
    padding: 8px 0 4px 0;
    margin-bottom: 0;
    border-bottom: 1.5px solid rgba(233, 30, 99, 0.08);
}

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

.category-header-title-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-category-back {
    color: var(--neutral-900);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-category-back:hover {
    color: var(--primary-color);
}

.category-header-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-contrast);
}

.btn-category-share {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--primary-contrast);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.btn-category-share:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Category Chips Section (Sub-categories) */
.subcategory-chips-band {
    background-color: var(--secondary-color);
    padding: 8px 0 16px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(233, 30, 99, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.subcategory-circles-band {
    background-color: var(--secondary-color);
    padding: 4px 0 0 0;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(233, 30, 99, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.subcategory-circles-band .category-circles-scroll {
    padding: 4px 4px 8px 4px;
}

.subcategory-chips-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    padding: 4px 16px;
}

.subcategory-chips-scroll::-webkit-scrollbar {
    display: none; /* Chrome & Safari */
}

.subchip {
    white-space: nowrap;
    padding: 8px 16px;
    background-color: #fff;
    border: 1.5px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.subchip:hover, .subchip.active {
    background-color: var(--primary-color);
    color: var(--primary-contrast);
}

/* Sub-category Section & Grid */
.subcategory-section {
    margin-bottom: 32px;
    grid-column: 1 / -1;
}

.subcategory-section-title {
    font-size: 1.15rem;
    color: var(--neutral-800);
    margin-bottom: 16px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.subcategory-section-title span {
    font-weight: 500;
    color: var(--neutral-500);
    font-size: 0.95rem;
}

.products-horizontal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* Horizontal Product Card */
.product-card-horizontal {
    background-color: #fff;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--neutral-200);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: row;
    height: 110px;
    box-shadow: var(--shadow-sm);
}

.product-card-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--neutral-300);
}

.card-horiz-img-wrapper {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    position: relative;
    background-color: var(--neutral-100);
}

.card-horiz-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-horiz-content {
    flex: 1;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.card-horiz-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-horiz-prices {
    display: flex;
    align-items: baseline;
    font-size: 0.85rem;
    color: var(--neutral-500);
    gap: 4px;
}

.card-horiz-prices .price-prefix {
    font-size: 0.8rem;
}

.card-horiz-prices .price-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--neutral-900);
    margin-left: 2px;
}

.card-horiz-prices .price-original-val {
    text-decoration: line-through;
    color: var(--neutral-500);
    margin-left: 6px;
    font-size: 0.85rem;
}

.card-horiz-badge {
    align-self: flex-start;
    background-color: #d4f0d6;
    color: #047857;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}



@media (min-width: 768px) {
    .products-horizontal-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Alert Popup */
.alert-popup {
    position: fixed;
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 600px;
    background-color: #fee2e2;
    border: 1.5px solid #fca5a5;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(153, 27, 27, 0.15);
    z-index: 1000;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity var(--transition-fast);
}

@media (max-width: 576px) {
    .alert-popup {
        top: 64px;
        width: calc(100% - 24px);
    }
}

.alert-popup-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ef4444;
    color: #fff;
    flex-shrink: 0;
}

.alert-popup-text {
    flex: 1;
}

.alert-popup-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    font-weight: 700;
    color: #991b1b;
    cursor: pointer;
    line-height: 1;
    padding: 2px 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product View Header Band */
.product-header-band {
    background-color: var(--secondary-color);
    padding: 8px 0;
    margin-bottom: 16px;
    border-bottom: 1.5px solid rgba(233, 30, 99, 0.08);
}

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

.product-header-title-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-product-back {
    color: var(--neutral-900);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-product-back:hover {
    color: var(--primary-color);
}

.product-header-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-contrast);
    line-height: 1.15;
}

.btn-product-share {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--primary-contrast);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.btn-product-share:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Product View Content */
.section-product-detail {
    background-color: #fff;
    min-height: calc(100vh - 60px);
    padding-bottom: 100px; /* Space for sticky bottom button */
}

.product-detail-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 8px 24px 8px;
    display: flex;
    flex-direction: column;
}

/* Product Image Gallery Zoom Button */
.product-gallery {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 1 / 1.1;
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-zoom-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--neutral-200);
    color: var(--neutral-900);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: var(--transition-fast);
}

.gallery-zoom-btn:hover {
    background-color: #fff;
    transform: scale(1.05);
}

/* Presentations Section */
.presentations-section {
    margin-top: 24px;
    border-top: 1px solid var(--neutral-200);
    padding-top: 20px;
}

.presentations-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.presentations-subtitle {
    font-size: 0.88rem;
    color: var(--neutral-500);
    margin-bottom: 16px;
}

.presentations-list {
    display: flex;
    flex-direction: column;
}

/* Presentation Row Layout */
.presentation-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--neutral-100);
    gap: 16px;
}

.presentation-row:last-child {
    border-bottom: 1px solid var(--neutral-200);
}

.pres-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--neutral-800);
    user-select: none;
    flex: 1;
}

/* Custom Checkbox Design */
.pres-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.pres-checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--neutral-300);
    border-radius: 6px;
    display: inline-block;
    position: relative;
    background-color: #fff;
    transition: var(--transition-fast);
}

.pres-checkbox-label input[type="checkbox"]:checked + .pres-checkbox-custom {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

.pres-checkbox-label input[type="checkbox"]:checked + .pres-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

/* Qty Selector inside row */
.pres-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--neutral-200);
    border-radius: var(--border-radius-pill);
    height: 34px;
    padding: 0 2px;
    background-color: var(--neutral-50);
}

.pres-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.pres-qty-btn:hover {
    background-color: var(--neutral-200);
    color: var(--neutral-800);
}

.pres-qty-val {
    font-size: 0.95rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    color: var(--neutral-800);
}

/* Pricing Column far right */
.pres-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 100px;
}

.pres-original-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--neutral-500);
    line-height: 1.2;
}

.pres-current-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--neutral-900);
    line-height: 1.2;
}

.pres-discount-badge {
    align-self: flex-end;
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
    text-transform: uppercase;
}

/* Validation Error inline message */
.presentation-validation-error {
    margin-top: 12px;
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(220, 53, 69, 0.15);
}

.presentation-validation-error .info-icon {
    display: flex;
    align-items: center;
    color: #dc3545;
}

/* Observations section */
.observations-section {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
}

.observations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.observations-header label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--neutral-800);
}

.char-count {
    font-size: 0.8rem;
    color: var(--neutral-500);
    font-weight: 500;
}

.observations-section textarea {
    width: 100%;
    height: 80px;
    padding: 12px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    color: var(--neutral-900);
    background-color: #fff;
    resize: none;
    transition: var(--transition-fast);
}

.observations-section textarea:focus {
    border-color: var(--primary-color);
}

/* Sticky Bottom Add To Cart Action Bar */
.add-to-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 16px;
    border-top: 1px solid var(--neutral-200);
    z-index: 85;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.05);
}

.btn-add-to-cart-full {
    width: 100%;
    max-width: 668px; /* matching the padding/max-width of detail container */
    margin: 0 auto;
    height: 48px;
    background-color: #fcd34d; /* Warm yellow/orange */
    color: #1e293b; /* Dark slate text */
    border-radius: var(--border-radius-md);
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.15);
    transition: var(--transition-fast);
}

.btn-add-to-cart-full:hover {
    background-color: #fbbf24;
}

.btn-add-to-cart-full:active {
    transform: translateY(1px);
}

.btn-price-total {
    font-weight: 800;
    font-size: 1.15rem;
}

/* Align adding bar inside viewport center for desktop */
@media (min-width: 768px) {
    .add-to-cart-bar {
        display: flex;
        justify-content: center;
    }
}

/* Cart View Header Band */
.cart-header-band {
    background-color: var(--secondary-color);
    padding: 8px 0;
    margin-bottom: 16px;
    border-bottom: 1.5px solid rgba(233, 30, 99, 0.08);
}

.cart-header-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cart-header-title-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-cart-back {
    color: var(--neutral-900);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-cart-back:hover {
    color: var(--primary-color);
}

.cart-header-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-contrast);
}

/* Cart View Layout */
.section-cart {
    background-color: #f4f5f8;
    min-height: calc(100vh - 60px);
    padding-bottom: 60px;
}

.cart-detail-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 8px 24px 8px;
}

.cart-content-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-form-section {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.cart-footer-checkout {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-top: 0;
}

@media (max-width: 576px) {
    .checkout-form-section,
    .cart-footer-checkout {
        padding: 16px;
    }
}

.btn-checkout {
    width: 100%;
    margin-top: 16px;
}

/* SaaS Subscription Wizard Modal */
.subscription-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background-color: #ffffff;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    padding: 30px 16px;
}

.subscription-overlay.hidden {
    display: none !important;
}

.subscription-container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.subscription-close {
    position: absolute;
    top: -10px;
    right: 0;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}

.subscription-main-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 32px;
    font-family: 'Outfit', sans-serif;
}

.subscription-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background-color: #f8fafc;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.step-item.active .step-icon-circle {
    border-color: #5b46e8;
    background-color: #ffffff;
    color: #5b46e8;
    box-shadow: 0 0 0 5px rgba(91, 70, 232, 0.15);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

.step-item.active .step-label {
    color: #5b46e8;
    font-weight: 700;
}

.step-connector {
    width: 45px;
    height: 2px;
    border-top: 2px dashed #cbd5e1;
    margin-top: -24px;
}

.subscription-body {
    background-color: #ffffff;
}

.sub-step-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sub-step-panel.hidden {
    display: none !important;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.subscription-body label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
}

.subscription-body input[type="text"],
.subscription-body input[type="email"],
.subscription-body input[type="password"],
.subscription-body input[type="tel"],
.subscription-body select {
    width: 100%;
    height: 44px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 0.95rem;
    color: #0f172a;
    background-color: #fff;
    transition: border-color 0.2s;
}

.subscription-body input:focus,
.subscription-body select:focus {
    border-color: #5b46e8;
    outline: none;
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.country-select {
    width: 120px !important;
    flex-shrink: 0;
    font-weight: 600;
}

.url-input-group {
    display: flex;
    align-items: center;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    height: 44px;
}

.url-prefix {
    background-color: #f1f5f9;
    color: #64748b;
    padding: 0 14px;
    font-weight: 500;
    font-size: 0.95rem;
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 1.5px solid #cbd5e1;
}

.url-input-group input {
    border: none !important;
    border-radius: 0 !important;
}

.field-hint {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 6px;
    display: block;
}

.step-actions-center {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.step-actions-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.btn-wizard-next,
.btn-wizard-subscribe {
    background-color: #5b46e8;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.btn-wizard-next:hover,
.btn-wizard-subscribe:hover {
    background-color: #4338ca;
}

.btn-wizard-back {
    background: none;
    border: none;
    color: #5b46e8;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.trial-info-box {
    background-color: #f0f7ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 14px;
    color: #0369a1;
}

.trial-info-text strong {
    display: block;
    font-size: 0.95rem;
    color: #0c4a6e;
    margin-bottom: 4px;
}

.trial-info-text p {
    font-size: 0.85rem;
    color: #0369a1;
    margin-bottom: 6px;
}

.trial-details-link {
    font-size: 0.85rem;
    color: #5b46e8;
    font-weight: 700;
    text-decoration: underline;
}

.card-input-wrapper {
    position: relative;
}

.card-badge-secure {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #064e3b;
    color: #34d399;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 14px;
}

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

.btn-coupon-validate {
    background-color: #fef08a;
    color: #854d0e;
    font-weight: 700;
    padding: 0 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.terms-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #475569;
    margin-top: 8px;
}

.terms-checkbox-group a {
    color: #5b46e8;
    font-weight: 600;
}

/* Welcome Screen */
.welcome-confetti-card {
    text-align: center;
    padding: 10px 0;
}

.party-icon {
    font-size: 4rem;
    margin-bottom: 12px;
}

.welcome-confetti-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.welcome-confetti-card p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 20px;
}

.btn-go-to-store {
    background-color: #5b46e8;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 24px;
    transition: background-color 0.2s;
}

.btn-go-to-store:hover {
    background-color: #4338ca;
}

.spam-notice {
    font-size: 0.85rem !important;
    color: #64748b !important;
    max-width: 480px;
    margin: 0 auto 30px auto;
    line-height: 1.4;
}

.webinar-invite-box {
    background-color: #dcfce7;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    display: flex;
    gap: 16px;
    color: #166534;
}

.webinar-invite-box .check-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.webinar-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn-webinar {
    background-color: #14532d;
    color: #ffffff;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
}

/* ==========================================
   SaaS Landing Page Styles
   ========================================== */
.landing-body {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #3b3c66;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.landing-navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 40px;
}

.landing-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #3b3c66;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.landing-mobile-toggle:hover {
    background-color: #f1f5f9;
}

.landing-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #3b3c66;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.landing-logo .logo-dot {
    color: #ff7e7e;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #474a57;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ff7e7e;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.btn-landing-login {
    background: none;
    border: 1.5px solid #bec2cd;
    color: #3b3c66;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-landing-login:hover {
    border-color: #3b3c66;
    background-color: #f8fafc;
}

.btn-landing-cta {
    background-color: #ff7e7e;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255, 126, 126, 0.3);
    transition: background-color 0.2s;
}

.btn-landing-cta:hover {
    background-color: #f46a6a;
}

/* Hero Section */
.landing-hero {
    padding: 60px 0 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffe4e6;
    color: #e11d48;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    color: #18191f;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.highlight-pink {
    color: #ff7e7e;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #474a57;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-hero-primary {
    background-color: #ff7e7e;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 126, 126, 0.35);
    transition: transform 0.2s, background-color 0.2s;
}

.btn-hero-primary:hover {
    background-color: #f46a6a;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background-color: #ffffff;
    border: 2px solid #3b3c66;
    color: #3b3c66;
    padding: 16px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s;
}

.btn-hero-secondary:hover {
    background-color: #f8fafc;
}

.hero-trust {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

/* Phone Mockup Visual */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 310px;
    background-color: #0f172a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.phone-screen {
    background-color: #ffffff;
    border-radius: 28px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 480px;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.mockup-banner {
    background-color: #fef08a;
    color: #854d0e;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px;
    border-radius: 6px;
    text-align: center;
}

.mockup-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e2e8f0;
    padding: 10px;
    border-radius: 10px;
}

.mockup-img-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

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

.mockup-card-info strong {
    font-size: 0.85rem;
    color: #1e293b;
}

.mockup-card-info span {
    font-size: 0.8rem;
    color: #ff7e7e;
    font-weight: 700;
}

.mockup-btn {
    background-color: #f1f5f9;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 700;
    cursor: pointer;
}

.mockup-wa-btn {
    background-color: #25d366;
    color: #ffffff;
    text-align: center;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 12px;
    border-radius: 10px;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* Partners Bar */
.landing-partners {
    background-color: #f8fafc;
    padding: 40px 0;
    text-align: center;
    border-y: 1px solid #e2e8f0;
}

.partners-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.partner-badge {
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #475569;
}

/* Features Section */
.landing-features {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-tag {
    color: #ff7e7e;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;

}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #18191f;
    margin-top: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #18191f;
    margin-bottom: 12px;
}

.feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Plans & Pricing */
.landing-plans {
    background-color: #f8fafc;
    padding: 90px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.plan-card {
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.plan-card.featured {
    border-color: #ff7e7e;
    transform: scale(1.04);
    box-shadow: 0 20px 30px rgba(255, 126, 126, 0.15);
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff7e7e;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #18191f;
}

.plan-desc {
    font-size: 0.88rem;
    color: #64748b;
    margin-top: 6px;
}

.plan-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #18191f;
    margin: 20px 0;
}

.plan-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.plan-features li {
    font-size: 0.92rem;
    color: #334155;
    font-weight: 600;
}

.btn-plan-select {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background-color: #f1f5f9;
    color: #334155;
    font-weight: 800;
    border: none;
    cursor: pointer;
    margin-top: auto;
    transition: background-color 0.2s;
}

.btn-plan-select:hover {
    background-color: #e2e8f0;
}

.featured-btn {
    background-color: #ff7e7e !important;
    color: #ffffff !important;
}

.featured-btn:hover {
    background-color: #f46a6a !important;
}

/* FAQs */
.landing-faqs {
    padding: 90px 0;
}

.faqs-wrapper {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 24px;
}

.faq-title {
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    color: #18191f;
}

.faq-content {
    margin-top: 12px;
    color: #474a57;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Banner */
.landing-cta-banner {
    background: linear-gradient(135deg, #3b3c66 0%, #18191f 100%);
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.cta-box h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* Footer */
.landing-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 50px 0 24px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 36px;
    margin-bottom: 24px;
}

.footer-brand .logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
}

.footer-brand .logo-dot {
    color: #ff7e7e;
}

.footer-brand p {
    margin-top: 6px;
    font-size: 0.9rem;
    color: #64748b;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .hero-grid, .features-grid, .plans-grid {
        grid-template-columns: 1fr;
    }
    .plan-card.featured {
        transform: none;
    }
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .landing-container {
        padding: 0 16px;
    }
    
    /* Header Mobile */
    .landing-navbar {
        padding: 12px 0;
    }
    .landing-mobile-toggle {
        display: flex;
    }
    .landing-logo {
        font-size: 1.8rem;
    }
    .nav-menu-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 16px 32px rgba(0,0,0,0.12);
        padding: 24px 20px;
        border-radius: 0 0 16px 16px;
        flex-direction: column;
        gap: 20px;
        z-index: 1000;
        border-top: 1px solid #f1f5f9;
        margin-left: 0;
    }
    .nav-menu-wrapper.active {
        display: flex;
        animation: fadeInDown 0.2s ease-out;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        font-size: 1.05rem;
        padding: 8px 0;
        border-bottom: 1px dashed #f1f5f9;
    }
    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-top: 4px;
    }
    .btn-landing-login {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 0.95rem;
    }
    .btn-landing-cta {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 0.95rem;
    }

    /* Hero Mobile */
    .landing-hero {
        padding: 36px 0 50px 0;
    }
    .hero-grid {
        gap: 32px;
    }
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }
    .hero-trust {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    .phone-frame {
        width: 100%;
        max-width: 290px;
    }

    /* Features & Plans Mobile */
    .landing-features, .landing-plans, .landing-faqs {
        padding: 50px 0;
    }
    .section-header {
        margin-bottom: 32px;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .feature-card {
        padding: 24px 20px;
    }
    .plan-card {
        padding: 30px 20px;
    }
    .plan-price {
        font-size: 2.3rem;
    }

    /* FAQs & Banner Mobile */
    .faqs-wrapper {
        margin-top: 24px;
    }
    .faq-item {
        padding: 16px;
    }
    .faq-title {
        font-size: 1rem;
    }
    .landing-cta-banner {
        padding: 50px 16px;
    }
    .cta-box h2 {
        font-size: 1.8rem;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
}

/* ==========================================
   SaaS Client Login Modal Styles
   ========================================== */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-modal-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 36px 32px;
    width: 100%;
    max-width: 420px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalFadeIn 0.25s ease-out;
}

.login-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}

.login-header {
    text-align: center;
    margin-bottom: 28px;
}

.login-header .logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ff7e7e;
}

.login-header .logo-dot {
    color: #3b3c66;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 44px;
}

.btn-toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.btn-toggle-password:hover {
    opacity: 1;
}

.btn-login-submit {
    width: 100%;
    background: linear-gradient(135deg, #ffd082 0%, #f59e0b 100%);
    color: #18191f;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 12px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    transition: transform 0.2s, background-color 0.2s;
}

.btn-login-submit:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
}

.login-forgot-wrapper {
    text-align: center;
    margin-top: 18px;
}

.login-forgot-link {
    color: #ff7e7e;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}

.login-forgot-link:hover {
    text-decoration: underline;
}

.login-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e2e8f0;
}

.login-divider span {
    position: relative;
    background-color: #ffffff;
    padding: 0 14px;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-login-collaborators {
    width: 100%;
    background-color: #ffffff;
    border: 1.5px solid #3b3c66;
    color: #3b3c66;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.btn-login-collaborators:hover {
    background-color: #f8fafc;
}

/* ==========================================
   Store Administration Dashboard Styles (admin.php)
   ========================================== */
.admin-body {
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
    color: #334155;
}

.admin-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.admin-header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #3b3c66;
    text-decoration: none;
}

.admin-logo .logo-dot {
    color: #ff7e7e;
}

.admin-store-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f1f5f9;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.88rem;
    color: #1e293b;
}

.admin-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-view-live-store {
    background-color: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #3b3c66;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-view-live-store:hover {
    background-color: #f8fafc;
}

.btn-admin-logout {
    color: #ef4444;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
}

.admin-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 32px 24px 60px 24px;
}

.admin-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

.admin-page-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 24px;
}

/* Progress Card */
.admin-progress-card {
    background-color: #ffffff;
    border: 1.5px solid #ffe4e6;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.progress-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.progress-icon {
    font-size: 1.8rem;
}

.progress-info strong {
    font-size: 1rem;
    color: #0f172a;
}

.progress-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 2px;
}

.progress-arrow {
    font-size: 1.8rem;
    color: #94a3b8;
}

/* Quick Actions Grid */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.quick-action-card {
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: transform 0.2s, border-color 0.2s;
}

.quick-action-card:hover {
    transform: translateY(-2px);
    border-color: #ff7e7e;
}

.quick-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* Section Blocks & Headers */
.admin-section-block {
    margin-bottom: 32px;
}

.admin-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 14px;
}

/* Modules Grid & Cards */
.modules-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.module-card {
    background-color: #ffffff;
    border: 1.5px solid #f1f5f9;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
    transition: transform 0.2s, border-color 0.2s;
}

.module-card:hover {
    transform: translateY(-2px);
    border-color: #ffd1d1;
}

.module-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffe4e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.module-content h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.desktop-only-desc {
    display: block;
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.45;
    font-weight: 400;
}

/* Display Toggles */
.mobile-only-share {
    display: none !important;
}

.desktop-only-share {
    display: block !important;
}

/* Share Store Link Box (Comparte el link de tu tienda) */
.admin-share-card {
    background-color: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.05);
}

.share-card-header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.share-wa-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.share-card-info strong {
    font-size: 1rem;
    color: #065f46;
    font-weight: 800;
    display: block;
}

.share-card-info p {
    font-size: 0.82rem;
    color: #047857;
    margin-top: 2px;
    line-height: 1.4;
}

.share-input-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.share-input-wrapper input {
    flex: 1;
    min-width: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #334155;
    outline: none;
    box-sizing: border-box;
}

.btn-share-copy {
    background: #ffffff;
    border: 1.5px solid #ff7e7e;
    color: #ff7e7e;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.82rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-share-copy:hover {
    background-color: #fff5f5;
    border-color: #f46a6a;
}

/* Feature Cards (Especialista / Pro cards) */
.admin-feature-card {
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: #475569;
}

.feature-card-header strong {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0f172a;
}

.feature-card-desc {
    font-size: 0.84rem;
    color: #64748b;
    margin-bottom: 14px;
    line-height: 1.45;
    padding-left: 2px;
}

.feature-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 12px;
}

.badge-solid-blue {
    background-color: #0284c7;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-solid-green {
    background-color: #10b981;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.link-more-info {
    color: #0284c7;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Sidebar */
.admin-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.sidebar-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.sidebar-card-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
}

.status-badge-active {
    background-color: #dcfce7;
    color: #16a34a;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
}

.sidebar-link {
    display: block;
    color: #475569;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    margin-bottom: 10px;
}

.sidebar-link-highlight {
    display: block;
    color: #ff7e7e;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
}

.wa-icon {
    font-size: 1.6rem;
    margin-right: 12px;
}

.sidebar-subtext {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 4px;
    line-height: 1.4;
}

.share-link-group {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.share-link-group input {
    flex: 1;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    color: #334155;
    font-family: monospace;
}

.btn-copy-link {
    background-color: #3b3c66;
    color: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-copy-link:hover {
    background-color: #2a2b4a;
}

/* Dark Sidebar Cards */
.dark-card {
    background-color: #1e293b;
    color: #ffffff;
    border: none;
}

.dark-card h3 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.sidebar-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dark-sidebar-link {
    color: #cbd5e1;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
}

.dark-sidebar-link:hover {
    color: #ffffff;
}

@media (max-width: 992px) {
    .admin-layout-grid {
        grid-template-columns: 1fr;
    }
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .modules-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Global Pointer Cursor Enforcement */
button, 
a, 
select, 
summary, 
[role="button"], 
[onclick], 
.quick-action-card, 
.module-card, 
.feature-card, 
.plan-card, 
.faq-title, 
.sidebar-link, 
.dark-sidebar-link, 
.admin-progress-card,
.swatch-item,
.chip-btn,
.overview-item {
    cursor: pointer !important;
}

/* ==========================================
   Merchant Onboarding Styles (onboarding.php)
   ========================================== */
.onboarding-body {
    background-color: #f1f5f9;
    font-family: 'Inter', sans-serif;
    color: #334155;
}

.onboarding-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px 0;
}

.onboarding-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.onboarding-store-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e1b4b;
}

.onboarding-top-banner {
    background-color: #1e1b4b;
    color: #ffffff;
    padding: 32px 24px 60px 24px;
    text-align: center;
}

.onboarding-top-banner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
}

/* Webinar Popup Modal */
.onboarding-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.webinar-modal-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 32px;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.webinar-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
}

.webinar-modal-header {
    background-color: #312e81;
    color: #ffffff;
    margin: -32px -32px 24px -32px;
    padding: 24px 32px;
}

.webinar-modal-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
}

.webinar-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0 24px 0;
    font-size: 0.92rem;
    color: #334155;
}

.btn-webinar-register {
    background-color: #312e81;
    color: #ffffff;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(49, 46, 129, 0.25);
}

/* Main Container & Welcome Card */
.onboarding-container {
    max-width: 1100px;
    margin: -40px auto 60px auto;
    padding: 0 24px;
}

.welcome-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.welcome-store-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background-color: #ffe4e6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.welcome-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: #0f172a;
}

.welcome-subtitle {
    font-size: 1.15rem;
    font-weight: 700;
    color: #475569;
    margin-top: 4px;
}

.welcome-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.time-estimate-badge {
    display: inline-block;
    background-color: #f8fafc;
    border: 1px solid #cbd5e1;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    color: #64748b;
    margin: 20px 0 32px 0;
    font-weight: 600;
}

.steps-overview-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.overview-section-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.overview-item {
    display: flex;
    gap: 16px;
    border: 1.5px solid #e2e8f0;
    padding: 16px 20px;
    border-radius: 14px;
    align-items: center;
    transition: border-color 0.2s;
}

.overview-item:hover {
    border-color: #ff7e7e;
}

.overview-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #1e1b4b;
    color: #ffffff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.overview-info strong {
    font-size: 0.98rem;
    color: #0f172a;
}

.overview-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 2px;
}

.btn-onboarding-primary {
    background-color: #1e1b4b;
    color: #ffffff;
    border: none;
    padding: 16px 48px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(30, 27, 75, 0.25);
    transition: transform 0.2s;
}

.btn-onboarding-primary:hover {
    transform: translateY(-2px);
}

.bypass-footer {
    margin-top: 28px;
    text-align: center;
}

.btn-bypass-onboarding {
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-bypass-onboarding:hover {
    color: #0f172a;
}

/* Wizard Layout (Steps 1 to 4) */
.onboarding-wizard-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: start;
}

.wizard-form-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.wizard-progress-bar {
    margin-bottom: 28px;
}

.progress-step-tag {
    font-size: 0.82rem;
    font-weight: 800;
    color: #ff7e7e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.progress-track {
    height: 6px;
    background-color: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #ff7e7e;
    transition: width 0.3s ease-in-out;
}

.step-sub-tag {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 24px;
}

.logo-upload-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.logo-preview-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #f8fafc;
    border: 1.5px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.btn-upload-logo {
    background-color: #1e1b4b;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
}

.color-swatches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.swatch-item {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.swatch-item.active {
    border-color: #1e1b4b;
    box-shadow: 0 0 0 2px #1e1b4b;
    background-color: #f8fafc;
}

.swatch-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.swatch-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
}

.address-search-group {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.address-search-group input {
    flex: 1;
}

.btn-address-search {
    background-color: #ffd082;
    color: #18191f;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
}

.category-chips-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    align-items: center;
}

.chips-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #64748b;
}

.chip-btn {
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
}

.btn-generate-catalog {
    background: linear-gradient(135deg, #ffe4e6 0%, #fecdd3 100%);
    color: #e11d48;
    border: 1.5px solid #fda4af;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 800;
    width: 100%;
    margin: 24px 0;
    cursor: pointer;
}

.settings-block h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.toggle-setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1.5px solid #f1f5f9;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.toggle-info strong {
    font-size: 0.9rem;
    color: #0f172a;
}

.toggle-info p {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 2px;
}

/* Switch Toggle Styling */
.switch-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #1e1b4b;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

/* Step 4 Simulation Box */
.test-sim-box {
    text-align: center;
    padding: 20px 0;
}

.test-sim-badge {
    display: inline-block;
    background-color: #dcfce7;
    color: #166534;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.test-sim-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
}

.test-sim-box p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 10px 0 24px 0;
    line-height: 1.5;
}

.sim-steps-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.sim-flow-item {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 12px;
    width: 90px;
    font-size: 0.75rem;
    font-weight: 700;
}

.sim-flow-item span {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 4px;
}

.btn-start-sim {
    background-color: #22c55e;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

/* Right Phone Preview Card */
.wizard-preview-card {
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    position: sticky;
    top: 90px;
}

.preview-header-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 16px;
}

.phone-mockup-top {
    padding: 14px 16px;
    color: #ffffff;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.mockup-header-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
}

.mockup-categories-title {
    font-weight: 800;
    font-size: 0.9rem;
    color: #0f172a;
    margin: 16px 0 10px 0;
    text-align: left;
}

.mockup-category-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-cat-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    text-align: left;
}

/* Tour Modal Overlay */
.tour-modal-overlay {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 3000;
}

.tour-modal-card {
    background-color: #312e81;
    color: #ffffff;
    padding: 24px;
    border-radius: 18px;
    width: 340px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3);
}

.tour-modal-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.tour-modal-card p {
    font-size: 0.88rem;
    opacity: 0.9;
    margin: 8px 0 16px 0;

}

.tour-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-step-count {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.7;
}

.btn-tour-next {
    background-color: #ff7e7e;
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 992px) {
    .onboarding-wizard-layout {
        grid-template-columns: 1fr;
    }
    .wizard-preview-card {
        display: none; /* Hide preview on mobile to focus on form */
    }
}

/* Mobile Responsiveness & Touch Adjustments */
@media (max-width: 768px) {
    /* Prevent horizontal scroll on body & containers */
    body.admin-body {
        overflow-x: hidden;
        width: 100%;
    }
    .admin-container {
        padding: 16px 16px 40px 16px;
        width: 100%;
        box-sizing: border-box;
    }
    .admin-layout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }
    .admin-main-content {
        width: 100%;
        max-width: 100%;
    }

    /* Admin Header Mobile Fix */
    .admin-header {
        padding: 10px 0;
        width: 100%;
    }
    .admin-header-container {
        padding: 0 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    .admin-header-left {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 10px;
    }
    .admin-logo {
        font-size: 1.6rem;
        flex-shrink: 0;
    }
    .admin-store-badge {
        font-size: 0.8rem;
        padding: 4px 10px;
        max-width: 170px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .admin-header-right {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 10px;
        padding-top: 8px;
        border-top: 1px solid #f1f5f9;
    }
    .btn-view-live-store {
        flex: 1;
        text-align: center;
        font-size: 0.8rem;
        padding: 6px 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .btn-admin-logout {
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Mobile Display Toggles */
    .mobile-only-share {
        display: block !important;
    }
    .desktop-only-share {
        display: none !important;
    }
    .desktop-only-desc {
        display: none !important;
    }
    .modules-grid-2 {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 12px;
    }
    .module-card {
        padding: 12px 14px;
        align-items: center;
        border-radius: 16px;
    }
    .module-icon-box {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    .module-content h4 {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    /* Admin Cards & Grid Mobile Fixes */
    .admin-page-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    .admin-progress-card {
        padding: 14px 16px;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .progress-info {
        gap: 12px;
    }
    .progress-info strong {
        font-size: 0.9rem;
    }
    .progress-info p {
        font-size: 0.8rem;
    }
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 24px;
        width: 100%;
    }
    .quick-action-card {
        padding: 14px 8px;
        font-size: 0.78rem;
        border-radius: 14px;
        gap: 8px;
    }
    .quick-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .admin-share-card {
        padding: 16px;
        margin-bottom: 24px;
        width: 100%;
        box-sizing: border-box;
    }
    .share-card-header {
        gap: 10px;
        margin-bottom: 12px;
    }
    .share-wa-icon {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    .share-card-info strong {
        font-size: 0.9rem;
    }
    .share-card-info p {
        font-size: 0.78rem;
    }
    .share-input-wrapper {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    .share-input-wrapper input {
        width: 100%;
        font-size: 0.82rem;
        padding: 10px 12px;
        box-sizing: border-box;
    }
    .btn-share-copy {
        width: 100%;
        justify-content: center;
        padding: 10px;
        font-size: 0.82rem;
    }
    .admin-feature-card {
        padding: 14px;
        width: 100%;
        box-sizing: border-box;
        margin-top: 8px;
        margin-bottom: 8px;
    }
    .feature-card-header {
        gap: 10px;
    }
    .feature-icon-box {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    .feature-card-header strong {
        font-size: 0.88rem;
    }
    .feature-card-desc {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .tour-modal-overlay {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    .tour-modal-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .onboarding-header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn-icon {
        width: 44px;
        height: 44px;
    }
}

/* Horarios Modal Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.2s ease-out;
}

.horarios-modal-card {
    background-color: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.horarios-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.horarios-modal-header h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.btn-close-modal {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
}

.horarios-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.horarios-section-card {
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px;
}

.mt-20 { margin-top: 20px; }

.horarios-card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.horarios-card-row h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.horarios-card-sub {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.45;
}

/* Switch Slider */
.switch-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}
.switch-toggle input { opacity: 0; width: 0; height: 0; }
.switch-slider {
    position: absolute; cursor: pointer; inset: 0;
    background-color: #cbd5e1; transition: .3s; border-radius: 34px;
}
.switch-slider:before {
    position: absolute; content: ""; height: 20px; width: 20px;
    left: 3px; bottom: 3px; background-color: white; transition: .3s; border-radius: 50%;
}
.switch-toggle input:checked + .switch-slider { background-color: #ff7e7e; }
.switch-toggle input:checked + .switch-slider:before { transform: translateX(22px); }

/* Small Switch Slider for Days */
.switch-toggle-sm {
    position: relative; display: inline-block; width: 36px; height: 20px; flex-shrink: 0;
}
.switch-toggle-sm input { opacity: 0; width: 0; height: 0; }
.switch-slider-sm {
    position: absolute; cursor: pointer; inset: 0;
    background-color: #cbd5e1; transition: .3s; border-radius: 34px;
}
.switch-slider-sm:before {
    position: absolute; content: ""; height: 14px; width: 14px;
    left: 3px; bottom: 3px; background-color: white; transition: .3s; border-radius: 50%;
}
.switch-toggle-sm input:checked + .switch-slider-sm { background-color: #10b981; }
.switch-toggle-sm input:checked + .switch-slider-sm:before { transform: translateX(16px); }

/* Schedule Days List */
.schedule-days-wrapper {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.schedule-actions-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.btn-copy-schedule {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    color: #3b3c66;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.schedule-days-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-day-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.day-toggle-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.day-toggle-col strong {
    font-size: 0.9rem;
    color: #1e293b;
}

.day-inputs-col {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-input {
    border: 1px solid #cbd5e1;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #1e293b;
    outline: none;
}

.horarios-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background-color: #ffffff;
}

.btn-horarios-cancel {
    background-color: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #475569;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-horarios-save {
    background-color: #ff7e7e;
    border: none;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 126, 126, 0.3);
}

@media (max-width: 576px) {
    .modal-overlay {
        padding: 12px;
    }
    .horarios-modal-card {
        max-width: 100%;
        max-height: 94vh;
        border-radius: 20px;
    }
    .horarios-modal-header {
        padding: 14px 16px;
    }
    .horarios-modal-header h2 {
        font-size: 1.1rem;
    }
    .horarios-modal-body {
        padding: 14px;
    }
    .horarios-section-card {
        padding: 14px;
        border-radius: 14px;
    }
    .horarios-card-row h3 {
        font-size: 0.95rem;
    }
    .horarios-card-sub {
        font-size: 0.78rem;
    }
    .schedule-actions-row {
        justify-content: center;
    }
    .btn-copy-schedule {
        width: 100%;
        text-align: center;
        padding: 8px;
        font-size: 0.76rem;
    }
    .schedule-day-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px;
    }
    .day-toggle-col {
        justify-content: space-between;
        width: 100%;
    }
    .day-inputs-col {
        justify-content: space-between;
        width: 100%;
        gap: 6px;
        padding-top: 6px;
        border-top: 1px dashed #f1f5f9;
    }
    .time-input {
        flex: 1;
        min-width: 0;
        width: 100%;
        text-align: center;
        padding: 6px 2px;
        font-size: 0.82rem;
    }
    .horarios-modal-footer {
        padding: 12px 16px;
        gap: 8px;
    }
    .btn-horarios-cancel,
    .btn-horarios-save {
        flex: 1;
        text-align: center;
        padding: 10px 8px;
        font-size: 0.82rem;
    }
}

/* Catalogo Modal & Tabs Styles */
.catalogo-modal-card {
    background-color: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.catalogo-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalogo-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.catalogo-header-left h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.btn-client-mode-store {
    background-color: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-client-mode-store:hover {
    background-color: #e2e8f0;
    color: #1e293b;
}

.catalogo-tabs-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
    background-color: #f8fafc;
    white-space: nowrap;
}

.cat-tab-btn {
    background: none;
    border: none;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.cat-tab-btn:hover {
    color: #0f172a;
    background-color: #ffffff;
}

.cat-tab-btn.active {
    background-color: #ffffff;
    color: #e11d48;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.badge-tag-tier {
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
}
.tier-esp { background-color: #e0f2fe; color: #0284c7; }
.tier-pro { background-color: #fef3c7; color: #d97706; }

.catalogo-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    background-color: #ffffff;
}

.categories-card-wrapper {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.categories-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.categories-card-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
}

.btn-add-category-main {
    background-color: #ff7e7e;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 126, 126, 0.3);
}

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

.categories-custom-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.82rem;
    font-weight: 800;
    color: #64748b;
    border-bottom: 2px solid #f1f5f9;
}

.categories-custom-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
}

.cat-row-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: #1e293b;
}

.dragging-row {
    background-color: #f1f5f9;
    opacity: 0.6;
    border: 2px dashed #cbd5e1 !important;
}

.cat-row-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.btn-cat-action {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.btn-cat-action:hover {
    background-color: #f1f5f9;
}

.catalogo-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
    background-color: #ffffff;
}

.sub-modal-card {
    background-color: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

@media (max-width: 576px) {
    .catalogo-modal-card {
        max-width: 100%;
        max-height: 94vh;
        border-radius: 20px;
    }
    .catalogo-modal-header {
        padding: 14px 16px;
    }
    .catalogo-tabs-bar {
        padding: 8px 14px;
    }
    .catalogo-modal-body {
        padding: 14px;
    }
    .categories-card-wrapper {
        padding: 14px;
    }
    .btn-add-category-main {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    .categories-custom-table th,
    .categories-custom-table td {
        padding: 10px 8px;
    }
}

/* Animation Keyframe Definitions */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Centro de Pedidos Modal & Kanban Board Styles */
.pedidos-modal-card {
    background-color: #f8fafc;
    border-radius: 24px;
    width: 100%;
    max-width: 1100px;
    max-height: 94vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.pedidos-modal-header {
    padding: 20px 24px;
    background-color: #ff7e7e;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pedidos-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pedidos-header-left h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
}

.sound-toggle-btn {
    font-size: 1.2rem;
    cursor: pointer;
    user-select: none;
    transition: transform 0.15s;
}
.sound-toggle-btn:hover {
    transform: scale(1.15);
}

.pedidos-modal-header .btn-close-modal {
    color: #ffffff;
    opacity: 0.9;
}
.pedidos-modal-header .btn-close-modal:hover {
    opacity: 1;
}

.pedidos-toolbar {
    background-color: #ffffff;
    border-bottom: 1.5px solid #e2e8f0;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.toolbar-select {
    padding: 8px 12px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #1e293b;
    outline: none;
    font-weight: 600;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-toolbar-action {
    background-color: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #475569;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.btn-toolbar-action:hover {
    border-color: #ff7e7e;
    color: #ff7e7e;
    background-color: #fff5f5;
}

.pedidos-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pedidos-info-banner {
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-icon {
    font-size: 1.1rem;
}

.info-text {
    font-size: 0.85rem;
    color: #0369a1;
    font-weight: 500;
}

/* Kanban Columns container */
.kanban-board-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
    flex: 1;
    min-height: 400px;
}

.kanban-column-wrapper {
    background-color: #f1f5f9;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    padding: 12px;
    border: 1.5px solid #e2e8f0;
}

.kanban-column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 4px;
}

.kanban-column-header strong {
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 800;
}

.column-count-badge {
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff;
}
.column-count-badge[data-status="new"] { background-color: #0284c7; }
.column-count-badge[data-status="in-progress"] { background-color: #d97706; }
.column-count-badge[data-status="completed"] { background-color: #10b981; }
.column-count-badge[data-status="canceled"] { background-color: #ef4444; }

.kanban-column-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 150px;
    border-radius: 12px;
    transition: background-color 0.2s;
}

.kanban-column-hover {
    background-color: #e2e8f0;
}

/* Kanban Cards styling */
.order-kanban-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 12px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    cursor: grab;
    user-select: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.order-kanban-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.dragging-card {
    opacity: 0.5;
    transform: scale(0.96);
    cursor: grabbing;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
    gap: 8px;
}

.order-card-header strong {
    font-size: 0.88rem;
    color: #1e293b;
    font-weight: 700;
}

.order-card-date {
    font-size: 0.72rem;
    color: #94a3b8;
}

.order-card-summary {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.35;
    margin-bottom: 8px;
}

.order-card-total {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ff7e7e;
    margin-bottom: 8px;
}

.order-card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.badge-shipping-method,
.badge-payment-method {
    font-size: 0.68rem;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 700;
}
.badge-shipping-method { background-color: #f1f5f9; color: #475569; }
.badge-payment-method { background-color: #fff7ed; color: #c2410c; }

.pedidos-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    background-color: #ffffff;
}

@media (max-width: 992px) {
    .kanban-board-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pedidos-modal-card {
        max-width: 100%;
        max-height: 96vh;
        border-radius: 20px;
    }
    .pedidos-modal-header {
        padding: 14px 16px;
    }
    .pedidos-toolbar {
        padding: 10px 14px;
        flex-direction: column;
        align-items: stretch;
    }
    .toolbar-left, .toolbar-select {
        width: 100%;
    }
    .toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
    .btn-toolbar-action {
        flex: 1;
        justify-content: center;
    }
    .kanban-board-container {
        grid-template-columns: 1fr;
    }
}

/* Reportes Dashboard Styles */
.report-status-chip {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    transition: all 0.15s;
    border: 1.5px solid transparent;
}

.new-status-chip { background-color: #e0f2fe; color: #0369a1; }
.new-status-chip:hover { background-color: #bae6fd; }

.progress-status-chip { background-color: #fef3c7; color: #b45309; }
.progress-status-chip:hover { background-color: #fde68a; }

.completed-status-chip { background-color: #d1fae5; color: #047857; }
.completed-status-chip:hover { background-color: #a7f3d0; }

.inactive-chip {
    background-color: #f1f5f9 !important;
    color: #94a3b8 !important;
    border-color: #cbd5e1 !important;
    text-decoration: line-through;
}

.report-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.report-kpi-card {
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.kpi-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 6px;
}

.kpi-val {
    font-size: 1.6rem;
    font-weight: 900;
    margin: 0 0 6px 0;
}

.kpi-trend {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
}

.report-section-card {
    background-color: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.report-section-header h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
}

/* Distribution Bars */
.distribution-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dist-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
}

.pct-progress-bg {
    background-color: #f1f5f9;
    height: 12px;
    border-radius: 9999px;
    overflow: hidden;
    display: flex;
}

.pct-progress-fill {
    height: 100%;
    transition: width 0.3s ease;
}

.dist-meta-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
}

@media (max-width: 768px) {
    .report-metrics-grid {
        grid-template-columns: 1fr;
    }
    .report-details-row {
        grid-template-columns: 1fr !important;
    }
}

/* Información del negocio general-form styles */
.general-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.general-field-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #1e293b;
    display: block;
}

.general-text-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.88rem;
    color: #1e293b;
    outline: none;
    background-color: #ffffff;
    transition: border-color 0.15s;
}
.general-text-input:focus {
    border-color: #f97316;
}




