/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-base);
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--text-high);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-surface);
    transform: translateY(-2px);
    border-color: var(--primary);
}

/* Category Components */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.category-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

.category-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    border-color: var(--primary);
}

.cat-image-wrapper {
    height: 200px;
    overflow: hidden;
    background: var(--bg-surface);
}

.cat-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover .cat-image-wrapper img {
    transform: scale(1.1);
}

.cat-info {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cat-info span {
    font-size: 28px;
    background: var(--bg-surface);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.cat-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-high);
}

/* Restaurant Cards */
.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.card-content {
    padding: 24px;
}

.card-rating {
    background: #2ECC71;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

/* Veg/Non-Veg Badges */
.type-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid currentColor;
}

.type-veg { color: #2ECC71; }
.type-nonveg { color: #E74C3C; }

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-veg { background: #2ECC71; }
.dot-nonveg { background: #E74C3C; }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-medium);
    margin: 20px 0;
}

.user-badge {
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

/* Global Elements */
.badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--border);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-medium);
    font-size: 18px;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
}

.hero-visuals {
    z-index: 2;
}

.floating-dish {
    z-index: 1;
    pointer-events: none;
}


.search-bar-container {
    background: white;
    padding: 8px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.search-bar-container input {
    border: none;
    background: none;
    flex: 1;
    padding: 12px;
}

.search-bar-container input:focus {
    box-shadow: none;
}

