html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    min-height: 100%;
    overflow-y: auto;
}

/* ═══════════════════════════════════════════════════════
   Radzen Material theme overrides
   The theme is loaded FIRST (in App.razor), so these
   rules win by source-order.  We strip the theme chrome
   so our per-band divs inside MainLayout control their
   own backgrounds and colors.
   ═══════════════════════════════════════════════════════ */

/* Layout wrapper */
.rz-layout {
    background: #fff;
    min-height: 100vh;
    height: auto;
}

/* Header & Footer – fully transparent wrappers */
.rz-header {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.rz-footer {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    padding: 0 !important;
}

/* Menu – remove the theme's panel background */
.rz-menu,
.rz-menu.rz-navigation {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Menu dropdown panel – white with subtle shadow */
.rz-menu .rz-navigation-menu {
    background: #fff !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
}

/* ═══════════════════════════════════════════════════════
   Header — top info bar (orange)
   Uses CSS custom property --ces-header set on
   RadzenLayout via inline style from @code.
   ═══════════════════════════════════════════════════════ */
.top-info-bar {
    background-color: var(--ces-header, #EC6525) !important;
    width: 100%;
}

.top-info-content {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center !important;
    column-gap: 1.5rem;
}

.top-info-items {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center !important;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    gap: 1rem;
}

.top-info-item {
    justify-self: center;
    text-align: center;
    white-space: nowrap;
}

.top-info-bar .rz-text,
.top-info-bar .rz-link,
.top-info-bar .rz-link:hover,
.top-info-bar .rz-link:focus,
.top-info-bar .rz-link:active,
.top-info-bar a,
.top-info-bar a:hover,
.top-info-bar a:focus,
.top-info-bar a:active,
.top-info-bar p,
.top-info-bar span,
.top-info-text,
.top-info-text a,
.top-info-text a:hover,
.top-info-text a:focus,
.top-info-text a:active {
    color: #fff !important;
    text-decoration: none !important;
}

@media (max-width: 992px) {
    .top-info-content {
        grid-template-columns: 1fr auto;
    }

    .top-info-items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: none;
        gap: 0.5rem;
    }

    .top-info-item {
        white-space: normal;
        line-height: 1.3;
    }
}

@media (max-width: 640px) {
    .top-info-content {
        grid-template-columns: 1fr;
        row-gap: 0.5rem;
    }

    .top-info-items {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

.contact-us-btn,
.contact-us-btn.rz-button {
    border-radius: 20px !important;
    font-weight: 600;
    background-color: var(--ces-accent, #1974B6) !important;
    border-color: var(--ces-accent, #1974B6) !important;
    color: #fff !important;
}

/* ═══════════════════════════════════════════════════════
   Header — main navigation bar (white)
   ═══════════════════════════════════════════════════════ */
.main-nav-bar {
    background-color: #fff !important;
    border-bottom: 1px solid #ddd;
    width: 100%;
}

/* Menu item text — black, blue on hover */
.main-nav-bar .rz-navigation-item-text {
    color: #000 !important;
    font-size: 1.05rem;
    font-weight: 500;
}

.main-nav-bar .rz-navigation-item-link {
    padding: 0.5rem 1.35rem !important;
}

.main-nav-bar .rz-navigation-item:hover > .rz-navigation-item-link .rz-navigation-item-text {
    color: var(--ces-primary, #1974B6) !important;
}

/* Dropdown menu item text */
.rz-navigation-menu .rz-navigation-item-text {
    color: #333 !important;
}
.rz-navigation-menu .rz-navigation-item:hover > .rz-navigation-item-link .rz-navigation-item-text {
    color: var(--ces-primary, #1974B6) !important;
}

/* ═══════════════════════════════════════════════════════
   Mobile nav — hamburger toggle + collapsible menu
   Single Radzen menu for desktop and mobile.
   ═══════════════════════════════════════════════════════ */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.hamburger-icon {
    font-size: 1.6rem;
    color: #333;
}

/* Desktop: show Radzen menu, hide flat mobile menu */
.nav-desktop-menu { display: flex; align-items: center; }
.nav-mobile-menu  { display: none; }

@media (max-width: 820px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        z-index: 999;
        padding: 0;
        margin: 0;
        max-height: calc(100vh - 8rem);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu-wrapper.nav-menu-open {
        display: block;
    }

    /* Mobile: swap which panel is visible */
    .nav-desktop-menu { display: none !important; }
    .nav-mobile-menu  { display: block; width: 100%; }

    /* Flat link rows */
    .mobile-nav-link {
        display: block;
        padding: 0.65rem 1.25rem;
        font-size: 1.05rem;
        font-weight: 500;
        color: #000 !important;
        text-decoration: none !important;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:active {
        background: #f7f7f7;
        color: #000 !important;
    }

    /* Indented sub-links (Profile, Logout) */
    .mobile-nav-link--sub {
        padding-left: 2rem;
        font-size: 0.95rem;
        font-weight: 400;
        color: #333 !important;
    }

    /* User identity strip above sub-links */
    .mobile-user-strip {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.65rem 1.25rem;
        border-bottom: 1px solid #f0f0f0;
        background: #fafafa;
    }

    .mobile-nav-avatar {
        border-radius: 50%;
        flex-shrink: 0;
        width: 36px !important;
        height: 36px !important;
    }

    .mobile-nav-username {
        font-size: 0.95rem;
        font-weight: 600;
        color: #222;
    }

    .nav-content {
        position: relative;
    }
}

/* ═══════════════════════════════════════════════════════
   Footer — upper (light gray)
   ═══════════════════════════════════════════════════════ */
.footer-upper {
    background-color: var(--ces-footer-bg, #f5f5f5) !important;
    padding: 1.5rem 0 1.25rem;
    width: 100%;
    color: #000;
}

.footer-contact-label {
    color: #2f2f2f !important;
    font-weight: 500 !important;
}

/* ── Footer link reset ──
   Kill ALL underlines on every link in the footer.
   Radzen .rz-link has its own hover/focus decoration styles,
   so override both text-decoration and text-decoration-line. */
.rz-footer a,
.rz-footer a:hover,
.rz-footer a:focus,
.rz-footer a:active,
.rz-footer a:visited,
.rz-footer .rz-link,
.rz-footer .rz-link:hover,
.rz-footer .rz-link:focus,
.rz-footer .rz-link:active,
.footer-upper a,
.footer-upper a:hover,
.footer-upper a:focus,
.footer-upper a:active,
.footer-upper .rz-link,
.footer-upper .rz-link:hover,
.footer-upper .rz-link:focus,
.footer-upper .rz-link:active,
.footer-bottom a,
.footer-bottom a:hover,
.footer-bottom a:focus,
.footer-bottom a:active,
.footer-nav-links a,
.footer-nav-links a:hover,
.footer-nav-links a:focus,
.footer-nav-links a:active,
.footer-nav-links .rz-link,
.footer-nav-links .rz-link:hover,
.footer-nav-links .rz-link:focus,
.footer-nav-links .rz-link:active {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-color: transparent !important;
    box-shadow: none !important;
}

/* Footer nav links — dark gray */
.footer-nav-links a,
.footer-nav-links .rz-link {
    color: #555 !important;
}

/* Footer contact info links — dark text */
.footer-upper .rz-link,
.footer-upper a {
    color: #333 !important;
}

/* Footer headings / labels — softer than pure black and less bold */
.footer-brand-name,
.footer-brand-name.rz-text,
.contact-heading,
.contact-heading.rz-text {
    color: #2f2f2f !important;
    font-weight: 500 !important;
}

.contact-heading {
    border-bottom: 1px solid #ccc;
}

.footer-accent-strip {
    display: none;
}

/* ═══════════════════════════════════════════════════════
   Footer — bottom bar (dark charcoal)
   ═══════════════════════════════════════════════════════ */
.footer-bottom {
    background-color: var(--ces-bottom-bar, #3a3a3a) !important;
    padding: 1rem 0;
    width: 100%;
}

.footer-bottom,
.footer-bottom .rz-text,
.footer-bottom p,
.footer-bottom span,
.footer-copyright {
    color: #fff !important;
}

a, .btn-link {
    color: #006bb7;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* Main body content wrapper */
.content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* Footer — suppress Radzen link hover underlines via theme variable */
.rz-footer,
.footer-upper,
.footer-bottom,
.footer-nav-links {
    --rz-link-hover-text-decoration: none;
}

/* Product breadcrumb links — force no underline on Radzen link states */
.pdp-breadcrumb {
    --rz-link-hover-text-decoration: none;
}

.pdp-breadcrumb .rz-link,
.pdp-breadcrumb .rz-link:link,
.pdp-breadcrumb .rz-link:visited,
.pdp-breadcrumb .rz-link:hover,
.pdp-breadcrumb .rz-link:focus,
.pdp-breadcrumb .rz-link:active,
.pdp-breadcrumb a,
.pdp-breadcrumb a:link,
.pdp-breadcrumb a:visited,
.pdp-breadcrumb a:hover,
.pdp-breadcrumb a:focus,
.pdp-breadcrumb a:active {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-color: transparent !important;
    box-shadow: none !important;
}

/* Product filters — checkbox style override (Shop page) */
.filter-panel .rz-chkbox-box {
    background: #fff !important;
    border: 1px solid #b8b8b8 !important;
    border-radius: 3px !important;
    box-shadow: none !important;
}

.filter-panel .rz-chkbox-box.rz-state-active {
    background: #fff !important;
    border-color: #000 !important;
}

.filter-panel .rz-chkbox-box .rzi,
.filter-panel .rz-chkbox-box.rz-state-active .rzi {
    color: #000 !important;
}

.filter-panel .rz-chkbox-box:hover,
.filter-panel .rz-chkbox:hover .rz-chkbox-box,
.filter-panel .rz-chkbox-box.rz-state-focus,
.filter-panel .rz-chkbox.rz-state-focus .rz-chkbox-box,
.filter-panel .rz-chkbox-box:focus,
.filter-panel .rz-chkbox:focus .rz-chkbox-box {
    background: #fff !important;
    border-color: #000 !important;
    box-shadow: none !important;
}

.filter-panel .rz-chkbox-box::before,
.filter-panel .rz-chkbox-box::after,
.filter-panel .rz-chkbox:hover .rz-chkbox-box::before,
.filter-panel .rz-chkbox:hover .rz-chkbox-box::after,
.filter-panel .rz-chkbox.rz-state-focus .rz-chkbox-box::before,
.filter-panel .rz-chkbox.rz-state-focus .rz-chkbox-box::after,
.filter-panel .rz-chkbox-box.rz-state-focus::before,
.filter-panel .rz-chkbox-box.rz-state-focus::after {
    content: none !important;
    display: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.filter-panel .rz-chkbox .rz-ink {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════
   User avatar / account dropdown menu
   The last RadzenMenuItem in the header nav is a nested
   submenu triggered by a Gravatar avatar + username label.
   ═══════════════════════════════════════════════════════ */

/* Align the avatar trigger row inside the nav item link */
.main-nav-bar .user-menu-item > .rz-navigation-item-link {
    padding: 0.3rem 0.75rem !important;
}

/* The popup submenu panel */
.main-nav-bar .rz-navigation-menu {
    background: #fff !important;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    min-width: 160px;
    padding: 0.25rem 0;
}

/* Individual items inside the popup */
.main-nav-bar .rz-navigation-menu .rz-navigation-item-link {
    padding: 0.5rem 1rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-nav-bar .rz-navigation-menu .rz-navigation-item-text {
    color: #222 !important;
    font-size: 0.95rem;
    font-weight: 400;
}

.main-nav-bar .rz-navigation-menu .rz-navigation-item:hover > .rz-navigation-item-link {
    background-color: #f5f5f5 !important;
}

/* Material icon inside user-menu submenu items */
.main-nav-bar .rz-navigation-menu .rz-navigation-item-link .rzi {
    font-size: 1.1rem;
    color: #555;
}

/* ── Cart page — Order Guide side panel tab layout ── */
/* Must live in global CSS — ::deep cannot cross Radzen component boundaries */

.cart-side-panel .rz-tabview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Tab nav — smaller text, dark color matching "Your Cart" heading */
/* Radzen renders tabs as <button> elements, not <a> tags */
.cart-side-panel .rz-tabview-nav li button,
.cart-side-panel .rz-tabview-nav li button .rz-tabview-title,
.cart-side-panel .rz-tabview-nav li button .rz-tabview-icon {
    font-size: 0.8rem !important;
    color: #1a1a2e !important;
    font-weight: 600 !important;
}

/* Active/selected tab — kill Radzen's primary-blue underline and text */
.cart-side-panel .rz-tabview-nav li.rz-tabview-selected,
.cart-side-panel .rz-tabview-nav li.rz-state-active,
.cart-side-panel .rz-tabview-nav li.rz-state-focused {
    border-bottom-color: #1a1a2e !important;
}

.cart-side-panel .rz-tabview-nav li.rz-tabview-selected button,
.cart-side-panel .rz-tabview-nav li.rz-tabview-selected button .rz-tabview-title,
.cart-side-panel .rz-tabview-nav li.rz-tabview-selected button .rz-tabview-icon {
    color: #1a1a2e !important;
}

.cart-side-panel .rz-tabview-nav .rz-tabview-icon {
    font-size: 1rem !important;
}

.cart-side-panel .rz-tabview-panels {
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cart-side-panel .rz-tabview-panel {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0.75rem 0.5rem;
}

/* Concrete fallback height so the list scrolls even if the flex chain breaks */
.cart-side-panel .order-guide-list {
    flex: 1 1 0;
    min-height: 0;
    overflow-y: auto;
}

/* Cart page — override focused input/dropdown outline from blue to gray */
.cart-page-layout .rz-textbox:focus,
.cart-page-layout .rz-dropdown:focus,
.cart-page-layout input:focus,
.cart-page-layout .rz-inputtext:focus {
    outline-color: #888 !important;
    border-color: #888 !important;
    box-shadow: 0 0 0 2px rgba(136,136,136,0.25) !important;
}

/* Suppress focus ring on tab buttons specifically */
.cart-side-panel .rz-tabview-nav li button:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Product search dropdown — tighten Radzen's default list-item padding and add divider */
.rz-dropdown-panel .rz-dropdown-item {
    padding-top: 0.3rem !important;
    padding-bottom: 0.3rem !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.rz-dropdown-panel .rz-dropdown-item:last-child {
    border-bottom: none !important;
}

/* ═══════════════════════════════════════════════════════
   Order Detail Dialog — summary strip
   ═══════════════════════════════════════════════════════ */

.odl-summary-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: stretch;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e4e7ec;
}

.odl-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.35rem 0.85rem;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e0e4ea;
    min-width: 100px;
}

.odl-meta-total {
    margin-left: auto;
}

.odl-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    white-space: nowrap;
}

.odl-value {
    font-size: 0.92rem;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
}

.odl-value-em {
    font-weight: 600;
    color: var(--ces-primary, #1974B6);
}

.odl-value-total {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Status badge */
.odl-status-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    white-space: nowrap;
    align-self: flex-start;
    margin-top: 2px;
    background: #e0e0e0;
    color: #555;
}

.odl-status-badge.odl-status-open {
    background: #e3f2fd;
    color: #1565c0;
}

.odl-status-badge.odl-status-completed,
.odl-status-badge.odl-status-closed {
    background: #e8f5e9;
    color: #2e7d32;
}

.odl-status-badge.odl-status-on-hold {
    background: #fff3e0;
    color: #e65100;
}

.odl-status-badge.odl-status-cancelled,
.odl-status-badge.odl-status-canceled {
    background: #fce4ec;
    color: #b71c1c;
}

/* ═══════════════════════════════════════════════════════
   Cart dialog overlay — global so extracted child components
   (CartDialogs/*.razor) inherit these styles correctly.
   Blazor CSS isolation only scopes to the declaring component.
   ═══════════════════════════════════════════════════════ */

.cart-confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.cart-confirm-dialog {
    max-width: 340px;
    width: 90vw;
}

/* Red × close button — top-right corner of dialogs */
.cart-dialog-close {
    position: absolute;
    top: 0.6rem;
    right: 0.75rem;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    color: #c0392b;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.15s;
    z-index: 1;
}

.cart-dialog-close:hover {
    opacity: 1;
}
