/* ===== COLOURS & FONTS ===== */
:root {
    --background: #FAFAFA;
    --pink: #F2A7BB;
    --mint: #B8E0D2;
    --text: #2C2C2C;
    --footer-bg: #F7F7F7;
}

html {
    scroll-behavior: smooth;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BODY ===== */
body {
    background-color: var(--background);
    color: var(--text);
    font-family: 'Georgia', serif;
    font-size: 16px;
}

/* ===== HEADER ===== */
header {
    background-color: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--pink);
    position: relative;
    z-index: 100;
}

header h1 {
    font-size: 28px;
    color: var(--text);
    letter-spacing: 3px;
}

/* ===== NAVIGATION ===== */
nav a {
    margin-left: 30px;
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

nav a:hover {
    color: var(--pink);
}

nav a.active {
    color: var(--pink);
    border-bottom: 2px solid var(--pink);
    padding-bottom: 2px;
}

/* ===== MAIN ===== */
main {
    text-align: center;
    padding: 0;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--footer-bg);
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #eee;
}

footer a {
    color: #888;
    text-decoration: none;
    margin: 0 5px;
    font-size: 13px;
}

footer a:hover {
    color: var(--pink);
}

footer p {
    margin-bottom: 8px;
}

/* ===== BUTTON ===== */
.button {
    background-color: var(--pink);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background 0.2s;
}

.button:hover {
    background-color: #e890a8;
}

/* ===== HERO SPLIT LAYOUT ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #FFF5F8 0%, #F7FDFB 100%);
    height: 90vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    text-align: center;
}

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text);
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 18px;
    color: #888;
    margin-bottom: 35px;
}

.hero-image {
    overflow: hidden;
    border-radius: 20px 0 0 20px;
    box-shadow: -15px 0 110px rgba(242, 167, 187, 0.5);
}

.hero-image img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    object-position: center center;
    display: block;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        height: auto;
    }
    .hero-image {
        height: 300px;
        order: -1;
    }
    .hero-image img {
        height: 300px;
    }
    .hero-content {
        padding: 40px 20px;
        align-items: center;
        text-align: center;
    }
}

/* ===== PRODUCTS ===== */
.products {
    padding: 80px 40px;
    text-align: center;
}

.products h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    row-gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.4s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-17px);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    background: #f9f9f9;
}

.product-card .button {
    display: block;
    width: 100%;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative;
    z-index: 2;
}

.product-card > a:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.product-title-link {
    text-decoration: none;
    color: inherit;
}

.product-card .product-title-link {
    position: static;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.size {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 8px;
}

.price {
    font-size: 20px;
    color: var(--pink);
    font-weight: bold;
    margin-bottom: 30px;
}

#kolekcija {
    scroll-margin-top: 80px;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background-color: var(--pink);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.page-hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 1;
    color: black;
}

/* ===== ABOUT ===== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.about-block {
    margin-bottom: 50px;
}

.about-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text);
}

.about-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

/* ===== CONTACT ===== */
.contact-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pink);
    margin-bottom: 8px;
}

.contact-block p {
    font-size: 16px;
    color: #666;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #888;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: white;
    color: var(--text);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
}

/* ===== CART ICON ===== */
.cart-icon {
    cursor: pointer;
    font-size: 20px;
    position: relative;
}

.cart-count {
    background: var(--pink);
    color: white;
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 12px;
    font-family: sans-serif;
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 999;
}

.cart-overlay.open {
    display: block;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    font-size: 20px;
}

.cart-header button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #888;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    color: #aaa;
    text-align: center;
    margin-top: 40px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.cart-item-name {
    font-size: 15px;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 13px;
    color: #888;
}

.remove-btn {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 16px;
}

.remove-btn:hover {
    color: var(--pink);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-subtotal,
.cart-shipping-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-top: 8px;
    border-top: 1px solid #eee;
}

/* ===== CART QUANTITY CONTROLS ===== */
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    background: var(--background);
    border: 1px solid #eee;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--pink);
    color: white;
    border-color: var(--pink);
}

.qty-number {
    font-size: 15px;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

/* ===== LANGUAGE SWITCHER ===== */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: none;
    border: 1px solid #ddd;
    color: #888;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-family: inherit;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.lang-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.lang-btn.active {
    background: var(--pink);
    border-color: var(--pink);
    color: white;
}

/* ===== FILTERS ===== */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--pink);
    color: var(--text);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    letter-spacing: 1px;
    transition: all 0.2s;
}

.filter-btn:hover {
    background: var(--pink);
    color: white;
}

.filter-btn.active {
    background: var(--pink);
    color: white;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: left;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 12px;
    background: #f9f9f9;
}

.product-detail-info h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.product-detail-info .size {
    color: #aaa;
    font-size: 15px;
    margin-bottom: 10px;
}

.product-detail-info .price {
    font-size: 28px;
    color: var(--pink);
    font-weight: bold;
    margin-bottom: 25px;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

#addToCartBtn {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== LOGO LINK ===== */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-link:hover h1 {
    color: var(--pink);
    transition: color 0.2s ease;
}

/* ===== THANK YOU PAGE ===== */
.thankyou {
    max-width: 600px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.thankyou-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.thankyou h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text);
}

.thankyou p {
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.thankyou-info {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 35px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.thankyou-info p {
    margin-bottom: 10px;
    font-size: 15px;
}

.thankyou-info p:last-child {
    margin-bottom: 0;
}

.thankyou-info a {
    color: var(--pink);
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text);
}

.legal-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-block ul,
.legal-block ol {
    margin-left: 20px;
    margin-top: 10px;
}

.legal-block li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 5px;
}

.legal-block a {
    color: var(--pink);
}

.legal-date {
    font-size: 13px;
    color: #aaa;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* ===== LOADING BUTTON ===== */
.button.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.button.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== SHIPPING MODAL ===== */
#shippingModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

#shippingModal.open {
    display: block;
    animation: overlayFadeIn 0.3s ease forwards;
}

#shippingModal.closing {
    display: block;
    animation: overlayFadeOut 0.3s ease forwards;
}

.shipping-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.shipping-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: modalScaleIn 0.3s ease forwards;
}

#shippingModal.closing .shipping-box {
    animation: modalScaleOut 0.3s ease forwards;
}

.shipping-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.shipping-box-header h3 {
    font-size: 18px;
    color: var(--text);
}

.shipping-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #888;
}

.shipping-box-body {
    padding: 20px 25px;
}

.shipping-field {
    margin-bottom: 16px;
}

.shipping-field label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 6px;
}

.shipping-field input,
.shipping-field select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: white;
    appearance: auto;
}

.shipping-field input:focus,
.shipping-field select:focus {
    outline: none;
    border-color: var(--pink);
}

.shipping-error {
    color: #e05d7a;
    font-size: 13px;
    margin-top: 5px;
    padding: 10px;
    background: #fff0f3;
    border-radius: 8px;
}

.shipping-box-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
    position: sticky;
    bottom: 0;
    background: white;
}

.shipping-summary {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.shipping-box-footer .button {
    width: 100%;
    display: block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes overlayFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes modalScaleIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes modalScaleOut {
    from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    to { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #eee;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 3000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.cookie-banner p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cookie-banner p a {
    color: var(--pink);
    text-decoration: none;
}

.cookie-btn {
    background: var(--pink);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-family: inherit;
    letter-spacing: 1px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.cookie-btn:hover {
    background: #e890a8;
}

/* ===== PRODUCT SELECTORS ===== */
#colorSelector,
#sizeSelector {
    margin-bottom: 20px;
}

.selector-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 10px;
}

.selector-label span {
    color: var(--text);
    font-weight: bold;
}

.color-buttons,
.size-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.color-btn {
    padding: 8px 16px;
    border: 1px solid #eee;
    border-radius: 30px;
    background: white;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text);
}

.color-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.color-btn.active {
    background: var(--pink);
    border-color: var(--pink);
    color: white;
}

.size-btn {
    width: 48px;
    height: 48px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: white;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text);
}

.size-btn:hover:not(:disabled) {
    border-color: var(--pink);
    color: var(--pink);
}

.size-btn.active {
    background: var(--pink);
    border-color: var(--pink);
    color: white;
}

.size-btn.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* ===== COLOR FILTER BUTTONS ===== */
#colorFilters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    nav a {
        margin-left: 10px;
        margin-right: 10px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .products {
        padding: 40px 20px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .product-detail {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .legal-content {
        padding: 40px 20px;
    }

    .shipping-box {
        width: 95%;
        max-height: 95vh;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .lang-switcher {
        order: -1;
    }
}

/* ===== SORT DROPDOWN ===== */
.sort-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

#sortSelect {
    padding: 10px 20px;
    border: 2px solid var(--pink);
    border-radius: 30px;
    background: white;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
}

#sortSelect:focus {
    outline: none;
}

/* ===== CUSTOM DROPDOWN ===== */
.sort-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.custom-dropdown {
    position: relative;
    width: 240px;
}

.dropdown-toggle {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--pink);
    border-radius: 30px;
    background: white;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.dropdown-toggle:hover {
    background: #fff5f8;
}

.dropdown-arrow {
    color: var(--pink);
    font-size: 12px;
    transition: transform 0.2s;
}

.dropdown-menu.open + .dropdown-toggle .dropdown-arrow,
.custom-dropdown:has(.dropdown-menu.open) .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 50;
}

.dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
    transition: background 0.15s;
}

.dropdown-item:hover {
    background: #fff5f8;
    color: var(--pink);
}

.dropdown-item:not(:last-child) {
    border-bottom: 1px solid #f5f5f5;
}

/* ===== SEARCH BAR ===== */
.search-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 20px;
}

#searchInput {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid var(--pink);
    border-radius: 30px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: white;
}

#searchInput:focus {
    outline: none;
}

#searchInput::placeholder {
    color: #aaa;
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
}