/* ==================== PRODUCT DETAIL PAGE ==================== */

/* Breadcrumb */
/* Breadcrumb */
.breadcrumb-wrapper {
    background-color: var(--page-header-bg);
    padding: 1.2rem 0;
    margin-bottom: 1.5rem;
    width: 100%;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #9ca3af;
    padding: 0 8px;
}

.breadcrumb-item a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--primary, #2563eb);
}

.breadcrumb-item.active {
    color: #4b5563;
    font-weight: 500;
}

/* Product Gallery */
/* Product Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    /* Stack main image and thumbs */
    gap: 16px;
}

.product-gallery__main {
    width: 100%;
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
}

.product-gallery__main .swiper-slide {
    overflow: hidden;
    cursor: zoom-in;
}

.product-gallery__image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    padding: 20px;
}

.product-gallery__thumbnails {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.product-gallery-thumbs {
    width: calc(100% - 90px);
    /* Space for arrows */
    height: auto;
    overflow: hidden;
}


.product-gallery__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-gallery__thumb:hover,
.product-gallery-thumbs .swiper-slide-thumb-active .product-gallery__thumb {
    border-color: var(--primary, #2563eb);
}

.product-gallery__nav {
    width: 40px;
    height: 40px;
    background: #e5e5e5;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    /* Make them circular */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.product-gallery__nav:hover {
    background: var(--primary, #2563eb);
    border-color: var(--primary, #2563eb);
    color: #fff;
}

/* Responsive Vertical Gallery for screens > 1000px */
@media (min-width: 1000px) {
    .product-gallery {
        flex-direction: row-reverse;
        align-items: flex-start;
    }

    .product-gallery__main {
        width: calc(100% - 116px);
        height: 500px;
    }

    .product-gallery__image {
        height: 100%;
        max-height: 500px;
    }

    .product-gallery__thumbnails {
        width: 100px;
        height: 500px;
        flex-direction: column;
        margin-top: 0;
    }

    .product-gallery-thumbs {
        width: 100%;
        height: calc(100% - 100px);
        /* Space for nav buttons */
    }

    .product-gallery__nav {
        transform: rotate(90deg);
    }
}

/* Magnifier Styles */
.magnifier-lens {
    position: absolute;
    border: 1px solid #000;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: none;
    display: none;
    z-index: 10;
}

.product-gallery__image-container {
    position: relative;
    overflow: hidden;
}

.product-gallery__zoom-result {
    position: absolute;
    top: 0;
    left: 100%;
    width: 400px;
    height: 400px;
    background-repeat: no-repeat;
    z-index: 1000;
    border: 1px solid #e5e7eb;
    background-color: #fff;
    display: none;
    margin-left: 20px;
}

/* Product Info */
.product-info {
    padding-left: 20px;
}

.product-info__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-info__rating .stars {
    display: flex;
    gap: 3px;
}

.product-info__rating .stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.product-info__rating-count {
    color: #6b7280;
    font-size: 0.85rem;
}

.product-info__title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark-secondary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-info__price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.product-info__price-old {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.product-info__price-current {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary);
}

.product-info__price-badge {
    background: #ef4444;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 400;
}

.product-info__description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Countdown Timer */
.product-info__countdown {
    margin-bottom: 16px;
}

.product-info__countdown-label {
    font-size: 0.9rem;
    color: #1a1a2e;
    display: block;
    margin-bottom: 10px;
}

.product-info__countdown .countdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-info__countdown .countdown-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 5px 5px;
    text-align: center;
    min-width: 50px;
}

.product-info__countdown .countdown-item span {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary, #2563eb);
    line-height: 1;
}

.product-info__countdown .countdown-item small {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: capitalize;
    display: block;
    margin-top: 4px;
}

.product-info__countdown .countdown-separator {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
}

/* Viewers */
.product-info__viewers {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.product-info__viewers i {
    font-size: 1rem;
}

/* Availability */
.product-info__availability {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.product-info__availability-label {
    color: #1a1a2e;
    font-weight: 500;
}

.product-info__availability-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot--success {
    background: #10b981;
}

/* Quantity & Actions */
.product-info__actions {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 12px;
}

.product-info__quantity {
    flex: 0 0 auto;
}

.product-info__quantity-label {
    display: block;
    font-size: 0.85rem;
    color: #1a1a2e;
    font-weight: 500;
    margin-bottom: 8px;
}

.quantity-selector {
    display: flex;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.quantity-selector__btn {
    width: 40px;
    height: 48px;
    background: #f9fafb;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.quantity-selector__btn:hover {
    background: #e5e7eb;
    color: #1a1a2e;
}

.quantity-selector__input {
    width: 40px;
    border: none;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
    background: #fff;
    outline: none;
    appearance: textfield;
    -moz-appearance: textfield;
}

.quantity-selector__input::-webkit-outer-spin-button,
.quantity-selector__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-info__btn {
    flex: 1;
    height: 48px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.product-info__btn--cart {
    background: #1877f2;
    color: #fff;
}

.product-info__btn--cart:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.product-info__btn--buy {
    width: 100%;
    background: #333333;
    color: #fff;
    margin-bottom: 16px;
}

.product-info__btn--buy:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


/* Secondary Actions */
.product-info__secondary-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.product-info__action-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.9rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.product-info__action-link:hover {
    color: var(--primary, #2563eb);
}

.product-info__action-link i {
    font-size: 1.1rem;
}

/* Product Meta */
.product-info__meta {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.product-info__meta-item {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.product-info__meta-label {
    color: #1a1a2e;
    font-weight: 600;
    min-width: 80px;
}

.product-info__meta-value {
    color: #6b7280;
}

/* Accordion */
.product-info__accordion {
    margin-bottom: 24px;
    background: transparent;
}

.accordion-item {
    background: #f8f9fa;
    border: none;
    border-bottom: 2px solid #fff;
    overflow: hidden;
}

.accordion-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.accordion-item:last-child {
    border-bottom: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    color: var(--primary, #2563eb);
}

.accordion-header i:first-child {
    font-size: 1.25rem;
    color: #1a1a2e;
}

.accordion-header span {
    flex: 1;
}

.accordion-icon {
    font-size: 0.9rem;
    color: #6b7280;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out;
    padding: 0 24px;
}

.accordion-item.active .accordion-content {
    /* max-height handled by JS */
    padding-bottom: 20px;
}

.accordion-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Share */
.product-info__share {
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.product-info__share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-info__share-btn:hover {
    background: #f9fafb;
    border-color: var(--primary, #2563eb);
    color: var(--primary, #2563eb);
}

.product-info__share-btn i {
    font-size: 1rem;
}

/* ==================== PRODUCT DESCRIPTION ==================== */
.product-description__wrapper {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.product-description__header {
    background: #fff;
    padding: 0;
    display: flex;
}

.product-description__tab {
    background: transparent;
    border: none;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px 4px 0 0;
}

.product-description__tab.active {
    background: var(--primary, #2563eb);
    color: #fff;
}

.product-description__content {
    border: 1px solid #e5e7eb;
    border-radius: 0px 0px 20px 20px;
    padding: 30px;
}

.product-description__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.product-description__text {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.product-description__banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.product-description__list {
    padding-left: 20px;
    margin-bottom: 24px;
}

.product-description__list li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 0.95rem;
    list-style-type: disc;
}

.product-description__list li::marker {
    color: var(--primary, #2563eb);
}

/* ==================== RELATED PRODUCTS / YOU MAY ALSO LIKE ==================== */
.related-products {
    background: #fff;
}

.related-products__header {
    margin-bottom: 24px;
}

.related-products__title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark-secondary);
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}

.related-products__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: var(--primary, #2563eb);
}

.related-products__slider-wrapper {
    position: relative;
    padding: 0 10px;
}

.related-products-swiper {
    overflow: hidden;
    width: 100%;
}

.related-products-swiper .swiper-wrapper {
    display: flex;
}

.related-products-swiper .swiper-slide {
    height: auto;
    flex-shrink: 0;
}

.related-products .product-card__image-wrapper {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.related-products .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.related-products .product-card__body {
    padding: 12px 8px;
}

.related-products .product-card__brand {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.related-products .product-card__title {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-products .product-card__rating {
    margin-bottom: 6px;
}

.related-products .product-card__rating .stars i {
    font-size: 0.7rem;
    color: #fbbf24;
}

.related-products .product-card__price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-products .product-card__price .old {
    font-size: 0.85rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.related-products .product-card__price .current {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary, #2563eb);
}

/* Related Products Navigation */
.related-products__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.related-products__nav:hover {
    background: var(--primary, #2563eb);
    border-color: var(--primary, #2563eb);
    color: #fff;
}

.related-products__nav--prev {
    left: 0;
}

.related-products__nav--next {
    right: 0;
}

.related-products__nav::after {
    font-size: 12px;
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
    background: #fff;
}

.reviews-section__wrapper {
    background: #fff;
}

.reviews-section__title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark-secondary, #333);
    position: relative;
    display: inline-block;
}

.reviews-section__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: var(--primary, #2563eb);
}

/* Reviews Summary */
.reviews-summary {
    background: #fff;
}

.reviews-summary__score-wrapper {
    line-height: 1;
}

.reviews-summary__score {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4b5563;
    line-height: 1;
}

.reviews-summary__total {
    font-size: 1.25rem;
    color: #9ca3af;
    padding-bottom: 8px;
}

.reviews-summary__count {
    font-size: 0.95rem;
    color: #6b7280;
}

/* Rating Breakdown Progress Bars */
.reviews-summary__breakdown {
    margin-top: 16px;
}

.reviews-progress__item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #6b7280;
}

.star-label {
    min-width: 30px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    color: #4b5563;
}

.star-label i {
    font-size: 0.75rem;
}

.reviews-progress__item .progress {
    background-color: #e5e7eb;
    border-radius: 4px;
}

.count-label {
    min-width: 20px;
    text-align: right;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Write Review Section */
.reviews-summary__write {
    border-color: #e5e7eb !important;
}

.reviews-summary__write-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.stars-interactive {
    display: flex;
    gap: 4px;
}

.stars-interactive i {
    font-size: 1.5rem;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.2s ease;
}

.stars-interactive i:hover {
    color: #fbbf24;
}

.stars-interactive i.active {
    color: #fbbf24;
}

/* Reviews List */
.reviews-list__controls .form-select {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 6px 32px 6px 12px;
    font-size: 0.875rem;
    color: #4b5563;
    background-color: #fff;
}

.reviews-list__controls .form-select:focus {
    border-color: var(--primary, #2563eb);
    box-shadow: 0 0 0 2px rgba(20, 108, 218, 0.1);
}

/* Review Card */
.review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.review-card:last-child {
    margin-bottom: 0;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #d1fae5;
    color: #047857;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.review-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.review-card__rating .stars {
    display: flex;
    gap: 2px;
}

.review-card__rating .stars i {
    font-size: 0.85rem;
    color: #fbbf24;
}

.review-card__date {
    font-size: 0.85rem;
    color: #9ca3af;
    white-space: nowrap;
}

.review-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .related-products__slider-wrapper {
        padding: 0 10px;
    }

    .related-products__nav {
        width: 32px;
        height: 32px;
    }

    .related-products__nav--prev {
        left: -5px;
    }

    .related-products__nav--next {
        right: -5px;
    }

    .reviews-summary__score {
        font-size: 2.5rem;
    }

    .review-card__header {
        flex-wrap: wrap;
    }

    .review-card__date {
        width: 100%;
        margin-top: 8px;
        margin-left: 60px;
    }
}

/* ==================== CART SIDEBAR ==================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay-sidebar.active {
    opacity: 1;
    visibility: visible;
}

/* Header */
.cart-sidebar__header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
}

.cart-sidebar__title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
    color: #1a1a2e;
}

.cart-sidebar__close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.cart-sidebar__close:hover {
    color: #1a1a2e;
}

/* Labels */
.cart-sidebar__labels {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
}

/* Body */
.cart-sidebar__body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

/* Cart Item */
.cart-item {
    display: flex;
    margin-bottom: 24px;
}

.cart-item__image-wrapper {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.cart-item__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item__details {
    flex: 1;
}

.cart-item__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.cart-item__brand {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
}

.cart-item__price-total {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary, #2563eb);
}

.cart-item__title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 4px;
    line-height: 1.4;
    padding-right: 10px;
}

.cart-item__price-unit {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.cart-item__variants p {
    margin: 0;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.cart-item__controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.quantity-selector--small {
    height: 32px;
}

.quantity-selector--small .quantity-selector__btn {
    width: 28px;
    height: 32px;
    font-size: 0.8rem;
}

.quantity-selector--small .quantity-selector__input {
    width: 32px;
    font-size: 0.85rem;
}

.cart-item__remove {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary, #2563eb);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cart-item__remove:hover {
    background: #1d4ed8;
}

/* Footer */
.cart-sidebar__footer {
    padding: 24px;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

.cart-sidebar__note {
    margin-bottom: 20px;
}

.cart-sidebar__note summary {
    font-size: 0.85rem;
    color: #4b5563;
    cursor: pointer;
}

.cart-sidebar__note textarea {
    font-size: 0.85rem;
    border-color: #e5e7eb;
}

.cart-sidebar__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.subtotal-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.subtotal-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
}

.cart-sidebar__tax-note {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 20px;
    text-align: right;
}

.cart-sidebar__actions .btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 576px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}