:root {
    /* Colors */
    --shredder-shop-blue-100: #f1f4f7;
    --shredder-shop-blue-400: #228be6;
    --shredder-shop-blue-600: #155dfc;
    --shredder-shop-teal: #4AB6B9;
    --shredder-shop-teal-hover: #43a4a7;
    --shredder-shop-red-100: #fce4e4;
    --shredder-shop-red-500: #fb2c36;
    --shredder-shop-red-600: #e7000b;
    --shredder-shop-red-900: #721c24;
    --shredder-shop-green-100: #d4edda;
    --shredder-shop-green-200: #c3e6cb;
    --shredder-shop-green-300: #4bba86;
    --shredder-shop-green-600: #008236;
    --shredder-shop-green-800: #016630;
    --shredder-shop-gray-50: #fbf9fa;
    --shredder-shop-gray-100: #f9fafb;
    --shredder-shop-gray-200: #f6f3f4;
    --shredder-shop-gray-300: #ebe6e7;
    --shredder-shop-gray-400: #d1d5dc;
    --shredder-shop-gray-500: #99a1af;
    --shredder-shop-gray-600: #808080;
    --shredder-shop-gray-700: #6a7282;
    --shredder-shop-gray-800: #495057;
    --shredder-shop-gray-900: #101828;
    --shredder-shop-yellow-100: #fff3cd;
    --shredder-shop-yellow-200: #ffeaa7;
    --shredder-shop-yellow-700: #f39c12;
    --shredder-shop-yellow-900: #856404;

    /* Alerts */
    --shredder-shop-alert-background-color: var(--shredder-shop-yellow-100);
    --shredder-shop-alert-border-color: var(--shredder-shop-yellow-200);
    --shredder-shop-alert-text-color: var(--shredder-shop-yellow-900);
    /* Errors */
    --shredder-shop-error-background-color: var(--shredder-shop-red-100);
    --shredder-shop-error-border-color: var(--shredder-shop-red-500);
    --shredder-shop-error-text-color: var(--shredder-shop-red-600);
    /* Success */
    --shredder-shop-success-background-color: var(--shredder-shop-green-100);
    --shredder-shop-success-border-color: var(--shredder-shop-green-200);
    --shredder-shop-success-text-color: var(--shredder-shop-green-800);
    /* Warning */
    --shredder-shop-warning-background-color: var(--shredder-shop-yellow-100);
    --shredder-shop-warning-border-color: var(--shredder-shop-yellow-200);
    --shredder-shop-warning-text-color: var(--shredder-shop-yellow-900);


    /* Typography */
    --shredder-shop-body-font: 'Roboto', BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */

    /* Spacing */
    --shredder-shop-cart-width: 350px;
    --spacing-xs: 0.25rem;  /* 4px */
    --spacing-sm: 0.5rem;   /* 8px */
    --spacing-md: 0.75rem;  /* 12px */
    --spacing-lg: 1rem;     /* 16px */
    --spacing-xl: 1.5rem;   /* 24px */
    --spacing-2xl: 2rem;    /* 32px */
    --spacing-3xl: 3rem;    /* 48px */
    --spacing-4xl: 4rem;    /* 64px */

    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 6px;
    --border-radius-lg: 8px;
    --border-radius-infinite: 999px;

}



/*
 * GENERAL
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--shredder-shop-body-font);
    height: 100vh;
    overflow: hidden;
}
button {
    font-family: var(--shredder-shop-body-font);
}

form .required:after {
    content: " *";
    color: var(--shredder-shop-red-600);
}

.shredder-shop-button {
    align-items: center;
    background: var(--shredder-shop-primary-button-color);
    border: 0;
    border-radius: var(--border-radius-md);
    color: white;
    cursor: pointer;
    display: flex;
    font-size: var(--font-size-base);
    justify-content: center;
    line-height: 1.5;
    padding: var(--spacing-sm) var(--spacing-lg);
    text-decoration: none;
    transition: background-color 0.2s;
}
.shredder-shop-button:hover {
    background: var(--shredder-shop-primary-button-color-light);
}
.shredder-shop-primary-button {
    background: var(--shredder-shop-primary-button-color);
    color: white;
}
.shredder-shop-primary-button:hover {
    background: var(--shredder-shop-primary-button-color-light);
}
.shredder-shop-secondary-button {
    background: var(--shredder-shop-secondary-button-color);
    color: white;
}
.shredder-shop-secondary-button:hover {
    background: var(--shredder-shop-secondary-button-color-light);
}
.shredder-shop-tertiary-button {
    background: var(--shredder-shop-tertiary-button-color);
    color: white;
}
.shredder-shop-tertiary-button:hover {
    background: var(--shredder-shop-tertiary-button-color-dark);
}


input[type="file"] {
    display: none;
}

.required-indicator {
    color: var(--shredder-shop-red-600);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid var(--shredder-shop-gray-400);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-base);
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--shredder-shop-blue-400);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.dialog-actions {
    padding: var(--spacing-lg) var(--spacing-xl);
    background-color: var(--shredder-shop-gray-100);
    border-top: 1px solid var(--shredder-shop-gray-300);
    display: flex;
    justify-content: flex-end;
    gap: var(--spacing-sm);
}

/*
 * GENERAL: Mobile & Responsiveness
 */
@media (max-width: 1024px) {
    .form-group label {
        margin-bottom: var(--spacing-xs);
    }
}


/*
 * ALERTS & ERRORS
 */
.shredder-shop-alert {
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    border: 1px solid transparent;
    width: 100%;
    text-align: center;
}
.shredder-shop-alert.shredder-shop-alert-success {
    background-color: var(--shredder-shop-success-background-color);
    border-color: var(--shredder-shop-success-border-color);
    color: var(--shredder-shop-success-text-color);
}
.shredder-shop-alert.shredder-shop-alert-danger {
    background-color: var(--shredder-shop-error-background-color);
    border-color: var(--shredder-shop-error-border-color);
    color: var(--shredder-shop-error-text-color);
}
.shredder-shop-alert ul {
    margin: 0;
    padding-left: var(--spacing-xl);
}
.shredder-shop-alert ul li {
    margin-bottom: var(--spacing-xs);
}
.shredder-shop-alert {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius-sm);
}
.shredder-shop-alert-warning {
    background: var(--shredder-shop-warning-background-color);
    border: 1px solid var(--shredder-shop-warning-border-color);
    color: var(--shredder-shop-warning-text-color);
}
.shredder-shop-alert-warning .removed-item {
    margin: 6px 0;
    padding: var(--spacing-sm);
    background: var(--shredder-shop-yellow-100);
    border-left: 3px solid var(--shredder-shop-yellow-700);
}
.shredder-shop-alert-warning .item-name {
    font-weight: bold;
    margin-bottom: 2px;
}
.shredder-shop-alert-warning .item-quantity {
    font-size: var(--font-size-sm);
    color: var(--shredder-shop-gray-700);
}
.shredder-shop-alert-warning .item-reason {
    font-size: var(--font-size-sm);
    color: var(--shredder-shop-error-text-color);
    font-style: italic;
}
#error-messages {
    border: 1px solid var(--shredder-shop-error-border-color);
    display: flex;
    min-height: 90px;
    background: var(--shredder-shop-error-background-color);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-sm);
    align-items: center;
    margin-bottom: var(--spacing-md);
}
#error-messages ul {
    list-style: none;
}
#error-messages .error-item {
    color: var(--shredder-shop-error-text-color);
    font-weight: bold;
}



/*
 * HEADER
 */
#shredder-shop-header {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

/*
 * HEADER: Topbar
 */
#shredder-shop-topbar {
    display: flex;
    height: 64px;
    background: white;
    border-bottom: 1px solid var(--shredder-shop-gray-250);
    align-items: center;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

#shredder-shop-header-mobile-bar {
    visibility: hidden;
}

#shredder-shop-cart-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    background: white;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 250ms ease, opacity 250ms ease;
    z-index: 1000;
}

.shredder-shop-cart-mobile-drawer-close {
    display: none;
}

#shredder-shop-header-logo {
    height: 64px;
    overflow-clip-margin: content-box;
    overflow: clip;
    text-size-adjust: 100%;
}

#shredder-shop-auth-links {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    align-items: center;
    gap: var(--spacing-md);
    padding-right: var(--spacing-lg);
}

#shredder-shop-auth-links * {
    color: white;
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    border: none;
    font-size: var(--font-size-sm);
    line-height: 1.5;
    cursor: pointer;
}

/*
 * HEADER: Navigation
 */
#shredder-shop-navigation {
    background-color: var(--shredder-shop-primary-color);
    color: white;
    display: flex;
    justify-content: center;
    align-items: stretch;
    z-index: 999;
}

#shredder-shop-navigation h1 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
}

.shredder-shop-navigation-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shredder-shop-navigation-item:not(:last-child) {
    border-right: 1px solid var(--shredder-shop-gray-400);
}

.shredder-shop-navigation-item.active {
    font-weight: 600;
    background: var(--shredder-shop-secondary-color);
}

.shredder-shop-navigation-item:hover {
    background: var(--shredder-shop-secondary-color);
}

.shredder-shop-navigation-link {
    color: white;
    text-decoration: none;
    font-size: var(--font-size-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    line-height: 1.5;
    text-align: center;
}


/*
 * HEADER: Mobile & Responsivenes
 */
#shredder-shop-header-mobile-bar{
    display: none;
}
@media (max-width: 1024px) {
    #shredder-shop-topbar {
        height: auto;
    }
    #shredder-shop-header-mobile-bar {
        background: var(--shredder-shop-gray-100);
        border-bottom: 1px solid var(--shredder-shop-gray-400) !important;
        border-top: 1px solid var(--shredder-shop-gray-400) !important;
        height: 40px;
        visibility: inherit;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        padding: 0 10px;
    }
    #shredder-shop-auth-links {
        flex-direction: column;
        align-items: flex-end;
    }
    #shredder-shop-auth-links * {
        line-height: 1.5;
    }
    #shredder-shop-admin-dashboard-link {
        display: none;
    }
    #shredder-shop-participant-dashboard-link {
        display: none;
    }
    #shredder-shop-mobile-bar-left {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid var(--shredder-shop-gray-400);
    }
    #shredder-shop-mobile-bar-left > a {
        background: var(--shredder-shop-gray-200);
        border-right: 1px solid var(--shredder-shop-gray-400);
        padding: 4px 6px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--shredder-shop-gray-800);
        font-size: 14px;
    }
    #shredder-shop-header-cart-mobile-open {
        border-left: 1px solid var(--shredder-shop-gray-400);
        border-right: 1px solid var(--shredder-shop-gray-400);
        background: var(--shredder-shop-gray-200);
        width: 40px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--shredder-shop-gray-800);
        position: relative;
    }
    .shredder-shop-header-cart-mobile-count {
        position: absolute;
        top: -4px;
        right: -4px;
        display: flex;
        height: 20px;
        width: 20px;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--shredder-shop-red-500);
        font-size: var(--font-size-xs);
        color: white;
    }
    #shredder-shop-cart-mobile-drawer.open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
    .shredder-shop-cart-mobile-drawer-close {
        display: initial;
        position: absolute;
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        width: 40px;
        padding: var(--spacing-sm);
        color: var(--shredder-shop-gray-800);
    }
    #shredder-shop-cart-mobile-backdrop {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 250ms ease;
        z-index: 999; /* must be below the cart drawer */
    }

    #shredder-shop-cart-mobile-backdrop.open {
        opacity: 1;
        pointer-events: auto;
    }
    #shredder-shop-navigation {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-wrap: wrap;
        padding: var(--spacing-sm);
        justify-content: center;
        align-items: center;
        height: 75px;
    }
    #shredder-shop-navigation .shredder-shop-navigation-link {
        color: var(--shredder-shop-blue-100);
        font-size: var(--font-size-sm);
        padding: 0;
        margin: 0;
        font-weight: 500;
    }
    #shredder-shop-navigation .shredder-shop-navigation-item:not(:last-child) {
        border-right: 0;
    }
    #shredder-shop-navigation .shredder-shop-navigation-item:not(:last-child)::after {
        content: '•';
        font-size: var(--font-size-sm);
        margin: 0 var(--spacing-sm);
    }
    #shredder-shop-navigation .shredder-shop-navigation-item.active {
        background: transparent;
    }
    #shredder-shop-navigation .shredder-shop-navigation-item.active .shredder-shop-navigation-link {
        color: var(--shredder-shop-teal);
    }
    #shredder-shop-navigation .shredder-shop-navigation-item:hover {
        background: transparent;
    }
    #shredder-shop-navigation .shredder-shop-navigation-item:hover .shredder-shop-navigation-link {
        background: var(--shredder-shop-secondary-color);
    }

}
@media (min-width: 1025px) and (max-width: 1200px) {
    #shredder-shop-navigation .shredder-shop-navigation-link {
        font-size: var(--font-size-base);
    }
}


/*
 * MAIN WRAPPER
 */
#shredder-shop-wrapper {
    height: 100vh;
    display: flex;
}

#shredder-shop-alerts-container{
    max-width: 1400px;
    display: flex;
    margin: var(--spacing-sm) auto;
    padding: 0 var(--spacing-lg);
}
#shredder-shop-inner-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


/*
 * MAIN: Content
 */
#shredder-shop-page-title {
    font-size: clamp(2rem, 1rem + 5vw, 3.5rem);
    padding: 0px var(--spacing-lg);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    display: flex;
    text-align: center;
    justify-content: center;
}
#shredder-checkout-container #shredder-shop-page-title {
    font-size: clamp(2rem, 1rem + 1.25vw, 3.5rem);
}
#shredder-shop-page-title.text-left {
    justify-content: flex-start;
}

.shredder-shop-main-wrapper {
    flex: 1;
    overflow: hidden;
}

.shredder-shop-container {
    height: 100%;
    display: flex;
}

.shredder-shop-content {
    overflow-y: auto;
    flex: 1;
}



/*
 * PRODUCTS
 */

.shredder-shop-product-list {
    display: flex;
    flex-wrap: wrap;
    padding: var(--spacing-2xl);
    max-width: 1400px;
    margin-inline: auto;
    justify-content: center;
    gap: var(--spacing-lg);
}

.shredder-shop-product-card {
    background: white;
    border: 1px solid var(--shredder-shop-gray-300);
    border-radius: var(--border-radius-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-xl);
    width: 280px;
    overflow: hidden;
}

.shredder-shop-product {
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.shredder-shop-product-image {
    height: 200px;
    width: 100%;
    color: var(--shredder-shop-gray-500);
    background-color: var(--shredder-shop-gray-200);
}

.shredder-shop-product-title-and-description-button {
    display: flex;
    flex-direction: row;
    gap: 2px;
    justify-content: space-between;
}

.shredder-shop-product-title {
    color: black;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-2xl);
    line-height: 1;
}

.shredder-shop-product-info {
    flex-grow: 1;
}

.shredder-shop-product-short-description {
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
    font-size: var(--font-size-sm);
    color: var(--shredder-shop-gray-700);
}

.shredder-shop-product-show-description {
    cursor: pointer;
}

.shredder-shop-product-show-description-icon {
    width: 32px;
}

.shredder-shop-product-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 55px;
    align-items: center;
}

.shredder-shop-add-to-cart-form {
    display: flex;
    flex-direction: column;
    /* align-items: end; */
}

.shredder-shop-product-price {
    color: var(--shredder-shop-green-600);
    line-height: 1.2;
    display: flex;
    align-items: flex-start;
    padding: var(--spacing-sm);
}

.shredder-shop-product-price-currency {
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
    font-weight: 500;
}

.shredder-shop-product-price-dollars {
    font-size: var(--font-size-3xl);
    font-weight: 700;
}

.shredder-shop-product-price-cents {
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
    font-weight: 500;
}

.shredder-shop-product-options {
    display: flex;
    flex-direction: column;
}

.shredder-shop-product-option {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.shredder-shop-product-option label {
    font-weight: 500;
    font-size: var(--font-size-xs);
    color: var(--shredder-shop-primary-color);
}

.shredder-shop-product-option select, .flatpickr {
    padding: var(--spacing-sm);
    border: 1px solid var(--shredder-shop-gray-400);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-base);
    min-width: 120px;
}

.shredder-shop-add-to-cart-button {
    cursor: pointer;
    padding: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.shredder-shop-add-to-cart-button:active {
    transform: translateY(1px);
}

#product-description-dialog {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: auto;
    max-width: 500px;
    inset: 0;
    width: 90%;
}

#product-description-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

#product-description-dialog .dialog-header {
    background-color: var(--shredder-shop-primary-color);
    border-bottom: 1px solid var(--shredder-shop-gray-300);
    color: white;
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#product-description-dialog .dialog-title {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: 600;
}
#product-description-dialog .close-button {
    background: none;
    border: none;
    color: white;
    font-size: var(--font-size-xl);
    cursor: pointer;
    padding: var(--spacing-xs);
}
#product-description-dialog-content {
    padding: var(--spacing-xl);
}



/*
 * LOGIN FORM
 */
#shredder-shop-login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: var(--spacing-4xl);
}
#shredder-shop-login-title {
    color: var(--shredder-shop-gray-800);
    margin-top: var(--spacing-lg);
}
#shredder-shop-login-form {
    max-width: 500px;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    width: 100%;
}
.shredder-shop-login-form-field {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-sm);
}
.shredder-shop-login-form-field label {
    color: var(--shredder-shop-gray-800);
    font-size: var(--font-size-sm);
}
.shredder-shop-login-form-field input {
    border: 1px solid var(--shredder-shop-gray-400);
    border-radius: var(--border-radius-md);
    background: white;
    font-size: var(--font-size-base);
    line-height: 1.5;
    margin-top: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    width: 100%;
}
#shredder-shop-login-form-remember-me {
    display: none;
}
#shredder-shop-login-form-forgot-password {
    display: none;
}
#shredder-shop-login-form-submit {
    padding: var(--spacing-sm);
}
#shredder-shop-login-form-submit button {
    width: 100%;
}
#shredder-shop-login-signup {
    padding: var(--spacing-sm);
}
#shredder-shop-login-signup #shredder-shop-signup-link {
    width: 100%;
}

/*
 * REGISTER FORM
 */
#shredder-shop-register-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: var(--spacing-4xl);
}
#shredder-shop-register-title {
    color: var(--shredder-shop-gray-800);
    margin-top: var(--spacing-lg);
}
#shredder-shop-register-form {
    max-width: 500px;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    width: 100%;
}
#shredder-shop-register-form .shredder-shop-register-form-row {
    display: flex;
    flex-direction: row;
}
#shredder-shop-register-content #first-name-field {
    flex: 2;
}
#shredder-shop-register-content #last-name-field {
    flex: 2;
}
#shredder-shop-register-content #email-field {
    flex: 2;
}
#shredder-shop-register-content #birthdate-field {
    flex: 1;
}
.shredder-shop-register-form-field {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-sm);
}
.shredder-shop-register-form-field label {
    color: var(--shredder-shop-gray-800);
    font-size: var(--font-size-sm);
}
.shredder-shop-register-form-field input {
    border: 1px solid var(--shredder-shop-gray-400);
    border-radius: var(--border-radius-md);
    background: white;
    font-size: var(--font-size-base);
    line-height: 1.5;
    margin-top: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    width: 100%;
}
#shredder-shop-register-form-remember-me {
    display: none;
}
#shredder-shop-register-form-forgot-password {
    display: none;
}
#shredder-shop-register-form-submit {
    padding: var(--spacing-sm);
}
#shredder-shop-register-form-submit button {
    background: var(--shredder-shop-primary-button-color);
    border: 0;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    padding: var(--spacing-sm) var(--spacing-lg);
    width: 100%;
}
#shredder-shop-register-form-submit button {
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: white;
}


/*
 * CART
 */
#shredder-shop-cart-panel {
    width: var(--shredder-shop-cart-width);
    background-color: white;
    border-left: 1px solid var(--shredder-shop-gray-300);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.shredder-shop-cart-header-container {
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--shredder-shop-gray-300);
    flex-shrink: 0;
    font-size: var(--font-size-lg);
    padding: var(--spacing-sm) 0;
}

.shredder-shop-cart-header-title {
    color: var(--shredder-shop-primary-color);
    font-weight: bold;
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
}

.shredder-shop-cart-header-count {
    font-size: var(--font-size-base);
}

.shredder-shop-cart-header-count-number {
    font-weight: bold;
}

.shredder-shop-cart-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.shredder-shop-cart-items-container {
    background: var(--shredder-shop-gray-50);
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-sm);
}

.shredder-shop-cart-item {
    background: white;
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--shredder-shop-gray-400);
    font-size: var(--font-size-sm);
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
}

.shredder-shop-cart-remove-item-btn {
    background: none;
	color: var(--shredder-shop-red-600);
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

.shredder-shop-cart-item-info {
    flex: 1;
}

.shredder-shop-cart-item-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    border-top: 1px solid var(--shredder-shop-gray-400);
}

.shredder-shop-cart-item-name {
    padding-top: var(--spacing-sm);
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    font-weight: bold;
}

.shredder-shop-cart-item-price {
    font-weight: 600;
    color: var(--shredder-shop-green-600);
}

.shredder-shop-cart-footer {
    margin-top: auto;
    flex-shrink: 0;
    padding: var(--spacing-lg);
    border-top: 1px solid var(--shredder-shop-gray-300);
}

.shredder-shop-cart-cost-breakdown {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}
.shredder-shop-cart-cost-breakdown-line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: var(--font-size-sm);
}

.shredder-shop-cart-total {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: var(--font-size-lg);
    font-weight: bold;
    line-height: 1.5;
}

.shredder-shop-cart-empty {
    text-align: center;
    color: var(--shredder-shop-gray-700);
    font-style: italic;
    padding: var(--spacing-2xl) 0;
}

.shredder-shop-checkout-button {
    width: 100%;
    background-color: var(--shredder-shop-secondary-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    margin-top: var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

.shredder-shop-checkout-button:hover {
    background-color: var(--shredder-shop-secondary-color-dark);
}

.shredder-shop-checkout-button[disabled] {
    background-color: var(--shredder-shop-gray-600);
    cursor: not-allowed;
    opacity: 0.6;
}

.shredder-shop-checkout-button .shredder-shop-checkout-icon {
    margin-right: var(--spacing-lg);
    width: 32px;
}

/*
 * CART: Mobile & Responsiveness
 */
@media (max-width: 1024px) {
    #shredder-shop-cart-panel {
        display: none;
    }
}



/*
 * GENERAL MOBILE & RESPONSIVENESS
 */
@media (max-width: 768px) {
    .shredder-shop-content {
        /*padding: 1rem;*/
    }
    .shredder-shop-add-to-cart-form {
        flex-direction: column;
        align-items: stretch;
    }
    .shredder-shop-add-to-cart-button {
        margin-top: var(--spacing-lg);
    }
    #shredder-order-confirmation-wrapper {
        padding-top: 0;
    }
    #shredder-order-confirmation-container {
        margin-top: 0;
    }
}
@media (max-width: 1024px) {
    .shredder-shop-content{
        padding-bottom: 150px;
    }
    /*.shredder-shop-product-list {*/
    /*    margin-bottom: 150px;*/
    /*}*/
    /*#checkout-step-buttons.additional-information-step {*/
    /*    margin-bottom: 150px;*/
    /*}*/
    /*#shredder-checkout-customer-information-form {*/
    /*    margin-bottom: 150px;*/
    /*}*/
    /*#checkout-step-buttons.payment-step {*/
    /*    margin-bottom: 150px;*/
    /*}*/
    /*#shredder-order-confirmation-wrapper {*/
    /*    margin-bottom: 150px;*/
    /*}*/
}


/*
 * CHECKOUT: Navigation Buttons
 */
#checkout-step-buttons {
    display: flex;
    justify-content: space-between;
    /*margin-bottom: var(--spacing-2xl);*/
    /*margin-top: var(--spacing-2xl);*/
}
#next-step-button-container {
    margin-left: auto;
}
#checkout-step-buttons .step-button {
    padding: var(--spacing-sm) var(--spacing-lg);
    /* font-size: var(--font-size-sm); */
    flex-direction: row;
    align-items: center;
    font-weight: 500;
}
#checkout-step-buttons .step-button:hover {
    background: var(--shredder-shop-primary-button-color-light);
}
#checkout-step-buttons .step-button .icon {
    width: var(--spacing-xl);
    height: var(--spacing-xl);
}
#previous-step-button .icon {
    margin-right: var(--spacing-md);
}
#next-step-button .icon {
    margin-left: var(--spacing-md);
}


/*
 * CHECKOUT: Navigation buttons Mobile & Responsiveness
 */
@media (max-width: 1024px) {
    #checkout-step-buttons .step-button {
        display: flex;
        gap: 0;
        justify-content: space-between;
        /*margin-bottom: var(--spacing-2xl);*/
        /*margin-top: var(--spacing-2xl);*/
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/*
 * CHECKOUT: Participant Assignment Step
 */
#shredder-checkout-group-management {
    background: var(--shredder-shop-gray-200);
    padding: var(--spacing-lg);
}
#group-management-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-xs);
}
#group-management-title {
    font-size: var(--font-size-2xl);
}
#shredder-checkout-container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: var(--spacing-lg);
    padding-bottom: var(--spacing-3xl);
}

#participant-dialog {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: auto;
    max-width: 500px;
    inset: 0;
    width: 90%;
}

#participant-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

#participant-dialog .dialog-header {
    background-color: var(--shredder-shop-gray-100);
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--shredder-shop-gray-300);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#participant-dialog .dialog-title {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: 600;
}
#participant-dialog .close-button {
    background: none;
    border: none;
    font-size: var(--font-size-xl);
    cursor: pointer;
    padding: var(--spacing-xs);
}
#participant-dialog .dialog-content {
    padding: var(--spacing-xl);
}

#new-participant-button-prefix {
    margin-right: var(--spacing-md);
}

#new-participant-button {
    font-weight: 600;
    font-size: var(--font-size-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    padding-right: 18px;
    height: 36px;
}
#new-participant-button:hover {
    background: var(--shredder-shop-secondary-color-light);
}

#shredder-checkout-group-management .participants-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

#shredder-checkout-group-management .participant-card {
    background: white;
    border: 1px solid var(--shredder-shop-gray-300);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: row;
    width: 300px;
    gap: var(--spacing-md);
}

#shredder-checkout-group-management .participant-info {
    display: flex;
    flex-direction: column;
    word-break: break-word;
}
#shredder-checkout-group-management .participant-email-missing {
    color: var(--shredder-shop-red-500);
    font-size: var(--font-size-sm);
}
#shredder-checkout-group-management .participant-dependent {
    color: var(--shredder-shop-blue-600);
    font-size: var(--font-size-sm);
}
#shredder-checkout-group-management .profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--shredder-shop-gray-50);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    position: relative;
}

#shredder-checkout-group-management .image-actions {
    display: flex;
    position: absolute;
    flex-direction: column;
    /* gap: 0.5rem;
    flex-wrap: wrap; */
}

#shredder-checkout-group-management .image-actions .btn-upload {
    background: transparent;
    text-decoration: underline;
    font-weight: 400;
    font-size: var(--font-size-sm);
    color: var(--shredder-shop-gray-800);
    text-decoration-color: var(--shredder-shop-gray-800);
}

#shredder-checkout-group-management .profile-image .image-actions .btn {
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

#shredder-checkout-group-management .profile-image.image-present .image-actions:hover .btn {
    line-height: 1.75;
}

#shredder-checkout-group-management .profile-image.image-present .image-actions .btn-upload {
    color: transparent;
    text-decoration: none;
}
#shredder-checkout-group-management .profile-image.image-present .image-actions:hover .btn-upload {
    background: rgba(0,0,0,0.3);
    color: white;
    text-shadow: 1px 1px 1px black;
    text-decoration: underline;
}
#shredder-checkout-group-management .profile-image.image-present .image-actions .btn-upload:hover {
    background: rgba(0,0,0,0.8);
}
#shredder-checkout-group-management .profile-image.image-present .image-actions .btn-delete {
    background: none;
    color: transparent;
    text-decoration: none;
}
#shredder-checkout-group-management .profile-image.image-present .image-actions:hover .btn-delete {
    background: rgba(220, 38, 38, 0.5);
    color: white;
    text-shadow: 1px 1px 1px black;
    text-decoration: underline;
}
#shredder-checkout-group-management .profile-image.image-present .image-actions .btn-delete:hover {
    background: rgba(203, 19, 19, 0.85);
}

#shredder-checkout-group-management .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#shredder-checkout-group-management .participant-name {
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

#shredder-checkout-group-management .participant-email {
    font-size: var(--font-size-sm);
    color: var(--shredder-shop-gray-700);
    margin-bottom: var(--spacing-xs);
}
#participantDialog .input-description {
    margin-top: var(--spacing-xs);
    font-size: var(--font-size-xs);
    color: var(--shredder-shop-gray-700);
}

#shredder-checkout-group-management .participant-age {
    font-size: var(--font-size-sm);
    color: var(--shredder-shop-gray-700);
    margin-bottom: var(--spacing-xs);
}

/*
 * CHECKOUT: Participant Assignment Step Responsiveness
 */
@media (max-width: 1024px) {
    #shredder-checkout-group-management {
        /*margin-bottom: 90px;*/
        padding: var(--spacing-lg);
    }
    #shredder-checkout-group-management .participants-grid {
        justify-content: space-between;
    }
    #shredder-checkout-group-management .participant-card {
        /* flex-grow: 1; */
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    #new-participant-button {
        font-size: var(--font-size-xs);
    }
}
@media (max-width: 768px) {
    #participant-assignments .participant-assignment-item {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    #shredder-checkout-custom-forms-container .cart-item-form-header-title {
        font-size: var(--font-size-lg);
    }
    #shredder-checkout-group-management .participants-grid {
        justify-content: space-around;
    }
    #shredder-checkout-group-management .participant-card {
        flex: 1 1 100%;
        max-width: 450px;
    }
}

/* CHECKOUT: Progress Steps - Clean, no lines */
.checkout-progress {
    margin-top: var(--spacing-lg);
}

.progress-steps {
    display: flex;
    font-size: var(--font-size-xl);
    font-weight: bold;
    width: 100%;
    color: var(--shredder-shop-gray-800);
    justify-content: center;
    /*margin-bottom: var(--spacing-2xl);*/
    align-items: center;
}

/*.progress-steps .step {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    gap: var(--spacing-xs);*/
/*}*/

/* Step number styling */
/*.progress-steps .step-number {*/
/*    color: var(--shredder-shop-gray-600);*/
/*    width: 32px;*/
/*    height: 32px;*/
/*    border-radius: var(--border-radius-infinite);*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    line-height: 0;*/
/*    background-color: var(--shredder-shop-gray-300);*/
/*    font-weight: 600;*/
/*}*/

/* Step name styling */
/*.progress-steps .step-name {*/
/*    font-size: 12px;*/
/*    text-align: center;*/
/*    color: var(--shredder-shop-gray-600);*/
/*    white-space: nowrap;*/
/*}*/

/*!* Current step styling *!*/
/*.progress-steps .step.current .step-number {*/
/*    background: var(--shredder-shop-primary-color);*/
/*    color: white;*/
/*}*/

/*.progress-steps .step.current .step-name {*/
/*    color: var(--shredder-shop-primary-color);*/
/*    font-weight: 600;*/
/*}*/

/*!* Completed step styling *!*/
/*.progress-steps .step.completed .step-number {*/
/*    background-color: var(--shredder-shop-green-300);*/
/*    color: white;*/
/*}*/

/*.progress-steps .step.completed .step-name {*/
/*    color: var(--shredder-shop-green-600);*/
/*}*/


/* CHECKOUT: Participant Assignment Step */
#participant-assignments {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}
#participant-assignments .participant-assignment-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-lg);
    padding-bottom: var(--spacing-2xl);
    border: 1px solid var(--shredder-shop-gray-300);
    width: 100%;
}
#participant-assignments .participant-assignment-item .product-name {
    font-size: var(--font-size-2xl);
}
#participant-assignments .participant-assignment-item .participant-label {
    font-size: var(--font-size-sm);
    font-weight: bold;
}
#participant-assignments .participant-assignment-item .participant-select {
    border: 1px solid var(--shredder-shop-gray-400);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-sm);
    font-size: 16px;
}
#participant-assignments .participant-assignment-item .participant-select:focus {
    border-color: var(--shredder-shop-blue-400);
}
#participant-assignments .participant-assignment-item .participant-select option:first-child {
    color: var(--shredder-shop-gray-600);
}
#participant-assignments .participant-assignment-item .participant-selection .no-participants-message {
    color: var(--shredder-shop-red-600);
    font-size: var(--font-size-xs);
    max-width: 177px;
    line-height: 1;
    margin-top: 2px;
}
#participant-assignments .participant-assignment-item .participant-selection .select-wrapper {
    display: flex;
    flex-direction: column;
}


/* CHECKOUT: Custom Forms Step */
#shredder-checkout-custom-forms-container {
    border: 1px solid var(--shredder-shop-gray-400);
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--spacing-2xl);
    overflow: hidden;
}

#shredder-checkout-custom-forms-container .cart-item-forms {
    background: var(--shredder-shop-gray-100);
}
#shredder-checkout-custom-forms-container .cart-item-forms:not(:last-child) {
    border-bottom: 1px solid var(--shredder-shop-gray-400);
}
#shredder-checkout-custom-forms-container .cart-item-form-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
    cursor: pointer;
}
#shredder-checkout-custom-forms-container .cart-item-form-header .cart-item-form-header-icon {
    transition: transform 0.3s ease;
}
#shredder-checkout-custom-forms-container .cart-item-form-header.open .cart-item-form-header-icon {
    transform: rotate(180deg);
}
#shredder-checkout-custom-forms-container .cart-item-form-header:not(.open) {
    background: var(--shredder-shop-gray-50);
}
#shredder-checkout-custom-forms-container .cart-item-form-header:not(.open):hover {
    background: var(--shredder-shop-gray-100);
}
#shredder-checkout-custom-forms-container .cart-item-form-header-title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    font-size: var(--font-size-2xl);
    font-weight: bold;
}
#shredder-checkout-custom-forms-container .cart-item-form-header-icon {
    width: 16px;
    height: 16px;
}
#shredder-checkout-custom-forms-container .custom-form-sections-container {
    overflow-y: scroll;
    transition: max-height 0.3s ease;
    max-height: 0;
}
#shredder-checkout-custom-forms-container .custom-form-sections-container.open {
    max-height: 1000px; /* or whatever max height makes sense */
}
#shredder-checkout-custom-forms-container .custom-form-sections-container-inner {
    padding: var(--spacing-lg);
    padding-top: var(--spacing-sm);
}

#shredder-checkout-custom-forms-container .custom-form-section:not(:last-child) {
    border-bottom: 1px solid var(--shredder-shop-gray-300);
    margin-bottom: var(--spacing-xl);
}
#shredder-checkout-custom-forms-container .custom-form-section .custom-form-title {
    font-size: var(--font-size-base);
    color: var(--shredder-shop-gray-800);
    margin-bottom: var(--spacing-lg);
}
#shredder-checkout-custom-forms-container .custom-form-section .form-label {
    font-size: var(--font-size-sm);
    font-weight: normal;
}
#shredder-checkout-custom-forms-container .custom-form-section .form-group {
    margin-left: var(--spacing-sm);
}
#shredder-checkout-custom-forms-container .custom-form-section .checkbox-single {
    display: flex;
    flex-direction: row;
}
#shredder-checkout-custom-forms-container .custom-form-section .checkbox-single .form-checkbox {
    width: 24px;
    height: 18px;
}
#shredder-checkout-custom-forms-container .custom-form-section .checkbox-single .checkbox-label {
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    margin-bottom: 0;
}
#shredder-checkout-custom-forms-container .custom-form-section .checkbox-single .checkbox-text {
    padding-left: var(--spacing-lg);
    font-weight: normal;
    font-size: var(--font-size-sm);
    flex: 1;
}
#shredder-checkout-custom-forms-container .custom-form-section .form-textarea {
    min-height: 60px;
    min-width: 300px;
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: var(--font-size-base);
}

/* CHECKOUT: Customer Information Step */
#shredder-checkout-customer-information-form .form-grid {
    display: flex;
    flex-direction: column;
}
#shredder-checkout-customer-information-form .form-row {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-lg);
}
#shredder-checkout-customer-information-form .form-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
#shredder-checkout-customer-information-form .form-label {
    font-weight: normal;
}
#shredder-checkout-customer-information-form .form-group input {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-base);
    line-height: 1.5;
}
#same-as-billing-container {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}
#shipping-address-fields {
    margin-bottom: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    border-top: 1px solid black;
    padding-top: var(--spacing-lg);
}
#shipping-address-fields.hidden {
    display: none;
}
#shipping-address-fields-title {
    font-size: var(--font-size-2xl);
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
}

/* CHECKOUT: Waiver Section Styles */
#waiver-title {
    font-size: var(--font-size-lg);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
}

div[id^="waiver-item-"] {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

input[id^="waiver-"] {
    border: 1px solid var(--shredder-shop-gray-400);
    margin-top: var(--spacing-xs);
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
}

label[id^="waiver-label-"] {
    font-size: var(--font-size-sm);
    line-height: 1.4;
    cursor: pointer;
}

/* CHECKOUT: Payment */
#payment-element {
    padding: var(--spacing-md);
    border: 1px solid var(--shredder-shop-gray-400);
    border-radius: var(--border-radius-sm);
    min-height: 40px;
    background-color: white;
}
#payment-element:focus-within {
    border-color: var(--shredder-shop-blue-400);
    box-shadow: 0 0 0 1px var(--shredder-shop-blue-400);
}
#payment-submit-button {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    border: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}
#payment-submit-button:enabled {
    background-color: var(--shredder-shop-primary-color);
    color: white;
}
#payment-submit-button:enabled:hover {
    background-color: var(--shredder-shop-primary-color-dark);
}
#payment-submit-button:disabled {
    background-color: var(--shredder-shop-gray-500);
    color: var(--shredder-shop-gray-700);
    cursor: not-allowed;
}


/*
 * CHECKOUT: Payment Error Display Styles
 */
#payment-error-display {
    background-color: var(--shredder-shop-error-background-color);
    border: 1px solid var(--shredder-shop-error-border-color);
    color: var(--shredder-shop-error-text-color);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--spacing-lg);
}
#payment-error-text {
    font-size: var(--font-size-md);
    font-weight: 500;
}
#payment-button-text {
    font-weight: 500;
}
#payment-errors {
    color: var(--shredder-shop-red-900);
    font-size: var(--font-size-sm);
    margin-top: var(--spacing-xs);
}


/*
 * CHECKOUT: Order Confirmation page
 */
#shredder-order-confirmation-wrapper {
    background: var(--shredder-shop-gray-100);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-3xl);
}
#shredder-order-confirmation-container {
    background: white;
    max-width: 48rem;
    margin-inline: auto;
    margin-top: var(--spacing-xl);
    border: 1px solid var(--shredder-shop-gray-200);
}
.shredder-order-confirmation-section {
    padding: var(--spacing-xl);
}
#shredder-order-confirmation-header {
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--shredder-shop-gray-200);
}
#shredder-order-confirmation-header #shredder-shop-page-title {
    margin: 0;
}
#shredder-order-confirmation-subtitle {
    font-size: var(--font-size-xs);
    color: var(--shredder-shop-gray-700);
    padding: 0px var(--spacing-lg);
}
#shredder-order-confirmation-details {
    border-bottom: 1px solid var(--shredder-shop-gray-200);
}
#shredder-order-confirmation-info-grid {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
}
#shredder-order-confirmation-info-grid > div {
    flex-grow: 1;
}
#shredder-order-confirmation-info-grid .shredder-order-confirmation-label {
    color: var(--shredder-shop-gray-700);
    font-size: var(--font-size-sm);
    font-weight: bold;
}
#shredder-order-confirmation-info-grid .shredder-order-confirmation-value {
    color: black;
    font-size: var(--font-size-base);
    font-weight: bold;
}
.shredder-order-confirmation-section-title {
    font-size: clamp(1.35rem,3vw + 0.85rem,2.5rem);
}
#shredder-order-confirmation-items {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}
#shredder-order-confirmation-items .order-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: var(--spacing-md);
}
#shredder-order-confirmation-items .order-item {
    line-height: 1.5;
}
#shredder-order-confirmation-items .order-item-name {
    font-size: var(--font-size-md);
}
#shredder-order-confirmation-items .order-item-price {
    font-size: var(--font-size-md);
}
#shredder-order-confirmation-items .order-item-participant {
    color: var(--shredder-shop-gray-700);
    font-size: var(--font-size-sm);
    padding-left: var(--spacing-sm);
    font-weight: normal;
}
#shredder-order-confirmation-items .order-item-fields {
    list-style: none;
    padding-left: var(--spacing-sm);
}
#shredder-order-confirmation-items .order-item-field {
    color: var(--shredder-shop-gray-700);
    font-weight: normal;
    font-size: var(--font-size-sm);
}
#shredder-order-confirmation-pricing .breakdown-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: var(--spacing-md);
    font-size: var(--font-size-sm);
    color: var(--shredder-shop-gray-700);
}
#shredder-order-confirmation-pricing .breakdown-item .breakdown-label {
    color: var(--shredder-shop-gray-700);
}
#shredder-order-confirmation-pricing .breakdown-item .breakdown-value {
    color: var(--shredder-shop-gray-900);
}
#shredder-order-confirmation-service-fees {
    list-style: none;
    font-size: var(--font-size-sm);
    padding-left: var(--spacing-md);
}
#shredder-order-confirmation-service-fees .service-fee-detail {
    border-left: 1px solid var(--shredder-shop-gray-400);
    color: var(--shredder-shop-gray-700);
    padding-left: var(--spacing-sm);
}
#shredder-order-confirmation-breakdown-total {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: var(--spacing-md);
}
#shredder-order-confirmation-breakdown-total .breakdown-label {
    font-size: var(--font-size-2xl);
    font-weight: bold;
}
#shredder-order-confirmation-breakdown-total .breakdown-value {
    font-size: var(--font-size-2xl);
    font-weight: bold;
}
#shredder-order-confirmation-footer {
    color: var(--shredder-shop-gray-700);
    font-size: var(--font-size-sm);
}

/* CHECKOUT: Add-on Step */
#shredder-checkout-addons-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

#addons-section .addon-group {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

#addons-section .product-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

#addons-section .product-name {
    margin: 0;
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}

#addons-section .addon-item {
    border-bottom: 1px solid #eee;
}

#addons-section .addon-item:last-child {
    border-bottom: none;
}

#addons-section .addon-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
}

#addons-section .addon-details {
    flex: 1;
}

#addons-section .addon-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

#addons-section .addon-description {
    font-size: 1rem;
    margin-bottom: 5px;
}

#addons-section .addon-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--shredder-shop-green-600);
}

#addons-section .addon-form {
    margin-left: 15px;
}

.add-to-cart-btn {
    background-color: #4AB6B9;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.add-to-cart-btn:hover {
    background-color: #3a9a9c;
}

.add-to-cart-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.no-addons-message {
    text-align: center;
    padding: 40px;
    color: #666;
}

#checkout-step-buttons {
    display: flex;
    justify-content: space-between;
    margin: 24px 0;
    /*margin-top: 30px;*/
    /*padding-top: 20px;*/
}

.step-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--shredder-shop-secondary-button-color);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.step-button:hover {
    background-color: #c5621a;
    color: white;
    text-decoration: none;
}

.step-button .icon {
    width: 16px;
    height: 16px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 8px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-header {
    padding: 20px 20px 0 20px;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.modal-body {
    padding: 15px 20px;
}

.modal-body p {
    margin: 0;
    color: #666;
    text-align: center;
}

.modal-actions {
    padding: 0 20px 20px 20px;
    display: flex;
    justify-content: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    #shredder-checkout-addons-wrapper {
        padding: 15px;
    }

    #addons-section .addon-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    #addons-section .addon-form {
        margin-left: 0;
        width: 100%;
    }

    .shredder-shop-add-to-cart-button {
        width: 100%;
        padding: var(--spacing-md);
    }

    #checkout-step-buttons {
        /* flex-direction: column;
        gap: 10px; */
    }

    .step-button {
        justify-content: center;
        font-size: var(--font-size-sm);
    }
}
