.container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    /* similar to Tailwind's px-4 */
    padding-right: 1rem;
}



body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    color: #f97316;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    font-size: 14px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
}

.contact-btn {
    background: #f97316;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
}

.hero {
    background-image: url('./assets/Heading.png');
    background-size: cover;
    background-position: center;
    height: 700px;
    display: flex;
    align-items: center;
    color: white;
    padding: 2rem;
}

.hero-content {
    max-width: 500px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
}

.badge-text {
    background: white;
    color: #333;
    padding: 0.2rem 0.8rem;
    border-radius: 9999px;
    font-size: 14px;
}

.hero-heading {
    font-size: 36px;
    font-weight: bold;
    margin: 1rem 0;
}

.hero-subtext {
    font-size: 18px;
    margin-bottom: 1.5rem;
}

.shop-btn {
    background: #f97316;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
}

.product-section {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 4rem 2rem;
    justify-content: center;
}

.product-image-wrapper {
    max-width: 600px;
}

.main-image {
    background: #fff3ec;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.main-image img {
    max-width: 300px;
}

.thumbnails {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    gap: 0.5rem;
}

.thumbnails img {
    width: 64px;
    height: 64px;
    border-radius: 0.25rem;
    border: 2px solid #ccc;
    cursor: pointer;
}

.selected-thumb {
    border-color: #602F11;
}

.product-info {
    max-width: 600px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
}

.stars {
    color: #facc15;
}

.product-title {
    font-size: 28px;
    font-weight: bold;
    color: #2C1809;
    margin: 1rem 0;
}

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

.price {
    font-size: 32px;
    font-weight: bold;
    color: #6B2B00;
}

.old-price {
    text-decoration: line-through;
    font-size: 18px;
}

.discount {
    background: #FF6600;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 12px;
    font-weight: bold;
}

.description h3 {
    margin: 1rem 0 0.5rem;
}

.features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #B54708;
    font-weight: 500;
}

.add-to-cart {
    width: 100%;
    background: #f97316;
    color: white;
    padding: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    margin-top: 1rem;
    cursor: pointer;
}

.payment-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.payment-options img {
    height: 32px;
    padding: 0.3rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border 0.3s;
}

.payment-options img:hover {
    border-color: #f97316;
}

.accordion {
    margin-top: 1.5rem;
}

.accordion-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f97316;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #4a4a4a;
}


/* Optional: emulate Tailwind's responsive containers */
@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
    }
}