/* Clean Modern E-commerce Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;
    direction: rtl;
    background: white;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #333;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #28a8b8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.search-container {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    direction: rtl;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #007bff;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.cart-btn {
    position: relative;
    background: #28a8b8;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.cart-btn:hover {
    background: #1e7e88;
}

.cart-count {
    position: absolute;
    top: -8px;
    left: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Main Layout */
.main-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

/* Sidebar */
.sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    height: fit-content;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border: none;
    border-radius: 8px;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
    width: 100%;
    font-weight: 500;
}

.category-item:hover,
.category-item.active {
    background: #28a8b8;
    color: white;
    transform: translateX(-3px);
}

.category-item i {
    font-size: 1rem;
    color: black;
}

.brand-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border: none;
    border-radius: 8px;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
    width: 100%;
    font-weight: 500;
}

.brand-item:hover,
.brand-item.active {
    background: #28a8b8;
    color: white;
    transform: translateX(-3px);
}

.brand-slide {
    background: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.brand-slide:hover,
.brand-slide.active {
    background: #28a8b8;
    color: white;
}

.brand-slider {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -0.75rem;
}

.brand-slider::-webkit-scrollbar {
    display: none;
}

.brands-container::-webkit-scrollbar {
    display: none;
}

.brand-logo {
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.brand-logo:hover {
    transform: scale(1.05);
    background: #007bff !important;
    color: white !important;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border: none;
    border-radius: 8px;
    color: black;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
    width: 100%;
    font-weight: 500;
}

.brand-item:hover,
.brand-item.active {
    background: #28a8b8;
    color: white;
    transform: translateX(-3px);
}

.brand-item i {
    font-size: 1rem;
}

/* Outlet Section */
.outlet-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.outlet-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e74c3c;
    text-align: center;
}

.outlet-products {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.outlet-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.outlet-item:hover {
    background: #fef2f2;
    border-color: #f87171;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.outlet-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.outlet-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.outlet-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.outlet-info h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.outlet-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #e74c3c;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    margin-top: 3rem;
    padding: 2rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-content p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-content i {
    width: 16px;
    color: #3498db;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.payment-icons i {
    color: #ecf0f1;
    transition: color 0.3s ease;
}

.payment-icons .fa-cc-visa { color: #1a1f71; }
.payment-icons .fa-cc-mastercard { color: #eb001b; }
.payment-icons .fa-paypal { color: #003087; }
.payment-icons .fa-shield-alt { color: #27ae60; }

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #95a5a6;
}

/* New Products Section */
.new-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.new-add-to-cart:hover {
    background: #1e7e88;
}

@media (max-width: 768px) {
    .new-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .new-product-image {
        height: 120px !important;
        padding: 0.75rem !important;
    }
    
    .new-product-info {
        padding: 0.75rem !important;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-icons {
        justify-content: center;
    }
}

/* Top Controls */
.top-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-section {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: black;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.3s ease;
    direction: rtl;
}

.filter-select:focus {
    outline: none;
    border-color: #007bff;
}

.account-section {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.login-btn,
.register-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.login-btn {
    background: white;
    color: #007bff;
    border: 2px solid #007bff;
}

.login-btn:hover {
    background: #28a8b8;
    color: white;
}

.register-btn {
    background: #28a8b8;
    color: white;
}

.register-btn:hover {
    background: #1e7e88;
}

/* Main Content */
.main-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.product-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #6c5ce7;
}

.product-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.product-card:hover .wishlist-btn,
.product-card:hover .quick-view-btn {
    opacity: 1;
}

.quick-view-btn:hover {
    background: #007bff !important;
    color: white !important;
}

.wishlist-btn:hover {
    background: #e74c3c;
    color: white;
}

.product-info {
    padding: 1rem;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.75rem;
}

.add-to-cart {
    width: 100%;
    background: #28a8b8;
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.add-to-cart:hover {
    background: #1e7e88;
}

/* Product View */
.product-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .product-view {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .slider-container {
        height: 300px;
    }
}

.product-main-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.product-description {
    color: #6c757d;
    line-height: 1.6;
}

.product-main-price {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-group h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

.color-options {
    display: flex;
    gap: 0.75rem;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.color-option:hover,
.color-option.active {
    transform: scale(1.1);
    border-color: #6c5ce7;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #6c5ce7;
    color: white;
    border-color: #6c5ce7;
}

.qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-weight: 600;
}

.main-add-to-cart {
    background: #28a8b8;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1rem 0;
}

.main-add-to-cart:hover {
    background: #1e7e88;
}

/* Product Image Slider */
.product-image-slider {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    background: white;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
}

.slider-prev {
    right: 10px;
}

.slider-next {
    left: 10px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #28a8b8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .hero-slider {
        height: 250px !important;
    }
    
    .slide-content h2 {
        font-size: 1.8rem !important;
    }
    
    .slide-content p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .slide-content button {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    .hero-prev, .hero-next {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
    }
    
    .hero-dots {
        bottom: 15px !important;
    }
    
    .hero-dot {
        width: 10px !important;
        height: 10px !important;
    }
    
    .header-container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .search-container {
        order: 3;
        width: 100%;
    }
    
    .main-container {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 1rem auto;
        position: relative;
        overflow-x: hidden;
    }
    
    .sidebar {
        display: none;
    }
    
    .mobile-categories {
        display: block !important;
        margin-bottom: 1rem;
    }
    
    .category-slider {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        padding: 0.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0 -0.75rem;
    }
    
    .category-slider::-webkit-scrollbar {
        display: none;
    }
    
    .category-slide {
        background: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        color: black;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    .category-slide:hover,
    .category-slide.active {
        background: #28a8b8;
        color: white;
    }

    .brand-slider {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        padding: 0.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0 -0.75rem;
    }

    .brand-slider::-webkit-scrollbar {
        display: none;
    }

    .brand-slide {
        background: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        color: black;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .brand-slide:hover,
    .brand-slide.active {
        background: #28a8b8;
        color: white;
    }
    

    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .product-view {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-content {
        padding: 0.75rem;
        width: 100%;
        overflow-x: hidden;
    }
    
    .top-controls {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .filter-section {
        gap: 0.5rem;
    }
    
    .filter-select {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .account-section {
        gap: 0.5rem;
    }
    
    .login-btn, .register-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Cart Mobile Styles */
    .cart-content {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .cart-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        padding: 1rem !important;
    }
    
    .cart-item img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .cart-item-info {
        order: -1;
        width: 100%;
    }
    
    .quantity-controls {
        justify-content: center;
        width: 100%;
    }
    
    .item-subtotal {
        text-align: center !important;
        width: 100%;
    }
    
    .cart-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .order-summary {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 200px !important;
    }
    
    .slide-content h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .slide-content p {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    .slide-content button {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.9rem !important;
    }
    
    .hero-prev, .hero-next {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .product-card {
        font-size: 0.85rem;
    }
    
    .product-title {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .product-price {
        font-size: 0.9rem;
    }
    
    .add-to-cart {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .product-info {
        padding: 0.75rem;
    }
    
    .main-content {
        padding: 0.5rem;
    }
    
    .mobile-menu-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Cart Mobile Styles - Small Screens */
    .cart-item {
        padding: 0.75rem !important;
    }
    
    .cart-item img {
        width: 50px !important;
        height: 50px !important;
    }
    
    .quantity-controls button,
    .quantity-controls input {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.75rem !important;
    }
    
    .remove-item {
        padding: 0.25rem !important;
        font-size: 0.9rem !important;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

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

.product-card {
    animation: fadeIn 0.5s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

/* Hero Slider Enhancements */
.hero-slider {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.hero-slide {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f8f9fa;
}

.hero-slides {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-dot.active {
    animation: pulse 2s infinite;
}

.slide-content h2,
.slide-content p,
.slide-content button {
    opacity: 0;
    animation-fill-mode: both;
}

.hero-slide:first-child .slide-content h2 {
    animation: slideInUp 0.8s ease-out;
}

.hero-slide:first-child .slide-content p {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-slide:first-child .slide-content button {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

/* Sale Price Styles */
.sale-price-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.original-price {
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: line-through;
    font-weight: 500;
}

.sale-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #e74c3c;
}

.discount-badge {
    background: #e74c3c;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 0.25rem;
}

.product-main-price .sale-price-container {
    align-items: flex-start;
}

.product-main-price .original-price {
    font-size: 1.5rem;
}

.product-main-price .sale-price {
    font-size: 2.2rem;
}

.product-main-price .discount-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
}

/* Sale status in admin table */
.sale-status.on-sale {
    color: #e74c3c;
    font-weight: 600;
}

.sale-status.no-sale {
    color: #6c757d;
    font-style: italic;
}

.sale-status .fa-tags {
    margin-left: 0.25rem;
}

/* Crossed price in specifications */
.original-price.crossed {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}