@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* Custom animations for the new design */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes bounceIn {
    0% { 
        opacity: 0; 
        transform: scale(0.3); 
    }
    50% { 
        transform: scale(1.05); 
    }
    70% { 
        transform: scale(0.9); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* Animation classes */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

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

.animate-bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
}

/* Scale / fade combo animation for account dropdown (mobile) */
@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: translateY(6px) scale(0.96);
    }
    60% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-scale-in {
    animation: scaleIn 0.18s cubic-bezier(.215,.61,.355,1) both;
    will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
    .animate-scale-in {
        animation: fadeIn 0.12s ease-out both;
    }
}

/* HTMX loading states */
.htmx-loading {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* Mobile-first responsive utilities */
@media (max-width: 640px) {
    .mobile-hidden {
        display: none !important;
    }
}

/* Smooth transitions for interactive elements */
.transition-all {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-shadow:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


:root {
    /* Specific Color Guide Implementation */
    --primary-color: #48547C;        /* Primary brand color */
    --secondary-color: #6677ad;      /* Secondary buttons */
    --secondary-dark-color: #2c344f; /* Headings */

    --white-color: #ffffff;
    --light-bg-color: #f2f0ef;       /* Page background */
    --light-text-color: #84807b;     /* Secondary text */
    --border-color: #AAA59F;         /* Borders and dividers */
    --dark-color: #1e1d1c;          /* Primary text */

    --font-small: 13px;
    --fonnt-smaller: 11px;

    --percentage100: 100%;
    --percentage50: 50%;

    --fw3: 300;
    --fw5: 500;
    --fw6: 600;
    --fw7: 700;
    --fw8: 800;

    --trans-background-color: background-color .3s, color .3s;
    --trans-background: background-color .3s;
    --trans-color: color .3s;
}

* {
    margin: 0;
    padding: 0;
}

*,
::before,
::after {
    box-sizing: border-box;
}

body {
    font-family: 'Rubik';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--dark-color);
    background-color: var(--white-color);
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

ul {
    list-style: none;
}

img {
    max-width: var(--percentage100);
    vertical-align: middle;
}

strong {
    font-weight: var(--fw8);
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input::placeholder {
    font: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: 'Inter', sans-serif;
}

h1 {
    font-size: calc(1.3em + 1vw);
    font-weight: var(--fw8);
    line-height: 1;
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 1.2em;
    font-weight: var(--fw7);
}

h4 {
    font-size: 1em;
    font-weight: var(--fw6);
}

/*-------------------
 *REUSEABLE SEELCTOR 
 *-----------------*/

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0.938em;
}

.column {
    margin-left: -0.938em;
    margin-right: -0.938em;
}

.column .row {
    padding: 0 0.938em;
}

.flexwrap {
    display: flex;
    flex-wrap: wrap;
}

.flexcenter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flexitem {
    display: flex;
    align-items: center;
}

.flexcol {
    display: flex;
    flex-direction: column;
    gap: 1em;
}


.main-links a:hover {
    color: var(--secondary-color);
}

.second-links a:hover {
    color: var(--light-text-color);
}

.icon-small,
.icon-large {
    display: flex;
    align-items: center;
    padding: 0 0.25em;
    font-weight: normal;

}

.icon-small {
    font-size: 1.25em;
    margin-left: auto;

}

.icon-large {
    font-size: 1.75em;
    padding: 0 0.75em 0 0;
}

.mobile-hide {
    display: none;
}

.object-cover img {
    position: absolute;
    object-fit: cover;
    width: var(--percentage100);
    height: var(--percentage100);
    display: block;
}

.products .media {
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.primary-button,
.secondary-button,
.light-button {
    font-size: var(--font-small);
    padding: 0.9em 2em;
    height: auto;
    width: fit-content;
    border-radius: 2em;
    transform: var(--trans-background-color);
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.primary-button:hover {
    background-color: var(--dark-color);
}

.secondary-button {
    background-color: var(--secondary-dark-color);
    color: var(--white-color);
}

.secondary-button:hover {
    background-color: var(--light-bg-color);
    color: var(--secondary-dark-color);
}

.light-button {
    background-color: var(--light-bg-color);
}

.light-button:hover {
    background-color: var(--secondary-dark-color);
    color: var(--white-color);
}

.view-all {
    font-size: var(--font-small);
    display: flex;
    gap: 1em;
    transition: var(--trans-color);
}

.mini-text {
    font-size: var(--font-smaller);
    color: var(--light-text-color);
}

/*-----------
 * Header top
 *----------*/

:where(.off-canvas, header) li>a {
    display: flex;
    position: relative;
    line-height: inherit;
    transition: var(--trans-color);
}

.header-top .wrapper {
    font-size: var(--font-small);
    font-weight: var(--fw3);
    justify-content: space-between;
    line-height: 42px;
}

.header-top .wrapper ul {
    gap: 2em;
}

.header-top li {
    position: relative;
}

.header-top ul ul {
    position: absolute;
    left: -1em;
    line-height: 2em;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    z-index: 1;
    display: none;
}

:where(.header-top, .thetop-nav) .right ul ul li a {
    padding: 0.25em 1em;
}

:where(.header-top, .thetop-nav) .right ul ul li.current a {
    background-color: var(--border-color);
}

.header-top li:hover ul {
    display: block;
}


/*-----------
 * Header Nav
 *----------*/
.header-nav {
    padding: 0.5em 0;
    margin-bottom: 1.5em;
    border-bottom: 1px solid var(--border-color);
}

.trigger {
    font-size: 1.5em;
    display: flex;
    padding: 0.25em;
    margin-right: 0.5em;
}

.logo a {
    font-family: 'Inter', sans-serif;
    font-size: 1.75em;
    position: relative;
    font-weight: var(--fw8);
    display: flex;
    padding-left: 2.5em;
    margin-right: 2em;
}

.circle {
    position: absolute;
    top: -25px;
    left: 0.5em;
    width: 38px;
    height: 38px;
    border-radius: var(--percentage50);
    background-color: var(--light-bg-color);
    z-index: -1;
}

.circle::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: var(--percentage50);
    background-color: var(--secondary-color);
    bottom: 20px;
    right: 20px;
    opacity: 0.6;
}

.header-nav nav>ul {
    line-height: 100px;
    gap: 2em;
}

.fly-item {
    position: absolute;
    height: 16px;
    font-weight: var(--font-smaller);
    padding: 3px;
    text-align: center;
    line-height: 10px;
    color: var(--white-color);
}

nav .fly-item {
    top: var(--percentage50);
    margin-top: -24px;
    width: 30px;
    border-radius: 3px;
    right: -32px;
    background-color: var(--primary-color);
}

.header-nav .right {
    position: relative;
    margin-left: auto;
}

.header-nav .right .icon-large {
    position: relative;
}

.header-nav .right .fly-item {
    top: 0;
    right: 16px;
    width: 16px;
    background-color: var(--secondary-dark-color);
    border-radius: var(--percentage50);
}

.mega .flexcol {
    flex: 1;
    min-width: 180px;
    padding-right: 2.5em;
    margin-bottom: 1.5em;
    z-index: 1;

}


/*-------------------
 * Header Department
 *------------------*/

.header-main {
    background-color: var(--secondary-dark-color);
    padding: 1.5em 0;
    margin-bottom: 2em;

}

.dpt-cat {
    position: relative;
    z-index: 10;
}

.dpt-cat .dpt-head {
    position: relative;
    width: 300px;
    padding: 0.75em 1.5em;
    background-color: var(--primary-color);
    border-radius: 7px 7px 0 0;
    color: var(--white-color);
    margin-bottom: -2.15em;
}

.dpt-cat .dpt-head .mini-text {
    color: var(--light-bg-color);
}

.dpt-cat .dpt-trigger {
    position: absolute;
    right: 0;
    top: 0;
    padding: 1.3em;
    height: 60px;
    width: 60px;
}


.dpt-menu>ul>li>a {
    font-size: var(--font-small);
    height: 46px;
    align-items: center;
}

.dpt-menu .has-child:hover ul {
    display: block;
}

.dpt-menu .has-child li a:hover {
    text-decoration: underline;
}


.header-main .right {
    flex: 1;
}

form {
    position: relative;
}

form.search input {
    line-height: 3.25em;
    padding: 0 7em, 0 4.5em;
    border: 0;
    outline: 0;
    width: var(--percentage100);
    border-radius: 7px;
    font-size: 0.9em;
    font-weight: var(--fw3);

}

form.search :where(span, button) {
    position: absolute;
    top: 0;
    padding: 0.55em 1.5em;
    font-size: 1em;
    color: var(--light-text-color);
    height: var(--percentage100);
}

form.search button {
    right: 0;
    border: 0;
    outline: 0;
    font-size: 0.875em;
    font-weight: var(--fw6);
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 0 7px 7px 0;
    cursor: pointer;
    transition: var(--trans-background);
}


form.search button:hover {
    background-color: var(--dark-color);
}

/*-----------------------
 * Header Menu Off-Canvas
 *----------------------*/

.site-off {
    position: fixed;
    width: 320px;
    height: var(--percentage100);
    background-color: var(--white-color);
    overflow-y: auto;
    z-index: 1000;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform .4s, visibility .4s;
    will-change: transform, visibility;
}

.showmenu .site-off {
    transform: translateX(0);
    visibility: visible;
    transform: transform .4s 0s, visibility 0s 0s;
}

.off-canvas {
    width: var(--percentage100);
    height: var(--percentage100);
    touch-action: auto;
    padding: 1.5em;
}

.off-canvas .canvas-head {
    color: var(--white-color);
    justify-content: space-between;
    padding: 1.5em;
    margin: -1.5em -1.5em 1.5em;
    background-color: var(--secondary-dark-color);
    border-bottom-right-radius: 160px 25px;
}

.off-canvas .canvas-head .logo {
    z-index: 10;
    position: relative;
}

.off-canvas .canvas-head .logo .circle {
    opacity: .75;
}

.t-close {
    font: 1.25em;
    width: 32px;
    height: 32px;
    border-radius: var(--percentage50);
    background-color: var(--secondary-dark-color);
    color: var(--white-color);
    transition: var(--trans-background-color);
}

.t-close:hover {
    background-color: var(--white-color);
    color: var(--secondary-dark-color);
    opacity: 0.8;
}

.off-canvas .dpt-head {
    font-size: var(--font-small);
    padding: 1em;
    margin-bottom: 1em;
    text-align: center;
    background-color: var(--light-bg-color);

}

.off-canvas .has-child> :where(ul, .mega) {
    font-size: var(--font-small);
    font-weight: var(--fw3);
    line-height: 28px;
    padding-left: 3em;
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.off-canvas .expand> :where(ul, .mega) {
    max-height: 2000px;
}

.off-canvas .thetop-nav ul,
.off-canvas nav>ul {
    flex-direction: column;
    align-items: flex-start;
    font-size: var(--font-small);
    line-height: 36px;
    margin: 1.26em 0;
    padding-top: 1.25em;
    border-top: 1px solid var(--border-color);


}

.off-canvas nav .mega {
    padding: 0;

}

.off-canvas nav .mega .products {
    display: none;
}

.off-canvas .has-child .icon-small {
    padding: 0.5em;
    line-height: initial;
}

.off-canvas .dpt-menu .icon-small {
    transform: rotate(90);
}

.off-canvas .has-child {
    width: var(--percentage100);

}

.off-canvas .thetop-nav .right>ul :where(:nth-child(4), li:nth-child(5))>a {
    display: none;
}

.off-canvas .thetop-nav .right ul ul {
    display: flex;
    flex-direction: row;
}

.off-canvas .thetop-nav .right ul ul li a {
    padding: 0.5em;
    border: 1px solid var(--border-color);
    line-height: 16px;
    margin: 0 0.5em 0.5em 0;
}



/*-----------
 * Slider
 *----------*/

.slider>div>.wrapper {
    width: calc(100% - (300px + 2em));
    margin-left: auto;
}

.slider .item {
    position: relative;
    height: 474px;
}

.slider .item::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    width: 450px;
    height: 300px;
    z-index: 1;
    filter: blur(50px);
    opacity: .8;
}

.slider .text-content {
    position: relative;
    height: var(--percentage50);
    justify-content: flex-start;
    padding: 0 0 10% 10%;
    z-index: 1;
}

.slider h4 {
    font-size: var(--font-small);
    font-weight: var(--fw7);
    width: fit-content;
    padding: 4px 10px;
    background-color: var(--dark-color);
    color: var(--white-color);
    border-radius: 4px;
}

.text-content :where(h2, h3) span:first-child {
    font-weight: var(--fw3);
    columns: var(--light-text-color);
}

.text-content :where(h2, h3) span:last-child {
    font-weight: var(--fw3);
    columns: var(--secondary-dark-color);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary-dark-color);

}


/*-------
 * Brands
 *-------*/

.brands .wrapper {
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 2em 0;
}

.brands .item img {
    opacity: .25;
    transition: opacity .3s;
}

.brands .item a:hover img {
    opacity: 1;
}



/*--------------------
 * Product Block Style
 *-------------------*/

.sectop {
    justify-content: space-between;
    padding-bottom: 0.5em;
    margin-bottom: 2em;
    border-bottom: 1px solid var(--border-color);
}

.sectop h2 {
    position: relative;
    font-size: 1em;
    font-weight: var(--fw7);

}

.sectop h2 span:not(.circle) {
    padding: 0 0 0 2em;

}

.sectop h2 .circle {
    top: -5px;
}

.trending .products {
    flex: 0 0 33.3333%;
}

/*--------------------
 * Product - Global Product.
 *-------------------*/

.products .offer {
    text-align: center;
    margin-bottom: 1.5em;
}

.products .offer p {
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

.products .offer ul {
    gap: 1em;
}

.products .offer ul li {
    position: relative;
    width: 34px;
    height: 34px;
    padding: 0.5em;
    line-height: initial;
    color: var(--secondary-dark-color);
    background-color: var(--light-bg-color);
    border-radius: 5px;
}

.products .offer ul li:not(:last-child)::before {
    content: ':';
    position: absolute;
    right: -0.6em;
    color: var(--light-text-color);

}

/*-----------
 * Responsive
 *----------*/

@media screen and (min-width: 992px) {
    .container {
        padding: 0 2em;
    }

    .desktop-hide {
        display: none;
    }

    .mobile-hide {
        display: block;
    }

    .logo a {
        margin-right: 2em;
    }

    .header-nav {
        padding: 0;
        margin: 0;
        border-bottom: 0;
    }

    .header-nav .right li>a {
        margin-left: 1em;

    }

    /* Mega Menu */
    nav .mega {
        position: absolute;
        height: auto;
        width: var(--percentage100);
        top: auto;
        left: 0;
        right: 0;
        background-color: var(--light-bg-color);
        box-shadow: rgb(0 0 0 / 20%) 0 30px 20px -30px;
        padding: 2.5em 0;
        line-height: 2em;
        z-index: 100;

        display: none;
    }

    nav li.has-child:hover .mega {
        display: block;
    }

    nav .mega .wrapper {
        display: flex;
    }

    nav .mega h4 {
        font-size: 0.8em;
        text-transform: uppercase;
    }

    nav .mega ul {
        font-size: var(--font-small);
    }

    nav .mega .women-brands {
        display: flex;
        flex-wrap: wrap;
        /* gap: 0.5em; */
        max-width: 180px;
    }

    nav .mega .women-brands li {
        /* width: 50%;
        margin-bottom: 0.5em; */
        min-width: 80px;
    }

    nav .mega .view-all {
        margin-top: 1em;
    }

    nav .mega .products {
        flex: 2;
        padding: 0;
        align-items: center;
        position: relative;
    }

    nav .mega .products .row {
        width: var(--percentage100);

    }

    nav .mega .products .media {
        height: 400px;
    }

    nav .mega .products .text-container {
        line-height: initial;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5em;
        margin-top: 0.5em;
        position: absolute;
        bottom: 4em;
        width: var(--percentage100);
    }

    nav .mega .products .text-container h4 {
        font-size: 2em;
        font-weight: var(--fw8);
        text-align: center;
        color: var(--secondary-dark-color);
    }

    .header-main .right {
        max-width: 600px;
        margin-left: auto;
    }

    /* DPT Menu */
    .dpt-menu {
        position: absolute;
        top: var(--percentage100);
        width: 300px;
        background-color: var(--white-color);
        border: 1px solid var(--border-color);
        border-top: 0;
        border-bottom: 0;
    }

    .dpt-menu>ul>li>a {
        font-weight: var(--fw5);
        padding: 0 1.5em;
        border-bottom: 1px solid var(--border-color);
    }

    .dpt-menu .has-child>ul,
    .dpt-menu .mega {
        position: absolute;
        top: 0;
        left: var(--percentage100);
        width: var(--percentage100);
        height: auto;
        min-height: var(--percentage100);
        padding: 1.5em;
        font-size: var(--font-small);
        line-height: 2.5em;
        border: 1px solid var(--border-color);
        border-top: 0;
        display: none;
        background-position: right bottom;
        background-repeat: no-repeat;
        background-size: auto;
    }

    .dpt-menu .beauty ul {
        background-image: url("../images/menu/menu_bg1.jpg");
    }

    .dpt-menu .electric ul {
        background-image: url("../images/menu/menu_bg2.jpg");
    }

    .dpt-menu .fashion ul {
        background-image: url("../images/menu/menu_bg3.jpg");
    }

    .dpt-menu .homekit .mega {
        background-image: url("../images/menu/menu_bg4.jpg");
    }

    .dpt-menu .has-child> :where(ul, .mega)::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%);
    }

    .dpt-menu .mega {
        width: auto;
        min-width: var(--percentage100);
    }

    .dpt-menu .has-child:hover .mega {
        display: flex;
    }

    /* Slider */
    .slider>div>.wrapper {
        width: calc(100% - (300px + 2em));
        margin-left: auto;
    }


}

/* =====================
   Footer Logo Refinements
   ===================== */
footer .footer-logo-col { /* reset margin for balanced vertical rhythm */
    margin-top: 0;
}
footer .footer-logo-img {
    /* Fluid size: min 64px, prefers ~72px scaling slightly on wider screens, max 84px */
    height: clamp(64px, 7vw, 84px);
    width: auto;
    display: block;
    object-fit: contain;
    padding: 0; /* no extra vertical padding */
}
footer .footer-logo-text {
    max-width: 300px;
    margin-top: 0.35rem;
}
footer .footer-social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--secondary-dark-color), var(--primary-color));
    color: #fff;
    font-size: 1.05rem;
    transition: transform .25s ease, box-shadow .25s ease, background .4s;
}
footer .footer-social-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 14px -4px rgba(0,0,0,.4);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}
footer .footer-contact i { font-size: 1.05rem; }
footer .footer-contact p { line-height: 1.3; }

/* =====================
   Product Grid Responsive Cards
   ===================== */
.product-grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.25rem; /* 20px */
}
@media (min-width: 480px) {
    .product-grid-responsive { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
}
@media (min-width: 640px) {
    .product-grid-responsive { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}
@media (min-width: 768px) {
    .product-grid-responsive { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
}
@media (min-width: 1024px) {
    .product-grid-responsive { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
@media (min-width: 1280px) {
    .product-grid-responsive { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
}
@media (min-width: 1536px) {
    .product-grid-responsive { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

/* Product card sizing */
.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    transition: box-shadow .25s ease, transform .25s ease;
}
.product-card:hover { box-shadow: 0 4px 12px -2px rgba(0,0,0,0.12); transform: translateY(-2px); }
.product-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1; /* ensure perfect square at all sizes */
    background: #f3f4f6;
    overflow: hidden;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { flex: 1; display: flex; flex-direction: column; padding: 0.9rem 0.95rem 1rem; }
.product-card-body h3 { font-size: 0.95rem; line-height: 1.25rem; }
.product-card-body .brand-text { font-size: 0.65rem; letter-spacing: .5px; }
.product-card-body .price-block { margin-top: auto; }
.product-card .discount-badge { position: absolute; top: .55rem; left: .55rem; }
.product-card .wishlist-btn { position: absolute; top: .55rem; right: .55rem; }

@media (min-width: 640px) { /* sm */
    .product-card-body { padding: 0.85rem 0.85rem 0.95rem; }
    .product-card-body h3 { font-size: 0.98rem; }
}
@media (min-width: 1024px) { /* lg */
    .product-card-body h3 { font-size: 1rem; }
}
@media (min-width: 1024px) {
    footer .footer-logo-col { padding-right: .75rem; }
}