/* ================================================
   Modern Mobile-First Responsive Design for D.O.S
   ================================================ */

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --danger-color: #ea4335;
    --warning-color: #fbbc04;
    --dark-color: #202124;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #dadce0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
 
/* ================================================
   Base Styles - Mobile First
   ================================================ */

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body.mobile-optimized {
    font-family: 'IBM Plex Sans Arabic', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light-bg);
    padding: 0;
    margin: 0;
    font-size: 14px;
    direction: rtl;
    text-align: right;
    min-height: 100vh;
    padding-bottom: 70px; /* Space for bottom nav */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================================
   Modern Mobile Header - Enhanced Design
   ================================================ */

.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideDown 0.4s ease-out;
}

.mobile-header.header-scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 9px;
    min-height: 50px;
    position: relative;
}

/* Header Left Section */
.header-left {
    flex: 1;
    display: flex;
    align-items: center;
}

/* Logo Styling */
.header-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.header-logo:active img {
    transform: scale(0.95);
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #1557b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: none;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Header Buttons - Modern Design */
.header-btn {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 3px 7px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--light-bg), #f0f2f5);
    color: var(--dark-color);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.header-btn:hover::before {
    left: 100%;
}

.header-btn:active {
    transform: scale(0.95);
}

/* Button Icon */
.btn-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-icon i {
    font-size: 11px;
}

/* Currency Button Specific */
.btn-currency {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-color: rgba(251, 192, 45, 0.2);
}

.btn-currency .btn-icon {
    background: linear-gradient(135deg, var(--warning-color), #ff9800);
}

.btn-currency .btn-icon i {
    color: white;
}

.btn-currency:hover {
    background: linear-gradient(135deg, #ffe0b2, #ffcc80);
    border-color: var(--warning-color);
    box-shadow: 0 4px 12px rgba(251, 192, 45, 0.3);
    transform: translateY(-2px);
}

.btn-currency .btn-text {
    color: #f57c00;
}

/* Language Button Specific */
.btn-language {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-color: rgba(26, 115, 232, 0.2);
}

.btn-language .btn-icon {
    background: linear-gradient(135deg, var(--primary-color), #1557b0);
}

.btn-language .btn-icon i {
    color: white;
}

.btn-language:hover {
    background: linear-gradient(135deg, #bbdefb, #90caf9);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
    transform: translateY(-2px);
}

.btn-language .btn-text {
    color: #1976d2;
}

/* Button Text */
.btn-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Progress Bar */
.header-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 10px rgba(26, 115, 232, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 360px) {
    .header-container {
        padding: 6px 10px;
        min-height: 56px;
    }
    
    .header-logo img {
        height: 38px;
    }
    
    .header-btn {
        padding: 6px 10px;
        font-size: 11px;
        gap: 4px;
    }
    
    .btn-icon {
        width: 18px;
        height: 18px;
    }
    
    .btn-icon i {
        font-size: 10px;
    }
    
    .btn-text {
        font-size: 10px;
    }
}

@media (min-width: 375px) {
    .logo-text {
        display: inline-block;
    }
}

@media (min-width: 428px) {
    .header-container {
        padding: 4px 5px;
    }
    
    .header-logo img {
        height: 46px;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .header-btn {
        padding: 9px 14px;
        gap: 6px;
    }
    
    .btn-text {
        font-size: 12px;
    }
}
    color: var(--white);
    border-color: var(--primary-color);
}

/* ================================================
   Main Content Area
   ================================================ */

.mobile-main {
    max-width: 100%;
    margin: 0 auto;
    background: var(--light-bg);
    padding-top: 75px; /* Header height updated */
    padding-bottom: 80px; /* Bottom nav height */
    min-height: 100vh;
}

#main {
    max-width: 100%;
    background: var(--light-bg);
}

/* ================================================
   Modern Bottom Navigation
   ================================================ */

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.mobile-bottom-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #5f6368;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    min-width: 60px;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 3px;
    transition: var(--transition);
}

.nav-item span {
    font-size: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-item.active {
    color: var(--primary-color);
    background: rgba(26, 115, 232, 0.08);
}

.nav-item.active i {
    transform: scale(1.1);
}

.nav-item:hover {
    color: var(--primary-color);
}

/* Basket Item Special Styling */
.nav-item-basket {
    position: relative;
}

.basket-icon-wrapper {
    position: relative;
    margin-bottom: 3px;
}

.basket-count {
    position: absolute;
    top: -8px;
    left: -8px;
    background: linear-gradient(135deg, #ff3b3b 0%, #ff0000 100%);
    color: var(--white);
    border-radius: 20px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
    animation: pulse-red 1.5s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.5), 0 0 0 2px rgba(255, 59, 59, 0.3);
    border: 1px solid #f8d2d2
}

@keyframes pulse-red {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 0, 0, 0.5), 0 0 0 2px rgba(255, 59, 59, 0.3);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 3px 12px rgba(255, 0, 0, 0.7), 0 0 0 3px rgba(255, 59, 59, 0.5);
    }
}

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

/* ================================================
   Floating Basket Badge
   ================================================ */

.basket-badge-float {
    position: fixed;
    left: 20px;
    bottom: 90px;
    z-index: 999;
    animation: bounceIn 0.6s ease-out;
}

.basket-badge-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--warning-color), #ff9800);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.basket-badge-float a:hover {
    transform: scale(1.1);
}

.basket-badge-float i {
    font-size: 24px;
}

.basket-badge-float .badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff3b3b 0%, #ff0000 100%);
    color: var(--white);
    border-radius: 12px;
    padding: 3px 7px;
    font-size: 11px;
    font-weight: bold;
    min-width: 22px;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.5);
    animation: pulse-red 1.5s ease-in-out infinite;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ================================================
   Search Bar - Modern Mobile Design
   ================================================ */

#search { 
    padding-top: 20px;
    padding-bottom: 15px;
    margin-top: 0;
}

.custom-search {
    position: relative;
    width: 95%;
    margin: auto;

}

.custom-search-input {
    width: 100%;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 5px 10px 5px 10px;
    font-size: 10px;
    outline: none;
    transition: var(--transition);
    background: var(--light-bg);
}

.custom-search-input:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.custom-search-botton {
    position: absolute;
    left: 4px;
    top: 4px;
    bottom: 4px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), #1557b0);
    color: var(--white);
    padding: 0 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.custom-search-botton:hover {
    transform: translateX(-2px);
    box-shadow: var(--shadow-md);
}

/* ================================================
   Products Grid - Mobile Optimized with Enhanced Design
   ================================================ */

.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px;
    width: 100%;
}

.product_item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
}

.product_item:active {
    transform: scale(0.97);
}

.product_item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    border-color: rgba(26, 115, 232, 0.2);
}

/* Product in Basket Indicator */
.product_item.in-basket {
    border: 3px solid var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(52, 168, 83, 0.1), 0 8px 20px rgba(52, 168, 83, 0.15);
    animation: basket-pulse 2s ease-in-out infinite;
}

.product_item.in-basket::before {
    content: '✓';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d9348 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(52, 168, 83, 0.4);
    animation: check-bounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes basket-pulse {
    0%, 100% {
        box-shadow: 0 0 0 2px rgba(52, 168, 83, 0.1), 0 8px 20px rgba(52, 168, 83, 0.15);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(52, 168, 83, 0.2), 0 10px 25px rgba(52, 168, 83, 0.25);
    }
}

@keyframes check-bounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Image Container with Better Aspect Ratio */
.product_item .img {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

/* Product Slideshow Container */
.product_item .product-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product_item .slideshow-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.product_item .slideshow-image.active {
    opacity: 1;
    z-index: 2;
}

/* Slideshow Dots */
.product_item .slideshow-dots {
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.product_item .slideshow-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.product_item .slideshow-dots .dot.active {
    background: var(--white);
    width: 18px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.product_item .slideshow-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Dark Gradient Mask at Bottom */
.product_item .img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.product_item .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.product_item:hover .img img {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Product Code Badge - Hidden, shows on hover at top left */
.product_item .code {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.75));
    color: var(--white);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    z-index: 8;
    backdrop-filter: blur(8px);
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    display: none;
}

.product_item:hover .code {
    display: block;
    animation: fadeInScale 0.3s ease;
}

/* When discount badge exists, move qty down slightly */
.product_item .discount_badge ~ .qty {
    top: 45px;
}

/* Quantity Badge - Top Left (hidden by default) */
.product_item .qty {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, var(--secondary-color), #2e7d32);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    z-index: 9;
    display: none;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 6px rgba(52, 168, 83, 0.3);
}

.product_item:hover .qty {
    display: block;
    animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Product Title - Over Image at Bottom */
.product_item .title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    min-height: auto;
    max-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Discount Badge - Top Right Corner */
.product_item .discount_badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ff5252, #f44336);
    color: var(--white);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 3px 8px rgba(255, 82, 82, 0.4);
    animation: pulse-discount 2s ease-in-out infinite;
}

.product_item .discount_badge i {
    font-size: 10px;
    animation: wiggle 1s ease-in-out infinite;
}

@keyframes pulse-discount {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 8px rgba(255, 82, 82, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 82, 82, 0.6);
    }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Old Price Row - Below Image */
.product_item .old_price_row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 0 8px;
    padding: 3px 6px;
    background: linear-gradient(135deg, #ff8989, #d31d1d);
    border-radius: 8px; 
    margin-top: 8px;
}

.product_item .old_price_row .label {
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
}

.product_item .old_price_row .value {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    /* text-decoration: line-through; */
    text-decoration-thickness: 2px;
}

/* Old Discount Row - Deprecated but keep for compatibility */
.product_item .discount_row {
    margin: 0 8px;
    padding: 4px 8px;
    background: linear-gradient(135deg, #ff5252, #f44336);
    color: white;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 2px 4px rgba(255, 82, 82, 0.3);
}

/* Not Delivery Warning */
.product_item div[style*="color: red"] {
    background: #fee !important;
    color: var(--danger-color) !important;
    margin: 6px 8px !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    text-align: center !important;
    border: 1px solid rgba(234, 67, 53, 0.2);
}

/* Price Section - Enhanced */
.product_item .price {
    padding: 8px 12px 12px;
    font-weight: 600;
    font-size: 12px;
    color: #3c4046;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.product_item .price b {
    background: linear-gradient(135deg, #ffd54f, var(--warning-color));
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 12px;
    color: var(--dark-color);
    display: inline-block;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(251, 188, 4, 0.25);
    letter-spacing: 0.3px;
}

/* Add to Basket Button - Enhanced */
.add_basket_btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #1557b0);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.35);
    z-index: 15;
}

.add_basket_btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.5);
}

.add_basket_btn:active {
    transform: scale(0.95);
}

.add_basket_btn i {
    font-size: 18px;
}

/* Not Available State */
.not_available {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(135deg, #fee, #fdd);
    color: var(--danger-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    z-index: 15;
    border: 1px solid rgba(234, 67, 53, 0.3);
    box-shadow: 0 2px 6px rgba(234, 67, 53, 0.2);
}

/* Pulse animation for add button */
@keyframes pulse-basket {
    0% {
        box-shadow: 0 4px 12px rgba(26, 115, 232, 0.35);
    }
    50% {
        box-shadow: 0 4px 12px rgba(26, 115, 232, 0.6), 0 0 0 8px rgba(26, 115, 232, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(26, 115, 232, 0.35);
    }
}

.product_item:hover .add_basket_btn {
    animation: pulse-basket 2s infinite;
}

/* Improved spacing for small screens */
@media (max-width: 360px) {
    .products {
        gap: 8px;
        padding: 8px;
    }
    
    .product_item {
        border-radius: 12px;
    }
    
    .product_item .title {
        font-size: 10px;
        padding: 6px 8px;
    }
    
    .product_item .price {
        font-size: 10px;
        padding: 6px 10px 10px;
    }
    
    .product_item .price b {
        font-size: 13px;
        padding: 5px 8px;
    }
    
    .add_basket_btn {
        width: 36px;
        height: 36px;
    }
    
    .add_basket_btn i {
        font-size: 16px;
    }
}

/* Better spacing for medium phones */
@media (min-width: 361px) and (max-width: 390px) {
    .products {
        gap: 10px;
        padding: 10px;
    }
}

/* Optimal for large phones */
@media (min-width: 391px) and (max-width: 428px) {
    .products {
        gap: 14px;
        padding: 14px;
    }
    
    .product_item {
        border-radius: 18px;
    }
    
    .product_item .title {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    /* Better category display on larger phones */
    #cat2,
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .cat-title {
        font-size: 11px;
    }
    
    .product_item .price b {
        font-size: 15px;
    }
    
    .add_basket_btn {
        width: 44px;
        height: 44px;
    }
    
    .add_basket_btn i {
        font-size: 20px;
    }
}
    color: var(--dark-color);
}

.add_basket_btn {
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #1557b0);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.add_basket_btn:hover {
    transform: scale(1.1);
}

.add_basket_btn i {
    font-size: 16px;
}

/* ================================================
   Categories - Modern Card Design
   ================================================ */

/* ================================================
   Categories Section - Modern Design
   ================================================ */

.categories-section {
    margin: 15px 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.categories-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.categories-title i {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

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

.categories-count {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#cat2 {
    padding: 15px 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.categories-grid {
    padding: 15px 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.cat-hidden {
    display: none;
}

#cat2 .cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

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

#cat2 .cat-card:active {
    transform: scale(0.95);
}

.cat-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cat-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.3) 0%, 
        rgba(118, 75, 162, 0.3) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

#cat2 .cat-card:hover .cat-image-wrapper::before {
    opacity: 1;
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

#cat2 .cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

#cat2 .cat-card:hover img {
    transform: scale(1.15) rotate(2deg);
}

.cat-title {
    margin-top: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    line-height: 1.3;
    padding: 0 2px;
    text-transform: capitalize;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#cat2 .cat-card:hover .cat-title {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Show More Button for Categories */
.categories-show-more {
    display: block;
    width: calc(100% - 30px);
    margin: 15px auto 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
    position: relative;
    overflow: hidden;
}

.categories-show-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.categories-show-more:hover::before {
    left: 100%;
}

.categories-show-more:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.4);
}

.categories-show-more i {
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.categories-show-more.expanded i {
    transform: rotate(180deg);
}

.show-more-text,
.show-less-text {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.showmore_cat .showmore_trigger {
    display: block;
    width: calc(100% - 30px);
    margin: 15px auto 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
    position: relative;
    overflow: hidden;
}

.showmore_cat .showmore_trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.showmore_cat .showmore_trigger:hover::before {
    left: 100%;
}

.showmore_cat .showmore_trigger:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.4);
}


/* Gradient variations for category cards */
#cat2 .cat-card:nth-child(4n+1) .cat-image-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#cat2 .cat-card:nth-child(4n+2) .cat-image-wrapper {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

#cat2 .cat-card:nth-child(4n+3) .cat-image-wrapper {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

#cat2 .cat-card:nth-child(4n+4) .cat-image-wrapper {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* ================================================
   Basket Page - Mobile Optimized
   ================================================ */

#baskets {
    padding: 0;
    margin: 0;
    background: transparent;
    width: 100%;
}

#baskets .item {
    background: var(--white);
    margin: 10px;
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 12px;
    min-height: auto;
    height: auto;
    border: none;
}

#baskets .prod_img {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

#baskets .prod_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

#baskets .detailing {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: auto;
    float: none;
}

#baskets .detailing .title {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.3;
}

#baskets .detailing .price {
    font-size: 12px;
    color: #5f6368;
    margin: 0;
}

#baskets .detailing .price b {
    color: var(--primary-color);
    font-size: 13px;
}

#baskets .remove {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fee;
    color: var(--danger-color);
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

#baskets .remove:hover {
    background: var(--danger-color);
    color: var(--white);
}

.basket_steep {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.steep {
    width: 60px;
    height: 32px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    outline: none;
}

#sub_total {
    background: var(--white);
    margin: 10px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
}

#sub_total .sub_total {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
}

.delivery_type,
.notes {
    background: var(--white);
    margin: 10px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.delivery_type label {
    display: block;
    margin: 8px 0;
    padding: 12px;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
}

.delivery_type label:has(input:checked) {
    background: rgba(26, 115, 232, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.note {
    width: 100%;
    min-height: 100px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    font-size: 13px;
    outline: none;
    resize: vertical;
    transition: var(--transition);
}

.note:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.accept_order {
    background: linear-gradient(135deg, var(--secondary-color), #2d8e41);
    color: var(--white);
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 600; 
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.accept_order:active {
    transform: scale(0.98);
}

.empty_basket {
    background: var(--white);
    padding: 40px 20px;
    margin: 20px 10px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.empty_basket a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 24px;
    font-weight: 600;
    transition: var(--transition);
}

/* ================================================
   Alerts & Messages
   ================================================ */

.register_alert {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    margin: 10px;
    padding: 15px;
    border-radius: 12px;
    border-right: 4px solid var(--warning-color);
    font-size: 13px;
    line-height: 1.6;
}

.register_alert b {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--dark-color);
}

.success_msg {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 20px;
    margin: 10px;
    border-radius: 12px;
    text-align: center;
    border-right: 4px solid var(--secondary-color);
}

.success_msg h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* ================================================
   Carousel & Sliders
   ================================================ */

#owl3 {
    padding: 10px;
}

#owl3 img {
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.market_products img {
    width: calc(100% - 20px);
    margin: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

/* ================================================
   Discount Ribbon
   ================================================ */

.ribbon {
    width: 80px;
    height: 80px;
}

.ribbon span {
    font-size: 9px;
    padding: 2px 0;
    width: 140px;
}

.wdp-ribbon {
    font-size: 10px;
    padding: 3px 10px;
    line-height: 20px;
    height: 20px;
}

/* ================================================
   Responsive Adjustments
   ================================================ */

@media (max-width: 360px) {
    .products {
        gap: 8px;
        padding: 8px;
    }
    
    .nav-item span {
        font-size: 9px;
    }
    
    /* Categories - optimized for small screens */
    #cat2,
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px 8px;
    }
    
    .categories-title {
        font-size: 14px;
    }
    
    .categories-title i {
        font-size: 16px;
    }
    
    .categories-count {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .cat-title {
        font-size: 10px;
        margin-top: 6px;
    }
}

@media (min-width: 375px) and (max-width: 428px) {
    .products {
        gap: 12px;
        padding: 12px;
    }
}

/* ================================================
   Loading & Animation States
   ================================================ */

.loading-skeleton {
    background: linear-gradient(90deg, var(--light-bg) 25%, #f0f0f0 50%, var(--light-bg) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ================================================
   Touch Optimizations
   ================================================ */

button, a, .clickable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

input, textarea {
    -webkit-user-select: text;
    user-select: text;
}

/* Larger touch targets */
.nav-item,
.add_basket_btn,
.accept_order,
.btn-currency,
.btn-language {
    min-height: 30px;
    min-width: 39px;
}

/* ================================================
   Additional Mobile Enhancements
   ================================================ */

/* Smooth page transitions */
.mobile-main {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Toast notifications */
.toast-notification {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transition: transform 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    max-width: 90%;
    text-align: center;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
}

/* Better scroll indicator */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

/* Improved form inputs */
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px; /* Prevents zoom on iOS */
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
    .mobile-header {
        padding-top: max(10px, env(safe-area-inset-top));
    }
    
    .mobile-bottom-nav {
        padding-bottom: max(8px, env(safe-area-inset-bottom));
    }
    
    .mobile-main {
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ================================================
   Product Modal - Modern Design
   ================================================ */

.product-modal-modern {
    padding: 0 !important;
    max-height: 85vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.product-modal-modern::-webkit-scrollbar {
    width: 4px;
}

.product-modal-modern::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

/* Close Button */
.btn-close-modern {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1000;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn-close-modern:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.btn-close-modern i {
    font-size: 18px;
}

/* Modal Container */
.product-modal-container {
    display: flex;
    flex-direction: column;
}

/* Image Section */
.product-modal-image {
    width: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.single-product-image {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.product-carousel {
    width: 100%;
}

.product-carousel .carousel-inner {
    border-radius: 12px;
    overflow: hidden;
}

.product-carousel img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: white;
}

.product-carousel .carousel-control-prev,
.product-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    opacity: 1;
}

.product-carousel .carousel-control-prev {
    right: auto;
    left: 10px;
}

.product-carousel .carousel-control-next {
    left: auto;
    right: 10px;
}

.product-carousel .carousel-indicators {
    margin-bottom: -20px;
}

.product-carousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    border: none;
}

.product-carousel .carousel-indicators button.active {
    background: var(--primary-color);
}

/* Product Info Section */
.product-modal-info {
    padding: 3px;
}

/* Product Title */
.product-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 5px 0 10px 0;
    line-height: 1.4;
    text-align: center;
}

/* Product Code */
.product-modal-code {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-bg);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #5f6368;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.product-modal-code i {
    color: var(--primary-color);
}

.product-modal-code strong {
    color: var(--dark-color);
    font-weight: 700;
}

/* Price Cards */
.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
    gap: 4px;
    margin-bottom: 10px;
}

.price-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 3px;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.15);
    transform: translateY(-2px);
}

.price-card-main {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05), rgba(26, 115, 232, 0.02));
}

.price-card-header {
    font-size: 11px;
    color: #5f6368;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-card-header i {
    color: var(--primary-color);
}

.price-card-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.price-card-old {
    font-size: 11px;
    color: var(--danger-color);
    text-decoration: line-through;
}

.price-card-info {
    font-size: 10px;
    color: #5f6368;
    background: var(--light-bg);
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 4px;
}

/* Delivery Warning */
.delivery-warning {
    background: linear-gradient(135deg, #fee, #fdd);
    color: var(--danger-color);
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(234, 67, 53, 0.2);
}

.delivery-warning i {
    font-size: 16px;
}

/* Quantity Section */
.quantity-section {
    background: var(--light-bg);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.quantity-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-label i {
    color: var(--primary-color);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.handle-counter {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.counter-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.counter-btn:hover {
    background: #1557b0;
}

.counter-btn:active {
    transform: scale(0.95);
}

.counter-input {
    width: 80px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    background: var(--white);
    outline: none;
}

.quantity-unit {
    font-size: 13px;
    color: #464a50;
    font-weight: 600;
}

/* Total Price Display */
.total-price-display {
    background: var(--white);
    padding: 5px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.15);
}

.total-label {
    font-size: 13px;
    color: #464a50;
    font-weight: 600;
}

.p_total {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-right: 5px;
}

/* Action Buttons */
.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-modal-action {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-modal-action:active {
    transform: scale(0.98);
}

.btn-add-basket {
    background: linear-gradient(135deg, var(--primary-color), #1557b0);
    color: white;
}

.btn-add-basket:hover {
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
    transform: translateY(-2px);
}

.btn-delete-basket {
    background: linear-gradient(135deg, #ff3b3b, #d32f2f);
    color: white;
}

.btn-delete-basket:hover {
    box-shadow: 0 6px 20px rgba(255, 59, 59, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #20ba5a);
    color: white;
}

.btn-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-modal-action i {
    font-size: 18px;
}

/* Modal Dialog Adjustments */
.modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
}

.modal-content {
    border-radius: 20px !important;
    border: none !important;
    overflow: hidden;
}

/* Responsive Adjustments for Modal */
@media (max-width: 360px) {
    .product-modal-image {
        min-height: 240px;
        padding: 15px;
    }
    
    .product-carousel img {
        height: 240px;
    }
    
    .product-modal-title {
        font-size: 16px;
    }
    
    .price-cards {
        grid-template-columns: 1fr;
    }
    
    .counter-btn {
        width: 36px;
        height: 36px;
    }
    
    .counter-input {
        width: 70px;
        height: 36px;
        font-size: 15px;
    }
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 30px auto;
    }
    
    .product-modal-image {
        min-height: 320px;
    }
    
    /* Categories grid for larger screens */
    #cat2,
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
        padding: 20px 15px;
    }
    
    
    .categories-title {
        font-size: 18px;
    }
    
    .categories-title i {
        font-size: 20px;
    }
    
    .cat-title {
        font-size: 12px;
    }
}

/* ================================================
   Modern Location Page Design
   ================================================ */

.location-page {
    padding: 10px 15px 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* Location Page Header */
.location-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.2);
    animation: fadeInDown 0.6s ease;
}

.location-header i {
    font-size: 48px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.location-header h1 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 10px;
}

.location-header p {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
}

/* Location Card */
.location-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 10px;
    overflow: hidden;
    animation: fadeInUp 0.6s ease;
    transition: var(--transition);
}

.location-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

/* Main Branch Special Styling */
.main-branch {
    border: 2px solid rgba(26, 115, 232, 0.1);
}

.location-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.location-card-header i {
    font-size: 22px;
    color: var(--primary-color);
}

.location-card-header h2 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: var(--dark-color);
}

.location-card-body {
    padding: 10px;
}

/* Location Info Item */
.location-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.location-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.location-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.location-details {
    flex: 1;
}

.location-details h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 8px;
}

.location-details p {
    font-size: 16px;
    color: #2b2d31;
    margin: 0;
    line-height: 1.6;
}

/* Phone List */
.phone-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
    transition: var(--transition);
}

.phone-item:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.phone-item:hover .phone-name,
.phone-item:hover .phone-number {
    color: var(--white);
}

.phone-item:hover i {
    color: var(--white);
}

.phone-item i {
    font-size: 16px;
    color: var(--primary-color);
}

.phone-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 14px;
}

.phone-number {
    margin-right: auto;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    direction: ltr;
}

/* Social Links */
.social-links {  
}

.social-link { 
    border-radius: 12px;
    display: inline-block; 
    vertical-align: middle;
    color: var(--white);
    font-size: 28px;
    padding: 5px 12px;
    margin: 0px 10px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 50%, #833ab4 100%);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006ba1 100%);
}

/* Location Actions */
.location-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.btn-location-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 8px 10px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d9348 100%);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.2);
}

.btn-location-map:hover {
    background: linear-gradient(135deg, #2d9348 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 168, 83, 0.3);
    color: var(--white);
}

.btn-location-map i {
    font-size: 18px;
}

/* Working Hours Card */
.hours-card {
    border: 2px solid rgba(251, 188, 4, 0.2);
}

.hours-card .location-card-header {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
}

.hours-card .location-card-header i {
    color: var(--warning-color);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.06);
}

.hours-item .day {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 14px;
}

.hours-item .time {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design for Location Page */
@media (max-width: 360px) {
    .location-header h1 {
        font-size: 22px;
    }
    
    .location-header i {
        font-size: 40px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .phone-item {
        padding: 10px 12px;
    }
}

@media (min-width: 576px) {
    .location-page {
        padding: 100px 20px 90px;
    }
    
    .location-header {
        padding: 40px 30px;
    }
    
    .location-card-body {
        padding: 15px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

/* ================================================
   Modern User Profile & Orders Pages Design
   ================================================ */

/* User Profile Page */
.user-profile-page {
    padding: 90px 15px 85px;
    max-width: 600px;
    margin: 0 auto;
    min-height: 100vh;
}

.profile-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.2);
    animation: fadeInDown 0.6s ease;
}

.profile-avatar {
    margin-bottom: 15px;
}

.profile-avatar i {
    font-size: 80px;
    color: var(--white);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.profile-info {
    color: var(--white);
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
}

.profile-subtitle {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Profile Stats */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-item {
    background: var(--white);
    border-radius: 16px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #5f6368;
    margin-top: 4px;
}

/* Profile Menu */
.profile-menu {
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.menu-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 25px 0 12px;
    padding: 0 5px;
}

.menu-item {
    background: var(--white);
    border-radius: 16px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.menu-item:active {
    transform: scale(0.98);
}

.menu-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
    flex-shrink: 0;
}

.menu-content {
    flex: 1;
}

.menu-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 4px;
}

.menu-content p {
    font-size: 13px;
    color: #5f6368;
    margin: 0;
}

.menu-arrow {
    color: #dadce0;
    font-size: 18px;
    flex-shrink: 0;
}

.logout-item .menu-icon {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: var(--danger-color);
}

.logout-item:hover .menu-icon {
    background: linear-gradient(135deg, var(--danger-color) 0%, #d32f2f 100%);
    color: var(--white);
}

/* Orders List Page */
.orders-page {
    padding: 90px 15px 85px;
    max-width: 600px;
    margin: 0 auto;
    min-height: 100vh;
}

.orders-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInDown 0.6s ease;
}

.order-details-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInDown 0.6s ease;
}

.back-button {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

.header-content {
    color: var(--white);
    flex: 1;
}

.header-content h1 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px;
}

.header-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Orders List */
.orders-list {
    animation: fadeInUp 0.6s ease;
}

.order-card {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: var(--transition);
}

.order-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.order-card-header {
    padding: 15px 18px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.order-number {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 16px;
}

.order-number i {
    color: var(--primary-color);
    font-size: 18px;
}

.order-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-new {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1976d2;
}

.status-ready {
    background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
    color: #f57f17;
}

.status-final {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    color: #388e3c;
}

.status-cancel {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
    color: #c62828;
}

.order-card-body {
    padding: 18px;
}

.order-info-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 11px;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 2px;
}

.order-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: #fff9c4;
    border-radius: 10px;
    font-size: 13px;
    color: #f57f17;
}

.order-note i {
    flex-shrink: 0;
    margin-top: 2px;
}

.order-card-footer {
    padding: 15px 18px;
    background: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.btn-view-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    color: var(--white);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-view-order:hover {
    background: linear-gradient(135deg, #1557b0 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
    color: var(--white);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    animation: fadeInUp 0.6s ease;
}

.empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dadce0;
    font-size: 60px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 10px;
}

.empty-state p {
    font-size: 14px;
    color: #5f6368;
    margin: 0 0 25px;
}

.btn-start-shopping {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.btn-start-shopping:hover {
    background: linear-gradient(135deg, #1557b0 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
    color: var(--white);
}

/* Order Details Page */
.order-details-page {
    padding: 90px 15px 85px;
    max-width: 600px;
    margin: 0 auto;
    min-height: 100vh;
}

.order-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    animation: fadeInUp 0.6s ease;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.info-item-detail {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon-detail {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.info-icon-detail.status-new {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}

.info-icon-detail.status-ready {
    background: linear-gradient(135deg, #f57f17 0%, #ef6c00 100%);
}

.info-icon-detail.status-final {
    background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
}

.info-icon-detail.status-cancel {
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.order-note-full {
    margin-top: 20px;
    padding: 15px;
    background: #fff9c4;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    color: #f57f17;
}

.order-note-full i {
    font-size: 20px;
    flex-shrink: 0;
}

.note-label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.order-note-full p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Order Items List */
.order-items-list {
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    padding: 0 5px;
}

.section-title i {
    color: var(--primary-color);
}

.order-item-card {
    background: var(--white);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    display: flex;
    gap: 15px;
    transition: var(--transition);
}

.order-item-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.item-image {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    flex-shrink: 0;
}

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

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0 0 10px;
    line-height: 1.4;
}

.item-pricing {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.price-label {
    color: #5f6368;
}

.price-value {
    font-weight: 600;
    color: var(--dark-color);
}

.total-row {
    padding-top: 8px;
    border-top: 1px solid #e9ecef;
}

.total-row .price-label,
.total-row .price-value {
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 5px;
}

/* Order Total Card */
.order-total-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.order-total-card .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.order-total-card .total-row:last-child {
    border-bottom: none;
}

.total-label {
    font-size: 14px;
    color: #5f6368;
}

.total-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.discount-row .total-value {
    color: var(--danger-color);
}

.grand-total {
    padding-top: 15px !important;
    border-top: 2px solid #e9ecef !important;
}

.grand-total .total-label,
.grand-total .total-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Order Actions */
.order-actions {
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.btn-back-to-orders {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--dark-color);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-back-to-orders:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Responsive Design for User Pages */
@media (max-width: 360px) {
    .profile-avatar i {
        font-size: 60px;
    }
    
    .profile-name {
        font-size: 20px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .order-info-row {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 576px) {
    .user-profile-page,
    .orders-page,
    .order-details-page {
        padding: 100px 20px 90px;
    }
    
    .profile-header {
        padding: 40px 30px;
    }
    
    .profile-avatar i {
        font-size: 100px;
    }
    
    .profile-stats {
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px;
    }
    
    .menu-item {
        padding: 20px;
    }
    
    .order-card-header,
    .order-card-footer {
        padding: 18px 22px;
    }
    
    .order-card-body {
        padding: 22px;
    }
}

/* ================================================
   Modern Basket/Cart Page Design
   ================================================ */

/* Basket Page */
.basket-page {
    padding: 90px 15px 85px;
    max-width: 600px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Success Message */
.basket-success-message {
    text-align: center;
    padding: 60px 20px;
    animation: fadeInUp 0.6s ease;
}

.success-animation {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d9348 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-animation i {
    font-size: 60px;
    color: var(--white);
}

.basket-success-message h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 15px;
}

.basket-success-message p {
    font-size: 15px;
    color: #5f6368;
    margin: 0 0 30px;
    line-height: 1.6;
}

.btn-continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.btn-continue-shopping:hover {
    background: linear-gradient(135deg, #1557b0 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
    color: var(--white);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Register Alert */
.basket-register-alert {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border: 2px solid rgba(251, 188, 4, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    animation: fadeInDown 0.6s ease;
}

.basket-register-alert i {
    font-size: 28px;
    color: var(--warning-color);
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-content p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #5f6368;
    line-height: 1.6;
}

.alert-content p:last-child {
    margin-bottom: 0;
}

.alert-content a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* Basket Header */
.basket-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInDown 0.6s ease;
}

.basket-header .back-button {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.basket-header .back-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

.basket-header .header-content {
    color: var(--white);
    flex: 1;
}

.basket-header .header-content h1 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px;
}

.basket-header .header-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.basket-header .orders-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.basket-header .orders-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Basket Items */
.basket-items {
    margin-bottom: 20px;
}

.basket-item {
    background: var(--white);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    display: flex;
    gap: 15px;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.basket-item:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    flex-shrink: 0;
}

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

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.btn-remove {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: var(--danger-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-remove:hover {
    background: linear-gradient(135deg, var(--danger-color) 0%, #d32f2f 100%);
    color: var(--white);
    transform: scale(1.1);
}

.item-info {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 12px;
    color: #5f6368;
}

.info-badge i {
    font-size: 11px;
    color: var(--primary-color);
}

.item-price-row {
    display: flex;
    justify-content: flex-start;
    align-items: center; 
    padding: 8px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.price-label {
    font-size: 13px;
    color: #5f6368;
}

.price-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-quantity label {
    font-size: 13px;
    color: #5f6368;
    font-weight: 600;
    margin: 0;
}

/* Quantity Spinner */
.quantity-spinner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 4px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantity-spinner input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
}

.item-total {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid #e9ecef;
}

.item-total .total-label {
    font-size: 13px;
    color: #5f6368;
}

.item-total .total-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.item-total .currency {
    font-size: 13px;
    color: #5f6368;
}

/* Delivery Section */
.delivery-section {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 15px;
}

.section-title i {
    color: var(--primary-color);
    font-size: 18px;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-option {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.delivery-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: var(--transition);
}

.delivery-option input[type="radio"]:checked + .option-content {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: var(--primary-color);
}

.option-content i {
    font-size: 24px;
    color: #5f6368;
    flex-shrink: 0;
}

.delivery-option input[type="radio"]:checked + .option-content i {
    color: var(--primary-color);
}

.option-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.option-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.option-desc {
    font-size: 12px;
    color: #5f6368;
}

/* Notes Section */
.notes-section {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.notes-section textarea {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: var(--transition);
}

.notes-section textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #f8f9fa;
}

/* Order Summary */
.order-summary {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.summary-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    flex: 1;
    font-size: 14px;
    color: #5f6368;
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-left: 10px;
}

.summary-row .currency {
    font-size: 13px;
    color: #5f6368;
    margin-right: 5px;
}

.total-row {
    padding-top: 15px !important;
    border-top: 2px solid #e9ecef !important;
}

.total-row .summary-label,
.total-row .summary-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Submit Button */
.btn-submit-order {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d9348 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(52, 168, 83, 0.2);
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.btn-submit-order:hover {
    background: linear-gradient(135deg, #2d9348 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 168, 83, 0.3);
}

.btn-submit-order:active {
    transform: scale(0.98);
}

.btn-submit-order i {
    font-size: 20px;
}

/* Empty Basket */
.empty-basket {
    text-align: center;
    padding: 80px 20px;
    animation: fadeInUp 0.6s ease;
}

.empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dadce0;
    font-size: 60px;
}

.empty-basket h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 10px;
}

.empty-basket p {
    font-size: 14px;
    color: #5f6368;
    margin: 0 0 30px;
}

.btn-start-shopping {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1557b0 100%);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.btn-start-shopping:hover {
    background: linear-gradient(135deg, #1557b0 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
    color: var(--white);
}

/* Modern Modal */
.modern-modal .modal-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid rgba(0,0,0,0.05);
    padding: 20px;
}

.modern-modal .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
}

.modern-modal .modal-body {
    padding: 30px 20px;
    text-align: center;
}

.modern-modal .modal-body i {
    font-size: 50px;
    color: var(--warning-color);
    margin-bottom: 15px;
}

.modern-modal .modal-body p {
    font-size: 15px;
    color: #5f6368;
    margin: 0;
    line-height: 1.6;
}

.modern-modal .modal-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 15px 20px;
}

/* Responsive Design for Basket Page */
@media (max-width: 360px) {
    .basket-item {
        flex-direction: column;
    }
    
    .item-image {
        width: 100%;
        height: 150px;
    }
    
    .delivery-options {
        gap: 10px;
    }
    
    .option-content {
        padding: 12px;
    }
}

@media (min-width: 576px) {
    .basket-page {
        padding: 100px 20px 90px;
    }
    
    .basket-header {
        padding: 30px 25px;
    }
    
    .basket-item {
        padding: 20px;
    }
    
    .item-image {
        width: 120px;
        height: 120px;
    }
    
    .delivery-section,
    .notes-section,
    .order-summary {
        padding: 25px;
    }
    
    .btn-submit-order {
        padding: 18px;
        font-size: 17px;
    }
}



.slider-section {
    margin: 15px 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

#owl-demo .item{
  margin: 3px;
}
#owl-demo .item img{
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   Promo Slider Section
======================================== */
.promo-slider-section {
    margin: 15px 0 20px;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.promo-slider-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 0 15px;
}

.promo-slider-header i {
    color: #ff6b35;
    font-size: 20px;
    animation: pulse 2s infinite;
}

.promo-slider-header span {
    font-size: 13px;
    font-weight: bold;
    color: #1a1a1a;
}

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

/* Simple Slider Wrapper */
.simple-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 45px;
}

.simple-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 10px;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.slider-nav-btn:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-nav-btn:active {
    transform: translateY(-50%) scale(0.9);
}

.slider-nav-btn i {
    color: #1a73e8;
    font-size: 18px;
}

.prev-btn {
    right: 0;
}

.next-btn {
    left: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #1a73e8;
    width: 24px;
    border-radius: 4px;
}

/* Promo Slide Item */
.promo-slide-item {
    flex: 0 0 calc(44% - 7px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    direction: rtl;
}

.promo-slide-item:active {
    transform: scale(0.98);
}

.promo-discount-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
}

.promo-discount-badge i {
    font-size: 10px;
}

/* Promo Image */
.promo-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    overflow: hidden;
}

.promo-image img {
    max-width: auto;
    max-height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Promo Details */
.promo-details {
    padding: 8px;
    background: white;
    direction: rtl;
}

.promo-title {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}

/* Promo Pricing */
.promo-pricing {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.promo-old-price {
    font-size: 10px;
    color: #999;
    text-decoration: line-through;
}

.promo-current-price {
    font-size: 14px;
    font-weight: bold;
    color: #1a73e8;
}

/* Promo View Button */
.promo-view-btn {
    width: 100%;
    padding: 6px;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-view-btn:active {
    transform: scale(0.95);
}

.promo-view-btn i {
    font-size: 10px;
}

/* Responsive adjustments */
@media (min-width: 375px) {
    .promo-image {
        height: 170px;
    }
    
    .promo-title {
        font-size: 13px;
    }
    
    .promo-current-price {
        font-size: 15px;
    }
    
    .slider-nav-btn {
        width: 42px;
        height: 42px;
    }
}

@media (min-width: 428px) {
    .promo-image {
        height: 140px;
    }
    
    .promo-details {
        padding: 10px;
    }
    
    .promo-slider-header {
        margin-bottom: 15px;
    }
    
    .promo-slider-header i {
        font-size: 22px;
    }
    
    .promo-slider-header span {
        font-size: 17px;
    }
    
    .slider-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .slider-nav-btn i {
        font-size: 20px;
    }
}

@media (min-width: 576px) {
    .promo-slider-section {
        max-width: 600px;
        margin: 20px auto;
    }
    
    .promo-image {
        height: 150px;
    }
    
    .slider-nav-btn {
        width: 48px;
        height: 48px;
    }
}
/*  
.owl-item{
    width: 160px !important;
} */