/* Global Typography */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* Container for content */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Styling */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #fbf3e4; /* same as body */
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 12px 12px;
}

.logo img {
    height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}

/* Navigation Menu */
#menu ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sf-menu li a {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.sf-menu li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #333;
    transition: width 0.3s ease;
}

.sf-menu li a:hover {
    color: #000;
}
.sf-menu li a:hover::after {
    width: 100%;
}

/* Headings */
h1, h2 {
    font-weight: 700;
    margin-bottom: 15px;
}
h1 {
    font-size: 2.2rem;
    text-align: center;
    margin-top: 40px;
}
h2 {
    font-size: 1.6rem;
    margin-top: 30px;
    color: #222;
}

/* Paragraphs */
p {
    font-size: 1rem;
    margin-bottom: 20px;
}


/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Product Card */
.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.product-card b {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.product-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}


/* Product Listing Grid */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Product Card */
.product-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Product Title */
.product-item h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

/* Product Media */
.product-item img,
.product-item video {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Product Description */
.product-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

/* Buy Buttons Row */
.buy-links {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.buy-links img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.buy-links img:hover {
    transform: scale(1.05);
}

/* Homepage Sections */
.home-section {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 40px auto;
    max-width: 1000px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.home-section h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
    text-align: left;
}

.home-section p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}



/* Responsive */
@media screen and (max-width: 768px) {
    #header {
        flex-direction: column;
        padding: 15px 20px;
    }

    #menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .logo img {
        height: 100px;
    }
    
      .product-grid {
        grid-template-columns: 1fr;
    }
    
}
