:root {
    --purple-light: #f3e8ff;
    --text-main: #1a1a1a;
    --gray-bg: #d9d9d9;
}

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: #fff;
    color: var(--text-main);
}

.container {
    max-width: 1500px; /* Centered for Desktop */
    margin: 0 auto;
    padding: 20px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    /* background: linear-gradient(to right, #e0c3fc, #8ec5fc33); */
    background-image: url(Visuamall/general/bg\ 2.jpg);
    height: 50px;
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    border-radius: 2px;
}

.profile-circle {
    width: 40px;
    height: 40px;
    background: #e6dcd0;
    border-radius: 50%;
}

/* Hero Banner */
.hero-banner {
    /* background: linear-gradient(135deg, #f5e6ff 0%, #ffffff 100%); */
    background-image: url(Visuamall/general/hero.jpeg);
    background-size: cover;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    margin-bottom: 30px;
    height: 300px;
}

.hero-content {
    padding: 40px;
    flex: 1;
}

.explore-btn {
    background: #e6dcd0;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* Grid System - The "Stack in Twos" Logic */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* This forces 2 columns */
    gap: 20px;
    margin-top: 15px;
}

/* Product Cards */
.product-card {
    /* background: var(--gray-bg); */
    /* background-image: url(Visuamall/general/hero.jpeg); */
    border-radius: 20px;
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    width: 95%;
}

.product-card.featured {
    background: linear-gradient(to right, #a991d6, #e2d1f9);
    /* background-image: url(Visuamall/general/menu\ bg\ 2.webp);
    background-repeat: no-repeat;*/
} 

.product-card.placeholder {
    /* background: linear-gradient(to right, #b8a6d9, #e2d1f9); */
    background-color: rgb(241, 218, 190);
    
}

.buy-btn {
    background: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: bold;
    float: right;
}

.pink-glow {
    box-shadow: 0 0 15px #ff00ff88;
    background: #ff69b4;
    color: white;
}

/* Info Section */
.info-section {
    margin: 40px 0;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.icon { font-size: 24px; }

/* Responsive adjustments */
@media (max-width: 600px) {
    .hero-banner { height: auto; flex-direction: column; }
    .container { padding: 10px; }
}