:root {
    --primary-color: #754127; /* Rich coffee brown */
    --primary-light: #cc9c88; /* Soft latte brown */
    --accent-color: #B86E31; /* Caramel brown */
    --highlight-color: #ff6f59; /* Energetic coral */
    --bg-cream: #F3F4E5; /* Background pale green-latte */
    --white: #ffffff;
    --text-dark: #2c1a11; /* Dark coffee text */
    --text-muted: #5c4d44;
    --card-bg-glass: rgba(255, 255, 255, 0.45);
    --border-glass: rgba(255, 255, 255, 0.4);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --shadow-soft: 0 8px 30px rgba(117, 65, 39, 0.08);
    --shadow-medium: 0 12px 40px rgba(117, 65, 39, 0.15);
    --shadow-glass: 0 8px 32px 0 rgba(117, 65, 39, 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

/* Loading Page */
.intro {
    overflow: hidden;
}
.boxes {
    width: 20.9%;
    height: 100vh;
    background-color: var(--primary-color);
    box-shadow: 0px 0px 15px rgba(117, 65, 39, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    position: fixed;
}
.box1 {
    animation-name: box1;
    animation-delay: 0ms;
    left: 0%;
}
.box2 {
    animation-name: box2;
    animation-delay: 130ms;
    left: 270px;
}
.box3 {
    animation-name: box3;
    animation-delay: 200ms;
    left: 540px;
}
.box4 {
    animation-name: box4;
    animation-delay: 300ms;
    left: 810px;
}
.box5 {
    animation-name: box5;
    animation-delay: 400ms;
    left: 1080px;
}
@keyframes box1 {
    from {
        top: 0%;
    }

    to {
        top: -100%;
    }
}
@keyframes box2 {
    from {
        top: 0%;
    }

    to {
        top: -100%;
    }
}
@keyframes box3 {
    from {
        top: 0%;
    }
    to {
        top: -100%;
    }
}
@keyframes box4 {
    from {
        top: 0%;
    }
    to {
        top: -100%;
    }
}
@keyframes box5 {
    from {
        top: 0%;
    }
    to {
        top: -100%;
    }
}
/* Overall box */
.overallBox {
    animation-name: overallbox;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
    background-color: #F3F4E5;
}
@keyframes overallbox {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Nav bar */
.nav {
    width: 92%;
    max-width: 1200px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    position: fixed;
    background: rgba(243, 244, 229, 0.85) !important;
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(117, 65, 39, 0.12) !important;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    padding: 8px 24px;
    transition: var(--transition-smooth);
    margin: 0 auto !important;
    animation: navEntrance 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}
.nav-scrolled {
    background: rgba(243, 244, 229, 0.94) !important;
    padding: 5px 24px;
    top: 10px;
    box-shadow: var(--shadow-medium);
    border-color: rgba(117, 65, 39, 0.18) !important;
}
.nav:has(.navbar-collapse.show) {
    border-radius: 20px !important;
}
@keyframes navEntrance {
    from {
        transform: translate(-50%, -100px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}
.bar {
    max-width: 1200px;
    margin: 0 auto !important;
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
li a {
    color: var(--text-dark) !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 6px 12px !important;
    transition: var(--transition-smooth);
}
li a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}
li a:hover {
    color: var(--primary-color) !important;
    background: transparent !important;
}
li a:hover::after {
    width: 60%;
}
.log {
    padding-top: 8px;
}
.rev {
    display: flex;
    gap: 20px;
}
.addCartIcon, .addCartScreen {
    background-color: transparent;
    border: none;
    color: var(--primary-color);
    margin-left: 8px;
    font-size: 26px;
    position: relative;
    transition: var(--transition-smooth);
}
.addCartIcon:hover, .addCartScreen:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}
.addCartIcon {
    display: none;
}
.procount1, .procount2 {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--highlight-color);
    color: white;
    position: absolute;
    right: -4px;
    top: -4px;
    font-size: 10px;
    display: none;
    font-weight: 700;
    align-items: center;
    justify-content: center;
}
.NavBar, .navbar {
    background-color: transparent !important;
    width: 100%;
    padding: 0 !important;
  }
.NavBar form input, #search {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 30px !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(117, 65, 39, 0.15) !important;
    padding: 8px 16px !important;
    transition: var(--transition-smooth);
    color: var(--text-dark) !important;
    font-family: var(--font-body);
    outline: none !important;
    width: 200px;
}
.NavBar form input:focus, #search:focus {
    background-color: var(--white) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(117, 65, 39, 0.12) !important;
    outline: none !important;
}
.NavBar form button {
    border-radius: 30px !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    padding: 6px 16px !important;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
    background-color: transparent;
    margin-left: 8px;
}
.NavBar form button:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}
#buyCount {
    top: 36px;
    right: 25px;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: orangered;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HOME PAGE */
.first-page {
    background-image: url("./Rectangle\ 2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding-top: 60px;
}
.fpara {
    width: 80%;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.introBoxleft a {
    color: inherit !important;
}
.introBoxleft {
    display: flex;
    flex-direction: column;
    animation-name: leftcont;
    animation-duration: 1s;
    animation-delay: 1.6s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    position: absolute;
    left: -100%;
    margin-top: 90px;
    z-index: 3;
}
@keyframes leftcont {
    from {
        left: -100%;
    }
    to {
        left: 0%;
    }
}
.introBox {
    margin-top: 100px;
    position: relative;
}
.introBox div {
    width: 500px;
    margin-left: 6%;
}
.introBox h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 110px !important;
    color: var(--primary-color);
    line-height: 0.95;
    margin-bottom: 20px;
    z-index: 3;
}
.introBox button {
    width: 140px;
    padding: 10px 24px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(117, 65, 39, 0.2);
    cursor: pointer;
}
.introBox button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(117, 65, 39, 0.3);
}
.introBox img {
    position: absolute;
    text-align: center;
    left: 68%;
    top: -40px;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(117, 65, 39, 0.25));
    animation: bubble both;
    animation-timeline: view(50% 0%);
}
@keyframes bubble {
    0% {}
    10% {
        top: 80px;
    }
}
.coffeeTit {
    padding-top: 30% !important;
    position: relative;
    overflow: hidden;
}
.introBoxright {
    animation-name: rightcont;
    animation-duration: 1s;
    animation-delay: 1.6s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    position: absolute;
    right: -100%;
}
@keyframes rightcont {
    from {
        right: -100%;
    }
    to {
        right: 0%;
    }
}
.coffeeTit h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 130px !important;
    color: white;
    line-height: 0.95;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.coffeeTit p {
    margin-left: 15%;
    color: white;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* About page */
.home-Page {
    padding-top: 180px !important;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: var(--bg-cream);
}
#qout {
    font-size: 32px;
    width: auto;
    padding-top: 6px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 20px;
}
#qout span {
    color: var(--primary-color);
}
.home-Page button {
    width: 140px;
    padding: 10px 24px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(117, 65, 39, 0.2);
    cursor: pointer;
}
.home-Page button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(117, 65, 39, 0.3);
}
.hp-para {
    width: 80%;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.introBox h1,
.title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 64px;
    color: var(--text-dark);
}
.title span {
    color: var(--primary-color);
}
.hp-cards {
    width: 280px;
    height: 200px;
    background-color: var(--white);
    position: absolute;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}
.hp-cards:hover {
    z-index: 5;
    box-shadow: var(--shadow-medium);
    transform: translateY(-10px) scale(1.03) rotate(0deg) !important;
}
.card1 {
    z-index: 1;
    top: 30px;
    left: 100px;
}
.card1 .image {
    height: 70%;
    padding: 10px;
}
.card1 img {
    border-radius: 20px;
    object-fit: cover;
}
.card2 {
    top: -84px;
    left: 350px;
    transform: rotate(3deg);
}
.card2 .image,
.card4 .image,
.card5 .image {
    padding: 10px;
    height: 70%;
}
.card2 img,
.card4 img,
.card5 img {
    border-radius: 20px;
    object-fit: cover;
}
.card3 {
    top: -30px;
    left: 240px;
    transform: rotate(2deg);
}
.card3 .image {
    background-image: url("./Chocolate Milk Photos - Download Free High-Quality Pictures _ Freepik (1) 1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 25px 20px;
    background-color: #B86E31;
    height: 60%;
    width: 94%;
    margin: auto;
    margin-top: 10px;
    border-radius: 20px;
}
.card3 img {
    padding-left: 25%;
}
.card4 {
    bottom: 20px;
    left: 280px;
    transform: rotate(-6deg);
}
.card5 {
    bottom: 110px;
    left: 180px;
    transform: rotate(-5deg);
}
.clpi {
    width: 200px;
    height: 70px;
    right: -12px;
    bottom: -12px;
    position: absolute;
    background-image: url("./wave\ \(1\).svg");
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(-10deg);
}
.clpi p {
    margin-top: 26px;
    margin-left: 80px;
    color: white;
    font-weight: 700;
    font-family: var(--font-body);
}

/* Coffee Details page */
.thirdPage {
    min-height: 100vh;
    position: relative;
    background-image: url("./Milk\ Tea\ 3d\ PNG\,\ Love\ Milk\ Tea\ Liquid\ 3d\ Element\,\ Milk\ Tea\,\ Bubble\ Tea\,\ Leaf\ PNG\ Image\ For\ Free\ Download-Picsart-AiImageEnhancer\ 1.png");
    background-repeat: no-repeat;
    background-size: 50% 85%;
    background-position: 22% 80px;
    overflow: hidden;
    background-color: var(--bg-cream);
}
.TPleft {
    padding-top: 40px;
}
.TPright h1 {
    padding-top: 80px;
    font-size: 56px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}
.thirdPage :last-child span {
    color: var(--primary-color);
}
.point {
    position: absolute;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    box-shadow: var(--shadow-glass);
    transition: var(--transition-smooth);
    cursor: pointer;
}
.point:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--white);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-medium);
}
.point1 {
    height: 40px;
    width: 210px;
    top: 130px;
    left: 30%;
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}
.point2 {
    height: 40px;
    width: 210px;
    top: 34%;
    left: 8%;
}
.point3 {
    height: 40px;
    width: 210px;
    top: 34%;
    left: 50%;
}
.point4 {
    height: 40px;
    width: 210px;
    top: 53%;
    left: 57%;
}
.point5 {
    height: 40px;
    width: 210px;
    top: 70%;
    left: 60%;
}
.point6 {
    height: 40px;
    width: 210px;
    top: 62%;
    left: 6%;
}
.point7 {
    height: 40px;
    width: 270px;
    top: 85%;
    left: 50%;
}
/* Product page */
.fprow1 {
    padding-top: 120px;
}
.fplimage {
    background-image: url("./Freshly\ cut\ mango\ with\ vibrant\ juice\ splash\ on\ transparent\ background\ _\ Premium\ AI-generated\ PSD\ 1.png");
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: 60% 80%;
}
.fpmimage {
    background-image: url("./mann\ 1.png");
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: center 97%;
}
.fpmimage h1 {
    font-size: 56px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-dark);
}
.fpmimage h1 span {
    color: var(--primary-color);
}
.fpmimage div {
    margin-top: 100px;
    text-align: center;
}
.fpmimage p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
}
.fourthPage {
    padding: 60px 20px;
    overflow: hidden;
    background-color: var(--bg-cream);
}
.fprimage {
    background-image: url("./Strawberry\ splashing\ liquid\ _\ Premium\ AI-generated\ PSD\ 1.png");
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: 60% 80%;
}
.imageBoxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 0;
}
.add {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    font-size: 22px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.add:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
}
.add:hover .fa-circle-plus {
    color: var(--white);
}
button:active {
    transform: scale(0.95);
}
.fa-circle-plus {
    color: var(--highlight-color);
    transition: var(--transition-smooth);
}
.imageBox {
    height: 320px;
    width: 260px;
    text-align: center;
    margin-top: 20px;
    border-radius: 24px;
    z-index: 1;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(117, 65, 39, 0.08);
    transition: var(--transition-smooth);
}
.imageBox:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}
.imgaCont {
    width: 90%;
    left: 5%;
    text-align: start;
    padding: 16px;
    height: 90px;
    background-color: rgba(117, 65, 39, 0.85);
    border-radius: 20px;
    position: absolute;
    top: 100%;
    transition: var(--transition-smooth);
    z-index: 2;
    opacity: 0;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.imageBox:hover .imgaCont {
    opacity: 1;
    top: 210px;
}
@media screen and (max-width: 991px), (hover: none) {
    .imgaCont {
        opacity: 1 !important;
        top: 210px !important;
        background-color: rgba(117, 65, 39, 0.92) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }
}
.imageBox h2 {
    margin-top: 85%;
    color: white;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    padding: 0 12px;
}
.imageBox1, .imageBox2, .imageBox3, .imageBox4, .imageBox5 {
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.imageBox6, .imageBox7, .imageBox8, .imageBox9, .imageBox10 {
    background-repeat: no-repeat;
    background-size: cover;
}
.imageBox6, .imageBox7 {
    background-position: center center;
}
.imageBox8 {
    background-position: 0px 30%;
}
.imageBox9 {
    background-position: 0px 0px;
}
.imageBox10 {
    background-position: 0px -10px;
}

/* Community page */
.fivePage {
    padding: 80px 20px !important;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-cream);
}
.fiveprow1 h1 {
    width: 68%;
    text-align: center;
    margin: auto;
    font-size: 56px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-dark);
}
.fiveprow1 p {
    width: 60%;
    text-align: center;
    margin: auto;
    margin-top: 24px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}
.fiveprow1 h1 span {
    color: var(--primary-color);
}
.fiveprow1 {
    padding-top: 20px;
    background-image: url("./Roztopiony\ Karmel\ Ocieka\ Na\ Kostki\ Lodu\ Z\ Błyszczącą\ Teksturą\,\ Roztopiony\ Karmel\,\ Kostki\ Lodu\,\ Błyszcząca\ Tekstura\ Obraz\ PNG\ i\ kliparty\ do\ pobrania\ za\ darmo\ 1.png");
    background-repeat: no-repeat;
    background-size: 20% 70%;
    background-position: right 80%;
}
.webFeed {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}
.webFeed img {
    height: 450px;
    position: absolute;
    top: 34%;
    left: 4%;
    transform: rotate(47deg);
    filter: drop-shadow(0 10px 20px rgba(117, 65, 39, 0.15));
}
.wfBoxes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.wfBox {
    width: 290px;
    height: 240px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-glass);
    z-index: 1;
    transition: var(--transition-smooth);
}
.wfBox:hover {
    transform: translateY(-8px);
    background-color: var(--white);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-medium);
}
.wfBox h2 {
    color: var(--primary-color);
    margin-bottom: 12px;
}
.wfBox p b {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
}
.wfBox p:last-child {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.4;
}
/* Review Page */
.reviewPage {
    margin-top: 80px;
    padding: 40px 0;
    overflow: hidden;
    background-color: var(--bg-cream);
}
.rpcontant h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 56px;
    color: var(--text-dark);
}
.rpcontant h1 span {
    color: var(--primary-color);
}
.rpcontant p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
}
.revDiv {
    width: 100%;
    height: 280px;
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}
.reviewBox {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    animation: spin 25s infinite linear;
}
.revDiv::-webkit-scrollbar {
    display: none;
}
@keyframes spin {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
.rbox {
    width: 340px;
    height: 220px;
    background-color: var(--white);
    border: 1px solid rgba(117, 65, 39, 0.12);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: space-between !important;
    text-align: left !important;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: default;
}
.rbox:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}
.rbox p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}
.rprofile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    position: relative;
    width: 100%;
}
.rprofile img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--primary-light);
    object-fit: cover;
    position: static !important;
}
.rdetail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 0px !important;
}
.rdetail h2:first-child {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}
.rdetail :last-child {
    width: 100px;
    height: 20px;
    background-image: url("./Frame\ 45.png");
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 4px;
}
/* Footer page */
.footer {
    background: linear-gradient(to bottom, #2b170f 0%, #150a06 100%) !important;
    border-top: 5px solid var(--accent-color);
    color: white;
    padding: 80px 0 40px 0 !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-family: var(--font-body);
}
.fcont {
    max-width: 1200px;
    margin: 0 auto !important;
    width: 100%;
    padding: 0 20px;
}
.footer h5 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.fbox {
    margin-top: 15px;
}
.fbox p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    font-size: 14px;
    transition: var(--transition-smooth);
}
.fbox p i {
    color: var(--primary-light);
}
.fbox1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fbox1 a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    transition: var(--transition-smooth);
}
.fbox1 a:hover, .fbox p:hover {
    color: white;
    transform: translateX(4px);
}
.footer .fa-brands {
    transition: var(--transition-smooth);
    cursor: pointer;
}
.footer .fa-brands:hover {
    color: var(--primary-light);
    transform: translateY(-4px);
}

/* Divider & copyright rows in footer */
.footer .border-light {
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    margin: 40px 0 20px 0 !important;
}
.footer .align-items-center {
    font-size: 14px;
}
.footer .align-items-center a {
    transition: var(--transition-smooth);
}
.footer .align-items-center a:hover {
    opacity: 1 !important;
    color: var(--primary-light) !important;
}
.footer .align-items-center h3 {
    font-size: 20px;
}

/* Cookies */
.cookie {
    width: 90% !important;
    max-width: 450px !important;
    min-height: auto !important;
    padding: 24px !important;
    border-radius: 20px !important;
    position: fixed !important;
    bottom: 24px !important;
    left: 24px !important;
    top: auto !important; /* Prevent JS from forcing it to the middle */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1050 !important;
    background-color: var(--white) !important;
    border: 1px solid rgba(117, 65, 39, 0.15) !important;
    box-shadow: var(--shadow-medium) !important;
    transition: var(--transition-smooth) !important;
    font-family: var(--font-body);
}
.cookie.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
.cookie h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.cookie p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}
.cookie p a {
    color: var(--primary-color);
    text-decoration: underline;
}
.cookieClose {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.cookieClose:hover {
    color: var(--primary-color);
}
.cookBtn button {
    padding: 8px 18px;
    border: none;
    border-radius: 30px;
    margin-left: 12px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.cookBtn button:first-child {
    background-color: var(--primary-color);
    color: white;
}
.cookBtn button:first-child:hover {
    background-color: var(--accent-color);
}
.cookBtn button:last-child {
    background-color: rgba(117, 65, 39, 0.08);
    color: var(--primary-color);
}
.cookBtn button:last-child:hover {
    background-color: rgba(117, 65, 39, 0.15);
}

/* Login Box */
.overallBoxLog {
    min-height: 100vh;
    background-color: var(--bg-cream);
    background-image: url("./pngegg\ \(32\).png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 0px 80%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Login & Sign Up Modals */
.logInForm, .box {
    width: 420px;
    max-width: 92vw;
    position: fixed;
    z-index: 1015;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    right: auto !important;
    padding: 0 !important;
}
.box {
    width: 520px;
    max-width: 94vw;
}
.logInForm.open, .box.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.auth-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 32px;
    border: 1px solid rgba(117, 65, 39, 0.12);
    box-shadow: 0 24px 60px rgba(21, 10, 6, 0.22);
    padding: 28px 24px;
    font-family: var(--font-body);
    max-height: 88vh;
    overflow-y: auto;
}
.auth-card form {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.form-label-custom {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
    display: block;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon {
    position: absolute;
    left: 16px;
    color: rgba(117, 65, 39, 0.45);
    font-size: 15px;
    pointer-events: none;
    transition: var(--transition-smooth);
}
.toggle-pass-icon {
    position: absolute;
    right: 16px;
    color: rgba(117, 65, 39, 0.45);
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.toggle-pass-icon:hover {
    color: var(--primary-color);
}
.form-input-custom {
    width: 100%;
    border-radius: 24px;
    border: 1.5px solid rgba(117, 65, 39, 0.15);
    padding: 11px 40px 11px 42px;
    outline: none;
    background-color: rgba(255, 255, 255, 0.85);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}
.form-input-custom:focus {
    background-color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(117, 65, 39, 0.12);
}
.form-input-custom:focus + .input-icon,
.input-icon-wrapper:focus-within .input-icon {
    color: var(--primary-color);
}

/* Fix browser autofill background */
.form-input-custom:-webkit-autofill,
.form-input-custom:-webkit-autofill:hover, 
.form-input-custom:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-dark);
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.forgat-link, .auth-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.forgat-link:hover, .auth-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 13px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(117, 65, 39, 0.25);
}
.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(117, 65, 39, 0.35);
}

.divider-text {
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(117, 65, 39, 0.35);
    font-size: 12px;
    font-weight: 700;
}
.divider-text::before, .divider-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(117, 65, 39, 0.15);
}
.divider-text span {
    padding: 0 10px;
}

.google-btn {
    border: 1.5px solid rgba(117, 65, 39, 0.15);
    border-radius: 30px;
    padding: 11px 24px;
    color: var(--text-dark);
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.google-btn:hover {
    border-color: var(--primary-color);
    background-color: rgba(117, 65, 39, 0.03);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
    border: none;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(117, 65, 39, 0.2);
}
.box form button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(117, 65, 39, 0.3);
}

/* Cart Backdrop Overlay */
.cart-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(21, 10, 6, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1004;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* ADD to Cart Drawer */
.addCart {
    height: 100vh;
    width: 440px;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1005;
    box-shadow: -12px 0 40px rgba(21, 10, 6, 0.18);
    border-left: 1px solid rgba(117, 65, 39, 0.12);
    padding: 0 !important;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
}
.addCart.open {
    right: 0 !important;
}

.cart-header {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(117, 65, 39, 0.08);
}
.cart-header h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-dark);
    font-size: 24px;
    margin: 0;
}
.bg-cart-count {
    background-color: var(--highlight-color);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
}

.cardBox {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
    margin: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cardBox::-webkit-scrollbar {
    width: 6px;
}
.cardBox::-webkit-scrollbar-thumb {
    background-color: rgba(117, 65, 39, 0.15);
    border-radius: 10px;
}

.addCont {
    background: var(--white);
    border-radius: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(117, 65, 39, 0.08);
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    margin: 0 !important;
    min-height: auto !important;
}
.addCont:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(117, 65, 39, 0.15);
}
.imageAndCont {
    display: flex;
    align-items: center;
    gap: 16px;
    width: auto !important;
    flex-direction: row !important;
}
.addCont img {
    width: 65px;
    height: 70px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.cont h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}
.cont h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 4px 0 0 0;
}
.add_di {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-cream);
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(117, 65, 39, 0.1);
    font-weight: 700;
    font-size: 13px;
    margin: 0;
}
.add_di button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}
.add_di button:hover {
    background-color: var(--primary-color);
    color: white;
}

.trash {
    height: 34px;
    width: 34px;
    border: none;
    border-radius: 50%;
    background-color: rgba(216, 54, 54, 0.08);
    color: rgb(216, 54, 54);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.trash:hover {
    background-color: rgb(216, 54, 54);
    color: white;
    transform: scale(1.1);
}

.cart-footer {
    padding: 24px 28px;
    background: var(--white);
    border-top: 1px solid rgba(117, 65, 39, 0.08);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.03);
}
.checkout-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(117, 65, 39, 0.25);
}
.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(117, 65, 39, 0.35);
}

/* Order Details Modal */
.pricediv {
    width: 420px;
    max-width: 92vw;
    position: fixed;
    z-index: 1010;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    right: auto !important;
}
.pricediv.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.priceBox {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(117, 65, 39, 0.12);
    box-shadow: 0 20px 50px rgba(21, 10, 6, 0.25);
    padding: 24px 20px;
    font-family: var(--font-body);
    max-height: 88vh;
    overflow-y: auto;
}

.btn-icon-back, .btn-icon-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(117, 65, 39, 0.06);
    color: var(--text-dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-icon-back:hover, .btn-icon-close:hover {
    background-color: var(--primary-color);
    color: white;
}

.order-summary-card {
    background-color: var(--bg-cream);
    border: 1px solid rgba(117, 65, 39, 0.08);
    border-radius: 18px;
    padding: 18px;
}
.divider-dashed {
    border-top: 1px dashed rgba(117, 65, 39, 0.18);
}

.payment-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}
.pays {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.payment {
    width: 100%;
    border: 1.5px solid rgba(117, 65, 39, 0.12);
    border-radius: 18px;
    padding: 12px 18px;
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.payment:hover {
    border-color: var(--primary-color);
    background-color: rgba(117, 65, 39, 0.03);
}
.pay-method-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pay-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.gpay-icon { background: rgba(234, 67, 53, 0.1); color: #ea4335; }
.phonepe-icon { background: rgba(95, 37, 159, 0.1); color: #5f259f; }
.paytm-icon { background: rgba(0, 186, 242, 0.1); color: #00baf2; }

.pay-check {
    color: rgba(117, 65, 39, 0.15);
    font-size: 18px;
    transition: var(--transition-smooth);
}
.payment.active {
    border-color: var(--primary-color);
    background-color: rgba(117, 65, 39, 0.05);
    box-shadow: 0 4px 12px rgba(117, 65, 39, 0.08);
}
.payment.active .pay-check {
    color: var(--primary-color);
}

.pay-confirm-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(117, 65, 39, 0.25);
}
.pay-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(117, 65, 39, 0.35);
}

/* Payment Success Modal */
.paySuccess {
    width: 400px;
    max-width: 92vw;
    position: fixed;
    z-index: 1020;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: transparent !important;
    display: block !important;
    right: auto !important;
    height: auto !important;
    padding: 0 !important;
}
.paySuccess.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.success-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 32px;
    border: 1px solid rgba(117, 65, 39, 0.12);
    box-shadow: 0 20px 50px rgba(21, 10, 6, 0.25);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    font-family: var(--font-body);
    max-height: 88vh;
    overflow-y: auto;
}
.close-success {
    position: absolute;
    top: 20px;
    right: 20px;
}
.badge-success-pill {
    display: inline-flex;
    align-items: center;
    background-color: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
}
.receipt-box {
    background-color: var(--bg-cream);
    border: 1px dashed rgba(117, 65, 39, 0.18);
}
.done-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 30px;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 18px rgba(117, 65, 39, 0.2);
}
.done-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}
@media screen and (min-width:300px) and (max-width:600px) {
    /* Loading Page */
    .box1 {
        left: 0%;
    }

    .box2 {
        left: 20%;
    }

    .box3 {
        left: 40%;
    }

    .box4 {
        left: 60%;
    }

    .box5 {
        left: 80%;
    }
    /* Nav Bar */
    .NavBar a {
        width: 100% !important;
        padding: 8px 12px !important;
        margin: 2px 0 !important;
        text-align: center;
    }
    .NavBar form {
        width: 100% !important;
        margin: 12px 0 0 0 !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
    }
    .NavBar form input, #search {
        flex: 1 !important;
        width: 100% !important;
        min-width: 0 !important;
        margin-right: 0 !important;
    }
    .NavBar form button {
        margin-left: 0 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-radius: 20px !important;
        padding: 16px !important;
        margin-top: 10px !important;
        border: 1px solid rgba(117, 65, 39, 0.15) !important;
        box-shadow: var(--shadow-medium) !important;
    }
    .addCartIcon {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .addCartScreen {
        display: none !important;
    }
    #buyCount {
        top: 36px;
        right: 55px;
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: orangered;
        color: white;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nBar{
        gap:10px !important;
    }
    /* Home page */
    .first-page {
        background-image: url("./Rectangle\ 2.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 60% 40px;
        position: relative;
        object-fit: fill;
    }
    .fpara {
        width: 95%;
        font-size: .9rem;
    }
    .introBox {
        margin-top: 0px;
        position: relative;
    }
    .introBox div {
        width: 94%;
        margin-left: 6%;
    }
    .introBox h1 {
        font-size: 50px !important
    }
    .introBox button {
        margin-left: 13px;
    }
    .introBox img {
        height: 200px;
        left: 42%;
        top: 216px;
        transform: rotate(20deg);
    }
    .coffeeTit {
        padding-top: 280px !important;
        position: relative;
        text-align: end;
    }
    .coffeeTit h1 {
        font-size: 50px !important;
    }
    .coffeeTit p {
        color: white;
        text-align: end;
    }
    .introBoxright {
        margin-right: 14%;
    }
    /* About box */
    .hp-para {
        width: 90%;
    }
    .home-Page button {
        margin-left: 13px;
    }
    .introBox h1,
    .title {
        font-size: 50px;
    }
    .home-Page {
        padding-top: 50px !important;
        padding-bottom: 20px;
    }
    .hp-cards {
        width: 270px;
        height: 200px;
        position: static;
    }
    .cbox {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }
    .card1 {
        z-index: 1;
        top: 0vh;
        left: 0px;
        position: relative;
    }
    .card2 {
        transform: rotate(0deg);
    }
    .card3 {
        transform: rotate(0deg);
    }
    .card4 {
        transform: rotate(0deg);
    }
    .card5 {
        transform: rotate(0deg);
    }
    /* Coffee Detailes */
    .thirdPage {
        flex-direction: column-reverse;
        background-size: 100% 40%;
        background-position: 22% 250px;
    }
    .point {
        position: static;
        margin-top: 20px;
    }
    .TPleft {
        padding-top: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    /* Community page */
    .fpmimage h1 {
        font-size: 46px;
    }
    .fpmimage div {
        margin-top: 19px;
    }
    .webFeed img {
        height: 324px;
        opacity: 0.6;
        top: 47%;
        left: 4%;
        transform: rotate(7deg);
    }
    .fiveprow1 h1 {
        font-size: 40px;
    }
    .fiveprow1 {
        background-size: 40% 40%;
        background-position: right 50%;
        padding-top: 0px;
    }
    .wfBoxes {
        margin-top: 20px;
    }
/* Review Page */
    .rpcontant h1 {
        font-size: 46px;
    }
/* ADD to Cart */
    .addCart {
        width: 100%;
    }
/* Price box */
    .pricediv {
        width: 340px;
        max-width: 92vw;
    }

/* cookie */
    .cookieClose {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 22px;
    }
    /* PaySuccess box */
    .paySuccess {
        width: 340px;
        max-width: 92vw;
    }
    /* Login & Signup Modals */
    .logInForm, .box {
        width: 340px !important;
        max-width: 92vw !important;
    }
    .auth-card {
        padding: 24px 18px !important;
    }
    .form-input-custom {
        padding: 10px 36px 10px 38px !important;
        font-size: 13px !important;
    }
}
@media screen and (min-width:300px) and (max-width:340px) {
    .coffeeTit p {
        color: white;
        text-align: start;
    }
    .logInForm, .box {
        width: 300px !important;
        max-width: 94vw !important;
    }
    .fiveprow1 {
        background-size: 40% 30%;
        background-position: right 50%;
    }
    .rpcontant h1 {
        font-size: 34px;
    }
}
@media screen and (min-width:300px) and (max-width:500px) {
    .imageAndCont {
        flex-direction: row !important;
    }
    .addCont {
        min-height: auto !important;
    }
}
@media screen and (min-width:490px) and (max-width:600px) {

    .introBox img {
        height: 230px;
        left: 42%;
        top: 186px;
        transform: rotate(0deg);
    }
}
@media screen and (min-width:555px) and (max-width:575px) {
    .fpmimage div {
        margin-top: 19px;
        margin: auto;
    }
}
@media screen and (min-width:601px) and (max-width:767px) {
    /* Loading page */
    .box1 {
        left: 0%;
    }
    .box2 {
        left: 20%;
    }
    .box3 {
        left: 40%;
    }
    .box4 {
        left: 60%;
    }
    .box5 {
        left: 80%;
    }
    .NavBar a {
        width: 100% !important;
        padding: 8px 12px !important;
        margin: 2px 0 !important;
        text-align: center;
    }
    .NavBar form {
        width: 100% !important;
        margin: 12px 0 0 0 !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
    }
    .NavBar form input, #search {
        flex: 1 !important;
        width: 100% !important;
        min-width: 0 !important;
        margin-right: 0 !important;
    }
    .NavBar form button {
        margin-left: 0 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-radius: 20px !important;
        padding: 16px !important;
        margin-top: 10px !important;
        border: 1px solid rgba(117, 65, 39, 0.15) !important;
        box-shadow: var(--shadow-medium) !important;
    }
    .addCartIcon {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .addCartScreen {
        display: none !important;
    }
    .nBar{
        gap:10px !important;
    }
    #buyCount {
        top: 36px;
        right: 55px;
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: orangered;
        color: white;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Home Page */
    .first-page {
        background-image: url("./Rectangle\ 2.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 60% 40px;
        position: relative;
        object-fit: fill;
    }
    .fpara {
        width: 50%;
        font-size: .9rem;
    }
    .introBox {
        margin-top: 0px;
        position: relative;
    }
    .introBox div {
        width: 94%;
        margin-left: 6%;
    }
    .introBox h1 {
        font-size: 90px !important
    }
    .introBox button {
        margin-left: 13px;
    }
    .introBox img {
        height: 260px;
        left: 42%;
        top: 204px;
        transform: rotate(40deg);
    }
    .coffeeTit {
        padding-top: 250px !important;
        position: relative;
        overflow: hidden;
        text-align: end;
    }
    .coffeeTit h1 {
        font-size: 90px !important;
    }
    .coffeeTit p {
        margin-left: 9%;
        color: white;
        color: white;
        text-align: end;
    }
    .introBoxright {
        margin-right: 14%;
    }
    /* About Page */
    .home-Page {
        padding-top: 20px !important;
        min-height: 200vh;
        padding-bottom: 20px;
        overflow: hidden;
    }
    .hp-para {
        width: 90%;
    }
    .home-Page button {
        margin-left: 13px;
    }
    .hp-cards {
        width: 270px;
        height: 200px;
    }
    .cbox {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        overflow: unset;
       gap: 20px;
        margin-top: 20px;
    }
    .card1 {
        z-index: 1;
        top: -38vh;
        left: 35%;
    }
    .card2 {
        top: 3vh;
        left: 3%;
        transform: rotate(0deg);
    }
    .card3 {
        top: -16vh;
        left: 9%;
        transform: rotate(0deg);
    }
    .card4 {
        top: 3vh;
        left: 58%;
        transform: rotate(0deg);
    }
    .card5 {
        top: -16vh;
        left: 50%;
        transform: rotate(0deg);
    }
    /* Coffee detailes */
    .thirdPage {
        padding-top: 30px;
        background-size: 90% 80%;
        background-position: 22% 100px;
    }
    .TPright h1 {
        padding-top: 0px;
        margin-top: -260px;
    }
    .point1 {
        top: 170px;
        left: 60%;
    }

    .point2 {
        top: 71%;
        left: 2%;
    }

    .point3 {
        top: 40%;
        left: 57%;
    }

    .point4 {
        top: 53%;
        left: 62%;
    }

    .point5 {
        top: 70%;
        left: 60%;
    }

    .point6 {
        top: 88%;
        left: 3%;
    }

    .point7 {
        top: 85%;
        left: 50%;
    }
    /* Community page */
    .fpmimage div {
        margin-top: 19px;
    }

    .wfBoxes {
        margin-top: 20px;
    }
    /* Add to Cart */
    .addCart {
        width: 75%;
    }

}

@media screen and (min-width:601px) and (max-width:650px) {
    .card2 {
        top: 3vh;
        left: 2%;
        transform: rotate(0deg);
    }

    .card3 {
        top: -16vh;
        left: 5%;
        transform: rotate(0deg);
    }

    .card4 {
        top: 3vh;
        left: 54%;
        transform: rotate(0deg);
    }
}

@media screen and (min-width:601px) and (max-width:665px) {
    .introBox img {
        height: 260px;
        left: 52%;
        top: 154px;
        transform: rotate(40deg);
    }
}

@media screen and (min-width:768px) and (max-width:900px) {
    /* Loading Page */
    .box1 {
        left: 0%;
    }
    .box2 {
        left: 20%;
    }
    .box3 {
        left: 40%;
    }
    .box4 {
        left: 60%;
    }
    .box5 {
        left: 80%;
    }
    .NavBar a {
        width: 120px;
        padding: 8px 0px;
        margin: auto;
        margin-top: 10px;
        text-align: center;
    }
    .NavBar form {
        width: 68%;
        margin: auto;
        margin-top: 10px;
    }
    .navbar{
        padding-bottom: 5px !important;
    }
    .NavBar {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        padding-bottom: 26px;
    }
        .addCartIcon {
        display: block;
    }
    .addCartScreen {
        display: none;
    }
    .nBar{
        gap:10px !important;
    }
    #buyCount {
        top: 36px;
        right: 55px;
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: orangered;
        color: white;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Home page */
    .first-page {
        background-image: url("./Rectangle\ 2.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 60% 40px;
        position: relative;
        object-fit: fill;
    }
    .fpara {
        width: 50%;
        font-size: .9rem;
    }
    .introBox {
        margin-top: 10px;
        position: relative;
    }
    .introBox h1 {
        font-size: 90px !important
    }
    .introBox img {
        height: 330px;
        left: 68%;
        top: 140px;
    }
    .introBox button {
        margin-left: 13px;
    }
    .coffeeTit {
        padding-top: 350px !important;
        position: relative;
        overflow: hidden;
    }
    .coffeeTit h1 {
        font-size: 90px !important;
    }
    .coffeeTit p {
        margin-left: 9%;
        color: white;
        color: white;
    }
    /* About Page */
    .home-Page {
        padding-top: 20px !important;
        position: relative;
        min-height: 200vh;
        padding-bottom: 20px;
        overflow: hidden;
    }
    .hp-para {
        width: 50%;
    }
    .home-Page button {
        margin-left: 13px;
    }
    .hp-cards {
        width: 270px;
        height: 200px;
    }
    .cbox {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 20px;
        overflow: unset;
        margin-top: 20px;
    }
    .card1 {
        z-index: 1;
        top: -38vh;
        left: 35%;
    }
    .card2 {
        top: 3vh;
        left: 5%;
        transform: rotate(0deg);
    }
    .card3 {
        top: -16vh;
        left: 13%;
        transform: rotate(0deg);
    }
    .card4 {
        top: 3vh;
        left: 62%;
        transform: rotate(0deg);
    }
    .card5 {
        top: -16vh;
        left: 50%;
        transform: rotate(0deg);
    }
    /* coffee detailes */
    .thirdPage {
        background-size: 90% 96%;
        background-position: 22% 60px;
        padding: 20px;
    }
    .TPright h1 {
        margin-left: -20%;
        padding-top: 0px;
        margin-top: 0px;
    }
    .point1 {
        top: 170px;
        left: 60%;
    }
    .point2 {
        top: 71%;
        left: 2%;
    }
    .point3 {
        top: 40%;
        left: 57%;
    }
    .point4 {
        top: 53%;
        left: 62%;
    }
    .point5 {
        top: 70%;
        left: 60%;
    }
    .point6 {
        top: 88%;
        left: 3%;
    }
    .point7 {
        top: 85%;
        left: 50%;
    }
    /* Community page */
    .fpmimage div {
        margin-top: 19px;
    }
    /* ADD to Cart */
    .addCart {
        width: 65%;
    }

}

@media screen and (min-width:900px) and (max-width:1000px) {
    /* Loading Page */
    .box1 {
        left: 0%;
    }
    .box2 {
        left: 20%;
    }
    .box3 {
        left: 40%;
    }
    .box4 {
        left: 60%;
    }
    .box5 {
        left: 80%;
    }
    .NavBar a {
        width: 120px;
        padding: 8px 0px;
        margin: auto;
        margin-top: 10px;
        text-align: center;
    }
    .NavBar form {
        width: 68%;
        margin: auto;
        margin-top: 10px;
    }
    .navbar{
        padding-bottom: 5px !important;
    }
    .NavBar {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        padding-bottom: 26px;
    }
    .addCartIcon {
        display: flex;
    }

    .addCartScreen {
        display: none;
    }
    .nBar{
        gap:10px !important;
    }
    #buyCount {
        top: 36px;
        right: 55px;
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: orangered;
        color: white;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Home Page */
    .first-page {
        background-image: url("./Rectangle\ 2.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 60% 40px;
        position: relative;
        object-fit: fill;
    }
    .introBox {
        margin-top: 15px;
        position: relative;
    }
    .introBox div {
        width: 94%;
        margin-left: 6%;
    }
    .introBox h1 {
        font-size: 100px !important
    }
    .fpara {
        width: 70%;
    }
    .introBox button {
        margin-left: 13px;
    }
    .introBox img {
        height: 370px;
        top: 134px;
    }
    .coffeeTit {
        padding-top: 380px !important;
        position: relative;
        overflow: hidden;
    }
    .coffeeTit h1 {
        font-size: 100px !important;
    }
    .coffeeTit p {
        margin-left: 9%;
        color: white;
    }
    /* About page */
    .home-Page {
        padding-top: 70px !important;
        min-height: 110vh;
        overflow: hidden;
        padding: 0px 0px 50px 20px;
    }

    .hp-para {
        width: 30%;
    }

    .home-Page button {
        margin-left: 13px;
    }
    .cbox{
        overflow: unset;
    }
    .card1 {
        z-index: 1;
        top: -60vh;
        left: 56vw;
    }
    .card2 {
        top: -80vh;
        left: 66vw;
        transform: rotate(3deg);
    }
    .card3 {
        top: -70vh;
        left: 60vw;
        transform: rotate(2deg);
    }
    .card4 {
        top: -32vh;
        left: 65vw;
        transform: rotate(-6deg);
    }
    .card5 {
        top: -42vh;
        left: 60vw;
        transform: rotate(-5deg);
    }
    /* Coffee Details */
    .thirdPage {
        background-size: 90% 96%;
        background-position: 22% 60px;
        padding: 20px;
    }
    .TPright h1 {
        margin-top: -62px;
    }
    .point1 {
        height: 35px;
        width: 210px;
        top: 160px;
        left: 30%;
    }
    .point2 {
        height: 35px;
        width: 210px;
        top: 34%;
        left: 5%;
    }
    .point3 {
        height: 35px;
        width: 210px;
        top: 34%;
        left: 64%;
    }
    .point4 {
        height: 35px;
        width: 210px;
        top: 53%;
        left: 69%;
    }
    .point5 {
        height: 35px;
        width: 210px;
        top: 70%;
        left: 67%;
    }
    .point6 {
        height: 35px;
        width: 210px;
        top: 62%;
        left: 2%;
    }
    .point7 {
        height: 35px;
        width: 270px;
        top: 85%;
        left: 58%;
    }
    /* Community Page */
    .fpmimage div {
        margin-top: 19px;
    }
}

@media screen and (min-width:901px) and (max-width:946px) {
    .TPright h1 {
        margin-left: -20%;
    }

}
@media screen and (min-width:992px)  {
  .addCartIcon {
        display: none;
    }

    .addCartScreen {
        display: flex;
    }

}
@media screen and (min-width:992) and (max-width:999) {
    .NavBar a{
        width: 115px;
    }
    .nBar{
        gap:0px !important;
    }
    .navbar{
        padding-bottom: 20px !important;
    }
    
}
@media screen and (min-width:1000px) and (max-width:1200px) {
    /* Loading page */
    .box1 {
        left: 0%;
    }
    .box2 {
        left: 20%;
    }
    .box3 {
        left: 40%;
    }
    .box4 {
        left: 60%;
    }
    .box5 {
        left: 80%;
    }
    .NavBar a {
        width: 90px;
        margin: auto;
        margin-top: 10px;
        text-align: center;
    }
   .NavBar form {
        width: 68%;
        margin: auto;
        margin-top: 10px;
    }
    .NavBar {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        padding-bottom: 26px;
    }
    #buyCount {
        top: 36px;
        right: 55px;
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: orangered;
        color: white;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Home Page */
    .first-page {
        background-image: url("./Rectangle\ 2.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 60% -20px;
        position: relative;
        object-fit: fill;
    }
    .introBox {
        margin-top: 15px;
        position: relative;

    }
    .introBox div {
        width: 94%;
        margin-left: 6%;
    }
    .introBox h1 {
        font-size: 100px !important;
    }
    .fpara {
        width: 70%;
    }

    .introBox button {
        margin-left: 13px;
    }

    .introBox img {
        height: 450px;
        top: 64px;
    }

    .coffeeTit {
        padding-top: 380px !important;
        position: relative;
        overflow: hidden;
    }

    .coffeeTit h1 {
        font-size: 100px !important;
    }

    .coffeeTit p {
        margin-left: 9%;
        color: white;
    }
/* About Page */
    .home-Page {
        padding-top: 70px !important;
        min-height: 110vh;
        overflow: hidden;
        padding: 0px 0px 50px 20px;
    }
    .hp-para {
        width: 30%;
    }
    .home-Page button {
        margin-left: 13px;
    }
    .cbox{
        overflow: unset;
    }
    .card1 {
        z-index: 1;
        top: -60vh;
        left: 59vw;
    }
    .card2 {
        top: -80vh;
        left: 69vw;
        transform: rotate(3deg);
    }
    .card3 {
        top: -70vh;
        left: 63vw;
        transform: rotate(2deg);
    }
    .card4 {
        top: -32vh;
        left: 68vw;
        transform: rotate(-6deg);
    }
    .card5 {
        top: -42vh;
        left: 63vw;
        transform: rotate(-5deg);
    }
    /*Coffee details  */
    .thirdPage {
        background-size: 90% 100%;
        background-position: 22% 60px;
        padding: 20px;
    }
    .TPright h1 {
        margin-top: -62px;
   }
    .point1 {
        height: 35px;
        width: 210px;
        top: 160px;
        left: 30%;
    }
    .point2 {
        height: 35px;
        width: 210px;
        top: 34%;
        left: 5%;
    }
    .point3 {
        height: 35px;
        width: 210px;
        top: 34%;
        left: 64%;
    }
    .point4 {
        height: 35px;
        width: 210px;
        top: 53%;
        left: 69%;
    }
    .point5 {
        height: 35px;
        width: 210px;
        top: 70%;
        left: 67%;
    }
    .point6 {
        height: 35px;
        width: 210px;
        top: 62%;
        left: 2%;
    }
    .point7 {
        height: 35px;
        width: 270px;
        top: 85%;
        left: 58%;
    }
    .fpmimage div {
        margin-top: 19px;
    }
}
@media screen and (min-width:1000px) and (max-width:1045px) {
    /* Home Page */
    .first-page {
        background-image: url("./Rectangle\ 2.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 60% 10px;
        position: relative;
        object-fit: fill;
    }
}
@media screen and (min-width:1201px) and (max-width:1321px) {
    /* Loading Page */
    .box1 {
        left: 0%;
    }

    .box2 {
        left: 20%;
    }

    .box3 {
        left: 40%;
    }

    .box4 {
        left: 60%;
    }

    .box5 {
        left: 80%;
    }
/* Home Page */
    .introBox img {
        height: 470px;
        left: 70%;
        top: -40px;
    }
    .coffeeTit {
        padding-top: 26% !important;
    }
    /* About */
    .home-Page {
        overflow: hidden;
        padding: 50px 0px 20px 20px;
    }
    .cbox{
        overflow: unset;
    }
    .card2 {
        top: -84px;
        left: 320px;
        transform: rotate(3deg);
    }
/* Coffee detailes */
    .thirdPage {
        padding: 20px;
    }

    .TPright h1 {

        margin-top: -52px;
    }
/* community page */
    .fpmimage div {
        margin-top: 35px;
    }
}