@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --pa-red: #e5002a;
    --pa-blue: #003ecb;
    --pa-gray: #333333;
    --pa-gray-dark: #1a1a1a;
    --pa-gray-light: #666666;
    --pa-muted: #999999;
    --pa-border: #e0e0e0;
    --pa-bg: #f5f5f5;
    --pa-white: #ffffff;
}

.shop-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--pa-gray);
    margin: 0;
    padding: 0;
}

.shop-hero {
    background: var(--pa-white);
    border: none;
    border-radius: 0;
    padding: 20px 0;
    margin: 0 0 20px;
    display: block;
}

.shop-hero__content {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 16px;
}

.shop-hero__content h1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px;
    color: var(--pa-gray-dark);
}

.shop-hero__content p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 15px;
    color: var(--pa-gray-light);
}

.shop-hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    padding: 8px 16px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shop-btn--primary {
    background: var(--pa-red);
    color: #fff;
    border-color: var(--pa-red);
}

.shop-btn--primary:hover {
    background: #c40023;
    border-color: #c40023;
    text-decoration: none;
}

.shop-btn--ghost {
    border-color: var(--pa-border);
    color: var(--pa-gray);
    background: var(--pa-white);
}

.shop-btn--ghost:hover {
    border-color: var(--pa-gray-light);
    color: var(--pa-gray-dark);
    text-decoration: none;
}

.shop-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.shop-stats__item {
    text-align: center;
}

.shop-stats__item strong {
    display: block;
    font-size: 32px;
    color: var(--pa-red);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.shop-card {
    background: var(--pa-white);
    border: 1px solid var(--pa-border);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: all 0.2s ease;
}

.shop-card:hover {
    border-color: var(--pa-gray-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shop-card__media {
    position: relative;
    padding: 15px;
    background: var(--pa-white);
    text-align: center;
}

.shop-card__media img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
}

.shop-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--pa-red);
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
}

.shop-card__body {
    padding: 12px 15px 15px;
}

.shop-card__category {
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
    color: var(--pa-gray-light);
    margin-bottom: 6px;
    line-height: 1.4;
}

.shop-card__title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 8px;
    color: var(--pa-gray-dark);
}

.shop-card__title a {
    color: var(--pa-gray-dark);
    text-decoration: none;
}

.shop-card__title a:hover {
    color: var(--pa-blue);
    text-decoration: underline;
}

.shop-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.shop-card__price strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--pa-red);
    line-height: 1.4;
}

.shop-card__price del {
    color: var(--pa-gray-light);
    font-size: 13px;
    line-height: 1.4;
}

.shop-card__actions {
    display: flex;
    gap: 8px;
}

.shop-card__actions .shop-btn {
    flex: 1;
    padding: 8px 12px;
    font-size: 13px;
}

.product-brand {
    font-size: 12px;
    color: var(--pa-gray-light);
    margin: 0 0 8px;
    line-height: 1.4;
}

.product-brief {
    font-size: 13px;
    color: var(--pa-gray-light);
    line-height: 1.5;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-filter-bar {
    background: var(--pa-white);
    border: none;
    border-bottom: 1px solid var(--pa-border);
    border-radius: 0;
    padding: 15px 0;
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.shop-filter-group label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pa-muted);
    display: block;
    margin-bottom: 6px;
}

.shop-filter-group select,
.shop-filter-group input {
    width: 100%;
    border: 1px solid var(--pa-border);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--pa-gray-dark);
    background: var(--pa-white);
}

.shop-filter-group select:focus,
.shop-filter-group input:focus {
    outline: none;
    border-color: var(--pa-blue);
}

.shop-section {
    margin-bottom: 30px;
}

.shop-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    padding: 0;
}

.shop-detail__quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid var(--pa-border);
    border-bottom: 1px solid var(--pa-border);
}

.shop-detail__quantity label {
    font-size: 14px;
    font-weight: 600;
    color: var(--pa-gray-dark);
    margin: 0;
}

.shop-detail__stock {
    font-size: 13px;
    color: var(--pa-gray-light);
    margin-left: auto;
}

.shop-section__head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--pa-gray-dark);
}

.shop-section__head p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--pa-gray-light);
}

.shop-category-main {
    width: 100%;
    margin-top: 0;
}

.shop-category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.shop-category-list label,
.shop-category-list a {
    font-size: 15px;
    color: var(--pa-gray);
}

.shop-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding: 20px 0;
}

.shop-pagination a,
.shop-pagination span {
    min-width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid var(--pa-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pa-gray-dark);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: all 0.2s ease;
}

.shop-pagination a:hover {
    border-color: var(--pa-blue);
    color: var(--pa-blue);
    text-decoration: none;
}

.shop-pagination .active {
    background: var(--pa-red);
    color: #fff;
    border-color: var(--pa-red);
}

.shop-category-aside {
    background: #fff;
    border: 1px solid var(--pa-border);
    border-radius: 18px;
    padding: 24px;
}

.shop-category-aside h3 {
    margin: 0 0 16px;
    font-size: 18px;
}

.shop-category-list a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--pa-border);
    color: var(--pa-gray);
    font-weight: 500;
}

.shop-category-list a:last-child {
    border-bottom: none;
}

.shop-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    background: #fff;
    border: 1px solid var(--pa-border);
    border-radius: 24px;
    padding: 32px;
}

.shop-detail__media {
    background: var(--pa-bg);
    border-radius: 18px;
    padding: 24px;
    text-align: center;
}

.shop-detail__media img {
    width: 100%;
    max-width: 480px;
    object-fit: contain;
}

.shop-detail__info h1 {
    margin-top: 0;
}

.shop-detail__meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 16px 0;
    color: var(--pa-muted);
    font-size: 14px;
}

.shop-detail__price {
    font-size: 32px;
    color: var(--pa-red);
    font-weight: 700;
    margin-bottom: 16px;
}

.shop-detail__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.product-additional-info {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    color: var(--pa-muted);
}

.product-additional-info li {
    margin-bottom: 6px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 1200px) {
    .shop-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-hero {
        padding: 15px 0;
    }

    .shop-hero__content {
        padding: 0 12px;
    }

    .shop-hero__content h1 {
        font-size: 20px;
    }

    .shop-hero__content p {
        font-size: 13px;
    }

    .shop-filter-bar {
        padding: 12px 0;
        gap: 10px;
    }

    .shop-detail {
        padding: 20px;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .shop-card__media {
        padding: 12px;
    }

    .shop-card__media img {
        height: 150px;
    }

    .shop-card__body {
        padding: 10px 12px 12px;
    }

    .shop-card__title {
        font-size: 13px;
    }

    .shop-card__price strong {
        font-size: 15px;
    }
}

/* Hot Products Module Styles */
.shop-section--hot {
    background: var(--pa-white);
    border: none;
    border-radius: 0;
    padding: 20px 0;
    margin: 20px 0;
}

.shop-section__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--pa-gray-dark);
    margin: 0;
}

.shop-section__icon {
    color: #ff6b6b;
    flex-shrink: 0;
}

.shop-section__subtitle {
    margin: 5px 0 0;
    color: var(--pa-gray-light);
    font-size: 13px;
    line-height: 1.5;
}

.shop-grid--hot {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.shop-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--pa-gray-light);
}

.shop-empty p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.no-products {
    text-align: center;
    padding: 40px 20px;
    background: var(--pa-white);
    border: 1px solid var(--pa-border);
    border-radius: 4px;
}

.no-products h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--pa-gray-dark);
    margin: 0 0 15px;
    line-height: 1.4;
}

.no-products .shop-btn {
    margin-top: 10px;
}

@media (max-width: 1200px) {
    .shop-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .shop-section--hot {
        padding: 24px 16px;
        margin: 24px 0;
    }

    .shop-section__title {
        font-size: 24px;
    }

    .shop-grid--hot {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Cart Styles */
.shop-cart {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 20px;
}

.shop-cart__items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shop-cart-item {
    display: grid;
    grid-template-columns: 120px 1fr 150px 120px 50px;
    gap: 20px;
    padding: 20px;
    background: var(--pa-white);
    border: 1px solid var(--pa-border);
    border-radius: 4px;
    align-items: center;
}

.shop-cart-item__image {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 4px;
    background: var(--pa-bg);
}

.shop-cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-cart-item__info {
    flex: 1;
}

.shop-cart-item__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--pa-gray-dark);
}

.shop-cart-item__title a {
    color: var(--pa-gray-dark);
    text-decoration: none;
}

.shop-cart-item__title a:hover {
    color: var(--pa-red);
}

.shop-cart-item__meta {
    font-size: 13px;
    color: var(--pa-gray-light);
    margin-bottom: 10px;
}

.shop-cart-item__price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-cart-item__price-current {
    font-size: 18px;
    font-weight: 600;
    color: var(--pa-red);
}

.shop-cart-item__price-old {
    font-size: 14px;
    color: var(--pa-muted);
    text-decoration: line-through;
}

.shop-cart-item__discount {
    font-size: 12px;
    padding: 2px 8px;
    background: var(--pa-red);
    color: var(--pa-white);
    border-radius: 3px;
    font-weight: 600;
}

.shop-cart-item__quantity {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shop-quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--pa-border);
    border-radius: 4px;
    overflow: hidden;
}

.shop-quantity-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: var(--pa-bg);
    color: var(--pa-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.shop-quantity-btn:hover {
    background: var(--pa-red);
    color: var(--pa-white);
}

.shop-quantity-input {
    width: 60px;
    height: 35px;
    border: none;
    border-left: 1px solid var(--pa-border);
    border-right: 1px solid var(--pa-border);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.shop-cart-item__stock {
    font-size: 12px;
    color: var(--pa-gray-light);
}

.shop-cart-item__total {
    text-align: right;
}

.shop-cart-item__total-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--pa-red);
}

.shop-cart-item__actions {
    display: flex;
    justify-content: center;
}

.shop-cart-item__remove {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--pa-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.shop-cart-item__remove:hover {
    background: #fee;
    color: var(--pa-red);
}

.shop-cart__summary {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.shop-cart-summary {
    background: var(--pa-white);
    border: 1px solid var(--pa-border);
    border-radius: 4px;
    padding: 20px;
}

.shop-cart-summary__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
    color: var(--pa-gray-dark);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--pa-border);
}

.shop-cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
    color: var(--pa-gray);
}

.shop-cart-summary__row--total {
    border-top: 2px solid var(--pa-border);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--pa-gray-dark);
}

.shop-cart-summary__total {
    font-size: 24px;
    color: var(--pa-red);
}

.shop-cart-summary__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.shop-empty-cart {
    text-align: center;
    padding: 60px 20px;
    background: var(--pa-white);
    border: 1px solid var(--pa-border);
    border-radius: 4px;
}

.shop-empty-cart__icon {
    font-size: 80px;
    color: var(--pa-muted);
    margin-bottom: 20px;
}

.shop-empty-cart h2 {
    font-size: 24px;
    color: var(--pa-gray-dark);
    margin: 0 0 10px;
}

.shop-empty-cart p {
    font-size: 14px;
    color: var(--pa-gray-light);
    margin: 0 0 30px;
}

@media (max-width: 992px) {
    .shop-cart {
        grid-template-columns: 1fr;
    }
    
    .shop-cart__summary {
        position: static;
    }
    
    .shop-cart-item {
        grid-template-columns: 100px 1fr;
        gap: 15px;
    }
    
    .shop-cart-item__quantity,
    .shop-cart-item__total,
    .shop-cart-item__actions {
        grid-column: 1 / -1;
    }
    
    .shop-cart-item__quantity {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .shop-cart-item__total {
        text-align: left;
    }
    
    .shop-cart-item__actions {
        justify-content: flex-end;
    }
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-sidebar.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cart-sidebar__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-sidebar.active .cart-sidebar__overlay {
    opacity: 1;
}

.cart-sidebar__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: var(--pa-white);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.cart-sidebar.active .cart-sidebar__panel {
    transform: translateX(0);
}

.cart-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--pa-border);
    background: var(--pa-white);
    flex-shrink: 0;
}

.cart-sidebar__title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--pa-gray-dark);
}

.cart-sidebar__title-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pa-gray-dark);
    text-decoration: none;
}

.cart-sidebar__title-link:hover {
    color: var(--pa-red);
    text-decoration: none;
}

.cart-sidebar__title-link i {
    font-size: 20px;
    color: var(--pa-red);
}

.cart-sidebar__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--pa-red);
    color: #fff;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 4px;
}

.cart-sidebar__close {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--pa-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 18px;
}

.cart-sidebar__close:hover {
    background: var(--pa-bg);
    color: var(--pa-red);
}

.cart-sidebar__body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
}

.cart-sidebar__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: var(--pa-muted);
    font-size: 14px;
}

.cart-sidebar__loading i {
    margin-right: 10px;
    font-size: 18px;
}

.cart-sidebar__empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--pa-gray-light);
}

.cart-sidebar__empty-icon {
    font-size: 60px;
    color: var(--pa-muted);
    margin-bottom: 15px;
}

.cart-sidebar__empty h4 {
    margin: 0 0 10px;
    font-size: 16px;
    color: var(--pa-gray);
}

.cart-sidebar__empty p {
    margin: 0 0 20px;
    font-size: 14px;
    color: var(--pa-gray-light);
}

.cart-sidebar__items {
    padding: 0;
    margin: 0;
    list-style: none;
}

.cart-sidebar__item {
    display: flex;
    gap: 12px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--pa-border);
    transition: background 0.2s ease;
}

.cart-sidebar__item:hover {
    background: var(--pa-bg);
}

.cart-sidebar__item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: var(--pa-bg);
}

.cart-sidebar__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-sidebar__item-info {
    flex: 1;
    min-width: 0;
}

.cart-sidebar__item-title {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.cart-sidebar__item-title a {
    color: var(--pa-gray-dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-sidebar__item-title a:hover {
    color: var(--pa-red);
}

.cart-sidebar__item-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--pa-red);
    margin-bottom: 8px;
}

.cart-sidebar__item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-sidebar__item-quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--pa-border);
    border-radius: 4px;
    overflow: hidden;
}

.cart-sidebar__item-quantity-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: var(--pa-bg);
    color: var(--pa-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
}

.cart-sidebar__item-quantity-btn:hover {
    background: var(--pa-red);
    color: var(--pa-white);
}

.cart-sidebar__item-quantity-input {
    width: 40px;
    height: 28px;
    border: none;
    border-left: 1px solid var(--pa-border);
    border-right: 1px solid var(--pa-border);
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
}

.cart-sidebar__item-remove {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--pa-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 14px;
    margin-left: auto;
}

.cart-sidebar__item-remove:hover {
    background: #fee;
    color: var(--pa-red);
}

.cart-sidebar__footer {
    border-top: 1px solid var(--pa-border);
    background: var(--pa-white);
    flex-shrink: 0;
    padding: 20px;
}

.cart-sidebar__summary {
    margin-bottom: 15px;
}

.cart-sidebar__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--pa-gray-dark);
}

.cart-sidebar__total {
    font-size: 20px;
    color: var(--pa-red);
}

.cart-sidebar__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-btn--block {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .cart-sidebar__panel {
        max-width: 100%;
    }
}

