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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

header {
    background: #ffffff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-link img {
    height: 100px;
    margin-right: 12px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #e76f51;
}

.hero {
    background: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
    url('https://via.placeholder.com/1920x600?text=Your+Brand+Hero') center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    color: #444;
}

.products {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e76f51;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.product-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

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

.product-image-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

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

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

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e76f51;
    margin: 0.8rem 0;
}

.product-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

/* --- BUTTON STYLES --- */

/* General Button Style */
.order-btn {
    background: #e76f51;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block; /* Essential for <a> tags to respect padding */
    text-align: center;
}

.order-btn:hover {
    background: #d85a45;
}

/* SPECIFIC FIX: Button inside the Product Grid Card */
.product-card .order-btn {
    align-self: flex-start; /* Stops the button from stretching full width */
    width: 100%;            /* Ensures width fits content only */
    margin-top: 1rem;       /* Adds spacing from the price */
    font-size: 1rem;        /* Slightly smaller font for cards */
    padding: 0.4rem 1.5rem; /* Slightly smaller padding for cards */
}

/* --- END BUTTON STYLES --- */

footer {
    background: #f5f5f5;
    padding: 2rem;
    text-align: center;
    color: #666;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #1a1a1a;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin: 0;
    list-style: none;
}

.mobile-menu li {
    margin: 1.2rem 0;
    text-align: center;
}

.mobile-menu a {
    font-size: 1.3rem;
    color: #1a1a1a;
    text-decoration: none;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 160px;
    z-index: 10;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    text-align: center;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu li a:hover {
    background: #f8f8f8;
    color: #e76f51;
}

.social-icons a:hover i {
    opacity: 0.7;
}

@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
    }

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

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

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu.active {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -7px);
    }

    footer > div {
        flex-direction: column;
        text-align: center;
        position: relative;
    }

    .social-icons {
        position: static !important;
        transform: none !important;
        margin-top: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
}