@font-face {
    font-family: Product Sans;
    src: url('Fonts/Product Sans Regular.ttf');
}
@font-face {
    font-family: Product Sans B;
    src: url('Fonts/Product Sans Bold.ttf');
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Product Sans, sans-serif;
}
body{
    width: 100%;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #e04428;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

#main{
    width: 100%;
    position: relative;
    background-color: orangered;
}

nav{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 10vh;
    padding: 0vw 10vw;
    z-index: 99;
    background: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s;
}

nav .logo{
    font-size: 1.6vw;
    font-family: Product Sans B, sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
}

nav a, nav i{
    font-size: 1.1vw;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.cntr-nav{
    display: flex;
    gap: 3vw;
}

.cntr-nav a{
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.cntr-nav a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.cntr-nav a:hover::after{
    width: 100%;
}

nav i{
    font-size: 1.5vw;
    cursor: pointer;
}

.one{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: linear-gradient(150deg, rgb(255, 166, 0), rgb(255, 94, 0));
}

.one h1{
    font-size: 25vw;
    font-family: Product Sans B, sans-serif;
    color: #fff;
    letter-spacing: 0.5vw;
    user-select: none;
}

#fanta{
    position: absolute;
    width: 40%;
    z-index: 2;
    pointer-events: none;
}

#orange-cut{
    position: absolute;
    top: 10%;
    left: 32%;
    width: 15%;
    z-index: 1;
    pointer-events: none;
}

#orange{
    position: absolute;
    width: 20%;
    z-index: 3;
    top: 55%;
    right: 30%;
    pointer-events: none;
}

#leaf{
    top: 10%;
    left: 0%;
    transform: rotate(60deg);
    position: absolute;
    width: 18%;
    pointer-events: none;
}

#leaf2{
    top: 70%;
    left: 80%;
    transform: rotate(-90deg);
    position: absolute;
    width: 12%;
    pointer-events: none;
}

#leaf3{
    position: absolute;
    width: 20%;
    top: 10%;
    right: 0%;
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 3vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 0.9vw;
    opacity: 0.8;
    z-index: 10;
    pointer-events: none;
    animation: bounce 2s infinite ease-in-out;
}

.scroll-indicator i {
    font-size: 1.5vw;
    margin-top: 4px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.two{
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    background: #4d231c;
}

.lft-two, .rght-two{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 5vh;
    width: 50%;
    height: 100%;
}

.lft-two svg{
    margin-top: 50vh;
    width: 90%;
    transform: rotateX(50deg);
}

.rght-two h1{
    color: #fff;
    font-size: 3.4vw;
    line-height: 1.15;
    font-family: Product Sans B, sans-serif;
    max-width: 90%;
}

.rght-two p{
    font-size: 1.05vw;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    width: 72%;
}

.three{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    width: 100%;
    height: 100vh;
    background: linear-gradient(150deg, rgb(255, 166, 0), rgb(255, 94, 0));
}

.cards-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    width: 100%;
    height: 100%;
}

.card-coke {
    order: 1;
}

.card-fanta {
    order: 2;
}

.card-pepsi {
    order: 3;
}

.mobile-shop-tabs, .mobile-fanta-can, .mobile-fanta-lemon{
    display: none;
}

.card{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2vh;
    width: 25vw;
    height: 70vh;
    margin-top: 10vh;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card h1{
    margin-top: 40vh;
    font-size: 3vw;
    font-family: Product Sans B, sans-serif;
}

.card button{
    font-size: 1vw;
    font-weight: bold;
    border-radius: 50px;
    border: none;
    color: #fff;
    background-color: rgb(255, 149, 0);
    padding: 1vw 2.5vw;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.card button:hover{
    transform: scale(1.05);
    background-color: rgb(255, 120, 0);
}

#cocacola{
    top: -15%;
    position: absolute;
    width: 60%;
    left: 50%;
    transform: translate(-50%, 0%);
    pointer-events: none;
}

#pepsi{
    top: -15%;
    position: absolute;
    width: 85%;
    left: 50%;
    transform: translate(-50%, 0%);
    pointer-events: none;
}

.lemon{
    top: -30%;
    position: absolute;
    left: 50%;
    width: 25vw;
    transform: translate(-50%, 0%);
    pointer-events: none;
}

/* Contact Section */
.four {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 80vh;
    background: #2b130e;
    color: #fff;
    padding: 12vh 10vw 4vh;
}

.contact-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 5vw;
}

.contact-left {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 2.5vh;
}

.contact-left h2 {
    font-size: 3.5vw;
    font-family: Product Sans B, sans-serif;
    line-height: 1.2;
}

.contact-left p {
    font-size: 1.1vw;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1.2vw;
    margin-top: 1.5vh;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: #ff5e00;
    transform: translateY(-3px);
}

.contact-right {
    width: 50%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
    background: rgba(255, 255, 255, 0.05);
    padding: 4vh 2.5vw;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1vw;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #ff9500;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form button {
    padding: 14px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #ff9500, #ff5e00);
    color: #fff;
    font-size: 1vw;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-form button:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(255, 94, 0, 0.4);
}

footer {
    margin-top: 6vh;
    text-align: center;
    font-size: 0.9vw;
    color: rgba(255, 255, 255, 0.5);
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ff5e00;
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    font-size: 1rem;
    font-weight: 600;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Default Desktop Hidden Elements */
.menu-toggle, .mobile-menu {
    display: none;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE STYLES (Screen Width <= 768px)
   ========================================================================== */
@media (max-width: 768px) {
    nav {
        height: 70px;
        padding: 0 6vw;
        background: rgba(0, 0, 0, 0.25);
    }

    nav .logo {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }

    .cntr-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: #fff;
        cursor: pointer;
    }

    /* Fullscreen Mobile Drawer Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(224, 68, 40, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-menu.active {
        right: 0;
    }

    .close-menu {
        position: absolute;
        top: 22px;
        right: 25px;
        font-size: 2.2rem;
        color: #fff;
        cursor: pointer;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .mobile-nav-links a {
        font-size: 1.8rem;
        font-family: Product Sans B, sans-serif;
        color: #fff;
        text-decoration: none;
        letter-spacing: 1px;
        transition: transform 0.2s, opacity 0.2s;
    }

    .mobile-nav-links a:active {
        transform: scale(0.95);
        opacity: 0.8;
    }

    /* Hero Section Mobile */
    .one h1 {
        font-size: 30vw;
        letter-spacing: 1vw;
    }

    #fanta {
        width: 75%;
        max-width: 420px;
    }

    #orange-cut {
        width: 25%;
        top: 14%;
        left: 14%;
    }

    #orange {
        width: 32%;
        top: 60%;
        right: 8%;
    }

    #leaf {
        width: 24%;
        top: 10%;
        left: -4%;
    }

    #leaf2 {
        width: 20%;
        top: 72%;
        left: 76%;
    }

    #leaf3 {
        width: 28%;
        top: 8%;
        right: -4%;
    }

    .scroll-indicator {
        font-size: 12px;
        bottom: 18px;
    }

    .scroll-indicator i {
        font-size: 18px;
    }

    /* Section 2 Mobile */
    .two {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 70px 24px 50px;
        text-align: center;
    }

    .lft-two {
        display: none;
    }

    .rght-two {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }

    .rght-two h1 {
        font-size: 1.65rem;
        line-height: 1.25;
        margin-bottom: 230px;
        z-index: 10;
        position: relative;
    }

    .rght-two p {
        font-size: 0.95rem;
        width: 92%;
        line-height: 1.6;
        text-align: center;
    }

    /* Section 3 Mobile Cards Carousel */
    .three {
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 75px 0 20px;
        gap: 0;
        overflow: hidden;
        position: relative;
    }

    .mobile-shop-tabs {
        display: flex;
        gap: 10px;
        margin-bottom: 35px;
        z-index: 30;
    }

    .shop-tab {
        padding: 8px 18px;
        border-radius: 25px;
        border: 1.5px solid rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        outline: none;
    }

    .shop-tab.active {
        background: #fff;
        color: #ff5e00;
        border-color: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transform: scale(1.05);
    }

    .cards-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 65px calc((100vw - 76vw) / 2) 30px;
        gap: 6vw;
        scrollbar-width: none;
    }

    .cards-container::-webkit-scrollbar {
        display: none;
    }

    .card-fanta {
        order: 1;
    }

    .card-coke {
        order: 2;
    }

    .card-pepsi {
        order: 3;
    }

    .card {
        flex: 0 0 76vw;
        max-width: 300px;
        height: 48vh;
        max-height: 400px;
        min-height: 340px;
        scroll-snap-align: center;
        position: relative;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding-bottom: 24px;
        margin-top: 0;
    }

    .card h1 {
        font-size: 1.6rem;
        margin-top: 0;
        margin-bottom: 12px;
        color: #111;
        font-family: Product Sans B, sans-serif;
    }

    .card button {
        font-size: 0.95rem;
        padding: 11px 28px;
        border-radius: 30px;
        font-weight: bold;
        background: linear-gradient(135deg, #ff9500, #ff5e00);
        color: #fff;
        border: none;
        box-shadow: 0 6px 18px rgba(255, 94, 0, 0.35);
        cursor: pointer;
    }

    #cocacola {
        width: 58%;
        max-width: 180px;
        top: -18%;
        left: 50%;
        transform: translate(-50%, 0%);
        position: absolute;
    }

    .lemon1 {
        width: 96%;
        max-width: 290px;
        top: -40%;
        left: 50%;
        transform: translate(-50%, 0%);
        position: absolute;
    }

    #pepsi {
        width: 90%;
        max-width: 270px;
        top: -24%;
        left: 50%;
        transform: translate(-50%, 0%);
        position: absolute;
    }

    .lemon2 {
        width: 96%;
        max-width: 290px;
        top: -40%;
        left: 50%;
        transform: translate(-50%, 0%);
        position: absolute;
    }

    /* Contact Section Mobile */
    .four {
        padding: 80px 6vw 30px;
        min-height: auto;
    }

    .contact-container {
        flex-direction: column;
        gap: 35px;
    }

    .contact-left {
        width: 100%;
        text-align: center;
        align-items: center;
        gap: 15px;
    }

    .contact-left h2 {
        font-size: 2.2rem;
    }

    .contact-left p {
        font-size: 0.95rem;
        width: 90%;
    }

    .social-links {
        justify-content: center;
        gap: 15px;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .contact-right {
        width: 100%;
    }

    .contact-form {
        padding: 28px 20px;
        border-radius: 18px;
        gap: 12px;
    }

    .contact-form input, .contact-form textarea {
        font-size: 16px;
        padding: 13px 16px;
        border-radius: 10px;
    }

    .contact-form button {
        font-size: 1rem;
        padding: 14px;
        border-radius: 50px;
    }

    footer {
        font-size: 11px;
        margin-top: 35px;
    }

    .toast {
        left: 20px;
        right: 20px;
        bottom: 20px;
        justify-content: center;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

/* Extra small mobile adjustments */
@media (max-width: 480px) {
    .one h1 {
        font-size: 32vw;
    }

    .card h1 {
        font-size: 0.95rem;
    }

    .card button {
        font-size: 0.68rem;
        padding: 5px 10px;
    }

    .rght-two h1 {
        font-size: 1.8rem;
    }
}

