/* ========================================
   Modern E-Commerce Styles - Enhanced UI
   ======================================== */

/* Root Variables */
:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-color: #1f2937;
    --gray-color: #6b7280;
    --light-gray: #f3f4f6;
    --border-color: #e5e7eb;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-color);
    background-color: #fff;
    line-height: 1.6;
}

/* Header Styles */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-top {
    background: var(--dark-color);
    color: #fff;
    overflow: hidden;
    position: relative;
}

/* News Ticker Styles */
.ticker-container {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10px 0;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
    padding: 0 50px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.header-top a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.header-top a:hover {
    opacity: 0.8;
}

.header-main {
    padding: 20px 0;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 50px 0 0 50px;
    padding: 12px 20px;
    font-size: 0.95rem;
}

.search-form .btn-primary {
    border-radius: 0 50px 50px 0;
    padding: 12px 30px;
    background: var(--primary-color);
    border: none;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.header-actions a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.header-actions a:hover {
    color: var(--primary-color);
}

.cart-trigger {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger-color);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.header-navigation {
    background: var(--light-gray);
    border-top: 1px solid var(--border-color);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 15px 0;
}
/* Compact header category scroll */
.category-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 12px;
}

.cat-row { display: inline-flex; gap: 18px; min-width: 100%; }

.cat-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    min-width: 96px;
}

.cat-avatar {
    width: 78px; /* bigger like stories */
    height: 78px;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--box-shadow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.cat-avatar img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
}

.cat-label { font-size: 0.95rem; text-align: center; white-space: nowrap; font-weight: 600; }

/* Stories-style hover ring */
.story .cat-avatar {
    position: relative;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    padding: 2px;
}
.story .cat-avatar img { background: #fff; padding: 3px; }

.storiesWrapper { scrollbar-width: none; }
.storiesWrapper::-webkit-scrollbar { display: none; }

.nav-menu a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    margin-bottom: 30px; /* tighter after removing duplicate categories row */
}

.heroSwiper {
    height: 480px;
}

.hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    border-radius: 20px;
    box-shadow: var(--box-shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

/* Categories Section */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.category-card-modern {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
}

.category-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card-modern:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.category-card-modern:hover .category-overlay {
    opacity: 1;
}

.category-overlay i {
    font-size: 3rem;
    color: #fff;
}

.category-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 15px;
    text-align: center;
}

.category-desc {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0 15px 15px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Featured Products Section */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.view-all:hover {
    gap: 10px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--danger-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-icon {
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-category {
    color: var(--gray-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 1.0rem; /* slightly smaller title on cards */
    font-weight: 600;
    color: var(--dark-color);
    margin: 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* allow up to 3 lines */
    -webkit-box-orient: vertical;
    line-height: 1.3;
    min-height: 64px; /* ensure 3rd line never looks cut */
}
.social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.social-proof .sp-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f9fafb;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 4px 10px;
    font-size: 0.85rem; /* smaller like example */
    color: var(--gray-color);
}

.social-proof .sp-icon {
    color: var(--primary-color);
}

.social-proof .sp-count {
    font-weight: 700;
    color: var(--dark-color);
}

.sp-bounce {
    animation: sp-bounce 600ms ease;
}

@keyframes sp-bounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.15); }
    60% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* Vertical Auto Slider (VAS) */
.vertical-auto-slider {
    height: 28px; /* fixed height so items slide within */
    overflow: hidden;
    position: relative;
    margin-top: 6px;
}

.vertical-auto-slider .vas-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--gray-color);
    line-height: 28px;
}

.vertical-auto-slider .vas-emoji {
    font-size: 1rem;
}

.vertical-auto-slider .vas-count {
    font-weight: 700;
    color: var(--dark-color);
}

.vertical-auto-slider .vas-text {
    white-space: nowrap;
}

.vertical-auto-slider .vas-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

/* JS handles seamless loop; CSS keyframes removed */

.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 6px 0 2px; /* pull stars down closer to price */
}

.product-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.rating-count {
    color: var(--gray-color);
    font-size: 0.85rem;
    margin-left: 5px;
}

.product-price {
    margin: 6px 0 10px; /* tighten spacing above, keep some space below */
}

.price-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
}

.price-old {
    font-size: 1.1rem;
    color: var(--gray-color);
    text-decoration: line-through;
    margin-left: 10px;
}

.btn-add-cart {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Quantity Selector Styles */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.btn-quantity-minus,
.btn-quantity-plus {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-quantity-minus:hover,
.btn-quantity-plus:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.quantity-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Features Section */
.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-box:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--gray-color);
    margin: 0;
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: #fff;
    margin-top: 80px;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-widget h5 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-widget h6 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-form .input-group {
    margin-top: 15px;
}

.newsletter-form .form-control {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50px 0 0 50px;
    padding: 12px 20px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 12px 25px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.payment-methods img {
    height: 30px;
    margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .heroSwiper {
        height: 400px;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .product-name {
        font-size: 1rem;
    }

    .price-new {
        font-size: 1.3rem;
    }
}

/* Cart Offcanvas Styles */
.offcanvas-end {
    width: 420px !important;
}

.offcanvas-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
}

.offcanvas-title {
    font-weight: 600;
}

.btn-close-white {
    filter: brightness(0) invert(1);
}

.cart-items {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}

.cart-item {
    transition: var(--transition);
}

.cart-item:hover {
    background-color: var(--light-gray);
}

.cart-item img {
    width: 100%;
    height: 70px;
    object-fit: cover;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.cart-item-quantity .btn {
    width: 28px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cart-item-quantity span {
    min-width: 25px;
    text-align: center;
    font-size: 0.9rem;
}

.cart-remove {
    width: 100%;
}

.offcanvas-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.cart-summary {
    background: #fff;
}

.cart-total {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.empty-cart i {
    opacity: 0.3;
}

/* Toast Notification Styles */
.toast {
    min-width: 300px;
}

.toast-body {
    font-weight: 500;
    display: flex;
    align-items: center;
}

.toast-body i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .offcanvas-end {
        width: 100% !important;
    }
}

/* Quick View Modal Styles */
#quickViewModal .modal-content {
    border-radius: 15px;
    border: none;
}

#quickViewModal .quick-view-images {
    position: relative;
}

#quickViewModal .main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

#quickViewModal .thumbnail-images {
    overflow-x: auto;
}

#quickViewModal .thumbnail-img {
    border: 2px solid transparent;
    transition: var(--transition);
}

#quickViewModal .thumbnail-img:hover {
    border-color: var(--primary-color);
}

#quickViewModal .quick-view-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

#quickViewModal .price-section h2 {
    font-size: 2rem;
    font-weight: 700;
}

#quickViewModal .product-meta {
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

/* Product Link Styles */
.product-link {
    text-decoration: none;
    color: inherit;
}

.product-link:hover {
    color: var(--primary-color);
}

.product-image-link {
    text-decoration: none;
    display: block;
}

/* Product Detail Page Styles */
.product-detail-section {
    background: #fff;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.main-product-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.main-product-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-product-image:hover img {
    transform: scale(1.05);
}

.discount-badge, .new-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--danger-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.new-badge {
    background: var(--success-color);
    top: 60px;
}

.product-thumbnails {
    overflow-x: auto;
}

.thumbnail-item {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.product-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.current-price {
    color: var(--primary-color);
}

.old-price {
    text-decoration: line-through;
    font-size: 1.5rem;
}

.product-meta {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
}

.meta-item {
    font-size: 1rem;
}

.add-to-cart-section .quantity-selector {
    justify-content: center;
    max-width: 200px;
    margin: 0 auto;
}

.product-features .feature-item {
    font-size: 0.95rem;
    color: var(--dark-color);
}

.nav-tabs .nav-link {
    color: var(--dark-color);
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.tab-content {
    min-height: 200px;
}

/* Related Products */
.related-products .product-card {
    height: 100%;
}

@media (max-width: 768px) {
    .main-product-image img {
        height: 300px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-price {
        font-size: 1.8rem;
    }
}

/* Size Selector Styles */
.size-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-option {
    min-width: 50px;
    padding: 8px 16px;
    border: 2px solid var(--border-color);
    background: #fff;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.size-option:hover {
    border-color: var(--primary-color);
    background: var(--light-gray);
}

.size-option.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.size-option:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Cart Page Styles */
.cart-section {
    background: #f8f9fa;
    min-height: 60vh;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.empty-cart-container {
    background: #fff;
    border-radius: 15px;
    padding: 60px 20px;
}

.cart-item-row {
    transition: var(--transition);
}

.cart-item-row:hover {
    background-color: var(--light-gray);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.item-price, .item-total {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.quantity-controls {
    gap: 5px;
}

.quantity-controls .btn {
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-input {
    width: 60px;
    text-align: center;
    font-weight: 600;
}

.cart-item-remove {
    text-decoration: none;
    font-size: 0.9rem;
}

.cart-item-remove:hover {
    text-decoration: underline;
}

.price-summary {
    font-size: 1rem;
}

.price-summary hr {
    border-top: 2px solid var(--border-color);
}

.coupon-section .input-group {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.free-shipping-progress {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
}

.progress {
    border-radius: 10px;
    overflow: hidden;
}

.trust-badges {
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.trust-item {
    text-align: center;
}

.trust-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.trust-item small {
    font-size: 0.75rem;
    color: var(--gray-color);
}

.security-info {
    border-left: 3px solid var(--success-color);
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .quantity-controls {
        margin: 10px 0;
    }

    .item-total {
        margin-top: 10px;
    }

    .cart-item-row .row > div {
        margin-bottom: 10px;
    }
}
