/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #C72E2E;
    --dark-red: #8B1A1A;
    --light-red: #FFE8E8;
    --dark-brown: #4A1919;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --bg-light: #FFF5F5;
    --bg-cream: #FDF8F3;
    --white: #FFFFFF;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: var(--bg-cream);
    border-radius: 15px;
    color: var(--text-dark);
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.modal-content h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.modal-content button {
    padding: 10px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#yesBtn {
    background: #6b2df0;
    color: #fff;
}

#yesBtn:hover {
    background: #3e8e41;
}

#noBtn {
    background: #9d3bf6;
    color: #fff;
}

#noBtn:hover {
    background: #d32f2f;
}

/* Warning section */
.warn {
    font-size: 16px;
    background-color: #000;
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    margin-bottom: 10px;
}

.warn.hidden {
    display: none;
}

.header {
    padding: 20px 0;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo-text img {
    width: 70px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-red);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

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

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

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

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.icon-btn:hover {
    background: var(--bg-light);
    color: var(--primary-red);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F5 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr 300px;
    gap: 60px;
    align-items: center;
}

.hero-welcome {
    font-size: 18px;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.text-red {
    color: var(--primary-red);
}

.hero-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 50px;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 46, 46, 0.3);
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 0;
}

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

.hero-products {
    display: flex;
    gap: 20px;
}

.product-card-small {
    width: 100px;
    height: 120px;
    background: var(--white);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: var(--transition);
}

.product-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-img-small {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.rating {
    font-size: 10px;
    color: #FFB800;
}

.stars {
    display: block;
}

.add-btn-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.add-btn-small:hover {
    background: var(--dark-red);
    transform: scale(1.1);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burger-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.service-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.service-text p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ===== PROMO SECTION ===== */
.promo-section {
    padding: 60px 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    height: auto;
}

.promo-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.promo-card:hover {
    transform: scale(1.02);
}

.promo-large {
    background: linear-gradient(135deg, #B24B44 0%, #BCA28A 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
}

.promo-content {
    color: var(--white);
}

.promo-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

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

.promo-large .promo-img {
    width: 50%;
    height: auto;
    object-fit: contain;
}

.promo-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo-small {
    flex: 1;
    background: var(--bg-cream);
    position: relative;
}

.view-details {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
}

.section-header.center {
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.filter-btn:hover {
    background: var(--light-red);
    color: var(--primary-red);
}

.filter-btn.active {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(199, 46, 46, 0.3);
}

.filter-item {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.filter-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}

.view-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--primary-red);
    gap: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-img-wrapper {
    min-width: 300px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}

.bg-red {
    background: linear-gradient(135deg, #C72E2E 0%, #A02424 100%);
}

.bg-light {
    background: #FFF5F5;
}

.product-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: var(--transition);
}

.favorite-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.product-rating {
    font-size: 12px;
    color: #FFB800;
    margin-bottom: 10px;
}

.product-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
}

.add-to-cart-btn {
    width: 100%;
    height: 45px;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-transform: uppercase;
}

.add-to-cart-btn:hover {
    background: var(--dark-red);
    transform: scale(1.05);
}

/* ===== STORIES SECTION ===== */
.stories-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F5 100%);
}

.stories-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.stories-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stories-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.badge {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-1 {
    bottom: 40px;
    left: -40px;
}

.badge-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
}

.stories-subtitle {
    font-size: 16px;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 10px;
}

.stories-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.stories-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ===== POPULAR SECTION ===== */
.popular-section {
    padding: 80px 0 100px;
    background: var(--white);
}

.popular-section .section-title {
    margin-bottom: 40px;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.popular-card {
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    transition: var(--transition);
}

.popular-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

/* ===== RESPONSIVE STYLES ===== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-right {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-around;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stories-content {
        gap: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title,
    .stories-title {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        align-items: flex-start;
    }

    .nav.active {
        right: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-products {
        justify-content: center;
    }

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

    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .promo-large {
        flex-direction: column;
        text-align: center;
        min-height: 400px;
    }

    .promo-large .promo-img {
        width: 100%;
        max-width: 300px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stories-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .badge-1 {
        left: 50%;
        transform: translateX(-50%);
    }



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

    .section-title,
    .stories-title {
        font-size: 28px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* Description Section Mobile */
    .description-content h3 {
        font-size: 20px;
    }

    .description-content h4 {
        font-size: 18px;
    }
}

/* ===== DESCRIPTION SECTION ===== */
.description-section {
    padding: 60px 0;
    background: var(--bg-cream);
}

.description-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.description-content {
    max-height: 250px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease-in-out;
}

.description-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(transparent, var(--bg-cream));
    pointer-events: none;
    transition: opacity 0.3s;
}

.description-content.expanded {
    max-height: 3000px;
}

.description-content.expanded::after {
    opacity: 0;
}

.description-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.description-content h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: var(--primary-red);
}

.description-content h5 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.description-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

.description-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.description-content ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.description-content ul li::before {
    content: "•";
    color: var(--primary-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.show-more-btn {
    display: block;
    margin: 30px auto 0;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.show-more-btn:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

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

    .hero-products {
        flex-wrap: wrap;
    }

    .promo-title {
        font-size: 32px;
    }

    .container {
        padding: 0 15px;
    }
}

/* footer */
footer {
    position: relative;
    width: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 40px 100px;
}

footer a {
    text-decoration: none;
    color: inherit;
}

.footer-logo {
    padding: 35px 20px;
    padding-top: 20px;
    margin-right: 40px;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-cont {
    width: 100%;
    display: flex;
    color: white;
    font-size: 26px;
    gap: 80px;
    padding-bottom: 35px;
    border-bottom: 2px solid gray;
    position: relative;
}

.foot-cont-one {
    display: flex;
    gap: 80px;
}

.copyright {
    width: 100%;
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid gray;

    color: rgb(168, 167, 167);
}

footer svg {
    fill: rgba(255, 255, 255, 0.842);
    stroke-miterlimit: 10;
    stroke-width: 1px;
    width: 40px;
}

.city {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
}

.cont-col {
    display: flex;
    flex-direction: column;
}

.cont-col:first-child {
    color: rgb(168, 167, 167);
}

.cont-col:first-child a:first-child {
    color: white;
}

.foot-cont-two {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.foot-cont-two div {
    align-items: center;
    display: flex;
    gap: 20px;
}

.foot-cont-three {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: white;
    font-size: 20px;
}

.foot-cont-three p:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.foot-cont-three p {
    position: relative;
    padding-right: 16px;
}

.foot-cont-three p::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.foot-cont-three p.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.foot-cont-three a {
    display: none;
}

.social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    border-bottom: 2px solid gray;
}

@media (max-width: 768px) and (min-width: 320px) {
    footer {
        align-items: center;
        padding: 40px 40px;
    }

    .warn {
        font-size: 10px !important;
    }

    .footer-logo {
        margin-right: 0;
    }

    .social {
        gap: 0;
    }

    .footer-logo img {
        object-fit: cover;
        width: 90px;
    }

    .footer-cont {
        font-size: 18px;
        flex-direction: column;
    }

    .foot-cont-two {
        padding-top: 35px;
        border-top: 2px solid gray;
    }

    .foot-cont-three {
        flex-direction: column;
    }

    .featured-title {
        font-size: 1.25rem;
    }

    .featured-desc {
        font-size: 0.9rem;
    }

    .featured-btns {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .featured-btns a {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }
}