/* Sklep Hipnospot - Style dopasowane do WordPress theme */

/* Reset i podstawy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 max(1.25rem, 4vw);
}

/* Header - dopasowany do WordPress */
.shop-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
    position: relative;
}

.main-nav a:hover {
    color: #666;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.cart-link {
    position: relative;
    padding: 8px 16px;
    background: #1a1a1a;
    color: white;
    border-radius: 4px;
    text-decoration: none;
}

.cart-link:hover {
    background: #333;
    color: white;
}

.cart-link::after {
    display: none;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

/* Main */
.shop-main {
    min-height: calc(100vh - 200px);
    padding: clamp(2.5rem, 8vw, 4rem) 0;
}

.shop-main h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
    letter-spacing: -1px;
}

/* Produkty */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .products-page-container {
        max-width: 1800px;
    }

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.product-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.product-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.product-short-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

.product-type {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Buttons - dopasowane do WordPress */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.15s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
}

.btn-secondary {
    background: #f5f5f5;
    color: #1a1a1a;
}

.btn-secondary:hover {
    background: #e5e5e5;
}

/* Product Detail */
.product-detail {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: clamp(2rem, 5vw, 3rem);
}

.product-detail h1 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: clamp(2rem, 5vw, 3rem);
}

.product-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.product-description {
    line-height: 1.8;
    color: #333;
}

.product-sidebar {
    position: sticky;
    top: 20px;
}

.price-box {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.price-box .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.product-type-badge {
    background: #1a1a1a;
    color: white;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.info-text {
    font-size: 0.9rem;
    color: #666;
    margin: 1rem 0;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 4px;
    border-left: 3px solid #1a1a1a;
}

.process-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.process-info h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-info ul {
    list-style: none;
}

.process-info li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #333;
}

.process-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Cart */
.cart-table {
    width: 100%;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.cart-table th,
.cart-table td {
    padding: 1.25rem;
    text-align: left;
}

.cart-table th {
    background: #f9f9f9;
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 2px solid #e5e5e5;
}

.cart-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.cart-table tr:last-child {
    border-bottom: none;
}

.cart-summary {
    background: white;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-top: 2rem;
}

.cart-total {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 1.5rem 0;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.15s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.required {
    color: #e74c3c;
}

/* Footer */
.shop-footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.shop-footer a {
    color: white;
    text-decoration: underline;
}

/* Empty cart */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.empty-cart p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Checkout */
.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.checkout-form, .order-summary {
    background: white;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

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

.coupon-input input {
    flex: 1;
}

.coupon-form {
    margin: 0 0 1rem;
}

.coupon-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.coupon-feedback {
    display: none;
    margin-top: 0.75rem;
}

.coupon-feedback.show {
    display: block;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.summary-row.discount {
    color: #27ae60;
}

.summary-total-row {
    border-top: 1px solid #f0f0f0;
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.1rem;
}

.is-hidden {
    display: none !important;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    border-top: 2px solid #1a1a1a;
    margin-top: 1rem;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 0.75rem;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 0.75rem;
    border: 1px solid #f5c6cb;
}

/* Admin styles */
.admin-header {
    background: #1a1a1a;
    color: white;
    padding: 1rem 0;
    border-bottom: 3px solid #333;
}

.admin-nav {
    display: flex;
    gap: 1.5rem;
}

.admin-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.15s ease;
}

.admin-nav a:hover {
    border-bottom-color: white;
}

.admin-content {
    padding: 2rem 0;
}

.admin-section {
    background: white;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-align: center;
}

.stat-box h3 {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.data-table {
    width: 100%;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.data-table th {
    background: #f9f9f9;
    font-weight: 600;
    color: #1a1a1a;
}

.data-table tr:hover {
    background: #fafafa;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
}

.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.badge-info {
    background: #d1ecf1;
    color: #0c5460;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-info {
        grid-template-columns: 1fr;
    }
    
    .product-sidebar {
        position: static;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
/* Header - dokładnie jak na hipnospot.pl */
.shop-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #2d5f4f;
}

.main-nav .btn-reserve {
    background: #2d5f4f;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
}

.main-nav .btn-reserve:hover {
    background: #234a3d;
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cart-link {
    position: relative;
    padding: 8px 16px;
    background: #f5f5f5;
    color: #1a1a1a;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.cart-link:hover {
    background: #e5e5e5;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.social-icon {
    color: #1a1a1a;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.social-icon:hover {
    color: #2d5f4f;
}

/* Responsive */
@media (max-width: 1200px) {
    .main-nav {
        gap: 1rem;
    }
    
    .main-nav a {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .header-content {
        justify-content: space-between;
    }
}

/* Przycisk powrotu na stronę główną */
.btn-back-home {
    background: #f5f5f5;
    color: #1a1a1a;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-back-home:hover {
    background: #e5e5e5;
    transform: translateX(-2px);
}

/* Dostosowanie headera dla nowego przycisku */
.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.logo-link {
    justify-self: center;
}

@media (max-width: 1200px) {
    .header-content {
        grid-template-columns: auto auto auto;
    }
    
    .main-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn-back-home {
        justify-self: start;
    }
    
    .logo-link {
        justify-self: start;
    }
    
    .header-actions {
        justify-self: start;
    }
}

/* Logo z dopiskiem "shop" */
.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.logo-shop {
    font-family: 'Caveat', cursive;
    font-size: 24px;
    font-weight: 700;
    color: #2d5f4f;
    margin-top: -5px;
    margin-left: 2px;
}

/* Uproszczony header */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-reserve {
    background: #2d5f4f;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.btn-reserve:hover {
    background: #234a3d;
}

/* Filtry produktów */
.product-filters {
    background: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
    position: sticky;
    top: 71px;
    z-index: 999;
}

.filters-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: #2d5f4f;
    color: #2d5f4f;
}

.filter-btn.active {
    background: #2d5f4f;
    border-color: #2d5f4f;
    color: white;
}

/* Produkty z data-category */
.product-card {
    transition: all 0.3s ease;
}

.product-card.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-back-home {
        order: 1;
        width: 100%;
        text-align: center;
    }
    
    .logo-link {
        order: 2;
    }
    
    .header-actions {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .filters-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
}

/* Dodatkowe style dla nawigacji i stopki */

/* Header - lewa strona z dwoma przyciskami */
.header-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-shop-home {
    background: #fff;
    color: #1a1a1a;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 2px solid #e5e5e5;
}

.btn-shop-home:hover {
    background: #f5f5f5;
    border-color: #2d5f4f;
    color: #2d5f4f;
}

/* Stopka */
.shop-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    color: #aaa;
    line-height: 1.6;
}

.footer-back-top {
    margin-bottom: 18px;
}

.footer-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d8e5df;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.footer-back-link:hover {
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #2d5f4f;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
}

/* Responsywność */
@media (max-width: 768px) {
    .header-left {
        flex-direction: column;
        width: 100%;
        gap: 5px;
    }
    
    .btn-back-home,
    .btn-shop-home {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-back-top {
        margin-bottom: 14px;
    }
}

/* Final mobile UX overrides */
.filter-select-mobile-label,
.filter-select-mobile {
    display: none;
}

.cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 768px) {
    .shop-header {
        padding: 8px 0;
    }

    .header-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 8px;
    }

    .header-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
        width: auto;
    }

    .btn-shop-home {
        display: none;
    }

    .btn-back-home {
        width: auto;
        padding: 7px 9px;
        font-size: 11px;
        border-radius: 8px;
        white-space: nowrap;
    }

    .logo-link {
        justify-self: start;
        gap: 8px;
    }

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 14px;
    }

    .logo-shop {
        font-size: 18px;
        margin-top: -4px;
    }

    .header-actions {
        justify-self: end;
        gap: 8px;
    }

    .cart-link {
        min-width: 40px;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        padding: 8px;
    }

    .cart-link-label {
        display: none;
    }

    .cart-count {
        top: -5px;
        right: -5px;
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .product-filters {
        top: 56px;
        padding: 8px 0;
    }

    .filters-wrapper {
        justify-content: stretch;
    }

    .filter-btn {
        display: none;
    }

    .filter-select-mobile-label {
        display: block;
        width: 100%;
        font-size: 12px;
        color: #4b5f57;
        margin-bottom: 4px;
    }

    .filter-select-mobile {
        display: block;
        width: 100%;
        border: 1px solid #d7e1dc;
        border-radius: 10px;
        background: #fff;
        color: #213730;
        font-size: 14px;
        padding: 10px 12px;
    }

    .cart-table {
        border: none;
        border-radius: 0;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }

    .cart-table tr {
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        margin-bottom: 12px;
        padding: 10px;
    }

    .cart-table td {
        border: none;
        padding: 6px 0;
    }

    .cart-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 12px;
        color: #667b73;
        margin-bottom: 2px;
        font-weight: 600;
    }

    .actions {
        flex-direction: column;
    }
}
