/* ============================================
   SHUMAC — Simple & Clean Style
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #faf5f0;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
header {
    background: #2C1810;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #C9A96E;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-img {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    vertical-align: middle;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

nav ul li a {
    color: #ddd;
    text-decoration: none;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 5px;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #C9A96E;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    background: #2C1810;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
}

.hero h1 {
    font-size: 60px;
    color: #C9A96E;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    color: #aaa;
    max-width: 450px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
}

.btn-primary {
    background: #C9A96E;
    color: #2C1810;
}

.btn-primary:hover {
    background: #b8953d;
}

.btn-outline {
    border: 2px solid #C9A96E;
    color: #C9A96E;
    background: transparent;
}

.btn-outline:hover {
    background: #C9A96E;
    color: #2C1810;
}

/* === SECTIONS === */
.section {
    padding: 60px 0;
}

.section h2 {
    font-size: 32px;
    color: #2C1810;
    margin-bottom: 8px;
}

.section-sub {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
}

.text-center {
    text-align: center;
}

/* === CATEGORIES === */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cat-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    background: #fff;
}

.cat-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.cat-card .cat-info {
    padding: 15px;
}

.cat-card .cat-info h3 {
    font-size: 20px;
    color: #2C1810;
}

.cat-card .cat-info p {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

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

.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.prod-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.prod-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.prod-card .prod-body {
    padding: 12px;
}

.prod-card h4 {
    font-size: 15px;
    color: #2C1810;
}

.prod-card .prod-cat {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin: 4px 0 8px;
}

.prod-card .prod-price {
    font-size: 18px;
    font-weight: bold;
    color: #C9A96E;
}

.prod-card .prod-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.btn-whatsapp {
    display: inline-block;
    padding: 7px 14px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
}

.btn-whatsapp:hover {
    background: #1da851;
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.whatsapp-float a:hover {
    background: #1da851;
}

/* === CONTACT SECTION === */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-card h4 {
    margin: 15px 0 8px;
    font-size: 18px;
    color: #2C1810;
}

.contact-card p {
    font-size: 14px;
    color: #555;
}

/* === FOOTER === */
footer {
    background: #1a0f0a;
    color: #999;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-grid h4 {
    color: #C9A96E;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-grid a {
    display: block;
    color: #888;
    text-decoration: none;
    font-size: 13px;
    padding: 3px 0;
}

.footer-grid a:hover {
    color: #C9A96E;
}

.footer-grid p {
    font-size: 13px;
    line-height: 1.6;
    color: #777;
    max-width: 280px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .cat-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    header {
        position: static;
    }

    .hero {
        min-height: auto;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 40px;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 3px;
    }

    nav ul li a {
        font-size: 13px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .prod-grid {
        grid-template-columns: 1fr;
    }

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

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