/* Premium Showcase Page Styles */

body.layout-fullwidth.specials-showcase-page .page-wrapper .page-main {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.specials-showcase-page .page-title-wrapper,
body.specials-showcase-page .page-title {
    display: none !important;
}

body.layout-fullwidth.specials-showcase-page .page-wrapper .columns {
    max-width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

body.specials-showcase-page .column.main {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

body.specials-showcase-page .page-main-inner {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.specials-fullwidth-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.specials-showcase {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Hero Section */
.showcase-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow: hidden;
    padding: 80px 20px;
    width: 100%;
    max-width: 100%;
}

.wireless-hero {
    overflow: hidden !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
}

.hero-line-1 {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-line-2 {
    display: block;
    color: #d4af37;
    font-weight: 200;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 300;
}

/* Wireless Hero Section */
.wireless-hero {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%) !important;
}

.wireless-hero .hero-background {
    background:
        radial-gradient(circle at 20% 50%, rgba(29, 185, 84, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(29, 185, 84, 0.05) 0%, transparent 50%);
}

.wireless-hero .hero-title {
    color: #2c3e50;
}

.wireless-hero .hero-line-1 {
    background: linear-gradient(135deg, #2c3e50 0%, #1db954 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wireless-hero .hero-line-2 {
    color: #1db954;
    font-weight: 200;
}

.wireless-hero .hero-subtitle {
    color: #5a6c7d;
}

/* Hero Product Preview Row */
.hero-product-preview {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(248, 249, 250, 0.95) 0%, rgba(248, 249, 250, 0.5) 50%, transparent 100%);
    overflow: hidden;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-preview-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 8px 0;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100%;
}

.product-preview-container::-webkit-scrollbar {
    display: none;
}

.preview-product-item {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.preview-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.glossy-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    animation: glossyWave 3s infinite;
    pointer-events: none;
}

.preview-product-item:nth-child(1) .glossy-overlay { animation-delay: 0s; }
.preview-product-item:nth-child(2) .glossy-overlay { animation-delay: 0.1s; }
.preview-product-item:nth-child(3) .glossy-overlay { animation-delay: 0.2s; }
.preview-product-item:nth-child(4) .glossy-overlay { animation-delay: 0.3s; }
.preview-product-item:nth-child(5) .glossy-overlay { animation-delay: 0.4s; }
.preview-product-item:nth-child(6) .glossy-overlay { animation-delay: 0.5s; }
.preview-product-item:nth-child(7) .glossy-overlay { animation-delay: 0.6s; }
.preview-product-item:nth-child(8) .glossy-overlay { animation-delay: 0.7s; }
.preview-product-item:nth-child(9) .glossy-overlay { animation-delay: 0.8s; }
.preview-product-item:nth-child(10) .glossy-overlay { animation-delay: 0.9s; }
.preview-product-item:nth-child(n+11) .glossy-overlay { animation-delay: 1s; }

@keyframes glossyWave {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* WiFi Ripple Animation - Water Drop Effect */
.wireless-hero {
    overflow: hidden !important;
    position: relative !important;
}

.water-drop {
    position: absolute !important;
    pointer-events: none !important;
    z-index: 10 !important;
}

.ripple-ring {
    position: absolute !important;
    pointer-events: none !important;
    will-change: width, height, opacity !important;
    box-sizing: border-box !important;
    z-index: 9 !important;
}

@keyframes dropSplash {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes rippleExpand {
    0% {
        width: 2px !important;
        height: 2px !important;
        opacity: 0.2 !important;
        border-width: 1px !important;
    }
    20% {
        opacity: 0.15 !important;
    }
    100% {
        width: var(--max-size, 2000px) !important;
        height: var(--max-size, 2000px) !important;
        opacity: 0 !important;
        border-width: 0.5px !important;
    }
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 0.8;
}

.wireless-hero .hero-scroll-indicator {
    color: rgba(44, 62, 80, 0.7);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-scroll-indicator svg {
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* Section Styles */
.showcase-section {
    padding: 100px 0;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.gold-showcase {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a1f0f 100%);
}

.wireless-showcase {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%);
}

.wooden-fronts-showcase {
    background: linear-gradient(180deg, #f5f3f0 0%, #ffffff 50%, #f8f6f3 100%);
}

.wooden-fronts-hero {
    background: linear-gradient(135deg, #3e2723 0%, #5d4037 50%, #3e2723 100%) !important;
}

.wooden-fronts-hero .hero-background {
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 90, 43, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 90, 43, 0.1) 0%, transparent 50%) !important;
    animation: heroPulse 8s ease-in-out infinite !important;
}

.wooden-fronts-hero .hero-title {
    color: #ffffff !important;
}

.wooden-fronts-hero .hero-line-1 {
    display: block !important;
    background: linear-gradient(135deg, #ffffff 0%, #d4a574 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.wooden-fronts-hero .hero-line-2 {
    display: block !important;
    color: #d4a574 !important;
    font-weight: 200 !important;
}

.wooden-fronts-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
}

.wooden-badge-large {
    background: rgba(139, 90, 43, 0.15);
    border-color: rgba(139, 90, 43, 0.4);
    color: #8b5a2b;
}

.wooden-fronts-category {
    margin-bottom: 80px;
}

.wooden-fronts-category:last-child {
    margin-bottom: 0;
}

/* Wooden fronts: product cards on light background — readable text */
.wooden-fronts-showcase .showcase-product-card {
    background: #ffffff;
    border: 1px solid #e8e4e0;
    box-shadow: 0 2px 12px rgba(62, 39, 35, 0.08);
}

.wooden-fronts-showcase .showcase-product-card:hover {
    border-color: rgba(139, 90, 43, 0.4);
    box-shadow: 0 12px 40px rgba(62, 39, 35, 0.12);
}

.wooden-fronts-showcase .product-card-content {
    background: #ffffff;
}

.wooden-fronts-showcase .product-card-title a {
    color: #3e2723;
}

.wooden-fronts-showcase .product-card-title a:hover {
    color: #8b5a2b;
}

.wooden-fronts-showcase .price-current {
    color: #5d4037;
    font-weight: 600;
}

.wooden-fronts-showcase .price-old {
    color: #95a5a6;
}

.wooden-fronts-showcase .section-title,
.wooden-fronts-showcase .section-description {
    color: #3e2723 !important;
}

.wooden-fronts-showcase .title-main,
.title-main--dark,
.section-title--wooden .title-main,
body.wooden-fronts-showcase-page .title-main {
    color: #3e2723 !important;
    -webkit-text-fill-color: #3e2723 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.category-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #3e2723;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 20px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b5a2b, transparent);
}

.section-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.wireless-badge-large {
    background: rgba(30, 215, 96, 0.15);
    border-color: rgba(30, 215, 96, 0.4);
    color: #1db954;
}

.upgrade-info {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.upgrade-intro {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
}

.upgrade-products-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.upgrade-category h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.upgrade-category p {
    font-size: 0.9rem;
    color: #6c7a89;
    line-height: 1.6;
    margin: 0;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gold-showcase .section-title {
    color: #ffffff;
}

.wireless-showcase .section-title {
    color: #2c3e50;
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

.title-main {
    display: block;
    color: #ffffff;
    font-weight: 200;
}

.section-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.gold-showcase .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.wireless-showcase .section-description {
    color: #5a6c7d;
}

/* Products Grid */
.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.showcase-product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.wireless-showcase .showcase-product-card {
    background: #ffffff;
    border: 1px solid #e8ecef;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.wireless-showcase .showcase-product-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.showcase-product-card:nth-child(1) { animation-delay: 0.1s; }
.showcase-product-card:nth-child(2) { animation-delay: 0.2s; }
.showcase-product-card:nth-child(3) { animation-delay: 0.3s; }
.showcase-product-card:nth-child(4) { animation-delay: 0.4s; }

.showcase-product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.wireless-showcase .showcase-product-card:hover {
    border-color: rgba(30, 215, 96, 0.5);
    box-shadow: 0 20px 60px rgba(30, 215, 96, 0.2);
}

.product-card-image-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.wireless-showcase .product-card-image-wrapper {
    background: #f8f9fa;
}

.product-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    max-height: 100%;
}

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

.product-card-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wireless-showcase .product-card-overlay {
    background: rgba(255, 255, 255, 0.95);
}

.wireless-showcase .view-product {
    color: #2c3e50;
}

.showcase-product-card:hover .product-card-overlay {
    opacity: 1;
}

.view-product {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(30, 215, 96, 0.9);
    border-radius: 20px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.upgrade-badge {
    background: rgba(30, 215, 96, 0.9);
}

.product-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.product-badge .spotify-icon {
    fill: #ffffff;
}

.product-badge .airplay-icon {
    fill: #ffffff;
    margin-left: 6px;
}

.product-card-content {
    padding: 25px;
}

.wireless-showcase .product-card-content {
    background: #ffffff;
}

.product-card-title {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
}

.product-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gold-showcase .product-card-title a:hover {
    color: #d4af37;
}

.wireless-showcase .product-card-title a {
    color: #2c3e50;
}

.wireless-showcase .product-card-title a:hover {
    color: #1db954;
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 1.3rem;
}

.price-old {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9em;
}

.price-current {
    color: #d4af37;
    font-weight: 500;
}

.wireless-showcase .price-current {
    color: #1db954;
}

.wireless-showcase .price-old {
    color: #95a5a6;
}

/* Radio Stations Section */
.radio-stations-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 100px 0;
}

.radio-stations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.radio-station-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 100px;
}

.radio-station-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.radio-station-logo {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.radio-station-item:hover .radio-station-logo {
    filter: grayscale(0%) brightness(1.05);
}

/* CTA Section */
.showcase-cta {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
    }

    .showcase-section {
        padding: 80px 0;
    }

    .section-container {
        padding: 0 30px;
    }

    .upgrade-products-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .showcase-hero {
        min-height: 70vh;
        padding: 60px 20px;
    }

    .products-showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 25px;
    }

    .showcase-section {
        padding: 60px 0;
    }

    .radio-stations-section {
        padding: 60px 0;
    }

    .radio-stations-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .radio-station-item {
        padding: 15px;
        min-height: 80px;
    }

    .radio-station-logo {
        max-height: 50px;
    }

    .section-container {
        padding: 0 20px;
    }

    .showcase-cta {
        padding: 80px 20px;
    }

    .upgrade-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .products-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card-content {
        padding: 20px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

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