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

:root {
    --bg-dark: #fbfaf8; /* Crema muy claro premium */
    --bg-card: rgba(255, 255, 255, 0.85); /* Cristal premium claro */
    --bg-card-solid: #ffffff;
    
    /* Colores Marca */
    --primary: #1e3a2f; /* Deep Emerald */
    --primary-hover: #152b22;
    --primary-glow: rgba(30, 58, 47, 0.25);
    
    --accent: #c9a265; /* Champagne / Gold */
    --accent-glow: rgba(201, 162, 101, 0.25);
    
    /* Colores Semánticos */
    --success: #059669;
    --success-glow: rgba(5, 150, 105, 0.15);
    --danger: #dc2626;
    --danger-glow: rgba(220, 38, 38, 0.15);
    
    /* Bordes y Sombras */
    --border-dark: rgba(0, 0, 0, 0.08);
    --border-gold: rgba(201, 162, 101, 0.4);
    --border-light: rgba(0, 0, 0, 0.04);
    
    /* Texto */
    --text-primary: #1a1a1a; /* Casi negro */
    --text-secondary: #525252; /* Gris medio */
    --text-muted: #8c8c8c; /* Muted */
    
    --glass-blur: blur(16px);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
    --shadow-inset: inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scrollbar-width: thin;
    scrollbar-color: var(--border-gold) transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--border-dark);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    background-image: 
        radial-gradient(at 0% 0%, rgba(201, 162, 101, 0.15) 0px, transparent 40%),
        radial-gradient(at 100% 100%, rgba(30, 58, 47, 0.1) 0px, transparent 45%);
    background-attachment: fixed;
    line-height: 1.5;
}

/* ==================================================
   CONTENEDORES Y ESTRUCTURA GENERAL
   ================================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header / Navbar */
header {
    background: rgba(251, 250, 248, 0.85);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Cart Icon Trigger */
.cart-trigger {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-dark);
    color: var(--text-primary);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cart-trigger:hover {
    border-color: var(--primary);
    background: rgba(30, 58, 47, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.cart-count {
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* ==================================================
   HERO / BANNER DE BIENVENIDA
   ================================================== */
.hero-section {
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-tag {
    background: var(--emerald-glass);
    border: 1px solid var(--border-gold);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-title {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1.5px;
}

.hero-title span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 19px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 400;
}

/* ==================================================
   FILTROS Y BUSCADOR
   ================================================== */
.filter-bar {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    outline: none;
    transition: var(--transition-smooth);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    background: rgba(255, 255, 255, 0.9);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.search-input:focus ~ .search-icon {
    color: var(--primary);
}

.categories-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 5px;
    margin: 0 -5px;
}

.category-tab {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.category-tab:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--border-dark);
}

.category-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* ==================================================
   PRODUCT GRID & CARDS
   ================================================== */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.product-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-dark);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15), 0 0 20px var(--accent-glow);
}

.product-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--border-light);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 47, 0.05) 0%, rgba(201, 162, 101, 0.1) 100%);
    font-size: 40px;
    color: var(--text-muted);
    font-weight: 700;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.badge-tag {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 10px var(--primary-glow);
}

.badge-out-of-stock {
    background: #27272a;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
}

.product-info {
    margin-top: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 36px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
}

.btn-add-cart {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-add-cart:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
    box-shadow: 0 6px 16px var(--primary-glow);
}

.btn-add-cart:disabled {
    background: rgba(0,0,0,0.05);
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    cursor: not-allowed;
    box-shadow: none;
}

/* ==================================================
   CARRITO PANEL DESLIZABLE (DRAWER)
   ================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: var(--bg-card-solid);
    border-left: 1px solid var(--border-dark);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-overlay.active + .cart-drawer,
.cart-drawer.active {
    right: 0;
}

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

.cart-drawer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-close-drawer {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-close-drawer:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Cart Item Row */
.cart-drawer-item {
    display: flex;
    gap: 16px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px;
    position: relative;
    animation: fadeIn 0.4s ease-out;
}

.cart-item-image {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--border-light);
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-variant {
    font-size: 11px;
    color: var(--accent);
    margin-bottom: 6px;
    font-weight: 500;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-control-btn {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(0,0,0,0.05);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.qty-control-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.qty-display {
    font-size: 14px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
}

.cart-item-total-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition-smooth);
    padding: 4px;
}

.cart-item-remove:hover {
    color: var(--danger);
}

.cart-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.cart-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--border-gold);
}

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--border-light);
    background: rgba(12, 10, 9, 0.4);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition-smooth);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

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

/* ==================================================
   MODAL DE SELECCIÓN DE VARIANTES
   ================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.variant-modal {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

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

.variant-table-container {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

.variant-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.variant-table th, .variant-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
}

.variant-table th {
    background: rgba(255,255,255,0.02);
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.variant-table tbody tr {
    transition: var(--transition-smooth);
}

.variant-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* ==================================================
   FOOTER
   ================================================== */
footer {
    border-top: 1px solid var(--border-dark);
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.85);
    text-align: center;
    color: var(--text-secondary);
}

footer p {
    font-size: 13px;
    margin-bottom: 8px;
}

footer strong {
    color: var(--text-secondary);
}

/* ==================================================
   ANIMACIONES & TOASTS
   ================================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Toast Container */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 4000;
}

.toast {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--primary);
    backdrop-filter: var(--glass-blur);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease-out forwards;
    min-width: 300px;
    max-width: 400px;
}

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

.toast.hiding {
    animation: slideOut 0.3s ease-in forwards;
}

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

.toast-icon {
    font-size: 20px;
}

.toast-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.toast-message {
    font-size: 12px;
    color: var(--text-secondary);
}

.toast-close {
    margin-left: auto;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.toast-close:hover {
    color: var(--text-primary);
}

/* Responsive fixes */
@media (max-width: 768px) {
    .pos-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 50px 0 30px 0;
    }
    
    .filter-bar {
        padding: 16px;
    }
}

/* Gallery Thumbnails inside Product Details Modal */
.thumbnail-btn {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.thumbnail-btn:hover {
    border-color: var(--border-gold);
    transform: scale(1.05);
}

.thumbnail-btn.active {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

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

/* Card Action Overlays or clickable areas */
.product-clickable {
    cursor: pointer;
}

.btn-detail-link {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    color: var(--accent);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    width: fit-content;
}

.btn-detail-link:hover {
    background: rgba(214, 154, 85, 0.15);
    border-color: var(--accent);
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* Talla Pills on Catalog Card */
.size-pill-btn {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.size-pill-btn:hover {
    border-color: var(--border-dark);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.size-pill-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 10px var(--primary-glow);
}

/* Shake animation when size not selected */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.shake-animation {
    animation: shake 0.3s ease-in-out;
}


