* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fafaf8;
    color: #2c2c2c;
    line-height: 1.6;
}

/* =====================
   HEADER (SMALLER WIDTH)
   ===================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f5e6d3 0%, #f9f3e9 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 6px 16px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 12px;
}

.logo-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-section a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.05);
    cursor: pointer;
}

.nav {
    display: flex;
    gap: 14px;
    flex: 1;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
}

.nav a {
    color: #5C3A21;
    text-decoration: none;
    padding: 6px 10px;
    transition: all 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
}

.nav a:hover,
.nav a:active {
    color: #C8A97E;
    background: rgba(200, 169, 126, 0.1);
}

.btn-header {
    padding: 8px 14px;
    background: linear-gradient(135deg, #C8A97E 0%, #b8956a 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(200, 169, 126, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 169, 126, 0.3);
}

body {
    padding-top: 75px;
}

/* =====================
   TYPOGRAPHY
   ===================== */

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

h3 {
    font-size: 1.05rem;
    color: #1a1a1a;
    font-weight: 600;
}

h4 {
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 8px;
}

p {
    color: #555;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

a {
    color: #C8A97E;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5C3A21;
}

/* =====================
   CONTAINER
   ===================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
}

/* =====================
   WHATSAPP FLOATING BUTTON
   ===================== */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* =====================
   HERO SECTION
   ===================== */

.hero {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-bottom: 0;
    background: linear-gradient(135deg, #5C3A21 0%, #8B5A3C 50%, #C8A97E 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(200, 169, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(92, 58, 33, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 16px;
    animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 6px;
}

.hero p {
    font-size: 0.95rem;
    color: #f5e6d3;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
}

/* =====================
   SECTION STYLES
   ===================== */

.section {
    margin-bottom: 0;
}

.products-section {
    padding: 20px 0;
    background: #fafaf8;
}

.category-header {
    background: linear-gradient(135deg, #f5e6d3 0%, #f9f3e9 100%);
    padding: 14px 16px;
    margin: 0;
    border-left: 5px solid #C8A97E;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-header h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #5C3A21;
    font-weight: 700;
}

/* =====================
   PRODUCTS GRID
   ===================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px 12px;
    background: #fafaf8;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid #f0f0f0;
}

.product-card:active {
    transform: scale(0.97);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #f5e6d3 0%, #f0ebe0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-bottom: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 14px;
    max-width: 100%;
    max-height: 100%;
}

/* =====================
   PRODUCT TYPE BADGE
   ===================== */

.product-type {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(92, 58, 33, 0.85);
    color: #f5e6d3;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(8px);
    z-index: 10;
    margin: 0;
}

/* =====================
   PRODUCT INFO
   ===================== */

.product-card h3 {
    padding: 12px 12px 2px;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0;
}

.product-card p {
    padding: 0 12px 12px;
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* =====================
   ABOUT SECTION
   ===================== */

.about-section {
    background: #f5f5f5;
    padding: 20px 12px;
    margin-bottom: 0;
}

.about-text {
    width: 100%;
}

.about-text h2 {
    color: #5C3A21;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 700;
}

.about-text p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.sourcing-regions {
    background: #f9f3e9;
    padding: 12px;
    border-radius: 8px;
    margin: 12px 0;
    border-left: 4px solid #C8A97E;
}

.sourcing-regions p {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9rem;
}

.sourcing-regions p:last-child {
    margin-bottom: 0;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #efefef;
}

.about-highlights p {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5C3A21;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 !important;
}

.about-highlights p::before {
    content: '✓';
    color: #C8A97E;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* =====================
   FOUNDER SECTION
   ===================== */

.founder-section {
    background: white;
    padding: 20px 0;
    margin-bottom: 0;
}

.founder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.founder-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px 0;
}

.founder-image-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #f5e6d3 0%, #f0ebe0 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 4px solid #C8A97E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.founder-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.founder-content {
    width: 100%;
    padding: 0 12px 16px;
}

.founder-content h2 {
    color: #5C3A21;
    margin-bottom: 6px;
    font-size: 1.3rem;
    font-weight: 700;
}

.founder-name {
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px !important;
}

.founder-title {
    color: #C8A97E;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px !important;
}

.founder-bio {
    margin: 12px 0;
    padding: 12px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.founder-bio p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-align: left;
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
    width: 100%;
}

.stat {
    background: #f9f3e9;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid #C8A97E;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #5C3A21;
    margin-bottom: 2px !important;
}

.stat-label {
    font-size: 0.7rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin: 0 !important;
    line-height: 1.3;
}

/* =====================
   CTA SECTION
   ===================== */

.cta-section {
    background: linear-gradient(135deg, #5C3A21 0%, #8B5A3C 100%);
    color: white;
    padding: 20px 12px;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(200, 169, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(200, 169, 126, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section h2 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: #f5e6d3;
    font-size: 0.95rem;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.cta-btn {
    padding: 12px 16px;
    background: linear-gradient(135deg, #C8A97E 0%, #dab896 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-btn:active {
    transform: scale(0.98);
}

.cta-btn:hover {
    background: linear-gradient(135deg, #dab896 0%, #e5c9a6 100%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cta-btn-white {
    background: white;
    color: #5C3A21;
    font-weight: 600;
}

.cta-btn-white:hover {
    background: #f5f5f5;
}

/* =====================
   CONTACT SECTION
   ===================== */

.contact-section {
    padding: 16px 12px;
}

.contact-content {
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-content h1 {
    color: #5C3A21;
    margin-bottom: 10px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: #f9f3e9;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-btn:hover {
    background: #f5e6d3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-text strong {
    color: #5C3A21;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-text small {
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
}

.business-hours {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    border-left: 4px solid #C8A97E;
}

.business-hours h3 {
    color: #5C3A21;
    margin-bottom: 6px;
    font-size: 1rem;
}

.business-hours p {
    color: #555;
    margin: 0;
    font-size: 0.9rem;
}

/* =====================
   FOOTER
   ===================== */

.footer {
    background: #2c2c2c;
    color: #999;
    padding: 16px 12px;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid #3a3a3a;
    margin-top: 0;
}

.footer p {
    margin-bottom: 8px;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.footer-links a {
    color: #999;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

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

/* =====================
   PRODUCT DETAIL PAGE
   ===================== */

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

.product-detail-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-detail-image {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5e6d3 0%, #f0ebe0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 16px;
}

.product-detail-content {
    padding: 0 12px;
}

.product-detail-content h1 {
    color: #5C3A21;
    margin-bottom: 6px;
    font-size: 1.8rem;
}

.product-detail-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.product-highlights {
    background: #f9f3e9;
    padding: 14px;
    border-radius: 10px;
    margin: 14px 0;
    border-left: 4px solid #C8A97E;
}

.product-highlights h3 {
    color: #5C3A21;
    margin-bottom: 10px;
    font-size: 1rem;
}

.product-highlights ul {
    list-style: none;
}

.product-highlights li {
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    color: #555;
    font-size: 0.9rem;
}

.product-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C8A97E;
    font-weight: bold;
    font-size: 1.2rem;
}

/* =====================
   PAGE CONTENT
   ===================== */

.page-content {
    padding: 16px 12px 20px;
    background: white;
    min-height: 60vh;
}

.page-content h1 {
    color: #5C3A21;
    margin-bottom: 8px;
    font-size: 1.8rem;
    border-bottom: 3px solid #C8A97E;
    padding-bottom: 10px;
}

.page-content h2 {
    color: #5C3A21;
    margin-top: 16px;
    margin-bottom: 10px;
    font-size: 1.3rem;
    border-left: 4px solid #C8A97E;
    padding-left: 12px;
}

.page-content h3 {
    color: #5C3A21;
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 600;
}

.page-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.page-content ul,
.page-content ol {
    margin: 12px 0;
    padding-left: 20px;
}

.page-content li {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.page-content strong {
    color: #5C3A21;
    font-weight: 600;
}

.page-content .meta-info {
    background: #f9f3e9;
    padding: 12px;
    border-radius: 8px;
    margin: 14px 0;
    border-left: 4px solid #C8A97E;
    font-size: 0.9rem;
    color: #555;
}

.page-content .company-info {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    margin: 14px 0;
    font-size: 0.9rem;
    color: #555;
}

/* =====================
   ANIMATIONS
   ===================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.5s ease-out;
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .cta-btn {
        flex: 1;
    }

    .contact-buttons {
        flex-direction: row;
    }

    .contact-btn {
        flex: 1;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .product-detail-inner {
        flex-direction: row;
        gap: 20px;
    }

    .product-detail-image {
        flex: 0 0 45%;
        height: 400px;
    }

    .product-detail-content {
        flex: 1;
        padding: 0;
    }

    .founder-inner {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 24px;
    }

    .founder-image-wrapper {
        flex: 0 0 200px;
        padding: 0;
    }

    .founder-image-circle {
        width: 220px;
        height: 220px;
    }

    .founder-content {
        flex: 1;
        padding: 0;
        text-align: left;
    }

    .founder-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .page-content {
        padding: 20px 32px;
    }

    .page-content h1 {
        font-size: 2rem;
    }

    .page-content h2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .header {
        padding: 10px 20px;
    }

    .container {
        padding: 0 20px;
    }

    .logo {
        height: 65px;
    }

    body {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

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

    .founder-image-circle {
        width: 240px;
        height: 240px;
    }

    .founder-content h2 {
        font-size: 1.6rem;
    }

    .page-content {
        max-width: 900px;
        margin: 0 auto;
    }
}
