* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #31ce5d;
    --secondary-color: #28b44a;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Animations removed for cleaner UI */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Professional Amazon-style */
.navbar {
    background-color: #131921;
    color: white;
    padding: 0.8rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    min-width: 150px;
}

.site-logo {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo h1 {
    font-size: 1.6rem;
    color: #FF9900;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Search Bar - Professional Styling */
.search-bar {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 600px;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    outline: none;
    color: #333;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background-color: #FF9900;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: white;
    transition: background-color 0.2s;
}

.search-btn:hover {
    background-color: #F08800;
}

/* Right Navigation */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    white-space: nowrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: #FF9900;
    border-bottom: 2px solid #FF9900;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.dropdown-content a {
    color: #333;
    padding: 0.75rem 1.5rem;
    display: block;
    border: none;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
    color: #FF9900;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Cart Section */
.cart-wrapper {
    display: flex;
    align-items: center;
}

.cart-icon {
    background-color: #FF9900;
    padding: 0.75rem 1.2rem;
    border-radius: 4px;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-icon:hover {
    background-color: #F08800;
}

.cart-icon span {
    background: #C7111F;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateY(500px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.chat-widget.active {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-close:hover {
    transform: rotate(90deg);
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f8f9fa;
}

.chat-message {
    margin-bottom: 1rem;
}

.bot-message p {
    background: white;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border-left: 3px solid #667eea;
    margin: 0;
}

.user-message {
    text-align: right;
}

.user-message p {
    background: #667eea;
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    margin: 0;
    display: inline-block;
}

.chat-footer {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid #eee;
}

.chat-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.8rem;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.chat-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.2);
}

.chat-send {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.chat-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Responsive Cart Layout */
@media (max-width: 1024px) {
    .cart-content {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
        top: auto;
    }

    .delivery-options {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .delivery-options {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .payment-option {
        padding: 1.5rem 0.5rem;
    }

    .payment-icon {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chat-fab {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .delivery-option {
        padding: 1rem;
    }

    .payment-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-option {
        padding: 1rem 0.5rem;
    }

    .payment-icon {
        font-size: 1.8rem;
    }

    .payment-title {
        font-size: 0.8rem;
    }

    .footer-professional {
        padding: 2rem 0 1rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .chat-fab {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Generic Media Queries */
@media (max-width: 1024px) {
    .navbar-container {
        gap: 1rem;
    }

    .search-bar {
        max-width: 300px;
    }

    .nav-links {
        gap: 0.6rem;
    }

    .nav-links a {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        gap: 0.8rem;
    }

    .search-bar {
        order: 3;
        width: 100%;
        max-width: none;
    }

    .nav-links {
        order: 4;
        width: 100%;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        justify-content: center;
    }

    .nav-links li {
        flex: 0 1 calc(33.333% - 0.5rem);
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 0.5rem;
    }

    .chat-widget {
        width: 300px;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .site-logo {
        width: 28px;
        height: 28px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .nav-links li {
        flex: 0 1 calc(50% - 0.3rem);
    }

    .nav-links a {
        font-size: 0.75rem;
        padding: 0.4rem 0.4rem;
    }

    .chat-widget {
        width: 280px;
        height: 400px;
        bottom: 10px;
        right: 10px;
    }
}

/* Enhanced Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Professional Product Card */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 30px rgba(49, 206, 93, 0.2);
}

.product-card:before {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s;
    z-index: 10;
}

.product-card:hover:before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #f0f9f4 0%, #e8f8ed 100%);
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    background: white;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.4;
}

.product-price {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.product-rating {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 0.6rem;
}

.add-to-cart,
.buy-now {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.add-to-cart {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.add-to-cart:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.add-to-cart:hover:before {
    width: 300px;
    height: 300px;
}

.add-to-cart:hover {
    background-color: var(--secondary-color);
    transform: translateZ(5px) translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 206, 93, 0.3);
}

.buy-now {
    background-color: #ff6b6b;
    color: white;
    border: 2px solid #ff6b6b;
}

.buy-now:hover {
    background-color: #ff5252;
    transform: translateZ(5px) translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

/* Cart Page Professional Design */
.cart-section {
    padding: 3rem 0;
    min-height: 70vh;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.cart-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cart-section h2:before {
    content: '🛒';
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
}

.cart-items {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 100px 120px;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item:hover {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding-left: 2rem;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f9f4;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.cart-item-details p {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #f0f9f4;
    padding: 0.5rem;
    border-radius: 8px;
}

.cart-item-quantity button {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.cart-item-quantity button:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.cart-item-quantity span {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-actions button {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.remove-btn {
    background-color: #ff6b6b;
    color: white;
}

.remove-btn:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
}

/* Cart Summary */
.cart-summary {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
    border-top: 4px solid var(--primary-color);
}

.cart-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.cart-summary p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #666;
}

.cart-summary p span {
    font-weight: 600;
    color: var(--primary-color);
}

.cart-summary-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
    margin: 1.5rem 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
}

.cart-total span {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.cart-summary button {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(49, 206, 93, 0.3);
}

.cart-summary button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(49, 206, 93, 0.4);
}

/* Empty Cart Message */
.empty-cart-msg {
    text-align: center;
    padding: 3rem;
    color: #999;
}

.empty-cart-msg p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.empty-cart-msg a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Delivery Section */
.delivery-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.delivery-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.delivery-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.delivery-option input[type="radio"] {
    margin-top: 0.3rem;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.delivery-option:hover {
    border-color: var(--primary-color);
    background-color: rgba(49, 206, 93, 0.05);
}

.delivery-option input[type="radio"]:checked ~ .option-content {
    font-weight: 600;
}

.option-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.option-title {
    font-weight: 600;
    color: var(--dark-color);
}

.option-time {
    font-size: 0.9rem;
    color: #666;
}

.option-price {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Payment Section */
.payment-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.payment-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background-color: rgba(49, 206, 93, 0.05);
}

.payment-option input[type="radio"]:checked + .payment-content {
    color: var(--primary-color);
}

.payment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.payment-title {
    font-weight: 600;
    color: var(--dark-color);
}

.payment-option input[type="radio"]:checked + .payment-content .payment-icon,
.payment-option input[type="radio"]:checked + .payment-content .payment-title {
    color: var(--primary-color);
}

/* Cart Content Layout */
.cart-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 2.5rem;
}

.cart-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Professional Footer */
.footer-professional {
    background: linear-gradient(135deg, #131921 0%, #1a1a2e 100%);
    color: #aaa;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    transition: all 0.2s;
}

.footer-section ul li a:hover {
    margin-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(49, 206, 93, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Chat FAB Button */
.chat-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(49, 206, 93, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.chat-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(49, 206, 93, 0.4);
}

/* Offers Section */
.offers-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a3e 50%, #0f0f1e 100%);
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(49, 206, 93, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.offers-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(49, 206, 93, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.offers-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.offers-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.offers-header p {
    font-size: 1.1rem;
    color: #aaa;
}

.offers-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.offer-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(49, 206, 93, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(49, 206, 93, 0.3);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(49, 206, 93, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.offer-card:hover {
    transform: translateY(-15px) scale(1.05);
    background: linear-gradient(135deg, rgba(49, 206, 93, 0.2) 0%, rgba(49, 206, 93, 0.15) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(49, 206, 93, 0.3);
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card-1 { }
.offer-card-2 { }
.offer-card-3 { }
.offer-card-4 { }
.offer-card-5 { }

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}



.offer-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.offer-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.offer-discount {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.offer-desc {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.offer-btn {
    display: inline-block;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(49, 206, 93, 0.3);
}

.offer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(49, 206, 93, 0.4);
}

/* Responsive Offers */
@media (max-width: 768px) {
    .offers-header h2 {
        font-size: 1.8rem;
    }

    .offers-carousel {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
    }

    .offer-card {
        padding: 1.5rem;
    }

    .offer-icon {
        font-size: 2.5rem;
    }

    .offer-discount {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .promo-content {
        gap: 0.7rem;
    }

    .offers-header h2 {
        font-size: 1.5rem;
    }

    .offers-carousel {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .offer-card {
        padding: 1.2rem;
    }

    .offer-icon {
        font-size: 2rem;
    }

    .offer-discount {
        font-size: 1.2rem;
    }

    .offer-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(90deg, #ff6b6b, #ff8e53, #ffb627, #31ce5d);
    background-size: 300% 300%;
    padding: 0.8rem;
    text-align: center;
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.promo-icon {
    font-size: 1.2rem;
}

.promo-text {
    letter-spacing: 1px;
}

/* Hero Mobile */ducts {
    .hero {m 0;
        padding: 4rem 1rem;
    }
    oducts h2 {
    .hero-content h2 {
        font-size: 2rem;
    }
    cts .products-grid {
    .hero-content p {auto-fill, minmax(140px, 1fr));
        font-size: 1.1rem;   gap: 1rem;
    }}
    
    /* Location Mobile */
    .location-section {a (max-width: 480px) {
        padding: 2rem 1rem;/* Extra Small Devices */
    }
    
    .location-section h2 {
        font-size: 1.5rem;
    }.logo h1 {
    ;
    .location-section iframe {
        height: 250px !important;
    }site-logo {
        width: 35px;
    /* Featured Products Mobile */;
    .featured-products {
        padding: 2rem 0;
    }search-bar {
        flex-direction: column;
    .featured-products h2 {
        font-size: 1.5rem;
    }search-input {
        width: 100%;
    .featured-products .products-grid {rem;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .container {
        padding: 0 15px;nter;
    }
    
    .logo h1 {
        font-size: 1.2rem; - 0.25rem);
    }
    
    .site-logo {
        width: 35px;;
        height: 35px;
    }
    tent {
    .search-bar {dth: 140px;
        flex-direction: column;
    }
    
    .search-input {
    .dropdown-content a {
        width: 100%;g: 0.6rem 1rem;
        padding: 0.6rem;
        font-size: 16px;
    }
    
    .search-btn {ns: repeat(2, 1fr);
        width: 100%;   gap: 0.8rem;
    }}
    
    .nav-links {
        justify-content: center;e-columns: repeat(2, 1fr);
    }
    
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);x;
    }
    
    .nav-links a {
        font-size: 0.9rem;mns: 1fr;
        padding: 0.5rem;   padding: 1.5rem;
    }    margin-bottom: 1.5rem;
    
    .dropdown-content {
        min-width: 150px;
        left: -50px;
    }
    
    .cart-icon {
        padding: 0.5rem 0.8rem;om: 1rem;
        font-size: 0.9rem;
    }
    
    /* Products Grid Mobile */.filter-group label {
    .products-grid {: 0.9rem;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    ard Mobile */
    .products-section .container {
        grid-template-columns: 1fr;
    }
    
    .filters {.product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);size: 0.65rem;
    }
    
    .products-grid {.cart-item-quantity {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }product-info {
        padding: 1rem;
    .filters h3 {
        font-size: 1.1rem;
    }product-name {
        font-size: 0.95rem;
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }   font-size: 1.3rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;rem;
    }   font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
       grid-template-columns: 1fr;
    .product-info {    gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {    padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {    grid-template-columns: 70px 1fr;
        font-size: 1.3rem;;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {
    .hero-content p {.85rem;
        font-size: 1rem;
    }
    .location-section h2 {
    .btn {: 1.3rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
       font-size: 0.9rem;
    .splash-logo {}
        width: 80px;
        height: 80px;
    }.3rem;
    
    .splash-content h1 {
        font-size: 2rem;
    }60px) {
     */
    .splash-content p {nav-links li {
        font-size: 1rem;       flex: 0 1 calc(50% - 0.2rem);
    }    }
    
    .footer {
        padding: 1.5rem 0;umns: 1fr;
    }
    
    .footer p {
        font-size: 0.85rem;ducts .products-grid {
    }emplate-columns: 1fr;
    
    .location-section h2 {
        font-size: 1.3rem;product-image {
    }    height: 120px;
    
    .location-section p {
        font-size: 0.9rem;
    }   padding: 0.7rem;
    }
    .featured-products h2 {
        font-size: 1.3rem;
    }
}
   
@media (max-width: 360px) {    .add-to-cart,
    /* Very Small Devices */
    .nav-links li {
        flex: 0 1 calc(50% - 0.2rem);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .product-info {
        padding: 1rem;
    }
    .filters h3 {
        font-size: 1.1rem;
    }
    .product-name {
        font-size: 0.95rem;
    }
    .filter-group {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .filter-group label {
        font-size: 0.9rem;
        padding: 0.3rem;
    }
    
    /* Product Card Mobile */
    .product-card {
        border-radius: 10px;
        font-size: 0.8rem;
    }
    .product-image {
        height: 180px;
    }
    .product-info {
        gap: 1.5rem;
        padding: 1rem;
    }
    cart-items {
    .product-name {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    cart-item {
    .product-price {
        grid-template-columns: 70px 1fr;
        font-size: 1.3rem;
    }
    
    .product-rating {
        font-size: 0.9rem;
    }
    
    .add-to-cart,
    .buy-now {
        padding: 0.5rem 0.4rem;
        font-size: 1.6rem;
    }
    
    .cart-item-quantity button {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .splash-logo {
    .cart-item-quantity span {
        min-width: 25px;
        font-size: 0.9rem;
    }
    .splash-content h1 {
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    .splash-content p {
    .cart-item-details p {rem;
        font-size: 0.95rem;
    }
    .footer {
    .hero-content h2 {5rem 0;
        font-size: 1.5rem;
    }
    .footer p {