/* Accessibility Controls */
.accessibility-controls {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(10, 25, 47, 0.95);
    border: 1px solid var(--orange);
    border-radius: 8px;
    padding: 12px;
    backdrop-filter: blur(10px);
}

.font-size-controls,
.zoom-controls {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.font-size-controls {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 5px;
}

.font-size-btn,
.zoom-btn {
    background: var(--orange);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    white-space: nowrap;
}

.font-size-btn:hover,
.zoom-btn:hover {
    background: #ff8c00;
    transform: translateY(-2px);
}

/* Zoom Navigation Controls */
.zoom-navigation {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1001;
    display: none;
    flex-direction: column;
    gap: 10px;
    background: rgba(10, 25, 47, 0.95);
    border: 1px solid var(--orange);
    border-radius: 8px;
    padding: 12px;
    backdrop-filter: blur(10px);
}

.zoom-navigation.active {
    display: flex;
}

.zoom-nav-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 5px;
    margin-bottom: 8px;
}

.zoom-nav-btn {
    background: var(--orange);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 0.8rem;
}

.zoom-nav-btn:hover {
    background: #ff8c00;
    transform: scale(1.1);
}

/* Pozicioniranje strelica u gridu */
#zoom-move-left { grid-column: 1; grid-row: 2; }
#zoom-move-up { grid-column: 2; grid-row: 1; }
#zoom-move-right { grid-column: 3; grid-row: 2; }
#zoom-move-down { grid-column: 2; grid-row: 3; }

.zoom-reset-btn {
    background: #00d1b2;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    white-space: nowrap;
}

.zoom-reset-btn:hover {
    background: #00b39e;
    transform: translateY(-2px);
}

/* FONT SIZE CLASSES - POPRAVLJENO SA BOLJOM SPECIFIČNOŠĆU */
body.font-large {
    font-size: 115% !important;
}

body.font-larger {
    font-size: 130% !important;
}

body.font-largest {
    font-size: 145% !important;
}

/* Poboljšana specifičnost za sve tekstualne elemente */
body.font-large *,
body.font-larger *,
body.font-largest * {
    font-size: inherit !important;
}

/* Posebno za input i button elemente da očuvamo originalne stilove */
body.font-large input,
body.font-large button,
body.font-large select,
body.font-large textarea,
body.font-larger input,
body.font-larger button,
body.font-larger select,
body.font-larger textarea,
body.font-largest input,
body.font-largest button,
body.font-largest select,
body.font-largest textarea {
    font-size: initial !important;
}

/* Zoom classes - POBOLJŠANO ZA SKROL */
body.zoom-110,
body.zoom-125,
body.zoom-150 {
    overflow: auto !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}

body.zoom-110 {
    zoom: 1.1;
    transform: scale(1.1);
    transform-origin: 0 0;
    width: 90.9% !important; /* 100% / 1.1 */
    height: 90.9% !important;
}

body.zoom-125 {
    zoom: 1.25;
    transform: scale(1.25);
    transform-origin: 0 0;
    width: 80% !important; /* 100% / 1.25 */
    height: 80% !important;
}

body.zoom-150 {
    zoom: 1.5;
    transform: scale(1.5);
    transform-origin: 0 0;
    width: 66.67% !important; /* 100% / 1.5 */
    height: 66.67% !important;
}

/* Stilovi za skrol trake kada je zumirano */
body.zoom-110::-webkit-scrollbar,
body.zoom-125::-webkit-scrollbar,
body.zoom-150::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

body.zoom-110::-webkit-scrollbar-track,
body.zoom-125::-webkit-scrollbar-track,
body.zoom-150::-webkit-scrollbar-track {
    background: rgba(10, 25, 47, 0.8);
    border-radius: 6px;
}

body.zoom-110::-webkit-scrollbar-thumb,
body.zoom-125::-webkit-scrollbar-thumb,
body.zoom-150::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 6px;
    border: 2px solid rgba(10, 25, 47, 0.8);
}

body.zoom-110::-webkit-scrollbar-thumb:hover,
body.zoom-125::-webkit-scrollbar-thumb:hover,
body.zoom-150::-webkit-scrollbar-thumb:hover {
    background: #ff8c00;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.payment-method {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s;
}

.payment-method:hover {
    transform: translateY(-3px);
    border-color: var(--orange);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

.payment-method i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 10px;
    display: block;
}

.payment-method h4 {
    color: var(--accent-light);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.payment-method p {
    color: var(--text);
    font-size: 0.8rem;
    margin: 0;
}

/* Adjust specific elements for larger text */
body.font-large .product-card,
body.font-larger .product-card,
body.font-largest .product-card {
    min-height: 320px;
}

body.font-large .product-description,
body.font-larger .product-description,
body.font-largest .product-description {
    -webkit-line-clamp: 3;
}

/* Hero Section - REDUCED */
.hero {
    padding: 25px 0 20px;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.15) 0%, rgba(10, 25, 47, 0.95) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--accent-light);
}

.hero-content p {
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto 15px;
    color: var(--text);
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.hero-buttons .cta-button {
    padding: 8px 16px;
    font-size: 0.8rem;
}

/* Products Slider */
.products-slider {
    padding: 30px 0;
    background: rgba(10, 25, 47, 0.8);
}

.slider-header {
    text-align: center;
    margin-bottom: 20px;
}

.slider-header h2 {
    color: var(--accent-light);
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.slider-header p {
    color: var(--text);
    font-size: 0.9rem;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 15px;
    padding: 8px 0;
}

.slider-item {
    min-width: 220px;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    flex-shrink: 0;
}

.slider-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 156, 219, 0.3);
    border-color: var(--orange);
}

.slider-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.slider-item-content {
    padding: 12px;
}

.slider-item h3 {
    color: var(--accent-light);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.slider-item p {
    color: var(--text);
    font-size: 0.75rem;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-item .price {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.9rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--orange);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: #ff8c00;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 8px;
}

.next-btn {
    right: 8px;
}

/* Categories Section */
.categories-section {
    padding: 30px 0;
    background: rgba(10, 25, 47, 0.6);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.category-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 156, 219, 0.3);
    border-color: var(--orange);
}

.category-card i {
    font-size: 1.5rem;
    color: var(--accent-light);
    margin-bottom: 8px;
    display: block;
}

.category-card h3 {
    color: var(--accent-light);
    margin-bottom: 4px;
    font-size: 0.85rem;
}

.category-card .product-count {
    color: var(--text);
    font-size: 0.7rem;
}

/* Warranty Section */
.warranty-section {
    padding: 30px 0;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.1) 0%, rgba(10, 25, 47, 0.8) 100%);
}

.warranty-section .section-title h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.5rem;
}

.warranty-section .section-title i {
    color: var(--orange);
}

/* Payment Info Section */
.payment-info {
    padding: 30px 0;
    background: rgba(10, 25, 47, 0.9);
    text-align: center;
}

.payment-content {
    max-width: 800px;
    margin: 0 auto;
}

.payment-content i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 12px;
    display: block;
}

.payment-content h3 {
    color: var(--accent-light);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.payment-content p {
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.delivery-info {
    background: var(--card-bg);
    border-radius: 6px;
    padding: 12px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    margin-top: 12px;
}

.delivery-info p {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
}

.delivery-info p:last-child {
    margin-bottom: 0;
}

.delivery-info i {
    font-size: 0.85rem;
    color: var(--accent-light);
    margin-bottom: 0;
}

/* Delivery Info in Modal */
.delivery-info-modal {
    background: rgba(10, 25, 47, 0.7);
    border-radius: 6px;
    padding: 10px;
    margin: 12px 0;
    border-left: 3px solid var(--orange);
}

.delivery-info-modal p {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
    font-size: 0.8rem;
}

.delivery-info-modal p:last-child {
    margin-bottom: 0;
}

.delivery-info-modal i {
    color: var(--orange);
    width: 12px;
}

/* Customer Modal */
.customer-modal {
    background: var(--card-bg);
    border-radius: 10px;
    max-width: 500px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 5vh auto;
    position: relative;
    padding: 25px;
}

.customer-modal h2 {
    color: var(--accent-light);
    margin-bottom: 8px;
    text-align: center;
    font-size: 1.4rem;
}

.customer-modal p {
    color: var(--text);
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: var(--accent-light);
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    background: rgba(10, 25, 47, 0.7);
    color: var(--text);
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
}

.form-group textarea {
    min-height: 70px;
    resize: vertical;
}

.form-actions {
    margin-top: 20px;
}

.close-customer-modal {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    z-index: 10;
}

/* Payment Notice in Cart */
.payment-notice {
    background: rgba(0, 209, 178, 0.1);
    border: 1px solid rgba(0, 209, 178, 0.3);
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    text-align: center;
}

.payment-notice p {
    color: #00d1b2;
    font-size: 0.75rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Products Section */
.products-section {
    padding: 30px 0;
    position: relative;
    width: 100%;
}

.used-section {
    background: rgba(10, 25, 47, 0.8);
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-title h2 {
    color: var(--accent-light);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.section-title p {
    color: var(--text);
    font-size: 0.9rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    flex-wrap: wrap;
    gap: 12px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    color: var(--accent-light);
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.85rem;
}

.filter-group select {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    background: rgba(10, 25, 47, 0.7);
    color: var(--text);
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 6px 35px 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    background: rgba(10, 25, 47, 0.7);
    color: var(--text);
    width: 220px;
    font-size: 0.85rem;
}

.search-box i {
    position: absolute;
    right: 12px;
    color: var(--accent-light);
    font-size: 0.85rem;
}

/* Products Grid - Smaller products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45, 156, 219, 0.3);
    border-color: var(--orange);
}

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--orange);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.new {
    background: var(--accent);
}

.product-badge.sale {
    background: #ff3860;
}

.product-badge.warranty {
    background: #00d1b2;
}

.product-image {
    height: 130px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 10px;
}

.product-category {
    color: var(--accent-light);
    font-size: 0.7rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    color: var(--accent-light);
    font-size: 0.85rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

.product-description {
    color: var(--text);
    font-size: 0.75rem;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.product-price .current {
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 700;
}

.product-price .old {
    color: #a8b2d1;
    text-decoration: line-through;
    font-size: 0.75rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.product-rating .stars {
    color: #ffc107;
    font-size: 0.7rem;
}

.product-rating .reviews {
    color: var(--text);
    font-size: 0.7rem;
}

.product-actions {
    display: flex;
    gap: 6px;
}

.product-actions .cta-button {
    flex: 1;
    padding: 5px;
    font-size: 0.75rem;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 25px;
}

/* Product Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.product-modal {
    background: var(--card-bg);
    border-radius: 10px;
    max-width: 750px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 5vh auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-images img {
    width: 100%;
    border-radius: 6px;
}

.product-details h2 {
    color: var(--accent-light);
    margin-bottom: 6px;
    font-size: 1.2rem;
}

.product-category {
    color: var(--accent);
    font-size: 0.75rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.product-price span {
    color: var(--orange);
    font-size: 1.2rem;
    font-weight: 700;
}

.product-old-price {
    color: #a8b2d1 !important;
    text-decoration: line-through;
    font-size: 1rem !important;
}

.product-description {
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.product-features h4 {
    color: var(--accent-light);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.product-features ul {
    color: var(--text);
    margin-bottom: 10px;
    padding-left: 15px;
}

.product-features li {
    margin-bottom: 5px;
    line-height: 1.3;
    font-size: 0.8rem;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.quantity-btn {
    background: rgba(10, 25, 47, 0.7);
    border: none;
    color: var(--text);
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 0.8rem;
}

.quantity-btn:hover {
    background: var(--orange);
    color: white;
}

#product-quantity {
    width: 35px;
    height: 28px;
    border: none;
    text-align: center;
    background: rgba(10, 25, 47, 0.7);
    color: var(--text);
    font-size: 0.8rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--card-bg);
    border-left: 1px solid rgba(100, 255, 218, 0.1);
    z-index: 2000;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.cart-header h3 {
    color: var(--accent-light);
    margin: 0;
    font-size: 1.1rem;
}

.close-cart {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.cart-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.cart-item-image {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    color: var(--accent-light);
    margin-bottom: 3px;
    font-size: 0.8rem;
}

.cart-item-price {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.85rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.quantity-control button {
    background: rgba(10, 25, 47, 0.7);
    border: none;
    color: var(--text);
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 0.7rem;
}

.quantity-control input {
    width: 22px;
    height: 20px;
    border: none;
    text-align: center;
    background: rgba(10, 25, 47, 0.7);
    color: var(--text);
    font-size: 0.7rem;
}

.remove-item {
    background: none;
    border: none;
    color: #ff3860;
    cursor: pointer;
    font-size: 0.9rem;
}

.cart-total {
    padding: 12px;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: var(--accent-light);
    font-weight: 600;
    font-size: 1rem;
}

.full-width {
    width: 100%;
}

/* Cart Icon */
.cart-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--orange);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(255, 122, 0, 0.4);
    transition: all 0.3s;
}

.cart-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.6);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff3860;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
}

/* Footer Categories */
#footer-categories {
    list-style: none;
    padding: 0;
}

#footer-categories li {
    margin-bottom: 5px;
}

#footer-categories a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}

#footer-categories a:hover {
    color: var(--orange);
}

/* Working Hours - Improved Styling */
.working-hours {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 12px;
    margin-top: 12px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.working-hours p {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.working-hours p:last-child {
    margin-bottom: 0;
}

.working-hours strong {
    color: var(--accent-light);
    min-width: 70px;
}

/* Remove the old font size notice */
.font-size-notice {
    display: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 12px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .cta-button {
        width: 100%;
    }
    
    .slider-item {
        min-width: 180px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        justify-content: space-between;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .cta-button {
        width: 160px;
    }
    
    .accessibility-controls {
        top: 70px;
        right: 10px;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 300px;
    }
    
    .font-size-controls,
    .zoom-controls {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .font-size-btn,
    .zoom-btn {
        font-size: 0.7rem;
        padding: 6px 8px;
    }
    
    .hero {
        min-height: 180px;
        padding: 20px 0 15px;
    }
    
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .zoom-navigation {
        bottom: 70px;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-icon {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .section-title h2 {
        font-size: 1.3rem;
    }
    
    .slider-header h2 {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 15px 0 10px;
        min-height: 160px;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .accessibility-controls {
        top: 60px;
        right: 5px;
        max-width: 280px;
    }
    
    .font-size-btn,
    .zoom-btn {
        font-size: 0.65rem;
        padding: 5px 6px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }

    .zoom-navigation {
        bottom: 60px;
        left: 5px;
    }
}

/* Custom animations */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

.empty-cart, .no-products {
    text-align: center;
    color: var(--text);
    padding: 25px 12px;
    font-size: 0.9rem;
}

.delivery-info-small {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text);
    font-size: 0.65rem;
    margin-bottom: 8px;
}

.delivery-info-small i {
    color: var(--accent-light);
}

.cart-notification {
    position: fixed;
    top: 90px;
    right: 25px;
    background: var(--orange);
    color: white;
    padding: 10px 14px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
    font-size: 0.85rem;
}

.success-message {
    background: #00d1b2;
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    text-align: center;
    margin: 15px 0;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

/* Scrollbar Control */
html.overflow-x-hidden, 
body.overflow-x-hidden {
    overflow-x: hidden !important;
}

html.overflow-x-auto, 
body.overflow-x-auto {
    overflow-x: auto !important;
}

/* Ensure proper inheritance for font sizes */
.large-text *,
.larger-text *,
.largest-text * {
    font-size: inherit !important;
}

/* Zoom styles with scrollbar control */
.zoom-110,
.zoom-125,
.zoom-150 {
    overflow-x: auto !important;
}

/* Force redraw for font changes */
.large-text {
    font-size: 1.1em;
}

.larger-text {
    font-size: 1.25em;
}

.largest-text {
    font-size: 1.5em;
}

/* Product card text inheritance */
.product-card,
.product-card * {
    font-size: inherit;
}

/* Scrollbar Control */
html.overflow-x-hidden, 
body.overflow-x-hidden {
    overflow-x: hidden !important;
}

html.overflow-x-auto, 
body.overflow-x-auto {
    overflow-x: auto !important;
}

/* Ensure proper inheritance for font sizes */
.large-text *,
.larger-text *,
.largest-text * {
    font-size: inherit !important;
}

/* Zoom styles with scrollbar control */
.zoom-110,
.zoom-125,
.zoom-150 {
    overflow-x: auto !important;
}

/* Force redraw for font changes */
.large-text {
    font-size: 1.1em;
}

.larger-text {
    font-size: 1.25em;
}

.largest-text {
    font-size: 1.5em;
}

/* Product card text inheritance */
.product-card,
.product-card * {
    font-size: inherit;
}