/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Delivery Notice Styles */
.delivery-notice {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 6px 0;
    position: relative;
    z-index: 1001;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

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

.delivery-notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
}

.delivery-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.delivery-text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.delivery-text strong {
    font-weight: 600;
    font-size: 0.9rem;
}

.delivery-amounts {
    font-size: 0.85rem;
    color: #f8f9fa;
    font-weight: 500;
}

.delivery-notice-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.delivery-notice-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    font-size: 12px;
    color: white;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-main {
    padding: 10px 0;
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.search-cart-container {
    display: contents;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.logo {
    cursor: pointer;
    color: white;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.95;
    margin: 0;
}

.header-left-actions {
    display: flex;
    gap: 8px;
}

.search-bar {
    max-width: 500px;
    position: relative;
    justify-self: center;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    background: white;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.header button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.download-btn, .whatsapp-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    font-size: 13px;
}

.download-btn:hover, .whatsapp-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.order-quickly-btn, .payment-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b35;
}

.order-quickly-btn:hover, .payment-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cart-btn {
    background: #28a745;
    color: white;
    position: relative;
}

.cart-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

.cart-badge {
    font-weight: bold;
}

/* Mobile Header Row */
.mobile-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 80px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu-item {
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-align: left;
}

.mobile-menu-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu-item span:first-child {
    font-size: 20px;
}

/* Navigation Bar */
.nav-bar {
    background: rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.category-nav {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: thin;
}

.category-nav::-webkit-scrollbar {
    height: 6px;
}

.category-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.category-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.nav-item {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-item:hover, .nav-item.active {
    background: white;
    color: #ff6b35;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 0;
    color: white;
    margin-bottom: 30px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-left h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease;
}

.hero-left p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 25px 0;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    animation: fadeInUp 1.2s ease;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #ff5722;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: white;
    color: #667eea;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.hero-video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.hero-video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.video-audio-toggle {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-audio-toggle:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

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

/* Products Section */
.products-section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.filter-bar {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.filter-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-controls select, .filter-controls input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    flex: 1;
    min-width: 200px;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.discount-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff3838;
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
}

.product-actions {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-actions button {
    background: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.product-actions button:hover {
    transform: scale(1.1);
    background: #ff6b35;
}

.product-info {
    padding: 12px;
}

.product-category {
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
    line-height: 1.3;
    min-height: 36px;
}

.product-code {
    color: #999;
    font-size: 11px;
    margin-bottom: 2px;
}

.product-unit {
    color: #666;
    font-size: 12px;
    margin-bottom: 8px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 13px;
}

.discount-price {
    color: #28a745;
    font-size: 18px;
    font-weight: bold;
}

.add-to-cart-btn {
    width: 100%;
    padding: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-1px);
}

.load-more-container {
    text-align: center;
    margin-top: 30px;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
}

.cart-overlay.active {
    display: block;
}

.cart-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 2001;
    display: flex;
    flex-direction: column;
}

.cart-overlay.active .cart-sidebar {
    transform: translateX(0);
}

.cart-header {
    padding: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.item-price {
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
}

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

.quantity-controls button {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.quantity-controls button:hover:not(:disabled) {
    background: #f8f9fa;
}

.quantity-controls button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.item-total {
    text-align: right;
}

.item-subtotal {
    font-weight: bold;
    color: #28a745;
    margin-bottom: 5px;
}

.remove-item {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.remove-item:hover {
    transform: scale(1.2);
}

.cart-footer {
    padding: 20px;
    border-top: 2px solid #eee;
    background: #f8f9fa;
}

.cart-total {
    margin-bottom: 15px;
}

.cart-total h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
}

.savings {
    color: #28a745;
    font-size: 14px;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.clear-cart-btn {
    width: 100%;
    padding: 10px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.clear-cart-btn:hover {
    background: #c82333;
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: #666;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Price List Modal - Smaller Version */
.price-list-modal {
    max-width: 400px !important;
    width: 90% !important;
}

.price-list-modal .modal-content {
    padding: 15px !important;
}

.price-list-modal .download-options {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
}

.price-list-modal .download-option {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
}

.price-list-modal .option-icon {
    font-size: 28px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.price-list-modal .option-details {
    flex: 1;
    text-align: left;
}

.price-list-modal .option-details h3 {
    font-size: 16px;
    margin-bottom: 2px;
}

.price-list-modal .option-details p {
    font-size: 13px;
    margin-bottom: 0;
}

.price-list-modal .download-arrow {
    font-size: 18px;
    margin-top: 0;
    text-align: center;
    flex-shrink: 0;
}

.price-list-modal .modal-header h2 {
    font-size: 18px;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header {
    padding: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-content {
    padding: 20px;
}

.payment-section {
    margin-bottom: 25px;
}

.payment-section h3 {
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.payment-label {
    font-weight: 500;
    color: #666;
}

.payment-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: monospace;
    font-size: 14px;
}

.copy-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #0056b3;
}

.qr-section {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.qr-section h3 {
    margin-bottom: 15px;
    color: #333;
}

.qr-container {
    display: inline-block;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.qr-code {
    width: 200px;
    height: 200px;
    display: block;
}

.qr-description {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

.download-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.download-option {
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: left;
}

.download-option:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pdf-option:hover {
    background: linear-gradient(135deg, #fff5f5, #ffe0e0);
}

.excel-option:hover {
    background: linear-gradient(135deg, #f0fff0, #e0ffe0);
}

.option-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.option-details h3 {
    color: #333;
    margin-bottom: 5px;
}

.option-details p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.file-size {
    color: #999;
    font-size: 12px;
}

.download-arrow {
    text-align: right;
    font-size: 24px;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 15px;
    color: #ff6b35;
}

.footer-section > p {
    line-height: 1.8;
    color: #ecf0f1;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-link {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    text-align: left;
    display: block;
}

.footer-link:hover {
    color: #ff6b35;
}

.footer-subsections {
    display: flex;
    gap: 40px;
}

.follow-connect-section, .business-hours-section {
    flex: 1;
}

.follow-connect-section h4, .business-hours-section h4 {
    color: #ff6b35;
    margin-bottom: 12px;
    font-size: 16px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: left;
    width: 120px;
}

.social-links button:hover {
    background: #ff6b35;
    border-color: #ff6b35;
}

.hours-info {
    color: #ecf0f1;
    line-height: 1.8;
}

.hours-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.address {
    color: #ecf0f1;
    line-height: 1.8;
}

.address p {
    margin-bottom: 8px;
    font-size: 14px;
}

.map-container {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.legal-disclaimer {
    margin-bottom: 20px;
}

.legal-disclaimer p {
    color: #bdc3c7;
    font-size: 12px;
    line-height: 1.6;
}

.copyright-section {
    text-align: center;
}

.copyright-section p {
    color: #ecf0f1;
    margin-bottom: 5px;
}

/* Float Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float-btn {
    background: #25d366;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.order-quickly-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-quickly-float-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.order-quickly-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.order-quickly-label {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    display: none;
}

.order-quickly-float:hover .order-quickly-label {
    display: block;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .header-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .logo-section {
        align-items: center;
        text-align: center;
    }
    
    .header-left-actions {
        justify-content: center;
    }
    
    .search-bar {
        max-width: 100%;
        justify-self: center;
    }
    
    .header-actions {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-subsections {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-top {
        display: none;
    }

    .header-main {
        padding: 8px 0;
    }

    .header-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .search-cart-container {
        display: flex;
        gap: 8px;
        width: 100%;
        align-items: center;
    }
    
    .logo-section {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .mobile-header-row {
        width: 100%;
    }
    
    .logo {
        text-align: left;
        flex: 1;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo p {
        font-size: 0.75rem;
    }
    
    .hamburger-menu {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
    
    .header-left-actions {
        display: none;
    }

    .search-bar {
        max-width: 100%;
        width: 50%;
    }

    .header-actions {
        width: 50%;
        justify-content: flex-end;
        padding-left: 8px;
    }

    .header-actions .cart-btn {
        display: flex;
        flex: 1;
        justify-content: center;
        padding: 8px 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .search-input {
        font-size: 13px;
        padding: 8px 35px 8px 12px;
    }

    .search-btn {
        font-size: 16px;
    }

    .header-actions .order-quickly-btn,
    .header-actions .payment-btn {
        display: none;
    }

    .nav-bar {
        padding: 8px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

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

    .product-image {
        height: 120px;
    }

    .cart-sidebar {
        width: 100%;
    }

    .modal {
        max-width: 95%;
    }

    .download-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-subsections {
        flex-direction: row;
        gap: 30px;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .delivery-notice-content {
        padding: 0 40px 0 12px;
    }
    
    .delivery-text {
        flex-direction: column;
        gap: 2px;
    }
    
    .delivery-text strong {
        font-size: 0.8rem;
    }
    
    .delivery-amounts {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .delivery-notice-close {
        right: 8px;
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        border-radius: 6px;
    }

    .product-image {
        height: 100px;
    }

    .product-info {
        padding: 8px;
    }

    .product-name {
        font-size: 13px;
        min-height: 32px;
    }

    .discount-price {
        font-size: 16px;
    }

    .add-to-cart-btn {
        font-size: 12px;
        padding: 7px;
    }
    
    .footer-subsections {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .delivery-notice {
        padding: 5px 0;
    }
    
    .delivery-icon {
        font-size: 1rem;
    }

    .search-input {
        font-size: 12px;
        padding: 8px 32px 8px 10px;
    }

    .header-actions .cart-btn {
        font-size: 11px;
        padding: 8px 8px;
    }

    .cart-badge {
        font-size: 11px;
    }
    
    .hero-left h1 {
        font-size: 1.8rem;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-image {
        height: 100px;
    }

    .product-info {
        padding: 6px;
    }

    .product-name {
        font-size: 11px;
        min-height: auto;
    }

    .discount-price {
        font-size: 14px;
    }

    .add-to-cart-btn {
        font-size: 11px;
        padding: 6px;
    }

    .delivery-amounts {
        font-size: 0.7rem;
    }
}
