/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff9d00;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

nav a:hover {
    color: #ff9d00;
}

.cart {
    font-weight: bold;
    margin-left: 20px;
}

/* HERO SECTION */
.hero {
    background: url("YOUR-LOGO.jpg") center/contain no-repeat;
    height: 330px;
    background-color: #000; /* fallback */
    text-align: center;
    padding-top: 120px;
    color: white;
    position: relative;
}

.hero::before {
    content:"";
    position: absolute;
    inset:0;
    background: rgba(0,0,0,0.5);
}

.hero h1,
.hero p {
    position: relative;
    z-index: 2;
}

/* SORT SECTION */
.sort-section {
    padding: 20px;
    font-size: 1.1rem;
}

.sort-section select {
    padding: 8px 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* PRODUCT GRID */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
}

.card h3 {
    margin-bottom: 5px;
}

.price {
    color: #ff9d00;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp-btn:hover {
    background: #1da851;
}

/* PAGINATION */
.pagination {
    text-align: center;
    padding: 20px;
}

.pagination button {
    background: #ff9d00;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.pagination button:hover {
    background: #ff7700;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
    margin-top: 20px;
}
