@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #09261C;
    --primary-dark: #051A13;
    --primary-light: #1B4332;
    --secondary-color: #D4A373;
    --secondary-light: #F3D5A5;
    --accent-color: #8FB339;
    --yellow: #FFC107;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --bg-light: #F8FAF9;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    --radius: 16px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 4.5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(9, 38, 28, 0.25);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #bc8a5f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 163, 115, 0.3);
}

/* Top Header */
.top-header {
    background: #ffffff;
    padding: 0.6rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.85rem;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info {
    display: flex;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    color: var(--secondary-color);
    width: 18px;
    height: 18px;
}

.info-item .detail {
    display: flex;
    flex-direction: column;
}

.info-item .label {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.info-item .value {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 0;
    background: var(--primary-dark);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.6rem 0;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .logo-text .name,
.navbar.scrolled .nav-menu a {
    color: var(--primary-dark) !important;
}

.navbar.scrolled .logo-text .tagline {
    color: var(--text-light) !important;
}

.navbar.scrolled .mobile-toggle {
    color: var(--primary-dark) !important;
}

.navbar.scrolled .nav-menu a.active,
.navbar.scrolled .nav-menu a:hover {
    color: var(--secondary-color) !important;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .name {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
}

.logo-text .tagline {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.nav-menu {
    display: flex;
    gap: 1.8rem;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-whatsapp-nav {
    background: #25D366;
    color: white;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-nav:hover {
    background: #20ba59;
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    color: var(--white);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    max-height: 400px;
}

.mobile-menu ul {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 868px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
    .mobile-menu { display: block; }
    .top-header { display: none; }
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(9, 38, 28, 0.1);
    border-color: var(--secondary-color);
}

.product-image {
    height: 220px;
    overflow: hidden;
    background: #f1f5f9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    flex-grow: 1;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.btn-text:hover {
    color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.footer-info .logo {
    margin-bottom: 1.2rem;
}

.footer-links h3, .footer-contact h3, .footer-map h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.contact-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item .icon {
    color: var(--secondary-color);
    flex-shrink: 0;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba59;
}

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

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