/* Shop Styles */
.shop-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.shop-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--white);
}

.shop-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.shop-content {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #f3f4f6 100%);
}

.shop-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 16px;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.5;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-add-cart {
    flex: 1;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.btn-view {
    padding: 12px 20px;
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-view:hover {
    background: var(--primary);
    color: var(--white);
}

.shop-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
    font-size: 18px;
}

/* Product Detail Page */
.product-section {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #f3f4f6 100%);
}

.breadcrumbs {
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-detail-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
}

.product-detail-info h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-detail-category {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.product-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-detail-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* Product Specs Sections */
.product-specs-section {
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-secondary, #f8f9fa);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.product-specs-section h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.product-specs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: var(--white);
    border-radius: 8px;
}

.spec-name {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--text-light);
}

/* Sizes and Liters */
.product-sizes-list,
.product-liters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-badge,
.liter-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 20px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.size-badge:hover,
.liter-badge:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

.size-badge.selectable,
.liter-badge.selectable {
    cursor: pointer;
    user-select: none;
}

.size-badge.selectable.selected,
.liter-badge.selectable.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

/* Options */
.product-options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.product-option-item.selectable {
    cursor: pointer;
    user-select: none;
}

.product-option-item.selectable:hover {
    border-color: var(--primary);
    background: var(--bg-secondary, #f8f9fa);
    transform: translateX(5px);
}

.product-option-item.selectable.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary-light, #dbeafe) 0%, var(--white) 100%);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.option-check {
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
    margin-left: 10px;
}

.option-name {
    font-weight: 500;
    color: var(--text-dark);
}

.option-price {
    font-weight: 600;
    color: var(--primary);
}

/* Car Makes and Models */
.product-car-makes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.car-make-badge {
    display: inline-block;
    padding: 10px 18px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 25px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.car-make-badge:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

.product-car-models-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.car-model-group {
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.car-model-make {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--primary);
}

.car-model-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.car-model-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-secondary, #f8f9fa);
    border: 1px solid var(--gray-200);
    border-radius: 15px;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
}

.product-detail-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    padding: 8px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--gray-100);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
}

.quantity-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
}

/* Cart */
.cart-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s;
}

.cart-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    background: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Checkout Modal */
.checkout-modal-content {
    background: var(--white);
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.checkout-modal-content.show {
    opacity: 1;
    transform: scale(1);
}

.checkout-header {
    padding: 25px 30px;
    border-bottom: 2px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    border-radius: 16px 16px 0 0;
}

.checkout-header h2 {
    margin: 0;
    color: var(--white);
    font-size: 24px;
}

.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: var(--gray-50);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 3px solid var(--gray-200);
}

.progress-step.active .step-number {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.progress-step.completed .step-number {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

.progress-step.completed .step-number::before {
    content: '✓';
    font-size: 20px;
}

.step-label {
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    transition: color 0.3s;
}

.progress-step.active .step-label {
    color: var(--primary);
    font-weight: 700;
}

.progress-line {
    width: 80px;
    height: 3px;
    background: var(--gray-200);
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    top: -20px;
}

.progress-line.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.checkout-steps-container {
    padding: 30px;
    flex-grow: 1;
    overflow-y: auto;
    min-height: 300px;
}

.checkout-step-content {
    display: none;
    animation: slideIn 0.4s ease;
}

.checkout-step-content.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-form-group {
    margin-bottom: 20px;
}

.checkout-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.checkout-input {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.checkout-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.payment-options,
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option,
.delivery-option {
    display: block;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option input[type="radio"],
.delivery-option input[type="radio"] {
    display: none;
}

.payment-option-content,
.delivery-option-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s;
    background: var(--white);
}

.payment-option:hover .payment-option-content,
.delivery-option:hover .delivery-option-content {
    border-color: var(--primary);
    background: var(--blue-50);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.payment-option input[type="radio"]:checked + .payment-option-content,
.delivery-option input[type="radio"]:checked + .delivery-option-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.payment-icon,
.delivery-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-option-content strong,
.delivery-option-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.payment-option-content p,
.delivery-option-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

.delivery-option-content small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.checkout-summary {
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--gray-50), var(--blue-50));
    border-top: 2px solid var(--gray-100);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    padding-top: 15px;
    border-top: 2px solid var(--gray-200);
}

.checkout-footer {
    padding: 20px 30px;
    border-top: 2px solid var(--gray-100);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.checkout-footer .btn {
    min-width: 120px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
}

.checkout-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cart-modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

.cart-close:hover {
    color: var(--text-dark);
}

.cart-items {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid var(--gray-200);
    animation: slideInCart 0.4s ease;
    transition: all 0.3s;
    position: relative;
}

.cart-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary);
    transition: width 0.3s;
}

.cart-item:hover {
    background: var(--gray-50);
    transform: translateX(5px);
    padding-left: 20px;
}

.cart-item:hover::before {
    width: 4px;
}

@keyframes slideInCart {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-remove {
    transition: all 0.3s;
}

.cart-item-remove:hover {
    transform: scale(1.2) rotate(10deg);
    color: var(--danger);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s;
}

.cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.1);
    transform: scale(1.2);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-200);
}

.cart-total {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: right;
}

/* Checkout Form */
.checkout-form {
    font-family: 'Inter', sans-serif;
}

.checkout-form .form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.checkout-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.radio-label {
    transition: all 0.3s;
}

.radio-label:hover {
    border-color: var(--primary) !important;
    background: var(--blue-50);
}

.radio-label input[type="radio"]:checked ~ div {
    color: var(--primary);
}

.radio-label input[type="radio"]:checked {
    accent-color: var(--primary);
}

/* Анимации для корзины */
.cart-modal.active {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cart-item-image {
    transition: transform 0.3s;
}

.cart-item:hover .cart-item-image {
    transform: scale(1.1);
}

/* Улучшенные стили для количества в корзине */
.cart-item-actions input[type="number"] {
    transition: all 0.3s;
    border: 2px solid var(--gray-200);
}

.cart-item-actions input[type="number"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* Пульсация кнопки корзины */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cart-button:active {
    animation: pulse 0.3s;
}

.cart-count {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* Payment Page Styles */
.payment-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.payment-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.payment-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.payment-header h1 {
    margin: 0 0 15px 0;
    font-size: 28px;
    color: var(--white);
}

.payment-header p {
    margin: 0;
    font-size: 18px;
    opacity: 0.9;
}

.payment-methods {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.payment-method-card {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
}

.payment-method-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.payment-method-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-icon {
    font-size: 40px;
}

.payment-method-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--text-dark);
}

.payment-method-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.sbp-qr-container,
.sbp-phone-container {
    text-align: center;
    margin: 20px 0;
}

.sbp-phone {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.qr-code {
    display: inline-block;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid var(--gray-200);
}

.qr-spinner {
    width: 150px;
    height: 150px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 8px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-payment {
    width: 100%;
    margin-top: 15px;
}

.payment-info {
    padding: 30px;
    background: var(--gray-50);
    border-top: 2px solid var(--gray-200);
}

.payment-info h3 {
    margin: 0 0 20px 0;
    color: var(--text-dark);
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

.order-item-row:last-child {
    border-bottom: none;
}

.payment-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-300);
    text-align: right;
}

.payment-total strong {
    font-size: 24px;
    color: var(--primary);
}

.payment-actions {
    padding: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    border-top: 2px solid var(--gray-200);
}

/* Order Success Page Styles */
.order-success-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.success-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-container h1 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.success-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.order-details-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 30px 0;
    text-align: left;
}

.order-details-card h2 {
    margin: 0 0 25px 0;
    color: var(--text-dark);
    text-align: center;
}

.order-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.order-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-info-item.full-width {
    grid-column: 1 / -1;
}

.info-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.info-value {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.order-items-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-200);
}

.order-items-section h3 {
    margin: 0 0 20px 0;
    color: var(--text-dark);
}

.order-item-card {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.order-item-info h4 {
    margin: 0 0 10px 0;
    color: var(--text-dark);
}

.order-item-info p {
    margin: 5px 0;
    color: var(--text-light);
    font-size: 14px;
}

.order-item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--gray-50), var(--blue-50));
    border-radius: 8px;
    margin-top: 20px;
    font-size: 24px;
}

.order-total strong {
    color: var(--primary);
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.success-note {
    background: var(--blue-50);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    text-align: left;
}

.success-note p {
    margin: 10px 0;
    color: var(--text-dark);
}

.success-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.success-note a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .shop-hero h1 {
        font-size: 32px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-detail {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .product-detail-image {
        height: 300px;
    }

    .cart-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .cart-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .order-info-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-actions,
    .success-actions {
        flex-direction: column;
    }
    
    .payment-actions .btn,
    .success-actions .btn {
        width: 100%;
    }
}

