* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geologica', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    contain: layout style;
}

/* Header Section */
.header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    will-change: transform;
    transform: translateZ(0);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    max-width: 195px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: #1E40AF;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 14px;
    font-weight: 400;
    color: #3B82F6;
    letter-spacing: 0.5px;
}

.search-section {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: none;
    background-color: #F3F4F6;
    border-radius: 25px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    background-color: #E5E7EB;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #6B7280;
    pointer-events: none;
}

/* Feather Icons Styling */
[data-feather] {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

.search-icon[data-feather] {
    width: 20px;
    height: 20px;
}

.action-icon [data-feather] {
    width: 24px;
    height: 24px;
}

.hamburger-icon[data-feather] {
    width: 20px;
    height: 20px;
}

.hero-nav-btn [data-feather] {
    width: 24px;
    height: 24px;
}

.action-icon-btn [data-feather] {
    width: 16px;
    height: 16px;
}

.featured-nav-btn [data-feather],
.sale-nav-btn [data-feather],
.best-offers-nav-btn [data-feather] {
    width: 18px;
    height: 18px;
}

.pharmacy-icon [data-feather] {
    width: 35px;
    height: 35px;
}

.newsletter-icon [data-feather] {
    width: 30px;
    height: 30px;
}

.location-icon[data-feather],
.footer-contact-icon[data-feather] {
    width: 18px;
    height: 18px;
}

.maps-link-btn [data-feather] {
    width: 20px;
    height: 20px;
}

.newsletter-submit-btn [data-feather] {
    width: 20px;
    height: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-icon {
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: #1F2937;
    transition: color 0.2s ease, transform 0.2s ease;
    will-change: transform;
}

.action-icon:hover {
    color: #3B82F6;
    transform: scale(1.1);
}

.action-icon svg {
    width: 100%;
    height: 100%;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #3B82F6;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    animation: badgeBounce 0.5s ease;
}

@keyframes badgeBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.contact-btn {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Navigation Bar */
.navbar {
    background-color: white;
    padding: 15px 0;
    border-top: 1px solid #E5E7EB;
    will-change: transform;
    transform: translateZ(0);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.nav-contact-btn {
    margin-left: auto;
}

.nav-center-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.featured-nav-mobile {
    display: none;
    width: 28px;
    height: 28px;
    border: none;
    background-color: #E0F2FE;
    border-radius: 4px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: #1E40AF;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.featured-nav-mobile:hover {
    background-color: #BFDBFE;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.featured-nav-mobile svg,
.featured-nav-mobile [data-feather] {
    width: 14px;
    height: 14px;
}

/* Desktop - Keep horizontal navigation */
@media (min-width: 1025px) {
    .nav-content {
        justify-content: space-between;
    }
    
    .categories-menu {
        order: 0;
        padding: 0;
        background-color: transparent;
        border: none;
        border-radius: 0;
    }
    
    .categories-menu:hover {
        opacity: 0.7;
        transform: none;
        box-shadow: none;
        background-color: transparent;
    }
    
    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        max-height: none;
        opacity: 1;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        max-width: none;
        width: auto;
        order: 0;
    }
    
    .nav-links li {
        list-style: none;
    }
    
    .nav-link {
        padding: 5px 0;
        display: inline-block;
        width: auto;
        border-bottom: none;
    }
    
    .nav-link:hover {
        background-color: transparent;
    }
    
    .nav-contact-btn {
        order: 0;
        margin-left: auto;
    }
}

.categories-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.categories-menu:hover {
    opacity: 0.7;
}

.categories-text {
    font-size: 14px;
    font-weight: 600;
    color: #1E40AF;
    letter-spacing: 0.5px;
}

.hamburger-icon {
    width: 20px;
    height: 20px;
    color: #1E40AF;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.close-icon {
    width: 20px;
    height: 20px;
    color: #1E40AF;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    flex-shrink: 0;
}

/* Desktop - Always show hamburger, hide close */
@media (min-width: 1025px) {
    .close-icon {
        display: none;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #1E40AF;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1E40AF;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #3B82F6;
}

.nav-link.active {
    color: #1E40AF;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

.nav-contact-btn {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.nav-contact-btn:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    will-change: transform;
    transform: translateZ(0);
}

.hero-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 450px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index: 0;
    will-change: opacity, transform;
    transform: translateZ(0);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    transform: translateZ(0);
}

.hero-slide.active .hero-bg-image {
    transform: scale(1);
}

.hero-slide:not(.active) .hero-bg-image {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(30 64 175 / 0%) 0%, rgb(59 130 246 / 0%) 50%, rgba(224, 242, 254, 0.6) 100%);
    z-index: 1;
}

.water-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 2;
}

.hero-slide .container {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    width: 100%;
}

.hero-text {
    max-width: 800px;
    text-align: center;
    z-index: 4;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out 0.2s, transform 0.5s ease-out 0.2s;
    will-change: opacity, transform;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    padding: 40px 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-slide.active .hero-text {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #1E40AF;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    opacity: 0.95;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(to bottom, #FF6B35, #FF8C5A);
    border-radius: 2px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #1E40AF;
    line-height: 1.15;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    color: #1E40AF;
    line-height: 1.5;
    margin: 0 auto 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

.hero-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    background: linear-gradient(135deg, #FF8C5A 0%, #FF6B35 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.hero-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
    position: relative;
    z-index: 4;
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.product-image-wrapper {
    position: relative;
}

.product-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    will-change: transform;
}

.product-image:hover {
    transform: scale(1.05);
}

.hero-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 2;
}

.hero-nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #1E40AF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.hero-nav-btn svg {
    width: 24px;
    height: 24px;
    color: #1E40AF;
    stroke: #1E40AF;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    pointer-events: none;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    padding: 0;
}

.hero-indicator:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-indicator.active {
    background-color: white;
    border-color: white;
    width: 30px;
    border-radius: 6px;
}

/* Category Section */
/* Services Section */
.services-section {
    padding: 35px 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #F3F4F6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.service-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #1E40AF 0%, #3B82F6 100%);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.service-item:hover::after {
    height: 60%;
}

.service-item:hover {
    background-color: #F8FAFC;
    transform: translateX(5px);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #E0F2FE;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-wrapper {
    background-color: #1E40AF;
    color: #fff;
    transform: scale(1.05);
}

.service-icon-wrapper i {
    width: 24px;
    height: 24px;
    color: #1E40AF;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-wrapper i {
    color: white;
}

.service-content {
    flex: 1;
    min-width: 0;
}

.service-title {
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 4px 0;
    font-family: 'Geologica', sans-serif;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

.service-item:hover .service-title {
    color: #1E40AF;
}

.service-description {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

.category-section {
    padding: 20px 0;
    background-color: white;
}

.category-cards {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    will-change: scroll-position;
    transform: translateZ(0);
}

.category-cards::-webkit-scrollbar {
    display: none;
}

.category-card {
    flex: 0 0 calc((100% - 90px) / 6);
    min-width: 160px;
    max-width: 220px;
    height: 280px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

.category-card:hover .card-bg {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(139, 108, 77, 0.85), rgba(160, 130, 100, 0.75));
    padding: 20px 16px;
    border-radius: 0 0 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 100px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-title {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.card-link {
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: white;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
    text-align: center;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin-top: 2px;
}

.card-link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration-thickness: 2px;
}

/* Featured Products Section */
.featured-products {
    padding: 60px 0;
    background-color: white;
    contain: layout style;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.featured-title {
    font-family: 'Geologica', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1E40AF;
    margin: 0;
    letter-spacing: 0.5px;
}

.featured-nav {
    display: flex;
    gap: 6px;
    background-color: transparent;
    padding: 0;
}

.featured-nav-btn {
    width: 36px;
    height: 36px;
    border: none;
    background-color: #E0F2FE;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E40AF;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.featured-nav-btn:hover {
    background-color: #BFDBFE;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.featured-nav-btn:active {
    transform: translateY(0);
}

.featured-nav-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.products-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    will-change: scroll-position;
    transform: translateZ(0);
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 250px;
    background-color: white;
    border-radius: 10px;
    padding: 18px;
    position: relative;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(229, 231, 235, 0.5);
    will-change: transform;
    transform: translateZ(0);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.product-labels {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.label {
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: 'Geologica', sans-serif;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.label.sale {
    background-color: #BFDBFE;
    color: #1E40AF;
}

.label.popular {
    background-color: #FF6B35;
    color: white;
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
    opacity: 0;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-icon-btn {
    width: 32px;
    height: 32px;
    border: none;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.action-icon-btn:hover {
    background-color: #1E40AF;
    color: white;
    transform: scale(1.08);
    box-shadow: 0 3px 8px rgba(30, 64, 175, 0.3);
}

.action-icon-btn svg {
    width: 16px;
    height: 16px;
}

.product-image-container {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background-color: #F9FAFB;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.product-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.2s ease;
    will-change: transform;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-name {
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1F2937;
    margin: 0 0 4px 0;
}

.product-company {
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #1E40AF;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.price-old {
    font-size: 13px;
    color: #9CA3AF;
    text-decoration: line-through;
    font-weight: 400;
}

.price-current {
    font-size: 17px;
    color: #1E40AF;
    font-weight: 700;
    font-family: 'Geologica', sans-serif;
}

.product-rating {
    display: flex;
    gap: 1px;
    align-items: center;
    margin: 2px 0;
}

.star {
    font-size: 14px;
    color: #E5E7EB;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.star.filled {
    color: #FF6B35;
}

.star.half {
    color: #E5E7EB;
}

.star.half::after {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #FF6B35;
}

.product-action {
    font-family: 'Geologica', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1E40AF;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 4px;
    align-self: flex-start;
}

.product-action:hover {
    color: #3B82F6;
    text-decoration-thickness: 2px;
}

/* Products on Sale Section */
.products-on-sale {
    padding: 60px 0;
    background-color: white;
    contain: layout style;
}

.sale-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sale-title {
    font-family: 'Geologica', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1E40AF;
    margin: 0;
    letter-spacing: 0.5px;
}

.sale-nav {
    display: flex;
    gap: 6px;
    background-color: transparent;
    padding: 0;
}

.sale-nav-btn {
    width: 36px;
    height: 36px;
    border: none;
    background-color: #E0F2FE;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E40AF;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sale-nav-btn:hover {
    background-color: #BFDBFE;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.sale-nav-btn:active {
    transform: translateY(0);
}

.sale-nav-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.sale-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    will-change: scroll-position;
    transform: translateZ(0);
}

.sale-carousel::-webkit-scrollbar {
    display: none;
}

.sale-carousel .product-card {
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 250px;
}

/* Responsive Design - Tablet (768px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .category-cards {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 10px 0 20px;
        flex-wrap: nowrap;
    }
    
    .category-card {
        flex: 0 0 calc(50% - 6px);
        min-width: calc(50% - 6px);
        max-width: calc(50% - 6px);
        height: 250px;
    }
    
    .products-carousel .product-card {
        flex: 0 0 calc(33.333% - 10px);
        min-width: calc(33.333% - 10px);
    }
    
    .sale-carousel .product-card {
        flex: 0 0 calc(33.333% - 10px);
        min-width: calc(33.333% - 10px);
    }
    
    .best-offers-cards {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .best-offer-card {
        min-height: 240px;
    }
    
    .best-offer-content {
        padding: 20px;
    }
    
    .best-offer-text {
        gap: 8px;
    }
    
    .best-offer-before-price {
        font-size: 11px;
    }
    
    .best-offer-price {
        font-size: 28px;
    }
    
    .best-offer-description {
        font-size: 14px;
    }
    
    .best-offer-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    /* Tablet Navigation - Dropdown */
    .nav-content {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .categories-menu {
        position: relative;
        order: 1;
        flex-shrink: 0;
        padding: 8px 16px;
        background-color: #E0F2FE;
        border-radius: 6px;
        border: 1px solid rgba(30, 64, 175, 0.1);
    }
    
    .categories-menu:hover {
        background-color: #BFDBFE;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(30, 64, 175, 0.15);
        opacity: 1;
    }
    
    .nav-links {
        order: 2;
    }
    
    .nav-contact-btn {
        order: 3;
        margin-left: auto;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-width: 320px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.12),
            0 4px 12px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(30, 64, 175, 0.05);
        border-radius: 12px;
        max-height: 0;
        overflow: hidden;
        flex-direction: column;
        gap: 4px;
        padding: 0;
        margin-top: 12px;
        z-index: 1000;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
        border: 1px solid rgba(30, 64, 175, 0.1);
    }
    
    .nav-links.active {
        max-height: 500px;
        padding: 8px;
        opacity: 1;
        transform: translateY(0) scale(1);
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.15),
            0 8px 20px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(30, 64, 175, 0.1);
    }
    
    .nav-links li {
        list-style: none;
        margin: 0;
        padding: 0;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.05s;
    }
    
    .nav-links.active li:nth-child(2) {
        transition-delay: 0.1s;
    }
    
    .nav-links.active li:nth-child(3) {
        transition-delay: 0.15s;
    }
    
    .nav-links.active li:nth-child(4) {
        transition-delay: 0.2s;
    }
    
    .nav-links.active li:nth-child(5) {
        transition-delay: 0.25s;
    }
    
    .nav-links.active li:nth-child(6) {
        transition-delay: 0.3s;
    }
    
    .nav-link {
        font-size: 14px;
        font-weight: 500;
        padding: 14px 18px;
        display: flex;
        align-items: center;
        width: 100%;
        border-radius: 8px;
        color: #1E40AF;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        border-bottom: none;
    }
    
   
    
    .nav-link:hover {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(30, 64, 175, 0.05) 100%);
        color: #1E40AF;
        transform: translateX(4px);
        padding-left: 22px;
    }
    
    .nav-link:hover::before {
        transform: scaleY(1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-contact-btn {
        margin-left: auto;
    }
}

/* Responsive Design - Tablet (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .logo-icon {
        max-width: 160px;
        max-height: 50px;
    }
    
    .search-section {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .action-icon {
        width: 22px;
        height: 22px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .nav-content {
        gap: 15px;
        flex-wrap: nowrap;
        position: relative;
        align-items: center;
        justify-content: flex-start;
    }
    
    .categories-menu {
        position: relative;
        flex-shrink: 0;
        order: 1;
        padding: 8px 16px;
        background-color: #E0F2FE;
        border-radius: 6px;
        border: 1px solid rgba(30, 64, 175, 0.1);
    }
    
    .categories-menu:hover {
        background-color: #BFDBFE;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(30, 64, 175, 0.15);
        opacity: 1;
    }
    
    .nav-links {
        order: 2;
    }
    
    .nav-contact-btn {
        order: 3;
        margin-left: auto;
    }
    
    .nav-center-section {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        min-width: 0;
    }
    
    .featured-nav-mobile {
        display: flex !important;
        flex-shrink: 0;
        width: 30px;
        height: 30px;
    }
    
    .featured-nav-mobile svg,
    .featured-nav-mobile [data-feather] {
        width: 14px;
        height: 14px;
    }
    
    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 6px;
        max-width: none;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0;
        margin: 0;
        opacity: 1;
        transform: none;
        border: none;
        list-style: none;
        flex-wrap: nowrap;
        align-items: center;
        flex: 1;
        min-width: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: center;
    }
    
    .nav-links::-webkit-scrollbar {
        display: none;
    }
    
    .nav-links li {
        list-style: none;
        margin: 0;
        padding: 0;
        flex-shrink: 0;
    }
    
    .nav-link {
        font-size: 11px;
        padding: 6px 10px;
        display: inline-block;
        width: auto;
        border-bottom: none;
        border-radius: 4px;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        background-color: rgba(59, 130, 246, 0.1);
        color: #3B82F6;
    }
    
    .close-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Hide hamburger, show X when active on tablet */
    .categories-menu.active .hamburger-icon {
        opacity: 0;
        transform: scale(0) rotate(90deg);
        pointer-events: none;
    }
    
    .categories-menu.active .close-icon {
        opacity: 1;
        transform: translateY(-50%) rotate(0deg);
        pointer-events: all;
    }
    
    .nav-contact-btn {
        padding: 10px 20px;
        font-size: 13px;
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .hero-banner {
        min-height: 400px;
    }
    
    .hero-slides-container {
        min-height: 400px;
    }
    
    .hero-slide {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 35px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 15px;
        margin: 0 auto 20px;
    }
    
    .hero-text {
        max-width: 90%;
        padding: 30px 35px;
        border-radius: 15px;
    }
    
    .hero-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .hero-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .services-section {
        padding: 30px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-item {
        padding: 18px;
        gap: 12px;
    }
    
    .service-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .service-icon-wrapper i {
        width: 22px;
        height: 22px;
    }
    
    .service-title {
        font-size: 14px;
    }
    
    .service-description {
        font-size: 11px;
    }
    
    .category-section {
        padding: 50px 0;
        display: block;
    }
    
    .category-cards {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 10px 0 20px;
        flex-wrap: nowrap;
    }
    
    .category-card {
        flex: 0 0 calc(50% - 6px);
        min-width: calc(50% - 6px);
        max-width: calc(50% - 6px);
        height: 250px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .featured-products {
        padding: 40px 0;
    }
    
    .featured-title {
        font-size: 24px;
    }
    
    .featured-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .featured-nav {
        display: none;
    }
    
    .products-carousel {
        gap: 15px;
        overflow-x: auto;
    }
    
    .product-card {
        flex: 0 0 calc(50% - 7.5px);
        min-width: 240px;
    }
    
    .products-on-sale {
        padding: 40px 0;
    }
    
    .sale-title {
        font-size: 24px;
    }
    
    .sale-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .sale-carousel .product-card {
        flex: 0 0 calc(50% - 7.5px);
        min-width: 240px;
    }
}

/* Responsive Design - Mobile (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .header {
        padding: 12px 0;
    }
    
    .header-content {
        flex-wrap: nowrap;
        gap: 15px;
    }
    
    .logo-section {
        flex: 0 0 auto;
    }
    
    .logo-icon {
        max-width: 140px;
        max-height: 45px;
    }
    
    .search-section {
        order: 0;
        flex: 1;
        max-width: none;
        margin-top: 0;
    }
    
    .search-input {
        padding: 10px 40px 10px 15px;
        font-size: 13px;
    }
    
    .search-icon {
        right: 12px;
        width: 18px;
        height: 18px;
    }
    
    .header-actions {
        gap: 12px;
        flex-shrink: 0;
    }
    
    .action-icon {
        width: 20px;
        height: 20px;
    }
    
    .cart-badge {
        width: 16px;
        height: 16px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
    
    /* Navigation Mobile */
    .navbar {
        padding: 8px 0;
    }
    
    .nav-content {
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
        position: relative;
        align-items: center;
        justify-content: space-between;
    }
    
    .categories-menu {
        order: 1;
        position: relative;
        flex-shrink: 0;
        padding: 6px 12px;
        background-color: #E0F2FE;
        border-radius: 6px;
        border: 1px solid rgba(30, 64, 175, 0.1);
    }
    
    .categories-menu:hover {
        background-color: #BFDBFE;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(30, 64, 175, 0.15);
        opacity: 1;
    }
    
    .categories-text {
        font-size: 10px;
    }
    
    .hamburger-icon {
        width: 16px;
        height: 16px;
    }
    
    .nav-center-section {
        display: none;
    }
    
    .featured-nav-mobile {
        display: none;
    }
    
    .nav-links {
        order: 2;
        position: static;
        display: flex;
        flex-direction: row;
        gap: 4px;
        max-width: none;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0;
        margin: 0 auto;
        opacity: 1;
        transform: none;
        border: none;
        backdrop-filter: none;
        flex-wrap: nowrap;
        align-items: center;
        flex: 1;
        min-width: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: center;
    }
    
    .nav-contact-btn {
        order: 3;
        padding: 6px 12px;
        font-size: 10px;
        flex-shrink: 0;
    }
    
    .nav-links::-webkit-scrollbar {
        display: none;
    }
    
    .nav-links li {
        list-style: none;
        margin: 0;
        padding: 0;
        opacity: 1;
        transform: none;
        flex-shrink: 0;
    }
    
    .nav-link {
        font-size: 9px;
        font-weight: 500;
        padding: 4px 6px;
        display: inline-block;
        width: auto;
        border-radius: 3px;
        color: #1E40AF;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        white-space: nowrap;
        border-bottom: none;
        line-height: 1.2;
    }
    
    .nav-link:hover {
        background-color: rgba(59, 130, 246, 0.1);
        color: #1E40AF;
        transform: none;
        padding-left: 6px;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .categories-menu.active {
        color: #3B82F6;
    }
    
    .close-icon {
        width: 16px;
        height: 16px;
    }
    
    /* Hide hamburger, show X when active on mobile */
    .categories-menu.active .hamburger-icon {
        opacity: 0;
        transform: scale(0) rotate(90deg);
        pointer-events: none;
    }
    
    .categories-menu.active .close-icon {
        opacity: 1;
        transform: translateY(-50%) rotate(0deg);
        pointer-events: all;
    }
    
    .hamburger-icon {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .close-icon {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    /* Nice hover effect on close icon */
    .categories-menu.active:hover .close-icon {
        color: #3B82F6;
        transform: translateY(-50%) rotate(90deg) scale(1.1);
    }
    
    /* Hero Banner Mobile */
    .hero-banner {
        min-height: 350px;
    }
    
    .hero-slides-container {
        min-height: 350px;
    }
    
    .hero-slide {
        min-height: 350px;
    }
    
    .hero-content {
        padding: 30px 0;
    }
    
    .hero-text {
        max-width: 95%;
        padding: 25px 20px;
        border-radius: 12px;
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 10px;
        padding-left: 12px;
    }
    
    .hero-subtitle::before {
        width: 2px;
        height: 16px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    .hero-btn {
        padding: 10px 25px;
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .hero-navigation {
        padding: 0 10px;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .hero-indicator {
        width: 10px;
        height: 10px;
    }
    
    .hero-indicator.active {
        width: 25px;
    }
    
    /* Services Section Mobile */
    .services-section {
        padding: 25px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .service-item {
        padding: 12px;
        gap: 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-icon-wrapper {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        margin-bottom: 8px;
    }
    
    .service-icon-wrapper i {
        width: 20px;
        height: 20px;
    }
    
    .service-content {
        width: 100%;
    }
    
    .service-title {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .service-description {
        font-size: 10px;
        line-height: 1.4;
    }
    
    .service-item::after {
        width: 0;
        display: none;
    }
    
    .service-item:hover {
        transform: translateY(-3px);
    }
    
    /* Category Section Mobile */
    .category-section {
        padding: 30px 0;
        display: block;
    }
    
    .category-cards {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 8px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 10px 0 20px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .category-card {
        flex: 0 0 calc(50% - 4px);
        min-width: calc(50% - 4px);
        max-width: calc(50% - 4px);
        height: 160px;
    }
    
    .card-title {
        font-size: 14px;
    }
    
    .card-link {
        font-size: 11px;
    }
    
    .card-overlay {
        padding: 12px 10px;
        min-height: 65px;
    }
    
    /* Featured Products Mobile */
    .featured-products {
        padding: 30px 0;
    }
    
    .featured-title {
        font-size: 20px;
    }
    
    .featured-header {
        gap: 15px;
    }
    
    .featured-nav {
        display: none;
    }
    
    .featured-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .featured-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .products-carousel {
        gap: 12px;
        padding: 10px 0 20px;
    }
    
    .product-card {
        flex: 0 0 calc(50% - 6px);
        min-width: 200px;
        padding: 15px;
    }
    
    .product-image-container {
        height: 180px;
        margin-bottom: 10px;
    }
    
    .product-img {
        max-width: 80%;
        max-height: 80%;
    }
    
    .product-name {
        font-size: 14px;
        min-height: 40px;
    }
    
    .price-current {
        font-size: 16px;
    }
    
    .price-old {
        font-size: 12px;
    }
    
    .product-rating {
        gap: 0;
    }
    
    .star {
        font-size: 13px;
    }
    
    .product-action {
        font-size: 12px;
    }
    
    /* Products on Sale Mobile */
    .products-on-sale {
        padding: 30px 0;
    }
    
    .sale-title {
        font-size: 20px;
    }
    
    .sale-header {
        gap: 15px;
    }
    
    .sale-nav {
        align-self: flex-end;
    }
    
    .sale-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .sale-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .sale-carousel {
        gap: 12px;
        padding: 10px 0 20px;
    }
    
    .sale-carousel .product-card {
        flex: 0 0 calc(50% - 6px);
        min-width: 200px;
        padding: 15px;
    }
}


/* Top Products Section */
.top-products {
    padding: 80px 0;
    background-color: white;
    contain: layout style;
}

.top-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.top-products-title {
    font-family: 'Geologica', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1E40AF;
    margin: 0;
    letter-spacing: 0.5px;
}

.category-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.category-btn {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1E40AF;
    background-color: #E0F2FE;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn:hover {
    background-color: #BFDBFE;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.category-btn.active {
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    contain: layout style;
}

.product-item {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    position: relative;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(229, 231, 235, 0.5);
    opacity: 1;
    transform: scale(1);
    will-change: transform;
}

.product-item .product-labels {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.product-item .label {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-family: 'Geologica', sans-serif;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.product-item.hidden {
    display: none;
}

.product-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.product-item .product-image-container {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background-color: #F9FAFB;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.product-item .product-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.2s ease;
    will-change: transform;
}

.product-item:hover .product-img {
    transform: scale(1.05);
}

.product-item .product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-item .product-name {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1F2937;
    margin: 0 0 4px 0;
    line-height: 1.4;
    min-height: 38px;
}

.product-item .product-company {
    font-family: 'Geologica', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #1E40AF;
    margin: 0 0 6px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-item .product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.product-item .price-old {
    font-size: 12px;
    color: #9CA3AF;
    text-decoration: line-through;
    font-weight: 400;
}

.product-item .price-current {
    font-size: 16px;
    color: #1E40AF;
    font-weight: 700;
    font-family: 'Geologica', sans-serif;
}

.product-item .product-rating {
    display: flex;
    gap: 2px;
    align-items: center;
}

.product-item .star {
    font-size: 14px;
    color: #E5E7EB;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.product-item .star.filled {
    color: #FF6B35;
}

.product-item .star.half {
    color: #E5E7EB;
}

.product-item .star.half::after {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #FF6B35;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .top-products-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-item {
        padding: 12px;
    }
    
    .product-item .product-image-container {
        height: 160px;
        margin-bottom: 10px;
    }
    
    .product-item .product-name {
        font-size: 13px;
        min-height: 36px;
    }
}

@media (max-width: 768px) {
    .top-products {
        padding: 50px 0;
    }
    
    .top-products-title {
        font-size: 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-buttons {
        width: 100%;
        justify-content: flex-start;
    }
    
    .category-btn {
        font-size: 13px;
        padding: 8px 20px;
    }
    
    .product-item {
        padding: 12px;
    }
    
    .product-item .product-image-container {
        height: 150px;
        margin-bottom: 10px;
    }
    
    .product-item .product-name {
        font-size: 13px;
        min-height: 34px;
    }
    
    .product-item .price-current {
        font-size: 15px;
    }
}

/* Pharmacy Services Section */
.pharmacy-services {
    padding: 80px 0;
    background-color: #F5F5F5;
    position: relative;
}

.pharmacy-product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Product Images Section */
.product-images-section {
    display: flex;
    gap: 20px;
}

.product-main-image-wrapper {
    flex: 1;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.product-main-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.product-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background-color: #FFFFFF;
    padding: 4px;
    transition: all 0.2s ease;
}

.thumbnail.active {
    border-color: #000000;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.thumbnail:hover {
    border-color: #666666;
}

/* Product Details Section */
.product-details-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-title {
    font-family: 'Geologica', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1E40AF;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.product-description {
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #1F2937;
    line-height: 1.6;
    margin: 0;
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.product-price-current {
    font-family: 'Geologica', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1E40AF;
}

.product-price-old {
    font-family: 'Geologica', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #9CA3AF;
    text-decoration: line-through;
}

/* Offer Timer */
.offer-timer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.timer-label {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1E40AF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 60px;
}

.timer-value {
    font-family: 'Geologica', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1E40AF;
    background-color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 50px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.timer-label-small {
    font-family: 'Geologica', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-separator {
    font-family: 'Geologica', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1E40AF;
    margin: 0 4px;
}

.product-availability {
    display: flex;
    align-items: center;
    gap: 8px;
}

.availability-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.availability-icon.in-stock {
    background-color: #00FF00;
}

.availability-icon.out-of-stock {
    background-color: #FF0000;
}

.availability-text {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1F2937;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.quantity-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-label {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1E40AF;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: #FFFFFF;
    color: #1E40AF;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background-color: #E0F2FE;
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 1px solid #D1D5DB;
    border-right: 1px solid #D1D5DB;
    text-align: center;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1F2937;
    outline: none;
}

.product-add-to-cart-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.product-add-to-cart-btn:hover {
    background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
}

.product-add-to-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .pharmacy-product-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-images-section {
        flex-direction: column-reverse;
    }
    
    .product-thumbnails {
        flex-direction: row;
        justify-content: center;
    }
    
    .product-main-image-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .pharmacy-services {
        padding: 50px 0;
    }
    
    .pharmacy-product-showcase {
        gap: 30px;
    }
    
    .product-main-image-wrapper {
        min-height: 350px;
        padding: 15px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .product-description {
        font-size: 14px;
    }
    
    .product-price-current {
        font-size: 24px;
    }
    
    .product-price-old {
        font-size: 18px;
    }
    
    .offer-timer {
        padding: 16px;
    }
    
    .timer-value {
        font-size: 20px;
        padding: 6px 10px;
        min-width: 45px;
    }
    
    .timer-label-small {
        font-size: 10px;
    }
    
    .timer-separator {
        font-size: 18px;
    }
    
    .product-options {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .pharmacy-product-showcase {
        gap: 25px;
    }
    
    .product-main-image-wrapper {
        min-height: 300px;
        padding: 10px;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-description {
        font-size: 13px;
    }
    
    .product-price-current {
        font-size: 22px;
    }
    
    .product-price-old {
        font-size: 16px;
    }
    
    .offer-timer {
        padding: 14px;
    }
    
    .timer-display {
        gap: 6px;
    }
    
    .timer-item {
        min-width: 50px;
    }
    
    .timer-value {
        font-size: 18px;
        padding: 6px 8px;
        min-width: 40px;
    }
    
    .timer-label-small {
        font-size: 9px;
    }
    
    .timer-separator {
        font-size: 16px;
        margin: 0 2px;
    }
    
    .quantity-btn {
        width: 36px;
        height: 36px;
    }
    
    .quantity-input {
        width: 50px;
        height: 36px;
    }
    
    .product-add-to-cart-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, rgb(30 64 175 / 37%) 0%, rgb(59 130 246 / 40%) 50%, rgba(96, 165, 250, 0.85) 100%),
                url('../images/852.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.newsletter-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.newsletter-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
    opacity: 0.5;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.newsletter-icon svg {
    width: 30px;
    height: 30px;
}

.newsletter-title {
    font-family: 'Geologica', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.newsletter-description {
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 30px 0;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.newsletter-input-wrapper:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25), 0 6px 20px rgba(0, 0, 0, 0.15);
}

.newsletter-input {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #1F2937;
    background: transparent;
    outline: none;
}

.newsletter-input::placeholder {
    color: #9CA3AF;
}

.newsletter-submit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    white-space: nowrap;
}

.newsletter-submit-btn:hover {
    background: linear-gradient(135deg, #FF8C5A 0%, #FF6B35 100%);
    transform: translateX(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.newsletter-submit-btn:active {
    transform: translateX(0) scale(0.98);
}

.newsletter-submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.newsletter-submit-btn:hover svg {
    transform: translateX(3px);
}

.newsletter-privacy {
    font-family: 'Geologica', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 50px 0;
    }
    
    .newsletter-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }
    
    .newsletter-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .newsletter-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .newsletter-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        gap: 10px;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
    
    .newsletter-input {
        background: white;
        padding: 16px 24px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .newsletter-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }
    
    .newsletter-privacy {
        font-size: 12px;
    }
}

/* Contact Us Section */
.contact-us-section {
    padding: 100px 0;
    background-color: white;
}

.contact-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-us-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-us-title {
    font-family: 'Geologica', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #1E40AF;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.contact-us-text {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1E40AF;
    margin: 0;
    line-height: 1.7;
}

.contact-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 10px;
}

.contact-location {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-name {
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1E40AF;
    margin: 0;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Geologica', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #1E40AF;
}

.location-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #1E40AF;
}

.contact-us-right {
    background: white;
}

.contact-us-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-us-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-us-form .form-input,
.contact-us-form .form-textarea {
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1F2937;
    background: #F3F4F6;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.contact-us-form .form-input:focus,
.contact-us-form .form-textarea:focus {
    background: #E5E7EB;
    box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.1);
}

.contact-us-form .form-input::placeholder,
.contact-us-form .form-textarea::placeholder {
    color: #9CA3AF;
}

.contact-us-form .form-textarea {
    resize: vertical;
    min-height: 150px;
    font-family: 'Geologica', sans-serif;
}

.contact-submit-btn {
    padding: 14px 32px;
    background: #3B82F6;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 5px;
}

.contact-submit-btn:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .contact-us-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-locations {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-us-section {
        padding: 70px 0;
    }
    
    .contact-us-title {
        font-size: 28px;
    }
    
    .contact-us-text {
        font-size: 13px;
    }
    
    .contact-us-content {
        gap: 40px;
    }
    
    .contact-locations {
        gap: 25px;
    }
    
    .location-name {
        font-size: 18px;
    }
    
    .location-item {
        font-size: 14px;
    }
    
    .contact-submit-btn {
        width: 100%;
    }
}

/* Google Maps Section */
.maps-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    position: relative;
}

.maps-header {
    text-align: center;
    margin-bottom: 50px;
}

.maps-title {
    font-family: 'Geologica', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1E40AF;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.maps-subtitle {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

.maps-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.maps-container {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.google-map {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.maps-link-wrapper {
    padding: 25px 30px;
    background: white;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maps-link-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-family: 'Geologica', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.maps-link-btn:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.maps-link-btn:active {
    transform: translateY(0);
}

.maps-link-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.maps-link-btn:hover svg {
    transform: translate(3px, -3px);
}

@media (max-width: 768px) {
    .maps-section {
        padding: 70px 0;
    }
    
    .maps-title {
        font-size: 32px;
    }
    
    .maps-subtitle {
        font-size: 16px;
    }
    
    .maps-header {
        margin-bottom: 40px;
    }
    
    .maps-container {
        height: 400px;
    }
    
    .maps-link-wrapper {
        padding: 20px;
    }
    
    .maps-link-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
}

/* Best Offers Section */
.best-offers {
    padding: 80px 0;
    background-color: white;
}

.best-offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.best-offers-title {
    font-family: 'Geologica', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1E40AF;
    margin: 0;
    letter-spacing: 0.5px;
}

.best-offers-nav {
    display: flex;
    gap: 6px;
    background-color: #E0F2FE;
    padding: 4px;
    border-radius: 8px;
}

.best-offers-nav-btn {
    width: 36px;
    height: 36px;
    border: none;
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E40AF;
    transition: all 0.3s ease;
}

.best-offers-nav-btn:hover {
    background-color: #BFDBFE;
    transform: translateY(-1px);
}

.best-offers-nav-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.best-offers-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.best-offer-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.25), 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: translateZ(0);
}

.best-offer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.35), 0 8px 24px rgba(0, 0, 0, 0.15);
}

.best-offer-card-orange:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.best-offer-card-orange {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(255, 140, 90, 0.85) 50%, rgba(255, 107, 53, 0.9) 100%),
                url('https://images.unsplash.com/photo-1612817288484-6f916006741a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.best-offer-card-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.best-offer-card-orange::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.best-offer-card-sandy {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.85) 0%, rgba(201, 161, 107, 0.85) 50%, rgba(184, 149, 106, 0.85) 100%),
                url('https://images.unsplash.com/photo-1512496015851-a5fb66e772c1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.best-offer-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.best-offer-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
    justify-content: flex-start;
    padding-top: 5px;
    position: relative;
}

.best-offer-before-price {
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
}

.best-offer-price {
    font-family: 'Geologica', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.best-offer-description {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.best-offer-badge {
    display: inline-block;
    background-color: #FF6B35;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Geologica', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    align-self: flex-start;
}

.best-offer-btn {
    font-family: 'Geologica', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 5px;
}

.best-offer-btn-orange {
    background-color: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    border-color: #FFFFFF;
    border-width: 2.5px;
}

.best-offer-btn-orange:hover {
    background-color: #FFFFFF;
    color: #FF6B35;
    border-color: #FFFFFF;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.best-offer-btn-white {
    background-color: white;
    color: #000000;
    border-color: #E5E7EB;
}

.best-offer-btn-white:hover {
    background-color: #F9FAFB;
    border-color: #D1D5DB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


@media (max-width: 1024px) {
    .best-offers-cards {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .best-offer-card {
        min-height: 240px;
    }
    
    .best-offer-content {
        padding: 20px;
    }
    
    .best-offer-text {
        flex: 1;
        gap: 8px;
    }
    
    .best-offer-before-price {
        font-size: 11px;
    }
    
    .best-offer-price {
        font-size: 28px;
    }
    
    .best-offer-description {
        font-size: 14px;
    }
    
    .best-offer-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .best-offers {
        padding: 50px 0;
    }
    
    .best-offers-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .best-offers-title {
        font-size: 24px;
    }
    
    .best-offers-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .best-offer-card {
        min-height: 200px;
    }
    
    .best-offer-content {
        padding: 15px;
        gap: 8px;
    }
    
    .best-offer-text {
        width: 100%;
        gap: 6px;
    }
    
    .best-offer-before-price {
        font-size: 10px;
    }
    
    .best-offer-price {
        font-size: 24px;
    }
    
    .best-offer-description {
        font-size: 12px;
    }
    
    .best-offer-btn {
        padding: 6px 16px;
        font-size: 11px;
        margin-top: 4px;
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-about {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo-img {
    max-width: 200px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.social-link:hover {
    background: rgba(255, 107, 53, 0.9);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.5);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-family: 'Geologica', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C5A 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #FF6B35;
}

.footer-link:hover {
    color: white;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-link:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #FF6B35;
}

.footer-middle {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-payment-label {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.footer-payment-methods {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 32px;
    border-radius: 5px;
    padding: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    cursor: pointer;
}

.payment-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.payment-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.payment-visa,
.payment-mastercard {
    background: rgba(255, 255, 255, 0.95);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-legal-link {
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .footer-about {
        grid-column: 1;
    }
    
    .footer-logo-img {
        max-width: 180px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-middle {
        padding: 30px 0;
    }
    
    .footer-payment {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-payment-methods {
        width: 100%;
        justify-content: center;
    }
    
    .payment-icon {
        width: 45px;
        height: 28px;
        padding: 4px;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-legal-link {
        font-size: 13px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   Dashboard Styles
   ============================================ */

/* Dashboard Body Styles */
.app-container body,
body.dashboard-page {
    min-height: 100vh;
    background: #ffffff;
    padding-bottom: 80px;
    position: relative;
}

/* Header with Logo */
.app-header {
    background: white;
    padding: 20px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #E5E7EB;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.app-logo {
    width: 120px;
    height: auto;
    margin: 0 auto;
}

.app-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Notification Card */
.notification-card {
    background: white;
    margin: 16px 16px 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.notification-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F3F4F6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: #E5E7EB;
}

.notification-close i {
    width: 14px;
    height: 14px;
    color: #6B7280;
}

.notification-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 6px;
}

.notification-text {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
}

/* Articles Section */
.articles-section {
    padding: 0 16px 60px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
    padding: 0 4px;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.article-card:active {
    transform: scale(0.98);
}

.article-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.article-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #3B82F6;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.article-badge.hot {
    background: #EF4444;
}

.article-badge.new {
    background: #10B981;
}

.article-content {
    padding: 16px;
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.article-title {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.4;
    flex: 1;
}

.article-date {
    font-size: 11px;
    color: #9CA3AF;
    white-space: nowrap;
    margin-left: 12px;
}

.article-description {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #F3F4F6;
}

.article-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #9CA3AF;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-stats i {
    width: 14px;
    height: 14px;
}

.article-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #3B82F6;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.article-link i {
    width: 16px;
    height: 16px;
}

/* Bottom Navigation Bar */
.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 12px;
    text-decoration: none;
    color: #9CA3AF;
    transition: all 0.2s ease;
    flex: 1;
    max-width: 100px;
}

.nav-item.active {
    color: #3B82F6;
}

.nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.nav-item.active .nav-icon i {
    stroke-width: 2.5;
    color: #3B82F6;
}

.nav-label {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

/* Dashboard Responsive */
@media (max-width: 480px) {
    .app-logo {
        width: 100px;
    }

    .article-image {
        height: 200px;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #1E40AF;
    transition: all 0.3s ease;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-toggle:hover {
    color: #3B82F6;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .categories-menu {
        cursor: pointer;
    }
    
    .categories-menu.active + .nav-links {
        display: flex;
    }
}

/* Extra Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .logo-icon {
        max-width: 120px;
        max-height: 40px;
    }
    
    .search-input {
        padding: 8px 35px 8px 12px;
        font-size: 12px;
    }
    
    .search-icon {
        right: 10px;
        width: 16px;
        height: 16px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .action-icon {
        width: 18px;
        height: 18px;
    }
    
    .hero-banner {
        min-height: 300px;
    }
    
    .hero-slides-container {
        min-height: 300px;
    }
    
    .hero-slide {
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .hero-btn {
        padding: 8px 20px;
        font-size: 11px;
    }
    
    .hero-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .hero-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .category-section {
        padding: 25px 0;
    }
    
    .category-cards {
        gap: 6px;
        overflow-x: auto;
        scroll-behavior: smooth;
    }
    
    .category-card {
        flex: 0 0 calc(50% - 3px);
        min-width: calc(50% - 3px);
        max-width: calc(50% - 3px);
        height: 140px;
    }
    
    .card-title {
        font-size: 12px;
    }
    
    .card-link {
        font-size: 10px;
    }
    
    .card-overlay {
        padding: 10px 8px;
        min-height: 55px;
    }
    
    .featured-title,
    .sale-title,
    .top-products-title,
    .best-offers-title {
        font-size: 18px;
    }
    
    .product-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 12px;
    }
    
    .sale-carousel .product-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 12px;
    }
    
    .product-image-container {
        height: 160px;
    }
    
    .product-name {
        font-size: 13px;
        min-height: 38px;
    }
    
    .price-current {
        font-size: 15px;
    }
    
    .category-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .pharmacy-heading {
        font-size: 20px;
    }
    
    .pharmacy-text {
        font-size: 13px;
    }
    
    .pharmacy-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .newsletter-title {
        font-size: 24px;
    }
    
    .newsletter-description {
        font-size: 13px;
    }
    
    .newsletter-input {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .newsletter-submit-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .contact-us-title {
        font-size: 24px;
    }
    
    .contact-us-text {
        font-size: 12px;
    }
    
    .maps-title {
        font-size: 28px;
    }
    
    .maps-subtitle {
        font-size: 14px;
    }
    
    .maps-container {
        height: 350px;
    }
    
    .best-offers-cards {
        gap: 8px;
    }
    
    .best-offer-card {
        min-height: 180px;
    }
    
    .best-offer-content {
        padding: 12px;
        gap: 6px;
    }
    
    .best-offer-text {
        gap: 4px;
    }
    
    .best-offer-before-price {
        font-size: 9px;
    }
    
    .best-offer-price {
        font-size: 20px;
    }
    
    .best-offer-description {
        font-size: 11px;
    }
    
    .best-offer-btn {
        padding: 6px 14px;
        font-size: 10px;
        margin-top: 2px;
    }
}

