/* ====================================
   fuzzelut — Brand Website Styles
   ==================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    color: #1a6d4e;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0f4d36;
}

/* --- Container --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navigation --- */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-transform: lowercase;
}

.logo:hover {
    color: #1a6d4e;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a4a4a;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a6d4e;
    border-bottom-color: #1a6d4e;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a1a;
}

/* --- Hero --- */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 720px;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: #1a6d4e;
    color: #ffffff;
    border-color: #1a6d4e;
}

.btn-primary:hover {
    background: #0f4d36;
    border-color: #0f4d36;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #1a6d4e;
    border-color: #1a6d4e;
}

.btn-outline:hover {
    background: #1a6d4e;
    color: #ffffff;
}

/* --- Section --- */
.section {
    padding: 80px 0;
}

.bg-light {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 560px;
    margin: 0 auto;
}

/* --- Product Grid (Home) --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-card-featured {
    border-color: #1a6d4e;
    border-width: 2px;
    position: relative;
}

.product-card-featured::before {
    content: "Featured";
    position: absolute;
    top: -1px;
    right: 16px;
    background: #1a6d4e;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 0 0 6px 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.product-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}

/* Product images — from Amazon media CDN */
.product-img-1 {
    background: url('https://m.media-amazon.com/images/I/61Zq3RTWf8L._AC_SL1500_.jpg') center/contain no-repeat #f5f5f5;
    position: relative;
}

.product-img-2 {
    background: url('https://m.media-amazon.com/images/I/51GDc-qxRiL._AC_SL1080_.jpg') center/contain no-repeat #f5f5f5;
    position: relative;
}


.product-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.product-size {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a6d4e;
    margin-bottom: 16px;
}

/* --- Features Grid (Why Section) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 32px 20px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    transition: box-shadow 0.25s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #1a6d4e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle span {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
}

.icon-circle .icon-star {
    font-size: 1.5rem;
}

.icon-circle .icon-dish {
    font-size: 1.25rem;
    font-weight: 300;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* --- Newsletter --- */
.newsletter {
    background: #1a6d4e;
    color: #ffffff;
}

.newsletter-content {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter-content p {
    margin-bottom: 24px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form .btn-primary {
    background: #ffffff;
    color: #1a6d4e;
    border-color: #ffffff;
}

.newsletter-form .btn-primary:hover {
    background: #e8e8e8;
    border-color: #e8e8e8;
}

/* --- Footer --- */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 0;
}

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

.footer-brand h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-bottom .icp {
    margin-top: 6px;
}

.footer-bottom .icp a {
    color: #666;
    font-size: 0.8rem;
    text-decoration: none;
}

.footer-bottom .icp a:hover {
    color: #999;
    text-decoration: underline;
}

/* ====================================
   Products Page
   ==================================== */

.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 560px;
    margin: 0 auto;
}

.product-detail {
    padding: 64px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-detail-img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}

.product-detail-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.product-subtitle {
    font-size: 1rem;
    color: #888;
    margin-bottom: 16px;
}

.product-price-lg {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a6d4e;
    margin-bottom: 20px;
}

.product-specs {
    list-style: none;
    margin-bottom: 20px;
}

.product-specs li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.product-detail-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 20px 0 8px;
}

.product-features {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}

.product-features li {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 4px;
    line-height: 1.5;
}

.product-msrp {
    margin-top: 20px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-left: 3px solid #1a6d4e;
    border-radius: 4px;
    font-size: 1rem;
}


/* Pricing Note */
.pricing-note {
    background: #f8f9fa;
}

.note-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    text-align: center;
}

.note-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.note-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.note-card p:last-child {
    margin-bottom: 0;
}

/* ====================================
   Size Chart (Products Page)
   ==================================== */

.size-chart {
    overflow-x: auto;
    margin-bottom: 16px;
}

.size-chart table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.size-chart thead {
    background: #1a6d4e;
    color: #ffffff;
}

.size-chart th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.size-chart td {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

.size-chart tbody tr:hover {
    background: #f8f9fa;
}

.size-chart tbody tr:last-child td {
    border-bottom: none;
}

.size-chart .model {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
}

.size-chart .price-cell {
    font-weight: 700;
    color: #1a6d4e;
}

.size-chart tbody tr.highlight {
    background: #e8f5e9;
}

.size-chart tbody tr.highlight:hover {
    background: #d0ebd2;
}

.size-chart-note {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

/* ====================================
   About Page
   ==================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.about-text h2,
.about-values h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
}

.value-item {
    margin-bottom: 24px;
}

.value-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a6d4e;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.95rem;
    color: #555;
}

/* Comparison */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
}

.comparison-card {
    padding: 24px;
    border-radius: 10px;
}

.comparison-card.good {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
}

.comparison-card.bad {
    background: #fce4ec;
    border: 1px solid #ef9a9a;
}

.comparison-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.comparison-card .label {
    font-size: 0.85rem;
    margin-bottom: 12px;
    opacity: 0.7;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    font-size: 0.9rem;
    padding: 4px 0;
    color: #444;
}

/* ====================================
   Contact Page
   ==================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a6d4e;
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1a6d4e;
}

.form-note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 12px;
    text-align: center;
}

/* ====================================
   Responsive
   ==================================== */

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 24px;
        border-bottom: 1px solid #e8e8e8;
        gap: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    /* Hero */
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 60px 0 50px;
    }

    /* Sections */
    .section {
        padding: 48px 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-detail-img {
        height: 280px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-header {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.625rem;
    }

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

    .container {
        padding: 0 16px;
    }

    .product-card {
        padding: 24px 16px;
    }
}
