* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #faf5eb;
    color: #1A1A1A;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0px 40px;
    position: relative;
}

.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    height: 100px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

.nav-links a.active {
    color: #2B7A3E;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: #2B7A3E;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #2B7A3E;
}

.search-cart-bar {
    display: flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #E0E0E0;
    border-radius: 30px;
    padding: 5px 20px;
}

.search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search i {
    color: #FFB300;
    font-size: 16px;
}

.search input {
    border: none;
    background: transparent;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    width: 150px;
    color: #1A1A1A;
}

.divider {
    width: 1px;
    height: 20px;
    background-color: #E0E0E0;
    margin: 0 15px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #F5F5F5;
}

.cart-icon i {
    color: #1A1A1A;
}

.cart-icon .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #D32F2F;
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
    position: relative;
}

.hero-left {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.ingredients-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #E8F5E9;
    color: #2B7A3E;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(43, 122, 62, 0.2);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 25px;
}

.main-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    line-height: 1.1;
    transform: scaleY(1.4);
    transform-origin: left bottom;
    text-transform: uppercase;
    white-space: nowrap;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

.text-green {
    color: #2B7A3E;
}

.squiggle {
    position: absolute;
    left: 0;
    bottom: -15px;
}

.subtext {
    color: #757575;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: 20px;
}

.action-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.add-to-cart-btn {
    display: flex;
    align-items: center;
    background-color: #1A1A1A;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 3px 20px 3px 3px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
}

.cart-icon-bg {
    background-color: #FFB300;
    color: #1A1A1A;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px solid #E0E0E0;
    border-radius: 30px;
    padding: 5px 15px;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.quantity-selector button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector .minus i {
    color: #757575;
}

.quantity-selector .plus i {
    color: #2B7A3E;
}

.quantity-selector .qty {
    font-weight: 700;
    color: #D32F2F;
    font-size: 16px;
    min-width: 15px;
    text-align: center;
}

.features-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.icon-green {
    background-color: #E8F5E9;
    color: #2B7A3E;
}

.icon-orange {
    background-color: #FFF3E0;
    color: #F57C00;
}

.icon-red {
    background-color: #FFEBEE;
    color: #D32F2F;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 12px;
    color: #1A1A1A;
    text-transform: uppercase;
}

.feature-text span {
    font-size: 10px;
    color: #757575;
}

.hero-center {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transform: translateX(80px);
}

.main-circle {
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #2B7A3E 0%, transparent 100%);
    opacity: 0.4;
    border-radius: 50%;
    z-index: 1;
}

.main-chip-image {
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
    position: relative;
    z-index: 2;
    transform: rotate(-10deg);
}

.floating-badge {
    position: absolute;
    font-family: 'Caveat', cursive;
    font-size: 32px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 5px;
    z-index: 3;
    transform: rotate(-10deg);
    box-shadow: 4px 4px 0px rgba(0,0,0,0.8);
    border: 2px dashed rgba(0,0,0,0.5);
}

.floating-badge.crispy {
    background-color: #FFB300;
    color: #1A1A1A;
    top: 40%;
    left: 10%;
}

.floating-badge.tasty {
    background-color: #D32F2F;
    color: white;
    top: 50%;
    left: 20%;
    transform: rotate(-5deg);
}

.hero-right {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.flavor-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 22px;
    width: 2px;
    border-left: 2px dashed #D0D0D0;
    z-index: -1;
}

.flavor-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.flavor-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.icon-bg-green { background-color: #2E7D32; }
.icon-bg-red { background-color: #D32F2F; }
.icon-bg-orange { background-color: #FFB300; }

.flavor-text strong {
    display: block;
    font-size: 14px;
    color: #1A1A1A;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.flavor-text p {
    font-size: 12px;
    color: #757575;
    line-height: 1.4;
}

.top-flavours-section {
    background-color: #154D22;
    border-radius: 30px;
    padding: 40px 20px 40px 10px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
    position: relative;
    overflow: visible;
}

.section-left {
    min-width: 150px;
    color: white;
}

.section-left h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.squiggle-small {
    margin-bottom: 30px;
}

.carousel-arrows {
    display: flex;
    gap: 10px;
}

.carousel-arrows .arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-arrows .arrow.disabled {
    background-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.5);
}

.carousel-arrows .arrow.active {
    background-color: white;
    color: #154D22;
}

.product-cards {
    display: flex;
    gap: 10px;
    flex: 1;
    overflow-x: auto;
    padding-bottom: 10px;
    padding-top: 80px;
    margin-top: -80px;
}

.product-cards::-webkit-scrollbar {
    display: none;
}
.product-cards {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.card {
    background-color: #faf5eb;
    border-radius: 20px;
    padding: 0 20px 0 160px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    min-width: 360px;
    height: 180px;
    flex: 1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible;
}

.card-image {
    position: absolute;
    left: -20px;
    bottom: -20px;
    width: 180px;
    height: 270px;
    display: flex;
    align-items: flex-end;
}

.card-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    padding: 0;
    transition: transform 0.3s;
}

.card:hover .card-image img {
    transform: scale(1.1) translateY(-5px);
}

.card-details {
    flex: 1;
}

.card-details h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.stars {
    color: #FFB300;
    font-size: 10px;
    display: flex;
    gap: 2px;
}

.rating-num {
    font-size: 12px;
    color: #757575;
    font-weight: 600;
}

.price-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.price {
    font-weight: 700;
    font-size: 16px;
    color: #1A1A1A;
}

.order-btn {
    background-color: #D32F2F;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.order-btn:hover {
    background-color: #B71C1C;
}

.circle {
    position: absolute;
    border-radius: 50%;
}
.circle-1 {
    width: 10px;
    height: 10px;
    background-color: #FFB300;
    top: 20%;
    left: 45%;
}
.circle-2 {
    width: 15px;
    height: 15px;
    border: 3px solid #D32F2F;
    top: 15%;
    right: 20%;
}

@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .hero-left, .hero-right {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .action-row, .features-row {
        justify-content: center;
    }
    .flavor-timeline {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .timeline-line {
        display: none;
    }
    .top-flavours-section {
        flex-direction: column;
        align-items: flex-start;
    }
}
