/*
Theme Name: Atelier ÉMRE
Theme URI: https://atelier-emre.com
Author: Emre Yilmaz
Description: Custom WordPress Theme for Atelier ÉMRE
Version: 1.0
Text Domain: atelier-emre
*/


:root {
    --background: #f4f1eb;
    --text: #171614;
    --muted: #77736d;
    --line: rgba(23, 22, 20, 0.16);
    --white: #ffffff;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}


body {
    margin: 0;
    overflow-x: hidden;
    background: var(--background);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}


body.admin-bar .site-header {
    top: 32px;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
}


button,
input,
textarea,
select {
    font: inherit;
}


/* HEADER */

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 4vw;
    border-bottom: 1px solid transparent;
    background: transparent;
    color: var(--white);
    pointer-events: none;
    transition:
        padding 0.35s ease,
        background-color 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}

.site-header::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.32),
        rgba(0, 0, 0, 0)
    );
    content: "";
    opacity: 1;
    transition: opacity 0.35s ease;
}

.site-header a,
.site-header nav {
    pointer-events: auto;
}

.site-header.is-scrolled {
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom-color: rgba(23, 22, 20, 0.1);
    background: rgba(244, 241, 235, 0.92);
    color: var(--text);
    box-shadow: 0 8px 30px rgba(23, 22, 20, 0.035);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled::before {
    opacity: 0;
}

.brand {
    color: inherit;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: inherit;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.25s ease;
}

.main-nav a:hover {
    opacity: 0.55;
}


/* HERO */

.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
    padding: 100px 5vw 110px;
    background-color: #30302e;
    background-image: url("assets/images/hero-background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    text-align: center;
    scroll-snap-align: start;
}

.hero-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(18, 20, 21, 0.35) 0%,
        rgba(18, 20, 21, 0.38) 42%,
        rgba(18, 20, 21, 0.64) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-bottom: 70px;
}

.hero-section h1 {
    margin: 0;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 8vw, 8.5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.045em;
    white-space: nowrap;
}

.hero-subtitle {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.76rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.hero-button {
    display: inline-flex;
    min-width: 325px;
    min-height: 82px;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    padding: 20px 42px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.32em;
    text-decoration: none;
    text-transform: uppercase;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
    background: var(--white);
    color: var(--text);
}

.hero-scroll {
    position: absolute;
    z-index: 2;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.66rem;
    letter-spacing: 0.4em;
    text-decoration: none;
    text-transform: uppercase;
}


/* DEZENTES EINBLENDEN */

.js-enabled .reveal-element {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.85s ease,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-enabled .reveal-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ARTWORK SECTIONS */

.artwork-section {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 95px 0 42px;
    border-top: 1px solid var(--line);
    background: var(--background);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.artwork-slider {
    display: flex;
    gap: 5vw;
    overflow-x: auto;
    padding: 0 8vw 28px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.artwork-slider::-webkit-scrollbar {
    display: none;
}

.artwork-slide {
    flex: 0 0 84vw;
    min-height: 62vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    scroll-snap-align: center;
}

.artwork-slide img {
    width: 100%;
    height: 62vh;
    object-fit: contain;
    object-position: center;
    transform: scale(1);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
    .artwork-slide:hover img {
        transform: scale(1.015);
    }
}

.artwork-info {
    width: 84vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin: 0 auto;
    padding-top: 18px;
}

.artwork-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.artwork-info h2 {
    margin: 0 0 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 4vw, 4.6rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.025em;
}

.artwork-info p {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.view-artwork {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 0.68rem;
    letter-spacing: 0.17em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.view-artwork:hover {
    opacity: 0.55;
    transform: translateX(4px);
}

.slide-hint {
    padding-bottom: 5px;
    color: var(--muted);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
}


/* BILDER AUF DEN EINZELNEN WERKSEITEN */

.artwork-gallery-item {
    overflow: hidden;
}

.artwork-gallery-item img {
    transform: scale(1);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
    .artwork-gallery-item:hover img {
        transform: scale(1.012);
    }
}


/* COMPACT FOOTER */

.site-footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 35px;
    padding: 28px 5vw;
    border-top: 1px solid rgba(23, 22, 20, 0.12);
    background: var(--background);
}

.footer-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.footer-links a,
.footer-link-disabled {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-links a {
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.footer-links a:hover {
    opacity: 0.5;
    transform: translateY(-1px);
}

.footer-link-disabled {
    color: var(--muted);
    cursor: default;
    opacity: 0.45;
}

.footer-copyright {
    margin: 0;
    color: var(--muted);
    font-size: 0.55rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    white-space: nowrap;
}


/* STANDARD WORDPRESS PAGES */

.default-page {
    min-height: 100vh;
    max-width: 1000px;
    margin: 0 auto;
    padding: 160px 5vw 100px;
}

.default-content h1 {
    margin: 0 0 45px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 400;
    line-height: 0.95;
}

.default-content-text {
    max-width: 720px;
    font-size: 1.1rem;
    line-height: 1.75;
}


/* WENIGER BEWEGUNG */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js-enabled .reveal-element {
        opacity: 1;
        transform: none;
    }
}


/* TABLET */

@media (max-width: 900px) {
    .artwork-slide {
        flex-basis: 86vw;
    }

    .artwork-info {
        width: 86vw;
    }

    .site-footer {
        grid-template-columns: 1fr auto;
    }

    .footer-links {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
    }
}


/* MOBILE */

@media (max-width: 760px) {
    html {
        scroll-snap-type: none;
    }

    body.admin-bar .site-header {
        top: 46px;
    }

    .site-header,
    .site-header.is-scrolled {
        padding: 18px 20px;
    }

    .brand {
        font-size: 1rem;
    }

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 0.56rem;
        letter-spacing: 0.14em;
    }

    .hero-section {
        min-height: 100svh;
        padding: 90px 18px 85px;
        background-position: center;
    }

    .hero-content {
        margin-bottom: 70px;
    }

    .hero-section h1 {
        font-size: clamp(2.6rem, 12vw, 5rem);
        letter-spacing: -0.045em;
        white-space: nowrap;
    }

    .hero-subtitle {
        margin-top: 20px;
        font-size: 0.56rem;
        letter-spacing: 0.25em;
    }

    .hero-button {
        min-width: 245px;
        min-height: 64px;
        margin-top: 42px;
        padding: 16px 26px;
        font-size: 0.65rem;
        letter-spacing: 0.25em;
    }

    .hero-scroll {
        bottom: 23px;
        font-size: 0.56rem;
        letter-spacing: 0.32em;
    }

    .artwork-section {
        min-height: 100svh;
        padding-top: 78px;
        padding-bottom: 32px;
    }

    .artwork-slider {
        gap: 7vw;
        padding-right: 6vw;
        padding-bottom: 20px;
        padding-left: 6vw;
    }

    .artwork-slide {
        flex-basis: 88vw;
        min-height: 57vh;
    }

    .artwork-slide img {
        height: 57vh;
    }

    .artwork-info {
        width: 88vw;
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
        padding-top: 12px;
    }

    .artwork-info h2 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .artwork-info p {
        font-size: 0.64rem;
    }

    .view-artwork {
        margin-top: 18px;
        font-size: 0.62rem;
    }

    .slide-hint {
        font-size: 0.56rem;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 20px;
        text-align: center;
    }

    .footer-name {
        font-size: 0.95rem;
    }

    .footer-links {
        grid-column: auto;
        grid-row: auto;
        justify-content: center;
        gap: 16px;
    }

    .footer-links a,
    .footer-link-disabled {
        font-size: 0.54rem;
    }

    .footer-copyright {
        font-size: 0.5rem;
    }

    .js-enabled .reveal-element {
        transform: translateY(16px);
    }
}


/* ERSTES BILD KLICKBAR */

.artwork-image-link {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.artwork-image-link img {
    width: 100%;
    height: 62vh;
    object-fit: contain;
    object-position: center;
}

@media (hover: hover) {
    .artwork-image-link:hover img {
        transform: scale(1.015);
    }
}

@media (max-width: 760px) {
    .artwork-image-link img {
        height: 57vh;
    }
}


/* ========================================
   LEGAL PAGES
======================================== */

.legal-page {
    min-height: 100vh;
    padding: 150px 6vw 100px;
    background: var(--background);
}

.legal-content {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.legal-back {
    display: inline-block;
    margin-bottom: 70px;
    color: var(--muted);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.25s ease;
}

.legal-back:hover {
    opacity: 0.5;
}

.legal-content h1 {
    margin: 0 0 70px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.legal-text {
    max-width: 720px;
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.8;
}

.legal-text h2 {
    margin: 55px 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.2;
}

.legal-text h3 {
    margin: 38px 0 14px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-text p {
    margin: 0 0 20px;
}

.legal-text a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.legal-text ul {
    margin: 0 0 25px;
    padding-left: 20px;
}

.legal-text li {
    margin-bottom: 8px;
}

@media (max-width: 760px) {
    .legal-page {
        padding: 120px 7vw 70px;
    }

    .legal-back {
        margin-bottom: 45px;
    }

    .legal-content h1 {
        margin-bottom: 50px;
        font-size: clamp(2.8rem, 14vw, 4.5rem);
    }

    .legal-text {
        font-size: 0.84rem;
        line-height: 1.75;
    }

    .legal-text h2 {
        margin-top: 45px;
        font-size: 1.45rem;
    }
}


/* FOOTER LEGAL LINKS */

.footer-legal {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(23, 22, 20, 0.08);
}

.footer-legal a {
    color: var(--muted);
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.25s ease;
}

.footer-legal a:hover {
    opacity: 0.5;
}

@media (max-width: 760px) {
    .footer-legal {
        gap: 10px 16px;
        padding-top: 16px;
    }

    .footer-legal a {
        font-size: 0.48rem;
    }
}


/* ========================================
   ATELIER ÉMRE – WOOCOMMERCE CHECKOUT
======================================== */

.woocommerce-checkout,
.wp-block-woocommerce-checkout {
    background: var(--background);
    color: var(--text);
}

.wp-block-woocommerce-checkout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 5vw 100px;
}


/* CHECKOUT TITEL */

.wp-block-post-title,
.woocommerce-checkout h1 {
    margin-bottom: 55px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.045em;
}


/* ÜBERSCHRIFTEN */

.wp-block-woocommerce-checkout h2,
.wp-block-woocommerce-checkout h3,
.wc-block-components-title {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.wp-block-woocommerce-checkout h2 {
    margin-top: 35px;
    margin-bottom: 22px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.wp-block-woocommerce-checkout h3 {
    margin-top: 35px;
    margin-bottom: 22px;
    font-size: 1.35rem;
}


/* TRENNLINIEN */

.wp-block-woocommerce-checkout hr,
.wc-block-components-totals-wrapper,
.wc-block-components-order-summary {
    border-color: rgba(23, 22, 20, 0.15) !important;
}


/* FORMULARFELDER */

.wp-block-woocommerce-checkout input:not([type="checkbox"]):not([type="radio"]),
.wp-block-woocommerce-checkout select,
.wp-block-woocommerce-checkout textarea,
.wc-block-components-text-input input:not([type="checkbox"]):not([type="radio"]),
.wc-blocks-components-select__select {
    min-height: 58px;
    border: 1px solid rgba(23, 22, 20, 0.45) !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.35) !important;
    color: var(--text) !important;
    font-size: 0.95rem;
    box-shadow: none !important;
    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.wp-block-woocommerce-checkout input:not([type="checkbox"]):not([type="radio"]):focus,
.wp-block-woocommerce-checkout select:focus,
.wp-block-woocommerce-checkout textarea:focus,
.wc-block-components-text-input input:not([type="checkbox"]):not([type="radio"]):focus,
.wc-blocks-components-select__select:focus {
    border-color: var(--text) !important;
    background: rgba(255, 255, 255, 0.65) !important;
    outline: none !important;
}


/* CHECKBOXEN & RADIO */

.wp-block-woocommerce-checkout input[type="checkbox"],
.wp-block-woocommerce-checkout input[type="radio"] {
    min-height: 0 !important;
    width: 20px !important;
    height: 20px !important;
    background: transparent !important;
    accent-color: var(--text);
}


/* LABELS */

.wc-block-components-text-input label,
.wc-blocks-components-select__label {
    color: var(--muted) !important;
    font-size: 0.72rem !important;
}


/* ORDER SUMMARY */

.wc-block-components-order-summary,
.wc-block-components-totals-wrapper {
    background: transparent !important;
}

.wc-block-components-order-summary-item {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
}


/* PREISE */

.wc-block-components-product-price,
.wc-block-components-totals-item__value,
.wc-block-components-order-summary__button-text {
    font-weight: 400 !important;
}


/* PAYPAL */

.ppcp-button-wrapper,
.wc-block-components-express-payment {
    margin-top: 25px;
    margin-bottom: 35px;
}


/* NORMALER CHECKOUT BUTTON */

.wp-block-woocommerce-checkout .wc-block-components-button,
.wp-block-woocommerce-checkout button[type="submit"] {
    min-height: 68px;
    border: 1px solid var(--text) !important;
    border-radius: 0 !important;
    background: var(--text) !important;
    color: #ffffff !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    box-shadow: none !important;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.wp-block-woocommerce-checkout .wc-block-components-button:hover,
.wp-block-woocommerce-checkout button[type="submit"]:hover {
    transform: translateY(-2px);
    background: transparent !important;
    color: var(--text) !important;
}


/* LINKS */

.wp-block-woocommerce-checkout a {
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}


/* SHIPPING + PAYMENT */

.wc-block-components-radio-control__option {
    padding: 20px 24px !important;
}


/* HINWEISE */

.wc-block-components-notice-banner {
    border-radius: 0 !important;
    box-shadow: none !important;
}


/* ========================================
   CHECKOUT – REMOVE ARTWORK
======================================== */

.wc-block-components-order-summary-item {
    position: relative;
}

.wc-block-components-order-summary-item.atelier-has-remove-button {
    padding-right: 58px !important;
}

.atelier-remove-cart-item {
    position: absolute;
    top: 50%;
    right: 18px;

    width: 34px;
    height: 34px;
    padding: 7px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;

    color: #777 !important;

    text-decoration: none !important;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        color 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}

.atelier-remove-cart-item svg {
    display: block;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.atelier-remove-cart-item:hover {
    color: #111 !important;
    transform: translateY(-50%) scale(1.06);
}

.atelier-remove-cart-item.is-removing,
.atelier-remove-cart-item:disabled {
    opacity: 0.3;
    pointer-events: none;
}

.atelier-remove-cart-item:hover,
.atelier-remove-cart-item:focus,
.atelier-remove-cart-item:active {
    background: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.atelier-remove-cart-item:focus-visible {
    outline: 1px solid currentColor;
    outline-offset: 3px;
}


/* CHECKOUT MOBILE */

@media (max-width: 760px) {
    .wp-block-woocommerce-checkout {
        padding: 120px 20px 70px;
    }

    .wp-block-post-title,
    .woocommerce-checkout h1 {
        margin-bottom: 40px;
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .wp-block-woocommerce-checkout input:not([type="checkbox"]):not([type="radio"]),
    .wp-block-woocommerce-checkout select,
    .wp-block-woocommerce-checkout textarea,
    .wc-block-components-text-input input:not([type="checkbox"]):not([type="radio"]),
    .wc-blocks-components-select__select {
        min-height: 54px;
    }

    .wp-block-woocommerce-checkout input[type="checkbox"],
    .wp-block-woocommerce-checkout input[type="radio"] {
        width: 18px !important;
        height: 18px !important;
    }

    .wp-block-woocommerce-checkout .wc-block-components-button,
    .wp-block-woocommerce-checkout button[type="submit"] {
        min-height: 62px;
    }

    .wc-block-components-order-summary-item.atelier-has-remove-button {
        padding-right: 48px !important;
    }

    .atelier-remove-cart-item {
        right: 8px;
        width: 32px;
        height: 32px;
    }

    .atelier-remove-cart-item svg {
        width: 17px;
        height: 17px;
    }
}