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

body{
    margin: 0 100px;
    background-color:#ffeae0 ;
}

.nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    gap: 10px;
}

.nav ul {
    flex: 1;
}

.nav .hamburger {
    margin-left: auto;
}

.nav .logo h1{
    font-weight: 600;
    font-family: sans-serif;
    color: #000000;
}

.nav .logo b{
    color: #ff511c;
}

.nav ul{
    display: flex;
    list-style: none;
}

.nav ul li{
    margin-right: 30px;

}

.nav ul li a{
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    font-family: sans-serif;
    font-size: 17px;
}

.nav ul .active::after{
    content: "";
    width: 50%;
    height: 3px;
    background-color: #ff511c;
    display: flex;
    position: relative;
    margin-left: 10px;
}

input{
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
}

.signin{
    background: transparent;
    border: none;
}

.signup{
    background: #ff511c;
    color: #000000;
    outline: none;
    border: none;
    border-radius: 5px;
}

.content{
    display: grid;
    grid-template-columns: 50% auto;
    gap: 30px;
    margin-top: 50px;
    align-content: center;
    justify-content: space-between;
    width: 100%;
}


.content .content-left{
    display: block;
    width: 100%;

}

.content .content-left .info{
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.content .content-left .info h2{
    font-size: 60px;
    font-family: sans-serif;
    margin-bottom: 30px;
}

.content .content-left .info p{
    font-size: 20px;
    line-height: 2pc;
    margin-bottom: 30px;
    font-family: sans-serif;
}

.content .content-left button{
    padding: 10px 23px;
    background-color: #ff511c;
    color: #000000;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}


.content .content-right{
    display: block;
    width: 100%;
    
}

.content .content-right img{
    width: 400px;
    height: auto;
    border-radius: 200px;
    position: relative;
    user-select: none;
    animation: rotate 10s linear infinite;
}


@keyframes rotate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.category{
    width: 100%;
    display: flex;
    margin-bottom: 50px; 
    justify-content: center;
}

.category .list-items{
    width: 90%;
    position: relative;
    margin-top: 50px;

    
}

.category .list-items h3{
    font-size: 20px;
    font-weight: 600;
    font-family: sans-serif;
    margin-bottom: 70px;


}


.category .list-items .card-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.category .card-list .card{
    width: 200px;
    height: auto;
    display: block;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    background: #ffffff;
    outline: 3px solid #faad96;
}

.category .card-list .card img{
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 20px #faad96;
    border-radius: 50%;
    display: block;
    margin: 0 auto 15px auto;
    position: static;
}

.category .card-list .card .food-title{
    padding: 40px 0 10px;
}

.category .card-list .card .food-title h1{
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    font-family: sans-serif;
}

.category .card .desc-food p{
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.category .card .price{
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.category .card .price span{
    font-weight: 600;
    font-family: sans-serif;
}

.category .card .price span .plus-icon{
    color: #000;
    font-size: 100%;
    cursor: pointer;

}


::-webkit-scrollbar{
    width: 10px;

}

::-webkit-scrollbar-thumb{
    border-radius: 20px;
    background-color: #ff511c;
}


/* Menu Page */



.menu-page {
    max-width: 900px;
    margin: 40px auto 40px auto;
    background: #fff8f3;
    border-radius: 16px;
    box-shadow: 0 4px 24px #faad96;
    padding: 40px 30px 30px 30px;
}
.menu-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ff511c;
    margin-bottom: 30px;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 2px;
}
.menu-section {
    margin-bottom: 32px;
}
.menu-section h3 {
    color: #ff511c;
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-family: 'Segoe UI', sans-serif;
    border-bottom: 2px solid #faad96;
    display: inline-block;
    padding-bottom: 4px;
}
.menu-section ul {
    list-style: none;
    padding-left: 0;
}
.menu-section ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #faad96;
    font-size: 1.1rem;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}
.menu-section ul li span {
    color: #ff511c;
    font-weight: bold;
    font-size: 1.1rem;
    margin-left: 20px;
}
.menu-section ul li:last-child {
    border-bottom: none;
}
@media (max-width: 600px) {
    body {
        margin: 0 2vw;
    }
    
    .nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        gap: 8px;
        background-color: #ffeae0 !important;
        
    }

    .nav .logo h1 {
        font-size: 1.5rem;
    }
    .nav ul {
        flex-direction: column;
        width: 100%;
        padding: 0 0 10px 0;
    }
    .nav ul li {
        margin: 8px 0;
    }
    .content {
        display: flex;
        flex-direction: row;
        gap: 10px;
        margin-top: 20px;
        align-items: center;
        justify-content: center;
    }
    .content .content-left, .content .content-right {
        width: 50%;
        min-width: 0;
    }
    .content .content-left {
        padding: 0 4vw 0 0;
        
        border-radius: 8px;
        
    }
    .content .content-left .info h2 {
        font-size: 0.8rem !important;
        margin-bottom: 0;
    }
    .content .content-left .info p {
        font-size: 0.6rem;
        margin-bottom:0;

    }
    .content .content-left button {
        width: 80%;
        font-size: 0.9rem;
        padding: 10px 0;
    }
    .content .content-right img {
        width: 90%;
        max-width: 120px;
        border-radius: 50%;
        margin: 0 auto;
        display: block;
    }
    .category {
        margin-bottom: 20px;
    }
    .category .list-items {
        margin-top: 100px;
    }
    .category .list-items h3 {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    .category .list-items .card-list {
        grid-template-columns: 1fr ;
        gap: 18px;
    }
    .category .card-list .card {
        width: 60vw;
        max-width: 320px;
        margin: 0 auto;
        padding: 10px 6px;
    }
    .category .card-list .card img {
        height: 90px;
        width: 120px;
        object-fit: cover;
    }
    .category .card-list .card .food-title {
        padding: 18px 0 8px;
    }
    .category .card-list .card .food-title h1 {
        font-size: 1.1rem;
    }
    .category .card .desc-food p {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    .category .card .price span {
        font-size: 1rem;
    }
    footer {
        font-size: 0.95rem;
        padding: 10px 0 0 0;
        text-align: center;
    }
    .social-icons {
        margin-top: 6px;
    }
    .social-icons a {
        font-size: 1.3rem;
        margin: 0 4px;
    }
    .menu-title {
        font-size: 1.5rem;
    }
    .menu-section h3 {
        font-size: 1rem;
    }
    .menu-section ul li {
        font-size: 0.95rem;
    }
}


/* Menu Page Background Styling */
body {
    background: linear-gradient(135deg, #ffeae0 0%, #fff8f3 100%);
    min-height: 100vh;
}
.menu-page {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px #faad96;
    border-radius: 16px;
    padding: 40px 30px 30px 30px;
    margin: 40px auto 40px auto;
    max-width: 900px;
    position: relative;
    z-index: 1;
}
.menu-page::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #ff511c33 60%, transparent 100%);
    border-radius: 50%;
    z-index: -1;
}
.menu-page::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #faad9633 60%, transparent 100%);
    border-radius: 50%;
    z-index: -1;
}


/* Add to Cart Button  */
.menu-section ul li {
    position: relative;
}
.add-to-cart-btn {
    background: #ff511c;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 1rem;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-left: 24px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px #faad9633;
    outline: none;
}
.add-to-cart-btn:hover, .add-to-cart-btn:focus {
    background: #faad96;
    color: #ff511c;
    box-shadow: 0 4px 16px #ff511c33;
}

@media (max-width: 900px) {
    body {
        margin: 0 10px;
    }
    .content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .content .content-right img {
        width: 100%;
        max-width: 300px;
        border-radius: 50%;
    }
    .category .list-items .card-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .menu-page {
        padding: 20px 5px;
    }
}

@media (max-width: 600px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }
    .nav ul {
        flex-direction: column;
        width: 100%;
    }
    .nav ul li {
        margin: 10px 0;
    }
    .content .content-left .info h2 {
        font-size: 2rem;
    }
    .category .list-items .card-list {
        grid-template-columns: 1fr;
    }
    .menu-title {
        font-size: 1.5rem;
    }
    .menu-section h3 {
        font-size: 1rem;
    }
    .menu-section ul li {
        font-size: 0.95rem;
    }
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2002;
    pointer-events: auto;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #ff511c;
    border-radius: 2px;
    transition: 0.4s;
}
@media (max-width: 800px) {
    .nav {
        position: relative;
        background: #fff8f3;
        z-index: 3000;
    }
    .nav ul {
        display: none;
        flex-direction: column;
        background: #fff8f3;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100vw;
        box-shadow: 0 4px 24px #faad96;
        padding: 20px 70px;
        z-index: 3001;
    }
    .nav ul.active {
        display: flex;
    }
    .hamburger {
        display: flex;
        z-index: 3002;
        pointer-events: auto;
        margin-left: 100px;
        margin-bottom: 0 !important;
    }
}

.social-icons {
    margin-top: 10px;
    text-align: center;
}
.social-icons a {
    color: black;
    font-size: 2rem;
    margin: 0 10px;
    transition: color 0.2s;
    display: inline-block;
}
.social-icons a:hover {
    color: #faad96;
}

/* Gallery Page Styling */
.gallery-page {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff8f3;
    border-radius: 16px;
    box-shadow: 0 4px 24px #faad96;
    padding: 40px 30px 30px 30px;
}
.gallery-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ff511c;
    margin-bottom: 30px;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 2px;
}
.gallery-filters {
    text-align: center;
    margin-bottom: 30px;
}
.filter-btn {
    background: #fff;
    color: #ff511c;
    border: 2px solid #faad96;
    border-radius: 20px;
    padding: 8px 22px;
    margin: 0 8px 10px 8px;
    font-size: 1rem;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}
.filter-btn.active, .filter-btn:hover {
    background: #ff511c;
    color: #fff;
    border: 2px solid #ff511c;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}
.gallery-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #faad9633;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.gallery-item span {
    display: block;
    padding: 12px 0 10px 0;
    font-size: 1.1rem;
    color: #ff511c;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
}
.gallery-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px #ff511c33;
}
@media (max-width: 700px) {
    .gallery-page {
        padding: 15px 5px;
    }
    .gallery-title {
        font-size: 1.5rem;
    }
    .gallery-item img {
        height: 120px;
        width:130px ;
    }
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        align-items: center;
    }
    .gallery-item img {
        width: 100%;
        max-width: 100%;
        height: 110px;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }
}

/* Contact */
.contact-page {
    max-width: 500px;
    margin: 40px auto;
    background: #fff8f3;
    border-radius: 16px;
    box-shadow: 0 4px 24px #faad96;
    padding: 40px 30px 30px 30px;
}
.contact-title {
    text-align: center;
    font-size: 2.2rem;
    color: #ff511c;
    margin-bottom: 30px;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 2px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-form label {
    font-size: 1rem;
    color: #ff511c;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
}
.contact-form input,
.contact-form textarea {
    padding: 10px 14px;
    border: 1.5px solid black;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    resize: none;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #ff511c;
    outline: none;
}
.contact-form button {
    background: #ff511c;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 0;
    font-size: 1.1rem;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s, color 0.2s;
}
.contact-form button:hover {
    background: #faad96;
    color: #ff511c;
}
@media (max-width: 600px) {
    .contact-page {
        padding: 15px 5px 50px 5px;
    }
    .contact-title {
        font-size: 1.5rem;
    }
}

/* About Page Styling */
.about-page {
    max-width: 900px;
    margin: 40px auto;
    background: #fff8f3;
    border-radius: 16px;
    box-shadow: 0 4px 24px #faad96;
    padding: 40px 30px 30px 30px;
}
.about-hero {
    text-align: center;
    margin-bottom: 30px;
}
.about-hero h2 {
    font-size: 2.5rem;
    color: #ff511c;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 10px;
}
.about-tagline {
    font-size: 1.3rem;
    color: gray;
    font-style: italic;
    font-family: 'Segoe UI', sans-serif;
}
.about-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.about-content h3 {
    color: #ff511c;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-family: 'Segoe UI', sans-serif;
}
.about-content ul {
    padding-left: 20px;
    margin-bottom: 0;
}
.about-content li {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #333;
    font-family: 'Segoe UI', sans-serif;
}
.team-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}
.team-member {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #faad9633;
    padding: 18px 12px 10px 12px;
    text-align: center;
    width: 160px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.team-member img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #faad96;
}
.team-member span {
    display: block;
    color: #ff511c;
    font-weight: 600;
    font-size: 1.1rem;
}
.team-member small {
    color: #888;
    font-size: 0.95rem;
}
.about-btn {
    display: inline-block;
    background: #ff511c;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px #faad9633;
}
.about-btn:hover {
    background: #faad96;
    color: #ff511c;
}
@media (max-width: 700px) {
    .about-page {
        padding: 15px 5px;
    }
    .about-hero h2 {
        font-size: 1.4rem;
    }
    .about-story h3{
        font-size: 1rem !important;
    }
    .about-story p{
        font-size: 0.8rem;
    }
    .about-mission h3{
        font-size: 1rem !important;
    }
    .about-mission p{
        font-size: 0.8rem;
    }
    .about-unique h3{
        font-size: 1rem !important;
    }
    .about-unique li{
        font-size: 0.8rem;
    }
    .about-unique b{
        font-size: 1rem;
    }
    .about-values h3{
        font-size: 1rem !important;
    }
    .about-values p{
        font-size: 0.8rem;
    }
    .about-cta h3{
        font-size: 1rem !important;
    }
    .about-cta p{
        font-size: 0.8rem;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }
    .team-member {
        width: 90%;
        margin-bottom: 18px;
    }
}

/* Sign In Page Styling */
.signin-page {
    max-width: 400px;
    margin: 40px auto;
    background: #fff8f3;
    border-radius: 16px;
    box-shadow: 0 4px 24px #faad96;
    padding: 40px 30px 30px 30px;
}
.signin-title {
    text-align: center;
    font-size: 2.2rem;
    color: #ff511c;
    margin-bottom: 30px;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 2px;
}
.signin-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.signin-form label {
    font-size: 1rem;
    color: black;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
}
.signin-form input {
    padding: 10px 14px;
    border: 1.5px solid #faad96;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    transition: border 0.2s;
}
.signin-form input:focus {
    border: 1.5px solid #ff511c;
    outline: none;
}
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}
.forgot-link {
    color: #ff511c;
    text-decoration: none;
    font-weight: 500;
}
.forgot-link:hover {
    text-decoration: underline;
}
.signin-form button {
    background: #ff511c;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 0;
    font-size: 1.1rem;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s, color 0.2s;
}
.signin-form button:hover {
    background: #faad96;
    color: #ff511c;
}
.form-link {
    text-align: center;
    margin-top: 10px;
    font-size: 1rem;
}
.form-link a {
    color: #ff511c;
    text-decoration: none;
    font-weight: 600;
}
.form-link a:hover {
    text-decoration: underline;
}
@media (max-width: 600px) {
    .signin-page {
        padding: 15px 5px;
    }
    .signin-title {
        font-size: 1.5rem;
    }
}

/* Sign Up Page Styling */
.signup-page {
    max-width: 400px;
    margin: 40px auto;
    background: #fff8f3;
    border-radius: 16px;
    box-shadow: 0 4px 24px #faad96;
    padding: 40px 30px 30px 30px;
}
.signup-title {
    text-align: center;
    font-size: 2.2rem;
    color: #ff511c;
    margin-bottom: 30px;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 2px;
}
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.signup-form label {
    font-size: 1rem;
    color: black;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
}
.signup-form input {
    padding: 10px 14px;
    border: 1.5px solid #faad96;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    transition: border 0.2s;
}
.signup-form input:focus {
    border: 1.5px solid #ff511c;
    outline: none;
}
.signup-form button {
    background: #ff511c;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 0;
    font-size: 1.1rem;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s, color 0.2s;
}
.signup-form button:hover {
    background: #faad96;
    color: #ff511c;
}
.form-link {
    text-align: center;
    margin-top: 10px;
    font-size: 1rem;
}
.form-link a {
    color: #ff511c;
    text-decoration: none;
    font-weight: 600;
}
.form-link a:hover {
    text-decoration: underline;
}
@media (max-width: 600px) {
    .signup-page {
        padding: 15px 5px;
    }
    .signup-title {
        font-size: 1.5rem;
    }
}

/* --- Review Page Styling --- */
.review-page {
    max-width: 900px;
    margin: 40px auto;
    background: #fff8f3;
    border-radius: 16px;
    box-shadow: 0 4px 24px #faad96;
    padding: 40px 30px 30px 30px;
}
.review-hero {
    text-align: center;
    margin-bottom: 30px;
}
.review-hero h2 {
    font-size: 2.5rem;
    color: #ff511c;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 10px;
}
.review-tagline {
    color: gray;
    font-size: 1.2rem;
    font-style: italic;
    font-family: 'Segoe UI', sans-serif;
}
.ratings-summary {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #faad9633;
    padding: 24px 20px 18px 20px;
    margin-bottom: 32px;
    text-align: center;
}
.ratings-summary h3 {
    color: #ff511c;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'Segoe UI', sans-serif;
}
.ratings-summary .stars {
    color: #ff511c;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.ratings-summary .stars span {
    color: #333;
    font-size: 1.1rem;
    margin-left: 8px;
}
.ratings-breakdown {
    margin-top: 10px;
    text-align: left;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}
.ratings-breakdown .bar {
    display: inline-block;
    width: 100px;
    height: 8px;
    background: #ffeae0;
    border-radius: 4px;
    margin: 0 8px;
    vertical-align: middle;
}
.ratings-breakdown .fill {
    height: 8px;
    background: #ff511c;
    border-radius: 4px;
}
.testimonials {
    margin-bottom: 32px;
}
.testimonials h3 {
    color: #ff511c;
    font-size: 1.3rem;
    margin-bottom: 18px;
    font-family: 'Segoe UI', sans-serif;
}
.testimonial-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.testimonial {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #faad9633;
    padding: 18px 20px 14px 20px;
    max-width: 320px;
    min-width: 220px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 24px #ff511c33;
}
.testimonial img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 4px;
    border: 2px solid #faad96;
}
.testimonial-content {
    flex: 1;
}
.testimonial-content .stars {
    color: #ff511c;
    font-size: 1.1rem;
    margin-bottom: 2px;
}
.testimonial-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 6px;
    font-family: 'Segoe UI', sans-serif;
}
.testimonial-content span {
    color: #ff511c;
    font-size: 0.95rem;
}
.review-form-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #faad9633;
    padding: 24px 20px 18px 20px;
    max-width: 500px;
    margin: 0 auto 24px auto;
}
.review-form-section h3 {
    color: #ff511c;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: 'Segoe UI', sans-serif;
}
.review-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.review-form label {
    font-size: 1rem;
    color: #333;
    font-family: 'Segoe UI', sans-serif;
}
.review-form input,
.review-form select,
.review-form textarea {
    padding: 10px 14px;
    border: 1.5px solid #faad96;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    resize: none;
    transition: border 0.2s;
}
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    border: 1.5px solid #ff511c;
    outline: none;
}
.review-form button {
    background: #ff511c;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 0;
    font-size: 1.1rem;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s, color 0.2s;
}
.review-form button:hover {
    background: #faad96;
    color: #ff511c;
}
@media (max-width: 700px) {
    .review-page {
        padding: 15px 5px;
    }
    .review-hero h2 {
        font-size: 2rem;
    }
    .testimonial-list {
        flex-direction: column;
        gap: 16px;
    }
    .testimonial {
        max-width: 100%;
        min-width: 0;
    }
    .review-form-section {
        padding: 15px 5px;
    }
}
.cart-page {
    max-width: 500px;
    margin: 40px auto 60px auto;
    background: #fff8f3;
    border-radius: 18px;
    box-shadow: 0 4px 24px #faad96;
    padding: 32px 24px 24px 24px;
    font-family: 'Segoe UI', sans-serif;
}
.cart-page h2 {
    color: #ff511c;
    text-align: center;
    margin-bottom: 24px;
    font-size: 2rem;
}
.cart-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    max-height: 260px;
    overflow-y: auto;
}
.cart-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #faad96;
    font-size: 1.1rem;
}
.cart-list li:last-child {
    border-bottom: none;
}
.cart-list span {
    color: #ff511c;
    font-weight: 600;
}
.cart-total {
    font-weight: 700;
    color: #333;
    text-align: right;
    margin-bottom: 18px;
    font-size: 1.1rem;
}
.clear-cart-btn, .checkout-btn {
    background: #ff511c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 1rem;
    margin: 8px 8px 0 0;
    cursor: pointer;
    transition: background 0.2s;
}
.clear-cart-btn:hover, .checkout-btn:hover {
    background: #faad96;
    color: #ff511c;
}
.remove-cart-item {
    background: none;
    border: none;
    color: #faad96;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
    transition: color 0.2s;
}
.remove-cart-item:hover {
    color: #ff511c;
}
@media (max-width: 600px) {
    .cart-page {
        padding: 12px 4vw 18px 4vw;
        max-width: 98vw;
    }
}




























































































