* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #f5f5f5;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 14px 25px;
    border-bottom: 1px solid gold;
}

.logo {
    color: gold;
    font-weight: bold;
    font-size: 18px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    padding: 6px 0;
}

.nav-links a:hover {
    color: gold;
    border-bottom: 2px solid gold;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #111;
    border: 1px solid gold;
    padding: 12px 15px;
    top: 32px;
    min-width: 200px;
    border-radius: 8px;
    z-index: 1000;
}

.dropdown-content p {
    margin-bottom: 6px;
    font-size: 14px;
}

.dropdown-content p:last-child {
    margin-bottom: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* HEADER */
header {
    text-align: center;
    padding: 40px 15px;
    border-bottom: 1px solid gold;
}

header h1 {
    color: gold;
    font-size: 32px;
}

.tagline {
    margin-top: 8px;
    opacity: 0.85;
}

/* HERO */
.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.hero p {
    margin-bottom: 18px;
}

.delivery {
    margin-top: 15px;
    color: #90ee90;
}

/* BUTTON */
.btn {
    background: gold;
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255,215,0,0.4);
}

/* SHOP */
.shop {
    padding: 60px 20px;
    text-align: center;
}

.shop h2 {
    margin-bottom: 35px;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* PRODUCT */
.product {
    background: #111;
    border: 1px solid gold;
    border-radius: 14px;
    padding: 18px;
    transition: transform 0.2s ease;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
}

.product h3 {
    color: gold;
    margin-top: 12px;
}

.price {
    margin: 12px 0;
}

.wholesale {
    color: #00ff7f;
}

/* FULLSCREEN VIEWER */
.viewer {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.viewer img {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.hidden {
    display: none;
}

/* FOOTER */
.footer {
    border-top: 1px solid gold;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.footer p {
    font-size: 16px;
    margin-bottom: 20px;
}

.whatsapp-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: gold;
    color: #000;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.whatsapp-footer img {
    width: 22px;
    height: 22px;
}

.whatsapp-footer:hover {
    transform: scale(1.05);
}