/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

:root {
    --brand-green: #1B4332;
    --brand-turquoise: #2EC4B6;
    --bg-gray: #f4f7f6;
    --speed: 2.2s;
    --gsk-ease: cubic-bezier(0.19, 1, 0.22, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    position: relative;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}



/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #2196F3;
}

.logo img {
    height: 45px;
    width: auto;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    display: flex;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    outline: none;
}

.search-bar button {
    background: #4CAF50;
    border: none;
    padding: 0 20px;
    color: white;
    cursor: pointer;
    transition: all 400ms ease;
}

.search-bar button:hover {
    background: #32b738;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    background: #17A2B8;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    font-size: 18px;
}

.icon-btn:hover {
    background: #138496;
    transform: scale(1.1);
}

.icon-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign-in-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sign-in-btn:hover {
    color: #2196F3;
}

/* Navigation */
.nav {
    background: #17A2B8;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    padding: 15px 0;
    overflow-x: auto;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: #4CAF50;
}

.hot-deals {
    color: #4CAF50;
}
.hot-deals:hover{
    color: #007bff;
} 

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    color: #333;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 20px;
    margin-top: 15px;
    z-index: 1001;
}

.dropdown-category h3 {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}


.subcategory {
    list-style: none;
}

.subcategory li {
    padding: 8px 0;
}



.subcategory a {
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.dropdown:hover .subcategory{
    display: block;

}

.subcategory li a:hover {
  background-color: #f1f1f1;
  color: #28a745;
}

/* Hero Slider - Simple Banner Style (Like MedPlus) */
.hero-slider {
    position: relative;
    background: #FFFFFF; /* White background */
    padding: 0; /* Remove padding to eliminate gap */
    overflow: hidden;
    width: 100%;
}

/* Add padding to slider container for content spacing */
.hero-slider .slider-container {
    padding: 20px;
}

.slider-container {
    position: relative;
    height: 450px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-slider .slider-container {
        padding: 10px;
    }
    
    .slider-container {
        height: 300px;
        border-radius: 10px;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.slide.active {
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Remove old slide content styles - not needed for simple banners */
.slide-content,
.slide-text,
.slide-image,
.phone-mockup,
.feature-image,
.cta-btn {
    display: none !important;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 24px;
    z-index: 10;
    transition: all 400ms ease;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 400ms ease;
}

.slider-dot.active {
    background: #FFFFFF;
    width: 30px;
    border-radius: 6px;
}

.slider-dot:hover {
    background: rgba(255,255,255,0.8);
}

/* Floating App Icons on Slider */
.floating-app-icons {
    position: absolute;
    bottom: 80px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 20;
    animation: floatUpDown 3s ease-in-out infinite;
    pointer-events: auto;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.app-icon-float {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.app-icon-float:hover {
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.app-icon-float i {
    font-size: 24px;
}

.app-icon-float.apple-store {
    background: linear-gradient(135deg, #000000 0%, #323232 100%);
    color: white;
}

.app-icon-float.apple-store:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #404040 100%);
}

.app-icon-float.google-play {
    background: linear-gradient(135deg, #1565C0 0%, #1976D2 100%);
    color: white;
}

.app-icon-float.google-play:hover {
    background: linear-gradient(135deg, #0d47a1 0%, #1565C0 100%);
}

.app-icon-float span {
    white-space: nowrap;
}

/* Responsive adjustments for floating app icons */
@media (max-width: 768px) {
    .floating-app-icons {
        bottom: 60px;
        right: 20px;
        gap: 8px;
    }
    
    .app-icon-float {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .app-icon-float i {
        font-size: 20px;
    }
    
    .app-icon-float span {
        display: none;
    }
    
    .app-icon-float {
        width: 45px;
        height: 45px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .slider-container {
        height: 500px;
    }
    
    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .slide-text {
        max-width: 100%;
    }
    
    .slide-text h1 {
        font-size: 36px;
    }
    
    .app-buttons {
        justify-content: center;
    }
}

/* Services Section */
.services {
    padding: 60px 0;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}

.service-card.telehealth {
    background: linear-gradient(135deg, rgba(23,162,184,0.85), rgba(0,188,212,0.85)), url('https://images.unsplash.com/photo-1622253692010-333f2da6031d?w=600&q=80');
    background-size: cover;
    background-position: center top;
}

.service-card.loyalty {
    background: linear-gradient(rgba(33,150,243,0.8), rgba(33,150,243,0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23bbdefb"/></svg>');
}

.service-card.lab-test {
    background: linear-gradient(rgba(76,175,80,0.8), rgba(76,175,80,0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23c8e6c9"/></svg>');
}

.service-card.vaccination {
    background: linear-gradient(rgba(255,152,0,0.7), rgba(255,152,0,0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23ffe0b2"/></svg>');
}

.service-content {
    padding: 30px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.service-btn {
    background: white;
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 10px;
}

.service-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Products Section */
.products {
    padding: 60px 0;
    background: #f5f5f5;
}

.products h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 400ms ease;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-image {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #ddd;
}

.product-info {
    padding: 15px;
}

.product-category {
    font-size: 12px;
    color: #4CAF50;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 40px;
}

.product-price {
    font-size: 20px;
    color: #4CAF50;
    font-weight: bold;
    margin-bottom: 10px;
}

.add-to-cart {
    width: 100%;
    background: #2196F3;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.add-to-cart:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.3);
}

/* Footer */
.footer {
    background: #17A2B8;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
}

.footer-col a:hover {
    color: #4CAF50;
}

.app-download {
    margin-top: 20px;
}

.app-download p {
    color: #333;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.app-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.app-btn {
    background: #1565C0;
    border: 2px solid #1565C0;
    padding: 12px 18px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-btn:hover {
    background: #0d47a1;
    border-color: #0d47a1;
    color: white;
    transform: scale(1.05);
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px;
    background: white;
    color: #333;
}

/* Container for the specific form, ensuring it's not full-screen */
.newsletter-form-main {
    max-width: 400px; /* Adjust this value to control how wide the section is */
    margin: 0 auto; /* Centers the whole block */
    text-align: center;
}

/* 1. Stack the input and button, and remove the side padding from before */
.newsletter-form-main .form-group {
    display: flex;
    flex-direction: column; /* This stacks them vertically */
    gap: 15px; /* Adds space between input and button */
    align-items: center; /* Centers them horizontally within the block */
}

/* 2. Style the input box: make it smaller and full width of its group */
.newsletter-form-main input {
    width: auto; /* Fills the 400px maximum */
    max-width: 100%; /* Ensures it doesn't overflow */
    padding: 10px 25px; /* Comfortable padding, not too massive */
    font-size: 16px; /* Great for readability and mobile zoom prevention */
    border: 1px solid #ccc;
    border-radius: 5px; /* Clean, full border-radius since it's stacked */
    box-sizing: border-box; /* Crucial for width calculation */
}

/* 3. Style the "Subscribe Now" button: match your green and shrink it */
.newsletter-btn-main {
    background-color: #1B4332; /* Using your --brand-green variable color */
    color: white;
    border: none;
    padding: 10px 25px; /* Makes the button smaller and more centered */
    font-size: 15px; /* Slightly smaller text */
    font-weight: 500;
    border-radius: 5px; /* Matching the input border radius */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Space for the icon */
    width: auto; /* It will only be as wide as its content */
    max-width: 180px; /* Prevents it from getting too wide */
    white-space: nowrap; /* Stops text from wrapping */
}

/* Add a hover effect for a professional touch */
.newsletter-btn-main:hover {
    background-color: #153a2a; /* Slightly darker shade of your brand green */
}

.newsletter-form input::placeholder {
    color: #999;
    opacity: 1;
}

.newsletter-form input::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
}

.newsletter-form input::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.newsletter-form input:-ms-input-placeholder {
    color: #999;
    opacity: 1;
}

.newsletter-form button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #45a049;
}

.qr-code {
    text-align: center;
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    background: white;
    margin: 0 auto 10px;
    border-radius: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 30px;
    background: rgba(21, 101, 192, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: rgba(13, 71, 161, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    transition: right 0.3s;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
}

.close-cart:hover {
    color: #f44336;
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 40px 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ddd;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #4CAF50;
    font-weight: bold;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-btn {
    background: #f0f0f0;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    cursor: pointer;
}

.qty-btn:hover {
    background: #e0e0e0;
    transform: scale(1.1);
}

.remove-item {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 20px;
}

.remove-item:hover {
    color: #f44336;
    transform: scale(1.2);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    background: #2196F3;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.checkout-btn:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}
/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
    }
    
    .search-bar {
        order: 3;
        width: 100%;
        max-width: 100%;
    }
    
    .nav-menu {
        gap: 15px;
        font-size: 13px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .slide-content {
        flex-direction: column;
        text-align: center;
    }
    
    .slide-text h1 {
        font-size: 32px;
    }
    
    .loyalty-card {
        width: 100%;
        max-width: 300px;
        height: 180px;
    }
    
    .services h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .dropdown-menu {
        min-width: 250px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 18px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .icon-btn {
        width: 40px;
        height: 40px;
    }
    
    .slide-text h1 {
        font-size: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Header */
.page-header {
    background: #1565C0;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Products Page */
.products-page {
    padding: 60px 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.filters-sidebar {
    background: white;
    padding: 20px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-sidebar h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #666;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
}

.filter-group input[type="checkbox"] {
    margin-right: 8px;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

@media (max-width: 576px) {
    .products-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .products-toolbar select {
        width: 100%;
    }
}

.products-toolbar select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

/* Prescription Upload */
.prescription-upload {
    padding: 60px 0;
    background: #f5f5f5;
}

.upload-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.upload-icon {
    text-align: center;
    font-size: 60px;
    color: #2196F3;
    margin-bottom: 20px;
}

.upload-card h2 {
    text-align: center;
    margin-bottom: 10px;
}

.upload-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.prescription-form .form-group {
    margin-bottom: 20px;
}

.prescription-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.prescription-form input,
.prescription-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.prescription-form textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload label {
    display: block;
    padding: 40px;
    border: 2px dashed #ddd;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 400ms ease;
}

.file-upload label:hover {
    border-color: #2196F3;
    background: #f0f8ff;
}

.file-upload label i {
    font-size: 40px;
    color: #2196F3;
    display: block;
    margin-bottom: 10px;
}

.file-upload label span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.file-upload label small {
    color: #999;
    font-size: 12px;
}

.submit-btn {
    width: 100%;
    background: #2196F3;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 40px;
    color: #4CAF50;
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.info-card p {
    color: #666;
    font-size: 14px;
}

/* Loyalty Page */
.loyalty-hero {
    background: linear-gradient(135deg, #2196F3, #254798);
    color: white;
    padding: 80px 0;
}

.loyalty-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.loyalty-content {
    flex: 1;
}

.loyalty-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.loyalty-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.loyalty-card-display {
    flex: 1;
    display: flex;
    justify-content: center;
}

.loyalty-card-3d {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.loyalty-benefits {
    padding: 80px 0;
    background: #f5f5f5;
}

.loyalty-benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 400ms ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 50px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
}

.loyalty-form-section {
    padding: 80px 0;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-card h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    text-align: center;
    animation: slideUp 0.3s ease;
}

.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.modal-content h2 {
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 10px;
    color: #666;
}

.modal-content .cta-btn {
    margin-top: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .loyalty-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .loyalty-content h1 {
        font-size: 32px;
    }
    
    .loyalty-card-3d {
        width: 300px;
        height: 180px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}


/* Checkout Page */
.checkout-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.checkout-form-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 400ms ease;
}

.step.active .step-number {
    background: #2196F3;
    color: white;
}

.step-title {
    font-size: 14px;
    color: #999;
}

.step.active .step-title {
    color: #2196F3;
    font-weight: 600;
}

.checkout-step-content {
    display: none;
}

.checkout-step-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.checkout-step-content h2 {
    margin-bottom: 25px;
    font-size: 24px;
}

.btn-next, .btn-back, .btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 400ms ease;
}

.btn-next, .btn-primary {
    background: #2196F3;
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-next:hover, .btn-primary:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.btn-back {
    background: #f5f5f5;
    color: #666;
}

.btn-back:hover {
    background: #e0e0e0;
}

.btn-secondary {
    background: white;
    color: #2196F3;
    border: 2px solid #2196F3;
}

.btn-secondary:hover {
    background: #f0f8ff;
}

.checkout-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.checkout-actions .btn-next {
    flex: 1;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 400ms ease;
}

.payment-option:hover {
    border-color: #2196F3;
    background: #f0f8ff;
}

.payment-option.active {
    border-color: #2196F3;
    background: #f0f8ff;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.payment-option i {
    font-size: 24px;
    color: #2196F3;
}

.payment-option span {
    flex: 1;
}

.payment-option label > span:first-of-type {
    font-weight: 600;
    font-size: 16px;
}

.payment-option small {
    display: block;
    color: #666;
    font-size: 13px;
    margin-top: 5px;
}

.payment-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.payment-details.hidden {
    display: none;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4CAF50;
}

.bank-info h4 {
    margin-bottom: 15px;
}

.bank-info p {
    margin-bottom: 10px;
}

.bank-info .note {
    color: #f44336;
    font-size: 14px;
    margin-top: 15px;
}

.cash-info {
    color: #666;
}

.cash-info p {
    margin-bottom: 10px;
}

/* Order Summary */
.order-summary-container {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.order-summary {
    background: white;
    border-radius: 15px;
    padding: 25px;
}

.order-summary h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.summary-item-name {
    font-size: 14px;
}

.summary-item-qty {
    font-size: 12px;
    color: #666;
}

.summary-item-price {
    font-weight: 600;
    color: #4CAF50;
}

.summary-totals {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.summary-row.total {
    font-size: 20px;
    font-weight: bold;
    color: #2196F3;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: #f0f8ff;
    border-radius: 8px;
    color: #2196F3;
    font-size: 14px;
}

/* Order Success */
.order-success {
    text-align: center;
    padding: 40px 20px;
}

.order-success .success-icon {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.order-success h2 {
    margin-bottom: 20px;
    color: #4CAF50;
}

.order-success p {
    margin-bottom: 15px;
    font-size: 16px;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .order-summary-container {
        position: static;
    }
    
    .checkout-steps::before {
        display: none;
    }
    
    .checkout-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .step {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .checkout-actions {
        flex-direction: column;
    }
    
    .success-actions {
        flex-direction: column;
    }
}


/* Login Modal */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.login-modal.active {
    display: flex;
}

.login-modal-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 400ms ease;
}

.close-modal:hover {
    background: #f5f5f5;
    color: #333;
    transform: rotate(90deg);
}

.login-modal-content h2 {
    color: #2196F3;
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 400ms ease;
    color: white;
}

.social-btn i {
    font-size: 18px;
}

.facebook-btn {
    background: #3b5998;
}

.facebook-btn:hover {
    background: #2d4373;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 89, 152, 0.4);
}

.google-btn {
    background: #db4437;
}

.google-btn:hover {
    background: #c23321;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(219, 68, 55, 0.4);
}

.twitter-btn {
    background: #1DA1F2;
}

.twitter-btn:hover {
    background: #0d8bd9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}

.login-form {
    margin-top: 25px;
}

.login-form .form-group {
    margin-bottom: 15px;
}

.login-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 400ms ease;
}

.login-form input:focus {
    outline: none;
    border-color: #2196F3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.login-submit-btn {
    width: 100%;
    padding: 14px;
    background: #FFC107;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: all 400ms ease;
}

.login-submit-btn:hover {
    background: #FFB300;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.login-footer {
    margin-top: 25px;
    text-align: center;
}

.forgot-password {
    color: #2196F3;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-footer p {
    color: #666;
    font-size: 14px;
}

.create-account {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

.create-account:hover {
    text-decoration: underline;
}

/* Responsive Login Modal */
@media (max-width: 768px) {
    .login-modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .login-modal-content h2 {
        font-size: 24px;
    }
    
    .social-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}


/* Promo Section */
.promo-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.promo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.promo-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    background-size: cover;
    background-position: center;
    transition: all 400ms ease;
    cursor: pointer;
}

.promo-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.promo-large {
    grid-row: span 2;
    background: linear-gradient(135deg, #D1D5DB, #E5E7EB);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

.promo-small:nth-child(2) {
    background: linear-gradient(135deg, #D1D5DB, #E5E7EB);
}

.promo-small:nth-child(3) {
    background: linear-gradient(135deg, #D1D5DB, #E5E7EB);
}

.promo-content {
    color: #333;
    z-index: 2;
}

.promo-badge {
    display: inline-block;
    background: rgba(21, 101, 192, 0.15);
    color: #1565C0;
    padding: 6px 15px;
    border-radius: 20px;
}
/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #f9f9f9;
    overflow: hidden;
    width: 100%;
}

.partners-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    color: #333;
}

.partners-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.partners-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: slidePartners 30s linear infinite;
    width: max-content;
}

.promo-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 400ms ease;
}

.promo-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.promo-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.promo-image img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #f9f9f9;
    overflow: hidden;
}

.partners-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    color: #333;
}

.partners-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.partners-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: slidePartners 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 400ms ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 400ms ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Promo & Partners */
@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-large {
        grid-row: span 1;
        flex-direction: column;
        text-align: center;
    }
    
    .promo-image {
        justify-content: center;
        margin-top: 20px;
    }
    
    .promo-image img {
        max-width: 200px;
    }
    
    .promo-content h3 {
        font-size: 28px;
    }
    
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-section h2 {
        font-size: 28px;
    }
    
    .partner-item {
        width: 150px;
        height: 80px;
    }
    
    .partners-track {
        gap: 40px;
    }
}


/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    transition: all 400ms ease;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    background: #fff;
}

.testimonial-rating {
    color: #FFC107;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2196F3, #4CAF50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.author-info span {
    font-size: 13px;
    color: #999;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    margin: 0;
}

.see-all-link {
    color: #2196F3;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 400ms ease;
}

.see-all-link:hover {
    gap: 12px;
    color: #1976D2;
}

.news-slider-container {
    overflow: hidden;
    position: relative;
}

.news-slider {
    display: flex;
    gap: 25px;
    animation: slideNews 20s linear infinite;
}

.news-slider:hover {
    animation-play-state: paused;
}

@keyframes slideNews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - 25px));
    }
}

.news-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 400ms ease;
    cursor: pointer;
    position: relative;
}

.news-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: inset(0 0 0 0 round 15px 15px 0 0);
}

.news-card:hover .news-image img {
    transform: scale(1.15);
    clip-path: polygon(
        0% 0%,
        0% 8%,
        2% 6%,
        4% 4%,
        6% 2%,
        8% 0%,
        100% 0%,
        100% 100%,
        0% 100%
    );
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2196F3;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 400ms ease;
}

.read-more:hover {
    gap: 10px;
    color: #45a049;
}

/* Store Locations Section */
.stores-section {
    padding: 80px 0;
    background: white;
}

.stores-section .section-header {
    margin-bottom: 40px;
}

.stores-section .section-header h2 {
    font-size: 36px;
    margin-bottom: 5px;
}

.stores-section .section-header p {
    color: #666;
    font-size: 15px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.store-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 400ms ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.store-card:hover {
    background: white;
    border-color: #2196F3;
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.store-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #2196F3, #4CAF50);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.store-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-icon-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.store-info {
    flex: 1;
}

.store-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 700;
}

.store-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.store-phone {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 400ms ease;
}

.store-phone:hover {
    color: #45a049;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section,
    .news-section,
    .stores-section {
        padding: 60px 0;
    }
    
    .testimonials-section h2,
    .news-section h2,
    .stores-section h2 {
        font-size: 28px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .news-card {
        flex: 0 0 300px;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
    }
    
    .store-card {
        flex-direction: column;
        text-align: center;
    }
    
    .store-icon {
        margin: 0 auto;
    }
}


/* Product Quick View Modal */
.quick-view-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 400ms ease;
}

.quick-view-modal.active {
    display: flex;
}

.quick-view-content {
    background: white;
    border-radius: 15px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 400ms ease;
}

.close-quick-view {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 400ms ease;
    z-index: 10;
}

.close-quick-view:hover {
    background: #17A2B8;
    color: white;
    transform: rotate(90deg);
}

.quick-view-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.quick-view-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.quick-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.quick-view-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-view-category {
    color: #17A2B8;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.quick-view-details h2 {
    font-size: 28px;
    color: #333;
    margin: 0;
}

.quick-view-price {
    font-size: 32px;
    color: #4CAF50;
    font-weight: bold;
}

.quick-view-description {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.quick-view-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-selector .qty-btn {
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    transition: all 400ms ease;
}

.quantity-selector .qty-btn:hover {
    background: #17A2B8;
    color: white;
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.add-to-cart-btn {
    flex: 1;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 400ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76,175,80,0.3);
}

.add-to-wishlist-btn {
    background: white;
    border: 2px solid #e0e0e0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    transition: all 400ms ease;
}

.add-to-wishlist-btn:hover {
    border-color: #ff4757;
    color: #ff4757;
    transform: scale(1.1);
}

.add-to-wishlist-btn.active {
    background: #ff4757;
    border-color: #ff4757;
    color: white;
}

.add-to-wishlist-btn.active i {
    font-weight: 900;
}

.product-meta {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.product-meta p {
    margin: 10px 0;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-meta i {
    color: #4CAF50;
    font-size: 16px;
}

/* Wishlist Sidebar */
.wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 400ms ease;
    display: flex;
    flex-direction: column;
}

.wishlist-sidebar.open {
    right: 0;
}

.wishlist-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #17A2B8;
    color: white;
}

.wishlist-header h3 {
    margin: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-wishlist {
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    transition: all 400ms ease;
}

.close-wishlist:hover {
    transform: rotate(90deg);
}

.wishlist-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-wishlist {
    text-align: center;
    color: #999;
    padding: 40px 20px;
    font-size: 16px;
}

.wishlist-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 400ms ease;
    position: relative;
}

.wishlist-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.wishlist-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item-info {
    flex: 1;
}

.wishlist-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.wishlist-item-price {
    font-size: 18px;
    color: #4CAF50;
    font-weight: bold;
    margin-bottom: 10px;
}

.wishlist-item-actions {
    display: flex;
    gap: 10px;
}

.wishlist-item-actions button {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: all 400ms ease;
}

.move-to-cart-btn {
    background: #4CAF50;
    color: white;
}

.move-to-cart-btn:hover {
    background: #45a049;
}

.remove-wishlist-btn {
    background: #f5f5f5;
    color: #666;
}

.remove-wishlist-btn:hover {
    background: #ff4757;
    color: white;
}

.wishlist-footer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

.view-all-wishlist-btn {
    width: 100%;
    padding: 15px;
    background: #17A2B8;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 400ms ease;
}

.view-all-wishlist-btn:hover {
    background: #138496;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23,162,184,0.3);
}

/* Quick View Button on Product Cards */
.product-card {
    position: relative;
}

/* Chat Box Styles */
.chat-icon {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    z-index: 10003;
    transition: all 0.3s ease;
    pointer-events: auto;
    isolation: isolate;
}

.chat-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.chat-box {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
}

.chat-box.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.chat-header {
    background: #1565C0;
    color: white;
    padding: 15px 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header i {
    margin-right: 10px;
}

.chat-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bot-message {
    background: white;
    padding: 12px 15px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    max-width: 80%;
}

.bot-message i {
    color: #1565C0;
    margin-top: 3px;
}

.user-message {
    background: #1565C0;
    color: white;
    padding: 12px 15px;
    border-radius: 15px;
    margin-left: auto;
    max-width: 80%;
}

.chat-input {
    padding: 15px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
}

.chat-input button {
    background: #1565C0;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chat-input button:hover {
    background: #0d47a1;
}

/* Chat Button (when minimized) */
.chat-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 15px rgba(37,211,102,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.1);
}

/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--brand-green);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#scrollToTopBtn:hover {
    background: var(--brand-turquoise);
    transform: scale(1.1);
}

#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollToTopBtn:active {
    transform: scale(0.95);
}

/* Newsletter Section Styles */
.newsletter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin: 40px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    color: var(--brand-green);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter-text p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.benefit-item i {
    color: var(--brand-green);
    font-size: 1.5rem;
}

.benefit-item span {
    color: #333;
    font-weight: 600;
}

.newsletter-form-container h3 {
    color: var(--brand-green);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.newsletter-form-main {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
}

.form-group {
    flex: 1;
    display: flex;
    gap: 10px;
}

.form-group input {
    flex: 2;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: var(--brand-green);
}

.newsletter-btn-main {
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    flex: 1;
}

.newsletter-btn-main:hover {
    background: #007bff;
}

.newsletter-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .newsletter-form-main {
        flex-direction: column;
        max-width: 400px;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group input {
        flex: 1;
    }
    
    .newsletter-btn-main {
        flex: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #scrollToTopBtn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .chat-box {
        width: 300px;
        height: 400px;
        right: 10px;
        bottom: 90px;
    }
    
    .chat-button {
        right: 10px;
        bottom: 90px;
        width: 50px;
        height: 50px;
    }
}

.quick-view-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 400ms ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: #17A2B8;
    color: white;
    transform: scale(1.1);
}

.wishlist-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4757;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 400ms ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-card:hover .wishlist-badge {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-badge:hover {
    transform: scale(1.1);
}

.wishlist-badge.active {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-badge.active i {
    font-weight: 900;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .quick-view-body {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .quick-view-image {
        min-height: 300px;
    }
    
    .wishlist-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .quick-view-actions {
        flex-wrap: wrap;
    }
    
    .quantity-selector {
        width: 100%;
    }
    
    .add-to-cart-btn {
        width: 100%;
    }
}


/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #1565C0, #0d47a1);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.announcement-bar p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.announcement-bar i {
    font-size: 16px;
}


/* Copyright Text */
#copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
}

/* Copyright Text - Centered */
#copyright {
    text-align: center !important;
    margin: 30px auto 0 auto !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999 !important;
    font-size: 14px !important;
    width: 100% !important;
    display: block !important;
    clear: both !important;
}

/* Breadcrumb Navigation */
.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #1565C0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #0D47A1;
    text-decoration: underline;
}

.breadcrumb span {
    color: #333;
    font-weight: 500;
}

/* Payment Info Modal */
.payment-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.payment-info-modal.show {
    display: flex;
}

.payment-info-modal-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.payment-modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.payment-modal-header i {
    color: var(--brand-green);
    font-size: 32px;
}

.payment-modal-header h2 {
    color: var(--brand-green);
    margin: 0;
    font-size: 1.4rem;
}

.payment-details {
    margin-bottom: 25px;
}

.payment-info-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.payment-steps {
    list-style: none;
    padding: 0;
}

.payment-steps li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.payment-steps li i {
    color: var(--brand-green);
    font-size: 18px;
    margin-top: 2px;
}

.payment-steps li span {
    color: #333;
    font-weight: 500;
}

.payment-actions {
    display: flex;
    gap: 15px;
}

.payment-primary-btn {
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    flex: 1;
}

.payment-primary-btn:hover {
    background: var(--brand-turquoise);
}

.payment-secondary-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.payment-secondary-btn:hover {
    background: #5a6268;
}

/* Payment Icons Hover Effect */
.payment-icon {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 10px;
}

.payment-icon:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Footer App Download Buttons */
.app-download-buttons {
    margin-top: 20px;
    text-align: center;
}

.app-download-buttons p {
    margin: 0 0 15px 0;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.store-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 140px;
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.app-btn i {
    font-size: 24px;
    color: #000;
}

.app-btn.google-play i {
    color: #3DDC84;
}

.app-btn.app-store i {
    color: #000;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text small {
    font-size: 10px;
    color: #666;
    margin-bottom: 2px;
    font-weight: 400;
}

.btn-text strong {
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

/* Mobile Responsive for Footer App Buttons */
@media (max-width: 768px) {
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-btn {
        min-width: 180px;
        justify-content: center;
    }
    
    .btn-text {
        align-items: center;
    }
}

/* Mobile Responsive for Payment Modal */
@media (max-width: 768px) {
    .payment-info-modal-content {
        padding: 20px;
        margin: 20px;
    }
    
    .payment-modal-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .payment-primary-btn, .payment-secondary-btn {
        padding: 12px 20px;
    }
}




