/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #faf7f2;
    color: #3a2f25;
}

/* HEADER */
header {
    width: 100%;
    padding: 18px 50px;
    background: linear-gradient(135deg, #8b5e34, #a47148, #d9b381);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: wrap;
}





.header-icons {
    display: flex;
}

.header-icons a i {
    font-size: 22px;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 10px;
    border-radius: 50%;
}

.header-icons a:hover i {
    transform: scale(1.2);
    color: #f2b950;
    background-color: rgba(255, 255, 255, 0.15);
}

/* LOGO */
.logo {
    font-size: 26px;
    font-weight: 700;
    color: #fffbea;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
}

/* NAV */
.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links li a {
    text-decoration: none;
    font-size: 17px;
    color: #fffdf7;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: #fff9e8;
    transform: translateY(-2px);
}

/* SEARCH */
.search-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-container input {
    padding: 10px 15px;
    width: 250px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: 0.3s ease;
}

.search-container input:focus {
    outline: none;
    border-color: #a47449;
    box-shadow: 0 0 8px rgba(164, 116, 73, 0.5);
}

.search-container button {
    padding: 10px 15px;
    background: #a47449;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

.search-container button:hover {
    background: #d9a066;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1350&q=80") center/cover no-repeat;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero-text h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #fdfdfd;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero .btn {
    display: inline-block;
    padding: 14px 38px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #d9a066, #a47449);
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(164, 116, 73, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero .btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.5s ease;
    transform: skewX(-25deg);
}

.hero .btn:hover::after {
    left: 100%;
}

.hero .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 22px rgba(164, 116, 73, 0.5);
    background: linear-gradient(135deg, #a47449, #d9a066);
}

/* PRODUCTS */
.products {
    padding: 50px 60px;
    text-align: center;
}

.products h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px) rotateX(4deg) rotateY(4deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.product-card p {
    font-size: 14px;
    color: #6b5b4c;
    margin-bottom: 8px;
}

.product-card span {
    font-weight: 600;
    color: #a47449;
}

/* CONTACT */
.contact {
    background: #fff6e6;
    padding: 50px 20px;
    margin-top: 40px;
    text-align: center;
    border-top: 3px solid #f2b950;
}

.contact-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #b57b0f;
}

.contact-details p {
    font-size: 18px;
    margin: 6px 0;
    color: #333;
    font-weight: 500;
}

.contact-details a {
    color: #b57b0f;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* SOCIAL ICONS */
.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: inline-block;
    border-radius: 50%;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.3s ease;
    border: 2px solid #f2b950;
}

.social-links a.fb { background-image: url('https://cdn-icons-png.flaticon.com/512/733/733547.png'); }
.social-links a.tiktok { background-image: url('https://cdn-icons-png.flaticon.com/512/3046/3046121.png'); }
.social-links a.insta { background-image: url('https://cdn-icons-png.flaticon.com/512/2111/2111463.png'); }

.social-links a:hover {
    transform: scale(1.15);
    box-shadow: 0 0 12px #f2b950;
    background-color: #fff;
}

/* FOOTER */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 999;
}
.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 101;
}
.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    border-radius: 2px;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    header { flex-direction: column; align-items: center; }
    nav { position: absolute; top: 70px; left: 0; width: 100%; display: none; flex-direction: column; padding: 15px 0; background: linear-gradient(135deg, #8b5e34,#a47148,#d9b381); text-align:center; }
    nav.active { display: flex; }
    nav .nav-links { flex-direction: column; gap: 15px; }
    .search-container { display: none; }
    .header-icons { justify-content: center; width: 100%; margin-top: 10px; }
    .hamburger { display: flex;}
}

@media(max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hero-text h1 { font-size: 32px; }
    .hero-text p { font-size: 16px; }
}

@media(max-width: 576px) {
    .product-grid { grid-template-columns: 1fr; gap: 15px; }
    .hero-text h1 { font-size: 26px; }
    .hero-text p { font-size: 14px; }
}
