:root {
    /* Pure, vibrant orange theme matching the brand logo palette */
    --brand-orange: #FA541C; 
    --bg-soft: #FDFCFB; 
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    --card-hover-shadow: 0 15px 35px rgba(250, 84, 28, 0.12);
    --text-main: #2D3142;
    --text-muted: #9094A6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-soft);
    margin: 0;
    padding: 0;
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

/* Header Area */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-placeholder {
    font-size: 26px;
    font-weight: 900;
    color: var(--brand-orange);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-item {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s;
    text-decoration: none;
}

.nav-item:hover, .nav-item.active {
    color: var(--brand-orange);
    position: relative;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-orange);
    border-radius: 2px;
}

/* Vibrant Logo Orange Hero Banner */
.hero-banner {
    width: 100%;
    height: 280px;
    background: var(--brand-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '🧋';
    position: absolute;
    font-size: 140px;
    opacity: 0.12;
    right: 10%;
    bottom: -20px;
}

.hero-banner h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 8px 0;
    letter-spacing: -1px;
}

.hero-banner p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

/* Container Structure */
.menu-container {
    max-width: 1140px;
    margin: 50px auto;
    padding: 0 20px;
}

.category-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 35px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 28px;
    background: var(--brand-orange);
    border-radius: 3px;
}

/* Grid System */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

/* Card Styling */
.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: flex;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-hover-shadow);
    border-color: rgba(250, 84, 28, 0.25);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 15px;
}

.badge {
    align-self: flex-start;
    background: #FFF2EB; 
    color: var(--brand-orange);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-main);
    line-height: 1.2;
}

.product-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-orange);
}

/* Image Handling */
.image-wrapper {
    width: 110px;
    height: 110px;
    background: #F8F9FA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .header { padding: 15px 20px; }
    .product-grid { grid-template-columns: 1fr; }
    .product-card { padding: 20px; }
}