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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%);
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 30px;
    width: 100%;
}

/* LEFT SECTION */
.left-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    min-width: 0;
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.discount-banner {
    background: linear-gradient(135deg, #1eae45 0%, #3ed266 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    max-width: 100%;
    overflow: hidden;
}

.banner-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.banner-content strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.banner-content p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.95;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.highlight {
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.courses-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.course-item {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    max-width: 100%;
    overflow: hidden;
}

.course-item:hover {
    border-color: #0891B2;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.course-item.selected {
    border-color: #0891B2;
    background: #f8f9ff;
}

.course-item.discounted .discounted-price {
    display: block;
}

.course-item.discounted .price {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 16px;
}

.course-checkbox {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: #0891B2;
}

.course-item label {
    display: block;
    padding: 20px 20px 20px 60px;
    cursor: pointer;
}

.course-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.course-details {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.course-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #0991b2;
}

.discounted-price {
    display: none;
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-section {
    margin-top: 40px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.user-type {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #667eea;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-input {
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* RIGHT SECTION */
.right-section {
    position: sticky;
    top: 20px;
    height: fit-content;
    width: 100%;
    min-width: 0;
}

.cart-header {
    background: #0991B2;
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    cursor: default;
}

.cart-header h2 {
    font-size: 24px;
    font-weight: 600;
}

.cart-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header-left {
    flex: 1;
}

.cart-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-mini-info {
    display: none;
    margin-top: 5px;
}

.mini-savings {
    font-size: 14px;
    opacity: 0.95;
    font-weight: 500;
}

.mini-total {
    display: none;
    font-size: 22px;
    font-weight: 700;
}

.cart-toggle-icon {
    display: none;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cart-content {
    background: white;
    padding: 30px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
}

.empty-icon {
    font-size: 60px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.empty-cart p {
    font-size: 16px;
}

.cart-items {
    display: none;
}

.cart-items.active {
    display: block;
}

.cart-item {
    padding: 15px;
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 12px;
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.cart-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #667eea;
}

.cart-item-price.discounted-item {
    color: #10b981;
}

.cart-item-details {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.original-price {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
}

.savings-badge {
    display: none;
    background: #FDE046;
    color: #000024;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    animation: pulse 2s ease infinite;
}

.savings-badge.active {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.savings-icon {
    font-size: 24px;
}

.savings-text {
    font-size: 15px;
}

.quantity-selector {
    display: none;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border: 2px solid #bae6fd;
}

.quantity-selector.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.quantity-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-align: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    font-size: 24px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover:not(:disabled) {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.quantity-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quantity-input {
    width: 80px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    border: 3px solid #667eea;
    border-radius: 10px;
    background: white;
    outline: none;
}

.quantity-hint {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    font-style: italic;
}

.cart-summary {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;
    color: #4b5563;
}

.discount-row {
    color: #10b981;
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 15px 0;
}

.total-row {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.total-row span:last-child {
    color: #0991b2;
}

.checkout-btn {
    width: 100%;
    max-width: 100%;
    padding: 18px;
    background: #f59e0b;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    box-sizing: border-box;
}

.checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    background: #ea580c;
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* DATE SELECTOR */
.date-selector {
    display: block;
    padding: 20px;
    background: #f0f4ff;
    border-top: 2px solid #e5e7eb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.date-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.date-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.date-option {
    position: relative;
    display: block;
    cursor: pointer;
    margin-left: 0!important;
    padding-left: 0!important;
}

.date-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.date-info {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.date-option:hover .date-info {
    border-color: #0891B2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.date-option input[type="radio"]:checked + .date-info {
    border-color: #0891B2;
    background: #0891B2;
    color: white;
}

.date-info strong {
    font-size: 16px;
    margin-bottom: 5px;
}

.date-info span {
    font-size: 14px;
    opacity: 0.8;
}

.date-option input[type="radio"]:checked + .date-info span {
    opacity: 1;
    color: white;
}

.partial-date-notice {
    font-size: 0.85em;
    font-style: italic;
    display: block;
    margin-top: 4px;
    color: #666;
}

.date-option input[type="radio"]:checked + .date-info .partial-date-notice {
    color: rgba(255, 255, 255, 0.9);
}

/* FAQ SECTION */
.faq-section {
    max-width: 1400px;
    margin: 60px auto 40px;
    padding: 0 20px;
    width: 100%;
    overflow: hidden;
}

.faq-container {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    overflow: hidden;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0891B2;
}

.faq-item.active {
    border-color: #0891B2;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9ff;
}

.faq-item.active .faq-question {
    background: #f8f9ff;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding-right: 10px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #0891B2;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9ff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* INVOICE FORM STYLES */
.invoice-form input[type="text"],
.invoice-form input[type="email"],
.invoice-form input[type="phone"],
.invoice-form input[type="number"],
.invoice-form select {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: #1a1a1a;
}

.invoice-form input[type="text"]:focus,
.invoice-form input[type="email"]:focus,
.invoice-form input[type="phone"]:focus,
.invoice-form input[type="number"]:focus,
.invoice-form select:focus {
    outline: none;
    border-color: #0891B2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.invoice-form input[type="text"]::placeholder,
.invoice-form input[type="email"]::placeholder,
.invoice-form input[type="phone"]::placeholder {
    color: #9ca3af;
    font-size: 15px;
}

.invoice-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.invoice-form select option {
    padding: 10px;
}

.invoice-form input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #0891B2;
    margin: 0;
}

.invoice-form label[for^="rdb"] {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.invoice-form .error {
    color: #ef4444;
    font-size: 13px;
    margin-top: -10px;
    margin-bottom: 10px;
    display: block;
}

.invoice-form input.error,
.invoice-form select.error {
    border-color: #ef4444;
}

.invoice-form input.error:focus,
.invoice-form select.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .right-section {
        position: relative;
        top: 0;
        max-width: 600px;
        margin: 0 auto;
    }

    .left-section {
        max-width: 100%;
    }
}

/* Mobile cart backdrop overlay */
.cart-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-backdrop.active {
    opacity: 1;
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .container {
        gap: 20px;
    }

    .left-section {
        padding: 25px 20px;
    }

    .main-title {
        font-size: 26px;
    }

    .cart-content {
        padding: 25px 20px;
    }

    .discount-banner {
        padding: 18px 20px;
    }
}

/* Hide mobile checkout button on desktop by default */
.mobile-checkout-trigger {
    display: none;
}

@media (max-width: 640px) {
    body {
        padding: 10px 10px 180px 10px; /* Extra padding bottom for fixed cart */
        overflow-x: hidden;
    }

    .container {
        gap: 20px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

    .left-section {
        padding: 20px 15px;
        border-radius: 15px;
        overflow: hidden;
    }

    /* Fixed Cart for Mobile */
    .right-section {
        position: fixed !important;
        bottom: 0 !important;
        top: auto !important;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        z-index: 1000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    }

    .cart-header {
        padding: 15px 20px;
        border-radius: 0;
        cursor: pointer;
        user-select: none;
    }

    .cart-header h2 {
        font-size: 16px;
        margin: 0;
    }

    .cart-mini-info {
        display: block;
    }

    .mini-savings {
        font-size: 12px;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        color: white;
        padding: 4px 10px;
        border-radius: 6px;
        font-weight: 600;
        display: inline-block;
    }

    .mini-total {
        display: block;
        font-size: 20px;
    }

    .cart-toggle-icon {
        display: block;
    }

    .right-section.collapsed .cart-toggle-icon {
        transform: rotate(180deg);
    }

    .cart-content {
        max-height: 70vh;
        overflow-y: auto;
        padding: 20px 15px;
        border-radius: 0;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .right-section.collapsed .cart-content {
        max-height: 0;
        padding: 0 15px;
        overflow: hidden;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 22px;
        word-wrap: break-word;
        line-height: 1.3;
    }
/* 
    .discount-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        margin-bottom: 20px;
    } */

    .banner-icon {
        font-size: 32px;
    }

    .banner-content strong {
        font-size: 16px;
    }

    .banner-content p {
        font-size: 13px;
        max-width: 100%;
    }

    .highlight {
        display: inline;
        white-space: normal;
    }

    .courses-list {
        gap: 12px;
    }

    .course-item {
        border-radius: 10px;
    }

    .course-item label {
        padding: 15px 15px 15px 50px;
    }

    .course-checkbox {
        top: 15px;
        left: 15px;
        width: 20px;
        height: 20px;
    }

    .course-content h3 {
        font-size: 16px;
        word-wrap: break-word;
        line-height: 1.4;
    }

    .course-details {
        font-size: 13px;
        line-height: 1.4;
    }

    .course-price {
        flex-wrap: wrap;
        gap: 8px;
    }

    .price {
        font-size: 18px;
    }

    .discounted-price {
        font-size: 20px;
    }

    .date-selector {
        padding: 15px;
    }

    .date-options {
        gap: 8px;
    }


    .date-info {
        padding: 12px;
    }

    .date-info strong {
        font-size: 14px;
    }

    .date-info span {
        font-size: 13px;
    }

    .form-section {
        margin-top: 30px;
    }

    .section-title {
        font-size: 20px;
    }

    .user-type {
        flex-wrap: wrap;
        gap: 15px;
    }

    .form-input {
        padding: 12px;
        font-size: 14px;
    }

    .cart-item {
        padding: 12px;
    }

    .cart-item-title {
        font-size: 14px;
        line-height: 1.4;
        max-width: 65%;
    }

    .cart-item-price {
        font-size: 15px;
        white-space: nowrap;
    }

    .cart-item-details {
        font-size: 12px;
        line-height: 1.4;
    }

    .cart-item-header {
        gap: 10px;
    }

    .quantity-selector {
        padding: 15px;
        margin: 15px 0;
    }

    .quantity-label {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .quantity-input {
        width: 70px;
        height: 45px;
        font-size: 20px;
    }

    .quantity-hint {
        font-size: 11px;
    }

    .savings-badge {
        padding: 12px 15px;
        flex-direction: row;
        gap: 8px;
        text-align: center;
        flex-wrap: nowrap;
    }

    .savings-icon {
        font-size: 20px;
    }

    .savings-text {
        font-size: 13px;
    }

    .summary-row {
        font-size: 14px;
    }

    .total-row {
        font-size: 20px;
    }

    .checkout-btn {
        padding: 15px;
        font-size: 16px;
    }

    .faq-section {
        margin: 40px auto 30px;
    }

    .faq-container {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .faq-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .faq-list {
        gap: 12px;
    }

    .faq-item {
        border-radius: 10px;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-question h3 {
        font-size: 15px;
        line-height: 1.4;
        word-wrap: break-word;
        max-width: calc(100% - 40px);
    }

    .faq-icon {
        font-size: 20px;
        width: 25px;
        height: 25px;
        flex-shrink: 0;
        margin-left: 5px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.6;
        word-wrap: break-word;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }

    /* Previeni overflow su elementi specifici */
    .discount-badge,
    .original-price {
        font-size: 11px;
        white-space: nowrap;
    }

    .summary-row {
        align-items: flex-start;
    }

    .summary-row span:first-child {
        flex: 1;
        min-width: 0;
    }

    .summary-row span:last-child {
        white-space: nowrap;
        margin-left: 10px;
    }

    /* Mobile Checkout Trigger Button */
    .mobile-checkout-trigger {
        display: block;
        width: 100%;
        padding: 18px 24px;
        margin-top: 30px;
        margin-bottom: 30px;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        text-align: center;
        touch-action: manipulation;
    }

    .mobile-checkout-trigger:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    }

    .mobile-checkout-trigger:active {
        transform: translateY(0);
    }
}
