/* ====================================
   CSS Variables & Reset
   ==================================== */
:root {
    --primary-color: #4D5B4B;
    --secondary-color: #F1DEBA;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #FAFAFA;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ====================================
   Container & Layout
   ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================================
   Navigation
   ==================================== */
.navbar {
    background-color: var(--primary-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--secondary-color);
    border: 2px solid var(--white);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    vertical-align: middle;
}

.social-link {
    display: flex;
    align-items: center;
}

/* ====================================
   Buttons
   ==================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: #3a4539;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background-color: #e8d1a5;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* ====================================
   Hero Section
   ==================================== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About page hero with custom background */
.hero.hero-about {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../images/aboutus.jpg') center/cover no-repeat;
}

/* ====================================
   Features Section
   ==================================== */
.features {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
}

/* ====================================
   Products Grid
   ==================================== */
.specials-preview,
.menu-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Ensure 3 columns on larger screens */
@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 2 columns on medium screens */
@media (min-width: 768px) and (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 250px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-quantity {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-portion {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-card .btn {
    width: 100%;
}

.unavailable {
    opacity: 0.6;
}

.unavailable-badge {
    background-color: #e74c3c;
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.no-items {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    padding: 3rem;
}

/* ====================================
   Page Header
   ==================================== */
.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ====================================
   Category Navigation
   ==================================== */
.category-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-nav-item {
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.category-nav-item:hover,
.category-nav-item.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ====================================
   Menu Category Section
   ==================================== */
.menu-category {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.category-header p {
    color: var(--text-light);
}

/* ====================================
   About Page
   ==================================== */
.about-content,
.chef-profile {
    padding: 80px 0;
}

.about-grid,
.chef-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text h2,
.chef-bio h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text h3,
.chef-bio h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text p,
.chef-bio p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.promise-list,
.philosophy-list {
    list-style: none;
    padding: 0;
}

.promise-list li,
.philosophy-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
}

.promise-list li:last-child,
.philosophy-list li:last-child {
    border-bottom: none;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-placeholder.round {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.values-section,
.specialties-section {
    margin-top: 4rem;
}

.values-section h2,
.specialties-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.values-grid,
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card,
.specialty-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.value-icon,
.specialty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3,
.specialty-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.value-card p,
.specialty-card p {
    color: var(--text-light);
}

/* ====================================
   Chef Profile
   ==================================== */
.chef-title {
    color: var(--text-light);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.bio-content {
    margin-top: 1.5rem;
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a4539 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ====================================
   Footer
   ==================================== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.social-links {
    margin-top: 1rem;
}

.social-link-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.social-link-footer:hover {
    opacity: 1;
}

.social-icon-footer {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ====================================
   Utilities
   ==================================== */
.text-center {
    text-align: center;
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        color: var(--text-dark);
        display: block;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active {
        color: var(--primary-color);
        background-color: var(--bg-light);
    }

    .social-icon {
        filter: brightness(0) saturate(100%) invert(27%) sepia(8%) saturate(1234%) hue-rotate(69deg) brightness(95%) contrast(89%);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .category-nav {
        flex-direction: column;
        align-items: center;
    }

    .category-nav-item {
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .features,
    .specials-preview,
    .menu-section,
    .about-content,
    .chef-profile,
    .cta-section {
        padding: 40px 0;
    }

    .cookie-consent {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 20px;
        max-width: calc(100% - 20px);
    }

    .cookie-consent-content {
        gap: 15px;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }

    .cookie-consent-buttons .btn {
        width: 100%;
    }

    .cookie-consent-text strong {
        font-size: 1rem;
    }
}

/* ====================================
   Cookie Consent Banner
   ==================================== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius);
    padding: 24px;
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-consent-text {
    color: var(--text-dark);
    line-height: 1.6;
}

.cookie-consent-text p {
    margin: 0 0 8px 0;
}

.cookie-consent-text strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.cookie-consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-consent-buttons .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* ====================================
   Home Page Scheduled Dishes
   ==================================== */
.order-status-home,
.delivery-date-home {
    font-size: 0.9rem;
    margin: 10px 0;
    padding: 10px 12px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.status-label,
.delivery-label {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-value,
.delivery-value {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.status-value.status-open {
    color: #155724;
    font-weight: 700;
    background-color: #d4edda;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-left: 4px;
}

.status-value.status-closed {
    color: #721c24;
    font-weight: 700;
    background-color: #f8d7da;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-left: 4px;
}

.delivery-value {
    background-color: var(--secondary-color);
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-left: 4px;
    color: var(--primary-color);
}

.btn.disabled {
    background-color: #cccccc;
    color: #666666;
    opacity: 0.6;
}

.btn.disabled:hover {
    background-color: #cccccc;
    transform: none;
    box-shadow: var(--shadow);
}

/* ====================================
   Order Types Blurb
   ==================================== */
.order-types-blurb {
    margin: 0 auto 50px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    max-width: 900px;
}

.order-types-blurb h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.order-types-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.order-type {
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    line-height: 1.6;
}

.order-type strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .order-types-content {
        grid-template-columns: 1fr;
    }

    .order-types-blurb {
        padding: 20px;
        margin: 0 auto 30px;
    }
}

/* ====================================
   Share Button Icon
   ==================================== */
.share-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 4px;
    border-radius: 4px;
}

.share-btn-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.share-btn-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.share-btn-icon:active {
    transform: scale(0.95);
}

/* ====================================
   Reviews Section
   ==================================== */
.reviews-section {
    padding: 80px 0;
    background-color: var(--white);
}

.reviews-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-container {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    min-width: 100%;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-content {
    position: relative;
    flex: 1;
}

.quote-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: Georgia, serif;
    line-height: 0.5;
    margin-bottom: 20px;
    opacity: 0.5;
}

.review-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.review-dish {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 10px;
}

.review-dish strong {
    color: var(--primary-color);
    font-weight: 600;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--secondary-color);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.slider-btn:hover {
    background-color: #3a4539;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot:hover {
    background-color: #bbb;
}

.slider-dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.no-reviews {
    text-align: center;
    color: var(--text-light);
    padding: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-slider {
        padding: 0 50px;
    }

    .review-card {
        padding: 30px 20px;
    }

    .review-quote {
        font-size: 1rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .quote-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .reviews-slider {
        padding: 0 40px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .review-author {
        flex-direction: column;
        align-items: flex-start;
    }

    .author-image {
        width: 50px;
        height: 50px;
    }
}
