*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* TOP BAR */
.top-bar {
    background: #4caf50;
    color: white;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.top-bar select {
    padding: 5px;
    border-radius: 4px;
    border: none;
}

/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #4caf50;
}

.search input {
    width: 400px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.icons span {
    margin-left: 10px;
    background: #4caf50;
    color: white;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 12px;
}

/* NAVBAR */
.navbar {
    display: flex;
    gap: 25px;
    padding: 12px 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.navbar a:hover {
    color: #4caf50;
}

/* Banner */
.product-banner{
    width: 100%;
    height: 250px;

    background-image: linear-gradient(rgba(255,0,100,0.4), rgba(255,0,100,0.4)),
                      url("images/banner.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
}

body {
    font-family: Arial;
    background: #f4f4f4;
    margin: 0;
}

.container {
    width: 95%;
    margin: auto;
}

/* SECTION TITLE */
.section-title {
    background: #f8cfd6;
    padding: 10px 20px;
    border-radius: 20px;
    color: #b5003c;
    margin: 20px 0;
    font-size: 16px;
}

/* GRID */
.product-grid {
    display: grid;
    grid-template-columns:  repeat(6, minmax(180px, 1fr));
    gap: 15px;
}

/* CARD */
.product-card {
    background: white;
    text-align: center;
    padding: 18px;     /* 10px → 18px */
    border-radius: 8px;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.product-card img {
    width: 100%;        /* 80px → full width */
    height: 160px;      /* 80px → 160px (ba 180px korte paro) */
    object-fit: cover;
    border-radius: 12px;
}

/* TEXT */
.product-card p {
    font-size: 12px;
    margin: 10px 0;
}

/* BUTTON */
.product-card a {
    display: block;
    background: #ffd6dc;
    padding: 6px;
    font-size: 10px;
    color: #b5003c;
    text-decoration: none;
    border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* FLOAT ICONS */
.call-icon {
    position: fixed;
    right: 20px;
    top: 50%;
    background: red;
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.whatsapp-icon {
    position: fixed;
    right: 20px;
    top: 60%;
    background: green;
    color: white;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
}

/* FOOTER SECTION */
.footer-section {
    background: #e8c3cc;
    padding: 50px 8%;
    font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT */
.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-left h2 {
    color: #d81b60;
    font-size: 26px;
    margin-bottom: 10px;
}

.footer-left p {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

/* RIGHT */
.footer-right {
    flex: 1;
    min-width: 300px;
}

.footer-right h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* GRID */
.links-grid {
    display: flex;
    gap: 40px;
}

.links-grid ul {
    list-style: none;
    padding: 0;
}

.links-grid li {
    margin-bottom: 10px;
}

.links-grid a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.links-grid a:hover {
    color: #d81b60;
}

/* HIGHLIGHT LINK */
.highlight {
    color: #d81b60;
    font-weight: 500;
}

* FOOTER */
.footer{
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background: #f8f8f8;
}

.footer h4{
    margin-bottom: 10px;
}


/* SOCIAL */
.social{
    padding: 20px 40px;
}

.icons{
    display: flex;
    gap: 12px;
}
.icons i{
    background: #d63384;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

/* Navbar basic */
.dropdown {
    position: relative;
    list-style: none;
}

/* Dropdown box */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #eee;
    border-radius: 10px;
    padding: 10px 0;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Links */
.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: black;
    font-size: 14px;
}

/* Hover effect */
.dropdown-menu a:hover {
    background: #ddd;
}

/* Divider line */
.dropdown-menu hr {
    margin: 5px 10px;
    border: 0.5px solid #ccc;
}

/* View all style */
.view-all {
    font-weight: bold;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

.logo img {
    height: 75px;
    width: 75px;
}