:root {
    --primary-red: #9d101c;
    --dark-navy: #001626;
    --bg-color: #e0e5ec;
    --shadow-light: #ffffff;
    --shadow-dark: #a3b1c6;
    --inset-shadow-light: inset 2px 2px 5px #a3b1c6, inset -5px -5px 10px #ffffff;
    --neumorphic-flat: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    --neumorphic-pressed: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light);
    --neumorphic-soft: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

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

body {
    background-color: var(--bg-color);
    color: var(--dark-navy);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: var(--primary-red);
}

/* Keep search inputs consistent across pages (some pages load different Tailwind plugins/styles) */
#searchInput,
#mobileSearchInput {
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0;
    min-height: 1.5rem;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Ensure Material Icons render properly */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'liga';
}

.neumorphic-card {
    background: var(--bg-color);
    box-shadow: var(--neumorphic-flat);
    border-radius: 20px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.neumorphic-card:hover {
    box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
}

.neumorphic-inset {
    background: var(--bg-color);
    box-shadow: var(--neumorphic-pressed);
    border-radius: 15px;
}

.neumorphic-button {
    background: var(--bg-color);
    box-shadow: var(--neumorphic-soft);
    transition: all 0.2s ease;
    cursor: pointer;
}

.neumorphic-button:hover {
    transform: translateY(-1px);
    box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
}

.neumorphic-button:active {
    box-shadow: var(--neumorphic-pressed);
    transform: translateY(0);
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    box-shadow: var(--neumorphic-soft);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.carousel-nav-btn:hover {
    box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
}

.carousel-nav-btn:active {
    box-shadow: var(--neumorphic-pressed);
}

.carousel-nav-btn .material-symbols-outlined {
    font-size: 24px;
    font-weight: 600;
}

.active-widget-card {
    box-shadow: 0 0 0 2px rgba(157, 16, 28, 0.25);
    border-radius: 16px;
}

.primary-button {
    background: var(--primary-red);
    box-shadow: 4px 4px 10px rgba(157, 16, 28, 0.3);
    color: white;
    transition: all 0.2s ease;
    cursor: pointer;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 15px rgba(157, 16, 28, 0.4);
}

.primary-button:active {
    transform: scale(0.98);
}

body.wishlist-checkout-page {
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
}

body.wishlist-checkout-page .neumorphic-btn {
    background: var(--bg-color);
    box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    transition: all 0.3s ease;
}

body.wishlist-checkout-page .neumorphic-btn:active {
    box-shadow: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
}

body.wishlist-checkout-page .fade-in { animation: fadeInCheckout 0.5s ease-in; }

@keyframes fadeInCheckout {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

body.wishlist-checkout-page .item-row {
    transition: all 0.3s ease;
    border-radius: 16px;
}

body.wishlist-checkout-page .item-row:hover { transform: translateX(4px); }

body.wishlist-checkout-page .qty-btn {
    background: var(--bg-color);
    box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
    border-radius: 8px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}

body.wishlist-checkout-page .qty-btn:active {
    box-shadow: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
}

body.wishlist-checkout-page .qty-display {
    background: var(--bg-color);
    box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
    border-radius: 8px;
    width: 38px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

body.wishlist-checkout-page .item-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    cursor: pointer;
    background: var(--bg-color);
    box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

body.wishlist-checkout-page .item-checkbox:checked {
    background: var(--primary-red);
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.2);
}

body.wishlist-checkout-page .item-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

body.wishlist-checkout-page .price-tag {
    background: linear-gradient(135deg, var(--primary-red), #ff1744);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.wishlist-checkout-page .whatsapp-btn {
    background: linear-gradient(135deg, var(--whatsapp-green), var(--whatsapp-dark));
    color: white;
    box-shadow: 6px 6px 12px rgba(18, 140, 126, 0.4), -4px -4px 8px rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

body.wishlist-checkout-page .whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 8px 8px 16px rgba(18, 140, 126, 0.5), -4px -4px 8px rgba(255,255,255,0.7);
}

body.wishlist-checkout-page .whatsapp-btn:active {
    transform: translateY(0);
    box-shadow: inset 3px 3px 6px rgba(0,0,0,0.2);
}

body.wishlist-checkout-page .whatsapp-btn:disabled {
    background: linear-gradient(135deg, #9e9e9e, #757575);
    box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    cursor: not-allowed;
    transform: none;
}

body.wishlist-checkout-page .summary-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--shadow-dark), transparent);
    margin: 12px 0;
}

body.wishlist-checkout-page .sticky-sidebar {
    position: sticky;
    top: 100px;
}

body.wishlist-checkout-page .badge-in-stock {
    background: #e6f9f0;
    color: #1a7a4a;
    font-size: 0.65rem;
    padding: 2px 7px;
    border-radius: 20px;
    font-weight: 600;
}

body.wishlist-checkout-page .badge-low-stock {
    background: #fff3e0;
    color: #e65100;
    font-size: 0.65rem;
    padding: 2px 7px;
    border-radius: 20px;
    font-weight: 600;
}

body.wishlist-checkout-page .toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--dark-navy);
    color: white;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.wishlist-checkout-page .toast.show { transform: translateY(0); opacity: 1; }

body.wishlist-checkout-page .select-bar {
    background: var(--bg-color);
    box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
    border-radius: 14px;
}

body.wishlist-checkout-page .empty-state { animation: fadeInScaleCheckout 0.6s ease-out forwards; }

@keyframes fadeInScaleCheckout {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

body.wishlist-checkout-page .items-scroll::-webkit-scrollbar { width: 4px; }
body.wishlist-checkout-page .items-scroll::-webkit-scrollbar-track { background: transparent; }
body.wishlist-checkout-page .items-scroll::-webkit-scrollbar-thumb { background: var(--shadow-dark); border-radius: 4px; }

body.wishlist-checkout-page .discount-pill {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    body.wishlist-checkout-page .sticky-sidebar { position: static; }
}

body.wishlist-page .wishlist-item {
    transition: all 0.3s ease;
}

body.wishlist-page .wishlist-item:hover {
    transform: translateY(-5px);
}

body.wishlist-page .empty-state {
    opacity: 0;
    animation: fadeInScaleWishlist 0.6s ease-out forwards;
}

@keyframes fadeInScaleWishlist {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ── "You May Also Like" Related Product Cards ───────────────────────────── */
.related-product-card {
    background: var(--bg-color);
    box-shadow: 6px 6px 14px var(--shadow-dark), -6px -6px 14px var(--shadow-light);
    border-radius: 18px;
    overflow: hidden;
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.related-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 8px 18px 28px var(--shadow-dark), -4px -4px 12px var(--shadow-light);
}
.related-product-card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(145deg, #cdd3dc 0%, #e6eaf0 55%, #dde2ea 100%);
}
.related-product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    transition: transform 0.35s ease;
}
.related-product-card:hover .related-product-card__img-wrap img {
    transform: scale(1.09);
}
.related-product-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 16px;
    border-radius: 99px;
    background: var(--bg-color);
    color: var(--primary-red);
    box-shadow: 2px 2px 5px var(--shadow-dark), -2px -2px 5px var(--shadow-light);
    white-space: nowrap;
}
.related-product-card__info {
    padding: 13px 14px 12px;
    background: var(--bg-color);
}
.related-product-card__category {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--primary-red);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.related-product-card__name {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark-navy);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.1em;
    margin-bottom: 8px;
}
.related-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.related-product-card__price {
    font-size: 15px;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
}
.related-product-card__arrow {
    font-size: 15px !important;
    color: var(--primary-red);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.related-product-card:hover .related-product-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Logo Styling */
.logo-text {
    font-family: 'Good Timing', 'Arial Black', 'Arial Bold', Impact, sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 2rem;
    }
}

/* Logo Styling */
.logo-text1 {
    font-family: 'Good Timing', 'Arial Black', 'Arial Bold', Impact, sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.logo-smart {
    color: #001626;
}

.logo-ware {
    color: #9d101c;
}

/* Custom Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-slide-up {
    animation: slideInUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.3s ease-out forwards;
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 9999;
}

.notification.show {
    transform: translateX(0);
}

.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 22, 38, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.backdrop.active {
    opacity: 1;
    pointer-events: all;
}

/* Product Card Hover Effects */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

/* Product Widget Styles */
.product-widget {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-widget-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-widget-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-widget-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
}

.product-widget-category {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-widget-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-navy);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-widget-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-red);
}

/* Compact Product Card Styles */
.compact-product-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-color);
    box-shadow: var(--neumorphic-pressed);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.compact-product-card:hover {
    transform: translateY(-2px);
}

.compact-product-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.compact-product-img img {
    max-height: 100%;
    object-fit: contain;
}

.compact-product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.compact-product-category {
    font-size: 0.625rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.compact-product-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.compact-product-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-red);
}

/* ── Widget Splide (Top Selling / Featured / On-Sale) ────────────────────── */
.widget-splide-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Header row: title left, nav buttons right */
.widget-splide-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.widget-splide-heading {
    font-size: 1.125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--dark-navy);
    flex: 1;
}

/* Nav arrow pair */
.widget-splide-nav {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
}

.widget-splide-prev,
.widget-splide-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--bg-color);
    box-shadow: var(--neumorphic-shadow);
    color: var(--dark-navy);
    transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.widget-splide-prev:hover,
.widget-splide-next:hover {
    background: linear-gradient(135deg, #b8131f 0%, #9d101c 60%, #7a0c16 100%);
    box-shadow: 0 4px 16px rgba(157, 16, 28, 0.5), 0 1px 4px rgba(0,0,0,0.15);
    color: #fff;
}

.widget-splide-prev:active,
.widget-splide-next:active {
    box-shadow: var(--neumorphic-pressed);
    background: #9d101c;
}

.widget-splide-prev .material-symbols-outlined,
.widget-splide-next .material-symbols-outlined {
    font-size: 1.125rem;
    line-height: 1;
}

/* Space between last card and pagination dots */
.widget-splide {
    padding-bottom: 2.75rem;
}

.widget-splide .splide__track {
    margin-bottom: 1.25rem;
}

.widget-splide .splide__slide {
    display: flex;
    align-items: stretch;
}

/* 4 cards stacked vertically inside each horizontal slide */
.widget-slide-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.widget-slide-group .compact-product-card {
    width: 100%;
}

/* Pagination dots */
.widget-splide .splide__pagination {
    bottom: 0.25rem;
    gap: 0.375rem;
}

.widget-splide .splide__pagination__page {
    background: #d1d5db;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin: 0;
    transition: background 0.2s, transform 0.2s;
}

.widget-splide .splide__pagination__page.is-active {
    background: var(--primary-red);
    transform: scale(1.35);
}

/* Filter Pills */
.filter-pill {
    transition: all 0.2s ease;
}

.filter-pill.active {
    background: var(--primary-red);
    color: white;
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Price Range Slider */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--bg-color);
    box-shadow: var(--neumorphic-pressed);
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-red);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(157, 16, 28, 0.4);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-red);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(157, 16, 28, 0.4);
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--bg-color);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Quick View Modal */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1001;
}

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

.modal-content {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    transform: translateY(200px);
    transition: transform 0.3s ease;
    z-index: 9999;
}

.toast.show {
    transform: translateY(0);
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #e0e5ec 25%, #f0f3f7 50%, #e0e5ec 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Page Loader */
@keyframes sw-loader-hide {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}
#pageLoader {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    /* CSS-only guarantee: auto-hide after 1.5 s regardless of JS */
    animation: sw-loader-hide 0.4s ease-out 1.5s forwards;
}
#pageLoader.hidden,
#pageLoader[style*="display: none"],
#pageLoader[style*="display:none"] {
    display: none !important;
}

body.page-about-us .value-card,
body.page-cookie-policy .cookie-type-card,
body.page-terms-conditions .section-card,
body.page-privacy-policy .section-card {
    transition: all 0.3s ease;
}

body.page-about-us .value-card:hover {
    transform: translateY(-5px);
}

body.page-cookie-policy .cookie-type-card:hover {
    transform: translateY(-5px);
}

body.page-terms-conditions .section-card:hover,
body.page-privacy-policy .section-card:hover {
    transform: translateY(-3px);
}

body.page-contact-us,
body.page-delivery-policy,
body.page-return-refunds {
    font-family: 'Outfit', sans-serif;
}

body.page-contact-us .neumorphic-btn,
body.page-delivery-policy .neumorphic-btn,
body.page-return-refunds .neumorphic-btn {
    background: var(--bg-color);
    box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    transition: all 0.3s ease;
}

body.page-contact-us .neumorphic-btn:active,
body.page-delivery-policy .neumorphic-btn:active,
body.page-return-refunds .neumorphic-btn:active {
    box-shadow: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
}

body.page-contact-us .contact-card {
    transition: all 0.3s ease;
}

body.page-contact-us .contact-card:hover {
    transform: translateY(-5px);
}

body.page-contact-us input,
body.page-contact-us textarea,
body.page-contact-us select {
    background: var(--bg-color);
    border: none;
    outline: none;
    padding: 1rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
}

body.page-contact-us input:focus,
body.page-contact-us textarea:focus,
body.page-contact-us select:focus {
    box-shadow: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
}

body.page-contact-us .submit-btn {
    background: linear-gradient(135deg, var(--primary-red), #ff1744);
    color: white;
    border: none;
    box-shadow: 4px 4px 12px rgba(220, 20, 60, 0.3);
}

body.page-contact-us .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 16px rgba(220, 20, 60, 0.4);
}

body.page-contact-us .submit-btn:active {
    transform: translateY(0);
    box-shadow: 2px 2px 8px rgba(220, 20, 60, 0.3);
}

body.page-delivery-policy .policy-section,
body.page-return-refunds .policy-section {
    transition: all 0.3s ease;
}

body.page-delivery-policy .policy-section:hover,
body.page-return-refunds .policy-section:hover {
    transform: translateY(-3px);
}

body.page-delivery-policy .timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-red), transparent);
}

body.page-delivery-policy .timeline-item:last-child::before {
    display: none;
}

body.page-delivery-policy .zone-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

body.page-return-refunds .step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--primary-red);
}

body.page-return-refunds .condition-item {
    padding-left: 2rem;
    position: relative;
}

body.page-return-refunds .condition-item::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--shadow-light);
    border-top: 4px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(157, 16, 28, 0.3);
}

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

/* Star Rating */
.star-rating {
    display: inline-flex;
    gap: 2px;
}

.star {
    color: #d1d5db;
    transition: color 0.2s;
}

.star.filled {
    color: #fbbf24;
}

/* Badge Pulse */
.badge-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Image Zoom */
.image-zoom {
    transition: transform 0.3s ease;
}

.image-zoom:hover {
    transform: scale(1.1);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

.scroll-smooth {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-red);
    color: white;
}

/* ============================================================================
   LISTING PAGES (brand-page, tag-page, category-page)
   Shared styles for all three product listing pages.
   ============================================================================ */

/* Filter Sidebar — slides in from the left on mobile */
.filter-sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    background: var(--bg-color);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.filter-sidebar.active {
    left: 0;
}

/* Filter Checkbox — custom neumorphic checkbox style */
.filter-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid rgba(163, 177, 198, 0.5);
    background: var(--bg-color);
    box-shadow: var(--neumorphic-pressed);
    cursor: pointer;
    position: relative;
}

.filter-checkbox:focus,
.filter-checkbox:focus-visible {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(157, 16, 28, 0.25);
}

.filter-checkbox:checked {
    background: var(--primary-red);
    box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.filter-checkbox:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Breadcrumb — auto-insert separator between items */
.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: var(--shadow-dark);
}

/* Quantity Input */
.quantity-input {
    background: var(--bg-color) !important;
    -moz-appearance: textfield;
}

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

/* Grid Enter Animation — fade + slide up when products render */
.grid-enter {
    animation: gridFadeIn 0.3s ease-out;
}

@keyframes gridFadeIn {
    from {
        opacity: 1;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Brand Hero Section — radial gradient background with pulse */
.brand-hero {
    background: linear-gradient(135deg, rgba(157, 16, 28, 0.1), rgba(0, 22, 38, 0.05));
    position: relative;
    overflow: hidden;
}

.brand-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(157, 16, 28, 0.05) 0%, transparent 70%);
    animation: brandPulse 15s ease-in-out infinite;
}

@keyframes brandPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* Tag Badge — large pill for the current tag label */
.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-color);
    box-shadow: var(--neumorphic-soft);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.tag-badge:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
}

/* Related Tag — smaller pill links shown under tag header */
.related-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-color);
    box-shadow: var(--neumorphic-soft);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.related-tag:hover {
    transform: translateY(-1px);
    color: var(--primary-red);
}

/* =============================================================================
   POPULAR BRANDS PAGE
   ============================================================================= */

/* Brand card hover glow overlay */
.brand-card {
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-red), #d62839);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: 0;
}

.brand-card:hover::before {
    opacity: 0.05;
}

.brand-card > * {
    position: relative;
    z-index: 1;
}

/* Brand logo initials text */
.brand-logo {
    font-family: 'Good Timing', 'Inter', cursive;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

/* Fade-in animation for brand cards */
@keyframes brandFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.brand-card.fade-in {
    animation: brandFadeIn 0.5s ease forwards;
}

/* =============================================================================
   SHOP BY CATEGORY PAGE
   ============================================================================= */

/* Category card hover glow overlay */
.category-card {
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-red), #d62839);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: 0;
}

.category-card:hover::before {
    opacity: 0.05;
}

.category-card > * {
    position: relative;
    z-index: 1;
}

/* Category badge gradient */
.category-badge {
    background: linear-gradient(135deg, var(--primary-red), #d62839);
    box-shadow: none;
}

/* Fade-in animation for category cards */
.category-card.fade-in {
    animation: brandFadeIn 0.5s ease forwards;
}

/* ── Shop-by-category filter sidebar (mobile slide-in) ── */
.cat-filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 90vw;
    height: 100%;
    background: var(--bg-color);
    box-shadow: 8px 0 32px rgba(0,0,0,0.15);
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(-110%);
    transition: transform 0.3s ease;
}

.cat-filter-sidebar.open {
    transform: translateX(0);
}

.cat-filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cat-filter-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

/* View toggle active state */
.cat-view-btn.active {
    box-shadow: var(--neumorphic-pressed);
    color: var(--primary-red);
}

/* ── FAQ page ──────────────────────────────────────────────────────────────── */

/* Fade-in animation for FAQ sections */
.faq-fade-in {
    animation: faqFadeIn 0.6s ease-in both;
}
.faq-fade-in:nth-child(2) { animation-delay: 0.1s; }
.faq-fade-in:nth-child(3) { animation-delay: 0.2s; }
.faq-fade-in:nth-child(4) { animation-delay: 0.3s; }

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Category filter buttons */
.faq-cat-btn {
    transition: all 0.3s ease;
}

.faq-cat-btn.active {
    background: linear-gradient(135deg, var(--primary-red), #c0152a);
    color: #fff;
    box-shadow: 0 4px 14px rgba(157, 16, 28, 0.35);
}

/* FAQ accordion item */
.faq-item {
    cursor: pointer;
    border-radius: 20px;
    border-left: 4px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(157,16,28,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item.open {
    border-left-color: var(--primary-red);
    box-shadow: inset 2px 2px 6px var(--shadow-dark), inset -2px -2px 6px var(--shadow-light),
                6px 6px 14px var(--shadow-dark), -6px -6px 14px var(--shadow-light);
    transform: translateY(0);
}

.faq-item.open::before {
    opacity: 1;
}

/* Question row */
.faq-question-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Icon bubble */
.faq-icon-bubble {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--bg-color);
    box-shadow: var(--neumorphic-soft);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.faq-item.open .faq-icon-bubble {
    background: linear-gradient(135deg, var(--primary-red), #c0152a);
    box-shadow: 0 4px 12px rgba(157, 16, 28, 0.35);
}

.faq-item.open .faq-icon-bubble .material-symbols-outlined {
    color: #fff;
}

/* Question text */
.faq-question-text {
    flex: 1;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--dark-navy);
    transition: color 0.2s ease;
    padding-top: 0.25rem;
}

.faq-item.open .faq-question-text {
    color: var(--primary-red);
}

/* Collapsible answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 600px;
}

/* Answer content */
.faq-answer-inner {
    color: #4b5563;
}

/* Expand chevron */
.faq-expand-icon {
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
    color: var(--shadow-dark);
    margin-top: 0.125rem;
}

.faq-item:hover .faq-expand-icon {
    color: var(--primary-red);
}

.faq-item.open .faq-expand-icon {
    transform: rotate(180deg);
    color: var(--primary-red);
}

/* Search input inside inset card */
#faqSearch {
    background: transparent;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--dark-navy);
}

/* ============================================================================
   LIVE SEARCH DROPDOWN  (.sw-srch-*)
   ============================================================================ */

/* ── Dropdown container ─────────────────────────────────────────────────── */
#searchSuggestions,
#mobileSearchSuggestions,
.sw-srch-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    min-width: 320px;
    top: calc(100% + 6px);
    z-index: 9999;
    background: var(--bg-color);
    border-radius: 18px;
    box-shadow: 10px 10px 24px var(--shadow-dark), -10px -10px 24px var(--shadow-light);
    overflow: hidden;
    max-height: 480px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--shadow-dark) transparent;
}

.sw-srch-dropdown-mobile {
    position: relative;
    top: 0;
    min-width: 0;
    margin-top: 6px;
    border-radius: 14px;
}

/* hidden class (Tailwind uses display:none !important — we mirror that) */
#searchSuggestions.hidden,
#mobileSearchSuggestions.hidden,
.sw-srch-dropdown.hidden {
    display: none !important;
}

/* open state overrides hidden */
#searchSuggestions.sw-srch-open,
#mobileSearchSuggestions.sw-srch-open,
.sw-srch-dropdown.sw-srch-open {
    display: block !important;
    animation: srch-fade-in 0.15s ease;
}

@keyframes srch-fade-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Product result item ─────────────────────────────────────────────────── */
.sw-srch-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--dark-navy);
    transition: background 0.12s;
    border-bottom: 1px solid rgba(163, 177, 198, 0.25);
}

.sw-srch-item:last-of-type {
    border-bottom: none;
}

.sw-srch-item:hover,
.sw-srch-item.sw-srch-focused {
    background: rgba(157, 16, 28, 0.06);
}

/* ── Product thumbnail ───────────────────────────────────────────────────── */
.sw-srch-img {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--bg-color);
    box-shadow: inset 3px 3px 7px var(--shadow-dark), inset -3px -3px 7px var(--shadow-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
}

.sw-srch-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sw-srch-img-sm {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

/* ── Text info ───────────────────────────────────────────────────────────── */
.sw-srch-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sw-srch-name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--dark-navy);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.3;
}

.sw-srch-meta {
    font-size: 0.7rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.sw-srch-dot {
    color: #d1d5db;
}

.sw-srch-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.sw-srch-price {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-red);
    white-space: nowrap;
}

.sw-srch-old {
    font-size: 0.68rem;
    color: #9ca3af;
    text-decoration: line-through;
    white-space: nowrap;
}

.sw-srch-disc {
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    background: var(--primary-red);
    padding: 1px 5px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ── Highlight matched text ──────────────────────────────────────────────── */
.sw-srch-mark {
    background: rgba(157, 16, 28, 0.12);
    color: var(--primary-red);
    font-weight: 900;
    border-radius: 3px;
    padding: 0 1px;
}

/* ── Stock badge ─────────────────────────────────────────────────────────── */
.sw-srch-stock {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    width: fit-content;
    margin-top: 1px;
}

.sw-srch-stock.in  { background: #d1fae5; color: #065f46; }
.sw-srch-stock.out { background: #fee2e2; color: #991b1b; }

/* ── "See all X results" footer link ───────────────────────────────────── */
.sw-srch-seeall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-red);
    background: rgba(157, 16, 28, 0.04);
    text-decoration: none;
    border-top: 1px solid rgba(163, 177, 198, 0.3);
    transition: background 0.12s;
}

.sw-srch-seeall:hover {
    background: rgba(157, 16, 28, 0.1);
}

.sw-srch-seeall strong {
    font-weight: 900;
}

/* ── Loading state ───────────────────────────────────────────────────────── */
.sw-srch-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 14px;
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 600;
}

.sw-srch-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(157, 16, 28, 0.2);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: srch-spin 0.6s linear infinite;
    flex-shrink: 0;
}

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

/* ── Empty state ─────────────────────────────────────────────────────────── */
.sw-srch-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 14px;
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 600;
}

.sw-srch-empty .material-symbols-outlined {
    font-size: 20px;
    color: #d1d5db;
}

/* ── Popular searches section ───────────────────────────────────────────── */
.sw-srch-popular-label {
    padding: 10px 14px 6px;
    font-size: 0.65rem;
    font-weight: 800;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sw-srch-popular-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px;
    text-decoration: none;
    color: var(--dark-navy);
    transition: background 0.12s;
    cursor: pointer;
}

.sw-srch-popular-item:hover,
.sw-srch-popular-item.sw-srch-focused {
    background: rgba(157, 16, 28, 0.06);
}

.sw-srch-trend {
    font-size: 16px !important;
    color: #d1d5db;
    flex-shrink: 0;
}

/* ── Scrollbar styling ───────────────────────────────────────────────────── */
#searchSuggestions::-webkit-scrollbar,
#mobileSearchSuggestions::-webkit-scrollbar {
    width: 5px;
}
#searchSuggestions::-webkit-scrollbar-track,
#mobileSearchSuggestions::-webkit-scrollbar-track {
    background: transparent;
}
#searchSuggestions::-webkit-scrollbar-thumb,
#mobileSearchSuggestions::-webkit-scrollbar-thumb {
    background: var(--shadow-dark);
    border-radius: 10px;
}

/* ── Ensure nav search wrapper has position:relative ─────────────────────── */
#mainNav .relative { position: relative; }

/* ============================================================================
   404 ERROR PAGE STYLES
   ============================================================================ */

.error-404-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.error-404-page main {
    flex: 1;
}

/* ============================================================================
   OFFLINE PAGE STYLES
   ============================================================================ */

.page-offline {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-offline main {
    flex: 1;
}

/* Connection indicator pulse animation */
@keyframes pulse-indicator {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

#connectionIndicator {
    animation: pulse-indicator 2s ease-in-out infinite;
}

#connectionIndicator.online {
    background-color: #10b981;
    animation: none;
}

