* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    position: sticky;
    top: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    min-height: 40px;
    min-width: 44px;
    padding: 0.45rem 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.menu-toggle:hover {
    background: #f9fafb;
}

.menu-toggle-bar {
    display: block;
    width: 18px;
    height: 2px;
    background: #111827;
    border-radius: 999px;
}

.top-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-nav a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
}

.top-nav a:hover {
    color: #111827;
    text-decoration: underline;
}

.shop-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.5rem 0;
    z-index: 1;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
}

.dropdown-menu a {
    color: #1f2937;
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    font-weight: 600;
}

.dropdown-menu a:hover {
    background-color: #f9fafb;
    text-decoration: none;
    color: #111827;
}

@media (hover: hover) and (pointer: fine) and (min-width: 641px) {
    .shop-dropdown:hover .dropdown-menu {
        display: block;
    }
}

.blog-container {
    max-width: 980px;
    margin: 0 auto;
}

.blog-container h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.6rem;
    color: #111827;
}

.blog-container > p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
    justify-content: start;
    gap: 1.25rem;
}

.blog-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.blog-card-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: #f9fafb;
}

.blog-card-content {
    padding: 1rem;
}

.blog-card-content h2 {
    margin: 0;
    font-size: 1.1rem;
    color: #111827;
}

.blog-card-content p {
    margin: 0.75rem 0 0;
    color: #4b5563;
}

.blog-read-more {
    display: inline-block;
    margin-top: 0.9rem;
    font-weight: 700;
    color: #111827;
}

.blog-article {
    max-width: 820px;
    margin: 0 auto;
}

.blog-article-header h1 {
    margin: 0.4rem 0 1rem;
    font-size: clamp(1.9rem, 4.6vw, 2.8rem);
    line-height: 1.15;
    color: #111827;
}

.blog-kicker {
    margin: 0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    color: #4b5563;
    font-size: 0.8rem;
}

.blog-section {
    margin-top: 2rem;
}

.blog-section h2 {
    margin: 0 0 0.9rem;
    font-size: clamp(1.3rem, 2.8vw, 1.9rem);
    color: #111827;
}

.blog-section h3 {
    margin: 1rem 0 0.4rem;
    font-size: 1.05rem;
    color: #111827;
}

.blog-section p {
    margin: 0.7rem 0;
    color: #374151;
}

.blog-section a {
    color: #111827;
    font-weight: 600;
}

.blog-inline-image {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    margin: 0.5rem 0 1rem;
    object-fit: contain;
    max-height: 420px;
}

.faq-section h3 {
    margin-top: 1.2rem;
}

.page-content {
    min-height: calc(100vh - 152px);
    padding: 2rem 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.25rem;
    align-items: center;
}

.hero-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    max-height: 420px;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
}

.hero-content h1 {
    margin-top: 0;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    line-height: 1.15;
}

.btn {
    display: inline-block;
    margin-top: 0.75rem;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 0.7rem 1rem;
    border-radius: 8px;
}

.btn:hover {
    background: #000000;
}

.content-section {
    margin-top: 2rem;
}

.page-content > .content-section + .content-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 700px;
}

.short-copy {
    font-weight: 600;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
}

.collection-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.collection-card {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 1rem;
    background: #ffffff;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.collection-link:hover .collection-card {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.collection-card h3 {
    margin: 0;
    font-size: 1rem;
}

.collection-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: top center;
    background: #f9fafb;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.feature-list {
    padding-left: 1.1rem;
}

.reviews {
    display: grid;
    gap: 0.75rem;
}

blockquote {
    margin: 0;
    border-left: 3px solid #d1d5db;
    padding: 0.75rem 0.9rem;
    background: #fafafa;
    border-radius: 6px;
}

blockquote p {
    margin-top: 0;
}

cite {
    font-style: normal;
    font-weight: 600;
}

.site-footer {
    margin-top: 2rem;
    border-top: 1px solid #e5e7eb;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    background: #f9fafb;
}

.footer-columns {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.footer-group h2 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    color: #111827;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    margin: 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: #111827;
}

.contact-container > p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.contact-item h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #111827;
    font-size: 1.25rem;
}

.contact-item a {
    display: inline-block;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
}

.contact-item a:hover {
    text-decoration: underline;
    color: #000000;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-container h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: #111827;
}

.about-section {
    margin-bottom: 2rem;
}

.about-section h2 {
    font-size: 1.3rem;
    color: #111827;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.about-section p {
    color: #4b5563;
    line-height: 1.7;
    margin-top: 0;
}

.shop-container {
    max-width: 1000px;
    margin: 0 auto;
}

.shop-container h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    color: #111827;
}

.shop-container > p {
    color: #4b5563;
    margin-bottom: 2rem;
}

.shop-category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.category-tab {
    padding: 0.75rem 1rem;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s ease;
}

.category-tab:hover {
    color: #111827;
}

.category-tab.active {
    color: #111827;
    border-bottom-color: #111827;
}

.category-dropdown {
    position: relative;
}

.category-dropdown-toggle {
    background: transparent;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    cursor: pointer;
    font: inherit;
}

.category-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 220px;
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    display: none;
    z-index: 10;
}

.category-dropdown.open .category-dropdown-menu {
    display: grid;
}

.category-dropdown-link {
    padding: 0.6rem 0.75rem;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
}

.category-dropdown-link:hover {
    background: #f3f4f6;
    color: #111827;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.shop-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    transition: box-shadow 0.2s ease, opacity 0.3s ease;
}

.shop-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.shop-card a {
    text-decoration: none;
    color: inherit;
}

.shop-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #f9fafb;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.shop-card h3 {
    margin: 0;
    padding: 1rem 1rem 0.4rem;
    font-size: 1rem;
    color: #111827;
}

.shop-card:hover h3 {
    color: #000000;
}

.shop-category {
    margin: 0;
    padding: 0 1rem;
    font-size: 0.88rem;
    color: #6b7280;
}

.shop-detail-btn {
    display: inline-block;
    margin: 0.8rem 1rem 1rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid #111827;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}

.shop-detail-btn:hover {
    background: #111827;
    color: #ffffff;
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.cta-text {
    text-align: center;
    color: #4b5563;
    margin-top: 2rem;
}

.cta-text a {
    color: #111827;
    font-weight: 600;
    text-decoration: none;
}

.cta-text a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .site-header {
        flex-wrap: wrap;
        align-items: center;
        padding: 0.65rem 0.85rem;
        gap: 0.65rem;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .top-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid #e5e7eb;
        padding-top: 0.45rem;
        margin-top: 0.15rem;
    }

    .site-header.nav-open .top-nav {
        display: flex;
    }

    .top-nav > a,
    .top-nav > .shop-dropdown > .dropdown-toggle {
        display: block;
        width: 100%;
        min-height: 44px;
        padding: 0.65rem 0.25rem;
        border-bottom: 1px solid #f3f4f6;
    }

    .shop-dropdown {
        width: 100%;
        display: block;
    }

    .dropdown-menu {
        position: static;
        margin-top: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0 0 0.4rem 0.85rem;
        background: transparent;
    }

    .shop-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.6rem 0.2rem;
    }

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

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 1.1rem 0.85rem 1.3rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .footer-group {
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        padding: 0.85rem;
    }

    .footer-group h2 {
        margin-bottom: 0.6rem;
        text-align: center;
    }

    .footer-links {
        gap: 0.5rem;
        align-items: center;
    }

    .footer-links a {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 0.5rem 0.65rem;
        border-radius: 8px;
        background: #f3f4f6;
    }

    .whatsapp-float {
        right: 0.75rem;
        bottom: 0.75rem;
        min-width: 108px;
        padding: 0.6rem 0.85rem;
        font-size: 0.92rem;
    }
}

@media (max-width: 768px) {
    .page-content {
        padding: 1.25rem 0.9rem;
    }

    .shop-container > p {
        margin-bottom: 1.25rem;
    }

    .shop-category-tabs {
        flex-wrap: wrap;
        gap: 0.55rem;
        border-bottom: 0;
        margin-bottom: 1.25rem;
    }

    .category-tab {
        padding: 0.58rem 0.85rem;
        margin-bottom: 0;
        border: 1px solid #d1d5db;
        border-radius: 999px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .category-tab.active {
        border-color: #111827;
        background: #111827;
        color: #ffffff;
    }

    .category-dropdown-menu {
        min-width: 180px;
        max-width: calc(100vw - 2rem);
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.25rem 0;
    }
}

@media (max-width: 480px) {
    .category-dropdown {
        width: 100%;
    }

    .category-dropdown-toggle {
        width: 100%;
        text-align: left;
    }

    .category-dropdown-menu {
        left: 0;
        right: 0;
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .shop-card h3 {
        font-size: 0.95rem;
    }
}
