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

html,
body {
    height: 100%;
    width: 100%;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #faf5ec;
}

main {
    width: 100%;
    height: 100%;
    padding: 10px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px;
}

nav img {
    width: 200px;
}



nav .links {
    display: flex;
    gap: 70px;
    list-style: none;
    font-weight: 500;
    font-size: 18px;
    margin-right: 20px;
    letter-spacing: -1px;
}

nav .links a {
    text-decoration: none;
    color: black;
}


.search {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid black;
    border-radius: 50px;
    padding: 10px 15px;
}

.search .search-icon {
    color: #d5a043;
}

.search input {
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 5px 10px;
    border-right: 1px solid black;

}

.search i {
    font-size: 18px;
    color: #333;

}

.cart {
    position: relative;
}

.cart-badge {
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 50%;
    position: absolute;
    top: -25px;
    right: -20px;
}

.hero {
    width: 100%;
    height: 100%;
    display: flex;
}

.hero .left {
    width: 70%;
    height: 100%;
    padding: 20px;
    position: relative;
}

.hero .image-hero img {
    position: absolute;
    width: 60%;
    top: 0%;
    right: -5%;
    z-index: 2;
}


.hero .right {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RIGHT COLUMN — FLAVOR CARDS */

.flavor-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding-left: 24px;
}

.flavor-list::before {
    content: '';
    position: absolute;
    left: 47px;
    top: 50px;
    bottom: 50px;
    width: 0;
    border-left: 2px dashed #ddd;
    z-index: 0;
}

.flavor-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.flavor-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.chili-icon {
    background-color: #1a5632;
    color: #fff;
}

.fire-icon {
    background-color: #f50000;
    color: #fff;
}

.sauce-icon {
    background-color: #f9a825;
    color: #fff;
}

.flavor-info strong {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    display: block;
    margin-bottom: 4px;
}

.flavor-info p {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

/* LEFT COLUMN CONTENT  */

/* 100% Real Ingredients Tag  */
.real-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e9ead6;
    color: #1a5632;
    padding: 8px 20px;
    border: 1px solid #60912c;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin: 50px 0
}

.star-circle {
    width: 24px;
    height: 24px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.star-circle i {
    color: #60912c;
    font-size: 12px;
}

.hero .left h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.01;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -5px;
    margin-bottom: 5px;
}

.hero .left h1 .green {
    color: #1a5632;
}

.swoosh {
    width: 200px;
    height: 8px;
    margin-bottom: 20px;
    background: transparent;
    border-bottom: 3px solid #d5a043;
    border-radius: 50%;
}

.hero-desc {
    font-size: 15px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 40px;
}

.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background-color: #111;
    color: #fff;
    border: none;
    padding: 10px 32px 10px 10px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
    background-color: #1a5632;
}

.cart-icon-circle {
    width: 40px;
    height: 40px;
    background-color: #d5a043;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-icon-circle i {
    color: #111;
    font-size: 16px;
}

.qty-control {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.qty-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: #fff;
    font-size: 22px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: background-color 0.2s;
}

.qty-minus {
    color: #333;
}

.qty-plus {
    color: #1a5632;
}

.qty-btn:hover {
    background-color: #f0f0f0;
}

.qty-value {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: red;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.features {
    display: flex;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.green-icon {
    color: #1a5632;
    border: 1px solid #1a5632;
}

.orange-icon {
    border: 1px solid #d5a043;
    color: #d5a043;
}

.red-icon {
    border: 1px solid #e53935;
    color: #e53935;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 12px;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.5px;
}

.feature-text span {
    font-size: 11px;
    color: #999;
    font-weight: 400;
}

/* TOP FLAVOURS SECTION */
.top-flavours {
    background-color: #1a5632;
    background-image: repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.05) 20px,
            transparent 20px,
            transparent 40px);
    border-radius: 40px;
    margin: -175px 40px 40px 40px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.flavours-left {
    width: 200px;
    flex-shrink: 0;
    color: #fff;
    padding-left: 20px;
}

.flavours-left h2 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.swoosh-line {
    width: 40px;
    height: 3px;
    background-color: #d5a043;
    border-radius: 2px;
    margin-bottom: 40px;
}

.nav-arrows {
    display: flex;
    gap: 15px;
}

.arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.arrow.prev {
    color: #999;
}

.arrow.next {
    color: #1a5632;
}

.flavours-cards {
    display: flex;
    gap: 160px;
    flex: 1;
    justify-content: flex-start;
}

.flavour-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px 20px 20px 100px; 
    display: flex;
    align-items: center;
    width: 330px; 
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 160px;
    flex-shrink: 0;
    z-index: 2;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(5px 10px 10px rgba(0, 0, 0, 0.2));
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-content h4 {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.rating {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    color: #f9a825;
    margin-bottom: 12px;
}

.rating span {
    color: #555;
    margin-left: 5px;
    font-weight: 600;
}

.price {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.order-btn {
    background-color: #e53935;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.order-btn i {
    font-size: 10px;
}