/* ===== Root Variables ===== */
:root {
    --primary: #0095b8;
    --secondary: #ff6b9d;
    --accent: #ffd700;
    --light-bg: #f7fbfc;
    --dark-text: #1a1a1a;
    --white: #ffffff;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

/* ===== Image Optimizations ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    background: linear-gradient(to right, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Remove shimmer once image loads */
img[loading="lazy"].loaded {
    animation: none;
    background: none;
}

/* ===== Navigation ===== */
.navbar {
    background: linear-gradient(135deg, var(--primary) 0%, #006b99 100%);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu li {
    padding: 0.5rem 0;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--accent);
}

/* Hide nav-menu on mobile by default */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
}

/* ===== Hamburger Menu ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.4rem;
    z-index: 1002;
    transition: all 0.3s ease;
    gap: 5px;
}

.hamburger:hover {
    opacity: 0.8;
}

.hamburger:active {
    transform: scale(0.95);
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, rgba(0, 149, 184, 0.6), rgba(0, 212, 255, 0.5)),
        url('wideStoreImage.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--white);
    padding: 110px 1.5rem;
    text-align: center;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: auto;
}

.hero-content {
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.location {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.featured {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 1.5rem 20px;
    text-align: center;
}

.featured h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.featured-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    text-align: left;
}

.featured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}


.featured-card h3 {
    padding: 1rem 1rem 0.3rem;
    color: var(--primary);
}

.featured-card p {
    padding: 0 1rem 1rem;
    color: #555;
    font-size: 0.95rem;
}

/* ===== Shop Gallery Section ===== */
.shop-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 1.5rem;
    background: var(--light-bg);
}

.shop-gallery h2 {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.gallery-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-card h3 {
    padding: 1rem;
    color: var(--primary);
    font-size: 1.05rem;
    text-align: center;
}

@media (max-width: 768px) {
    .gallery-grid-large {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .gallery-card img {
        height: 180px;
    }
    
    .gallery-card h3 {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
}



/* ===== Shop Section ===== */
.shop-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 1.5rem;
}

.shop-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    border: 1px solid #e8eef1;
}

.product-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.product-card h3 {
    padding: 1.2rem 1.2rem 1.2rem;
    color: var(--primary);
    font-size: 1.1rem;
}

/* ===== About Section ===== */
.about-section {
    background: var(--light-bg);
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 1.5rem;
}

.about-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.features {
    list-style: none;
    margin-top: 2rem;
}

.features li {
    padding: 0.8rem 0;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.05rem;
}

/* ===== Featured Products Section ===== */
.featured-products-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 1.5rem;
    background: var(--white);
}

.featured-products-section.alternate {
    background: var(--light-bg);
}

.section-container {
    text-align: center;
}

.featured-products-section h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.15rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.featured-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .featured-grid-large {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.featured-grid-large-single {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.featured-large-card-single {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-large-card-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.featured-large-card-single img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.featured-large-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-large-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.featured-large-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.content-text {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}

.featured-products-section.alternate .content-text {
    background: linear-gradient(135deg, #ffffff 0%, #f7fbfc 100%);
}

/* ===== Contact Section ===== */
.contact-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 1.5rem;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-subtitle {
    text-align: center;
    color: #4a4a4a;
    margin-top: -1.5rem;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e7f6ff 100%);
    padding: 1.6rem;
    border-radius: 10px;
    text-align: center;
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: #2f4858;
    line-height: 1.6;
    font-weight: 500;
}

.contact-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.3rem;
}

.contact-link:hover {
    color: #006b99;
}

.social-links {
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid #e8eef1;
}

.social-links h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-chip {
    display: inline-block;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 120px;
    text-align: center;
}

.social-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-chip:active {
    transform: translateY(-1px);
}

.social-chip.facebook { background: linear-gradient(135deg, #1877f2, #0d5ac4); }
.social-chip.instagram { background: linear-gradient(135deg, #fd5949, #d6249f); }
.social-chip.tiktok { background: linear-gradient(135deg, #000000, #25f4ee); }


.contact-form button {
    width: 100%;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, #006b99 100%);
    color: var(--white);
    padding: 3rem 1.5rem 2rem;
}

.footer a {
    color: #e8f7ff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.footer a:hover {
    color: var(--accent);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.footer-col h4 {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.footer p {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
    color: #e8f7ff;
}

.footer-brand .logo-mark {
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.footer-tagline {
    margin: 0;
    color: #e8f7ff;
    font-size: 0.95rem;
}

.footer-hours {
    color: #e8f7ff;
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.15rem 0;
    font-size: 0.9rem;
    color: #e8f7ff;
}

/* ===== Gallery ===== */
.gallery {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 1.5rem;
    text-align: center;
}

.gallery h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4 / 3;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .nav-menu {
        display: flex !important;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary) 0%, #006b99 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        z-index: 1001;
    }

    .nav-menu.active {
        max-height: 650px;
        padding: 0.5rem 0;
        overflow-y: auto;
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        animation: slideIn 0.3s forwards;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(7) { animation-delay: 0.35s; }
    .nav-menu.active li:nth-child(8) { animation-delay: 0.4s; }
    .nav-menu.active li:nth-child(9) { animation-delay: 0.45s; }
    .nav-menu.active li:nth-child(10) { animation-delay: 0.5s; }

    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-menu a {
        display: block;
        padding: 1.1rem 2rem;
        border-left: 3px solid transparent;
        font-size: 1rem;
        text-align: left;
        transition: all 0.2s ease;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background-color: rgba(255, 255, 255, 0.15);
        border-left-color: var(--accent);
        padding-left: 2.3rem;
    }

    .nav-container {
        flex-wrap: wrap;
        position: relative;
        padding: 0 1rem;
    }

    .logo {
        font-size: 0.85rem;
        max-width: calc(100% - 60px);
    }

    .hero {
        padding: 60px 1.5rem;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .tagline {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .location {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 1rem;
        touch-action: manipulation;
    }

    .shop-gallery {
        padding: 40px 1rem;
    }

    .shop-gallery h2 {
        font-size: 2rem;
    }

    .featured-products-section {
        padding: 40px 1rem;
    }

    .featured-products-section h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-intro {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .featured-grid-large {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-large-card img {
        height: 250px;
    }

    .featured {
        padding: 50px 1rem 20px;
    }

    .featured h2 {
        font-size: 2rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .product-card img {
        height: 220px;
    }

    .about-section,
    .contact-section {
        padding: 50px 1.5rem;
    }

    .about-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-links {
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .social-grid {
        gap: 0.7rem;
    }

    .social-chip {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        min-width: 110px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .logo {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .hamburger {
        padding: 0.3rem;
    }

    .hamburger span {
        width: 22px;
        height: 3px;
        margin: 4px 0;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu a {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero {
        padding: 50px 1rem;
        min-height: 380px;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .location {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 0.95rem;
        touch-action: manipulation;
    }

    .shop-section,
    .about-section,
    .contact-section,
    .featured-products-section {
        padding: 35px 1rem;
    }

    .shop-section h2,
    .about-section h2,
    .contact-section h2,
    .featured-products-section h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .section-subtitle,
    .section-intro {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .products-grid,
    .featured-grid {
        gap: 1rem;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-card img,
    .featured-card img {
        height: 200px;
    }

    .contact-card {
        padding: 1.3rem;
    }

    .featured-large-card img {
        height: 220px;
    }

    .gallery-grid-large {
        grid-template-columns: 1fr;
    }

    .gallery-card img {
        height: 200px;
    }

    .content-text {
        padding: 1.3rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer p {
        font-size: 0.85rem;
    }
}

/* ===== Extra Small Devices ===== */
@media (max-width: 360px) {
    .logo {
        font-size: 0.65rem;
    }

    .hamburger span {
        width: 20px;
    }

    .hero {
        padding: 40px 0.8rem;
        min-height: 350px;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .location {
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .featured-products-section,
    .shop-section,
    .about-section,
    .contact-section {
        padding: 30px 0.8rem;
    }

    .featured-products-section h2,
    .shop-section h2,
    .about-section h2,
    .contact-section h2 {
        font-size: 1.4rem;
    }

    .section-intro,
    .section-subtitle {
        font-size: 0.85rem;
    }

    .content-text {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 1rem;
    }
}

/* ===== Smooth Scrolling & Touch Improvements ===== */
@media (hover: none) and (pointer: coarse) {
    /* Touch device optimizations */
    .nav-menu a,
    .cta-button,
    .hamburger {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    }

    .nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .product-card,
    .featured-card,
    .gallery-card,
    .featured-large-card {
        -webkit-tap-highlight-color: transparent;
    }
}
