@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
    font-family: 'Astro Earth';
    src: url('../fonts/astro-earth.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Astro Earth Italic';
    src: url('../fonts/astro-earth-italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

:root {
    interpolate-size: allow-keywords;

    /* Color system */
    --color-primary-bg: rgba(38, 39, 43, 1);
    --color-footer-bg: rgba(35, 36, 42, 1);
    --color-footer-input-bg: #393a40;
    --color-footer-dark-bg: rgba(25, 26, 31, 1);
    --color-dark-yellow: rgba(240, 192, 0, 1);
    --color-yellow: rgba(255, 222, 89, 1);
    --color-light-yellow: rgba(255, 242, 189, 1);
    --color-cream-yellow: rgba(255, 251, 235, 1);
    --color-black: rgba(0, 0, 0, 1);
    --color-primary-text: rgba(35, 36, 42, 1);
    --color-secondary-text: rgba(255, 255, 255, 0.8);
    --color-decorative-text: rgba(255, 122, 0, 1);
    --color-light-text: rgba(60, 60, 60, 1);
    --color-dark-text: rgba(32, 33, 38, 1);
    --color-light-border: rgba(206, 206, 206, 1);
    --color-dark-gray: rgba(61, 63, 72, 1);
    --color-kalam-text: rgba(32, 33, 38, 0.9);
    --color-red: rgba(223, 2, 46, 1);
    --color-light-red: #e21c43;

    /* Typography */
    --font-serif: "Instrument Serif", serif;
    --font-serif-italic: "Instrument Serif Italic", serif;
    --font-inter: "Inter", sans-serif;

    /* Spacing and sizing */
    --container-width: 1320px;
    --space-2: 2px;
    --space-4: 4px;
    --space-6: 6px;
    --space-8: 8px;
    --space-10: 10px;
    --space-12: 12px;
    --space-14: 14px;
    --space-16: 16px;
    --space-18: 18px;
    --space-20: 20px;
    --space-22: 22px;
    --space-24: 24px;
    --space-28: 28px;
    --space-30: 30px;
    --space-32: 32px;
    --space-34: 34px;
    --space-36: 36px;
    --space-38: 38px;
    --space-40: 40px;
    --space-42: 42px;
    --space-44: 44px;
    --space-46: 46px;
    --space-48: 48px;

    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: rgba(255, 255, 255, 1);
    font-weight: normal;
    overflow-x: hidden;
    background-color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

ul {
    list-style: none;
}

textarea {
    /* Firefox */
    scrollbar-width: none;

    /* IE/Edge (old) */
    -ms-overflow-style: none;
}

/* Chrome, Safari */
textarea::-webkit-scrollbar {
    display: none;
}

.container {
    width: min(var(--container-width), calc(90%));
    margin-inline: auto;
}

.py-100 {
    padding-block: 50px;
}

.px-10 {
    padding-inline: 10px;
}

.hide-scrollbar {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

/* Works in Chrome, Edge, Safari */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
    /* no light bg */
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--color-sky);
    /* subtle thumb */
    border-radius: 10px;
    border: none;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: white;
}

/* Remove arrows completely */
.custom-scrollbar::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.btn-primary {
    width: fit-content;
    padding: var(--space-16) var(--space-20);
    border-radius: var(--space-14);
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-size: var(--space-12);
    font-weight: 600;
    margin-top: var(--space-18);
}

.btn-secondary {
    padding: var(--space-16) var(--space-20);
    font-size: var(--space-12);
    font-weight: 600;
    color: var(--color-black);
    background-color: white;
    border-radius: var(--space-14);
    width: fit-content;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* ----------------------------------- */
/* -------------Home Page------------- */
/* ----------------------------------- */

.hero-section {
    background-color: var(--color-primary-bg);
    display: flex;
    flex-direction: column;
    padding-bottom: 170px;
    position: relative;
    background-image: url("../images/bg-vector.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-header {
    display: flex;
    flex-direction: column;
    z-index: 999999;
}

.features-bar {
    background-color: var(--color-dark-gray);
    color: rgba(255, 255, 255, 0.89);
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-bar-content {
    display: flex;
    align-items: center;
    padding: 6px;
    /*overflow-x: auto;*/
    justify-content: space-between;
    gap: var(--space-20);
    max-width: 1520px;
    list-style-type: "|";
    font-size: 9px;
}

.features-bar-content li {
    min-width: fit-content;
    padding-left: var(--space-20);
    /* clamp the text to 1 line and then ... */
    white-space: nowrap;
    /* overflow: hidden;
  text-overflow: ellipsis; */
}

.features-bar-content li:first-child {
    list-style-type: none;
    padding-left: 0;
}

.primary-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-16) var(--space-30);
    max-width: 1520px;
    margin-inline: auto;
    width: 100%;
}

.nav-links {
    display: flex;
    font-size: var(--space-12);
    align-items: center;
}

.nav-links li {
    padding-inline: var(--space-24);
    border-right: 2px solid #4a4a4d;
}

.nav-links li:first-child {
    padding-left: 0;
}

.nav-links li:last-child {
    border-right: none;
    padding-right: 0;
}

.mobile-nav-container {
    display: none;
    position: relative;
    z-index: 999999;
    border: 1px solid var(--color-light-border);
    border-radius: var(--space-6);
    padding: var(--space-4);
}

.mobile-nav-menu-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-links {
    position: absolute;
    top: calc(100% + var(--space-8));
    right: 0;
    width: 260px;
    display: none;
    flex-direction: column;
    background-color: var(--color-dark-gray);
    padding: var(--space-16) var(--space-22);
    border-radius: var(--space-12);
    border: 1px solid var(--color-light-border);
}

.mobile-nav-links.active {
    display: flex;
}

.mobile-nav-links li {
    display: flex;
    padding: var(--space-12) 0;
    font-size: var(--space-16);
    cursor: pointer;
    position: relative;
}

.mobile-nav-links li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    border-radius: var(--space-6);
    background-color: transparent;
    transition: all 0.5s ease;
}

.mobile-nav-links li:hover::after {
    width: 100%;
    background-color: var(--color-yellow);
}

.mobile-nav-links li a {
    width: 100%;
}

.hero-content {
    display: flex;
    gap: var(--space-44);
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--space-10);
    padding-top: 88px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: var(--space-44);
    width: 50%;
    z-index: 1;
}

.hero-left-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.hero-left-content .hero-title {
    font-size: 87px;
    /* font-family: "Bebas Neue", sans-serif; */
    font-family: "Astro Earth", sans-serif;
    font-weight: normal;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.hero-left-content .hero-left-content-description {
    color: var(--color-secondary-text);
    font-size: 16px;
    line-height: 29px;
}

.hero-right {
    width: 50%;
    position: relative;
    max-width: 560px;
    overflow: visible;
}

.hero-slider-item {
    position: relative;
    width: 100%;
    min-width: 320px;
    height: 510px;
    max-height: 510px;
    overflow: visible;
    display: flex;
    justify-content: center;
}

.hero-slider-item-image-wrapper {
    position: relative;
    transform: rotate(-8.5deg) scale(0.83);
    overflow: visible;
    width: 100%;
    height: fit-content;
    max-width: 560px;
}

.hero-slider-image-overlay {
    width: 70%;
    height: 220px;
    border-radius: 50%;
    position: absolute;
    background-blend-mode: multiply;
    background-color: rgba(202, 152, 107, 1);
    filter: blur(60px);
    z-index: -1;
    top: 50%;
    left: 15%;
}

.hero-slider-item-number {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transform: rotate(8.5deg);
}

.hero-slider-item-number .active {
    font-size: 24px;
}

.hero-right-bottom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: clamp(-20px, -5vw, 0px);
}

.hero-slider-item-content {
    position: absolute;
    background-color: var(--color-yellow);
    padding-block: var(--space-24);
    padding-inline: clamp(var(--space-48), 8vw, 108px);
    z-index: -1;
    border-radius: 58px;
    width: clamp(240px, 80%, 320px);
    height: 100%;
    color: var(--color-black);
    display: flex;
    justify-content: center;
    align-items: end;
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.hero-slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-12);
    margin-top: var(--space-32) !important;
}

.hero-slider .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background-color: rgba(255, 122, 0, 0.4) !important;
    margin: 0 !important;
    border-radius: 50% !important;
}

.hero-slider .owl-dot.active {
    border: 1px solid rgba(255, 122, 0, 1) !important;
    padding: 2px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-slider .owl-dot.active span {
    background-color: rgba(255, 122, 0, 1) !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
}

.hero-slider .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 17px;
    left: 0;
    right: 0;
    width: 50%;
    margin-inline: auto;
}

.hero-slider .owl-nav button span {
    background-color: transparent !important;
    font-size: 30px !important;
    line-height: normal !important;
    display: flex !important;
    height: 10px !important;
}

.hero-slider .owl-nav button:hover {
    background-color: transparent !important;
}

.available-platforms-section-wrapper {
    position: relative;
    padding: 70px 10px;
}

.white-ellipse {
    position: absolute;
    left: 0;
    width: 120%;
    height: 285px;
    /* aspect-ratio: 4/1; */
    top: -13%;
    left: -10%;
    background-color: white;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.scroll-down-indicator {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    color: var(--color-dark-text);
    font-size: var(--space-14);
    background: transparent;
}

.available-platforms-section {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-light-border);
    border-radius: var(--space-30);
}

.available-platforms-content {
    display: flex;
    width: 100%;
    align-items: stretch;
    height: 100%;
    border-bottom: 1px solid var(--color-light-border);
}

.available-platforms-stats {
    display: flex;
    flex-direction: column;
    padding: 56px 50px;
    width: 40%;
    min-width: 250px;
    max-width: 310px;
    height: 100%;
}

.available-platforms-stats-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.available-platforms-stats-number {
    font-size: var(--space-24);
    font-weight: 700;
    color: var(--color-decorative-text);
}

.available-platforms-stats-item span:last-child {
    font-size: var(--space-14);
    color: var(--color-light-text);
}

.available-platforms-stats-item:first-child {
    padding-bottom: var(--space-24);
    border-bottom: 1px solid var(--color-light-border);
}

.available-platforms-stats-item:last-child {
    padding-top: var(--space-24);
}

.available-platforms-heading {
    padding: 30px 58px;
    text-align: center;
    border-inline: 1px solid var(--color-light-border);
    font-family: "Bebas Neue", sans-serif;
    font-size: 47px;
    line-height: 53px;
    font-weight: normal;
    color: var(--color-primary-text);
    display: flex;
    align-items: center;
}

.available-platforms-image-wrapper {
    width: 100%;
    height: 100%;
    padding: 50px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
}

.available-platforms-image-wrapper img {
    flex: 1 1 0%;
    max-width: 150px;
}

.features-section-wrapper {
    background-color: var(--color-yellow);
    padding: 50px 10px;
}

.features-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
    align-items: center;
}

.features-section-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Bebas Neue", sans-serif;
    color: var(--color-primary-text);
}

.features-section-content {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.features-section-content h1 {
    font-size: 68px;
    font-weight: normal;
}

.features-bar-2 {
    background-color: var(--color-dark-gray);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-bar-2-content {
    display: flex;
    align-items: center;
    padding: 6px;
    /* overflow-x: auto; */
    justify-content: space-between;
    gap: var(--space-24);
    max-width: 1520px;
    list-style-type: "|";
    font-size: 18px;
}

.features-bar-2-content li {
    min-width: fit-content;
    padding-left: var(--space-20);
}

.features-bar-2-content li:first-child {
    list-style-type: none;
    padding-left: 0;
}

.special-note-section {
    padding: var(--space-8) 0;
    position: relative;
    display: flex;
    align-items: center;
}

.special-note-section-image-wrapper {
    z-index: 3;
    transform: rotate(14deg);
    transform-origin: bottom left;
    max-width: 50%;
    border-radius: 40px;
}

.special-note-section-image-wrapper img {
    width: clamp(250px, 90%, 390px);
    border-radius: 40px;
    box-shadow: -30px 30px 60px rgba(0, 0, 0, 0.5);
}

.special-note-section-content-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    height: 490px;
    padding: 80px 98px 62px 98px;
    justify-content: flex-end;
    background: url("../images/special-note-bg.svg") no-repeat center center;
    background-size: contain;
}

.special-note-section-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    width: 50%;
}

.special-note-section-content-header {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.05em;
    color: var(--color-primary-text);
}

.special-note-section-content-header h2 {
    font-size: 68px;
    font-weight: normal;
}

.special-note-section-content p {
    font-family: "Kalam", sans-serif;
    font-size: var(--space-22);
    color: var(--color-kalam-text);
}

.best-sellers-section-wrapper {
    background-color: var(--color-primary-bg);
    margin-top: 120px;
    position: relative;
    display: flex;
    background-image: url("../images/bg-vector.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.best-sellers-section {
    position: relative;
    display: flex;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1;
}

.best-sellers-section-title {
    padding: 42px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 42px;
    font-weight: normal;
    letter-spacing: 0.05em;
    width: clamp(200px, 25%, 350px);
}

.best-sellers-items-wrapper {
    display: flex;
    flex-direction: column;
    border-inline: 1px solid rgba(255, 255, 255, 0.18);
    width: calc(100% - clamp(200px, 25%, 350px) - 70px);
}

.best-sellers-item {
    padding: var(--space-24);
    display: flex;
    gap: var(--space-44);
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.best-sellers-item img {
    width: clamp(150px, 40%, 305px);
}

.best-sellers-item:last-child {
    border-bottom: none;
}

.best-sellers-item-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.best-sellers-item-content h3 {
    font-size: 24px;
}

.best-sellers-item-content p {
    color: var(--color-secondary-text);
    font-size: 16px;
    line-height: 24px;
}

.our-journey-section {
    padding: 80px 10px 50px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-30);
    align-items: center;
}

.our-journey-section h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 68px;
    font-weight: normal;
    color: var(--color-primary-text);
}

.our-journey-landscape-image-wrapper {
    display: none;
}

.products-section {
    padding: 50px 10px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.products-section h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 68px;
    font-weight: normal;
    color: var(--color-primary-text);
    text-align: center;
}

.products-categories-tabs {
    display: flex;
    overflow-x: auto;
    width: 100%;
    border-bottom: 1px solid var(--color-light-border);
}

.products-categories-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-16);
    padding: var(--space-24);
    flex: 1 1 0%;
}

.products-categories-tab.active {
    background-color: var(--color-light-yellow);
    border-bottom: 4px solid var(--color-black);
    border-top-left-radius: var(--space-12);
    border-top-right-radius: var(--space-12);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    border: 2px solid #e1e1e1;
    border-radius: var(--space-30);
    overflow: hidden;
}

.product-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-right: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    width: 100%;
}

.product-card img {
    width: 100%;
}

.product-card-content {
    display: flex;
    align-items: start;
    gap: var(--space-10);
    padding: var(--space-20);
}

.product-card-content-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.product-card-content-header h3 {
    font-size: 22px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: normal;
    color: var(--color-primary-text);
    letter-spacing: 0.02em;
}

.product-card-content-header p {
    color: rgba(32, 33, 38, 0.8);
    font-size: 13px;
    line-height: 22px;
}

.product-card-btn {
    padding: var(--space-10);
    border-radius: 50%;
    border: 1px solid var(--color-light-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-btn img {
    width: 38px;
}

.products-grid-pagination {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-light-border);
    border-radius: var(--space-8);
    width: fit-content;
    align-self: center;
}

.products-grid-pagination-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid var(--color-light-border);
    color: rgba(32, 33, 38, 0.8);
    font-weight: 600;
}

.products-grid-pagination-btn:last-child {
    border-right: none;
}

.products-grid-pagination-btn.active {
    background-color: var(--color-yellow);
    color: var(--color-black);
}

.cook-with-us-section {
    padding: 50px 10px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.cook-with-us-section h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 62px;
    font-weight: normal;
    color: var(--color-primary-text);
    text-align: center;
    letter-spacing: 0.02em;
}

.cook-with-us-section-videos-wrapper {
    width: 100%;
    display: flex;
    gap: 50px;
    justify-content: center;
}

.cook-with-us-section-video {
    width: 220px;
    min-width: 220px;
    height: 290px;
    overflow: hidden;
}

.social-with-us-section-wrapper {
    background-color: var(--color-cream-yellow);
    padding: 50px 10px;
    display: flex;
}

.social-with-us-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.social-with-us-section h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 62px;
    font-weight: normal;
    color: var(--color-primary-text);
    text-align: center;
    letter-spacing: 0.02em;
}

.social-with-us-cards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-20);
    justify-content: center;
}

.social-with-us-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    min-width: 280px;
    max-width: 350px;
    flex: 1 1 0%;
    background-color: #ffffff;
    padding: var(--space-14);
    border: 1px solid var(--color-light-border);
    border-radius: var(--space-20);
}

.social-with-us-card-profile-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-10);
}

.social-with-us-card-profile {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 19px;
}

.social-with-us-card-profile h4 {
    font-weight: 600;
    color: rgba(40, 40, 40, 1);
}

.social-with-us-card-profile span {
    color: rgba(101, 101, 101, 1);
}

.social-with-us-card-profile-wrapper img:last-child {
    margin-left: auto;
}

.social-with-us-card-description {
    font-size: 14px;
    line-height: 19px;
    color: rgba(101, 101, 101, 1);
}

footer {
    background-color: var(--color-footer-bg);
    display: flex;
    flex-direction: column;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 40px;
    border-bottom: 2px solid #383943;
    width: 100%;
}

.footer-logo img {
    height: 68px;
}

.footer-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 1520px;
}

.footer-item {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    justify-content: top;
    gap: var(--space-12);
    padding: 50px 40px;
    border-left: 2px solid #383943;
}

.footer-item:first-child {
    border-left: none;
}

.footer-item h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-item p {
    font-size: 12px;
    color: var(--color-secondary-text);
}

.footer-form {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.footer-form input {
    background-color: #393a40;
    color: #b0b0b2;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: var(--space-6) 0 0 var(--space-6);
    font-size: 12px;
    height: 40px;
}

.footer-form .btn-primary {
    border-radius: 0 var(--space-6) var(--space-6) 0;
    height: 40px;
    margin-top: 0;
    padding: 10px;
}

.footer-links {
    display: flex;
    gap: var(--space-40);
}

.footer-links a {
    font-size: 13px;
    font-weight: 300;
    /* line clamp to 1 and then ... */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer-links ul {
    column-count: 2;
    column-gap: var(--space-40);
    width: 100%;
}

.footer-links ul li {
    margin-bottom: var(--space-10);
    break-inside: avoid;
}

.contact-info {
    display: flex;
    align-items: start;
    gap: var(--space-10);
}

.contact-info span {
    font-size: 12px;
    margin-block: auto;
}

.copyright {
    border-top: 2px solid #383943;
    background-color: rgba(25, 26, 31, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-24) var(--space-30);
}

.copyright h3 {
    font-size: 12px;
}

.social-icons {
    display: flex;
    gap: var(--space-20);
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1268px) {
    .shop-page-products-section-wrapper .white-ellipse {
        top: -4% !important;
    }
}

/* ------------------------------------ */
/* --------------Shop Page------------- */
/* ------------------------------------ */

.secondary-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    z-index: 1;
    max-width: 900px;
    align-items: center;
    text-align: center;
}

.secondary-hero-content .hero-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 87px;
    line-height: 90px;
    font-weight: normal;
    text-align: center;
}

.secondary-hero-content p {
    color: var(--color-secondary-text);
    font-size: 16px;
    line-height: 29px;
}

.shop-page-products-section-wrapper {
    padding: 0px 10px 50px 10px;
    display: flex;
    position: relative;
}

.shop-page-products-section-wrapper .white-ellipse {
    top: -6%;
}

.shop-page-products-section-wrapper .products-section {
    padding: 0;
}

/* ----------------------------------------- */
/* --------------About Us Page-------------- */
/* ----------------------------------------- */

.secondary-hero-content .about-stats {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    text-transform: uppercase;
    font-size: 16px;
    line-height: 29px;
    color: var(--color-secondary-text);
    list-style-type: disc;
    list-style-position: inside;
}

.secondary-hero-content .about-stats li:first-child {
    list-style-type: none;
}

.our-story-section-wrapper {
    display: flex;
    position: relative;
    padding-top: 80px;
    margin-bottom: 50px;
}

.our-story-section-wrapper .white-ellipse {
    top: -10%;
}

.our-story-section {
    display: flex;
    gap: var(--space-44);
    align-items: center;
    position: relative;
}

.our-story-image-wrapper {
    width: 50%;
}

.our-story-image-wrapper img {
    width: 100%;
}

.our-story-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-18);
    width: 50%;
    max-width: 560px;
}

.our-story-mobile-title {
    display: none;
}

.our-story-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-18);
}

.our-story-section h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 46px;
    font-weight: normal;
    color: var(--color-primary-text);
    letter-spacing: 0.02em;
}

.our-story-text p {
    color: rgba(69, 69, 69, 1);
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}

.our-story-text span {
    color: rgba(28, 28, 28, 1);
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    font-style: italic;
    position: relative;
    left: var(--space-12);
}

.our-story-text span::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: var(--color-yellow);
    border-radius: var(--space-2);
    left: -12px;
}

.our-story-founder-info {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.our-story-founder-info .founder-info {
    display: flex;
    flex-direction: column;
}

.our-story-founder-info .founder-info p {
    font-size: 16px;
    line-height: 30px;
    color: rgba(69, 69, 69, 1);
    font-weight: 500;
}

.our-story-founder-info .founder-info span {
    color: rgba(69, 69, 69, 1);
    font-size: 14px;
    font-weight: 500;
}

.little-extra-section-wrapper {
    display: flex;
    padding: 50px 10px;
    background-color: var(--color-yellow);
}

.little-extra-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
}

.little-extra-header-wrapper {
    display: flex;
    flex-direction: column;
}

.little-extra-header {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.little-extra-header h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 68px;
    line-height: 75px;
    font-weight: normal;
    color: var(--color-primary-text);
}

.little-extra-header-wrapper .little-extra-description {
    color: rgba(0, 0, 0, 0.9);
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}

.little-extra-items {
    display: flex;
    flex-direction: column;
}

.little-extra-item {
    display: flex;
    align-items: center;
    padding-block: var(--space-20);
    gap: var(--space-20);
    border-bottom: 1px solid rgba(219, 176, 0, 1);
}

.little-extra-item:last-child {
    border-bottom: none;
}

.little-extra-item span {
    font-size: 32px;
    line-height: 30px;
    font-weight: 500;
    color: var(--color-primary-text);
    padding: var(--space-10) var(--space-14);
    background-color: var(--color-dark-yellow);
    max-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.little-extra-item h3 {
    font-size: 26px;
    line-height: 30px;
    color: var(--color-primary-text);
    font-weight: 500;
}

.little-extra-conclusion {
    padding: var(--space-30);
    background-color: var(--color-dark-yellow);
    border-radius: var(--space-10);
    border: 1px solid #f3cd33;
    color: var(--color-primary-text);
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
}

.life-moments-section-wrapper {
    display: flex;
    padding: 80px 10px;
    background-color: rgba(249, 250, 251, 1);
}

.life-moments-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
    text-align: center;
}

.life-moments-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.life-moments-header .life-moments-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 68px;
    font-weight: normal;
    color: var(--color-primary-text);
}

.life-moments-header .life-moments-description,
.life-moments-conclusion {
    color: rgba(69, 69, 69, 1);
    font-size: 21px;
    line-height: 30px;
    font-weight: 500;
}

.life-moments-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-20);
}

.life-moment {
    display: flex;
    max-width: 400px;
    min-width: 300px;
    flex: 1 1 0%;
    width: 100%;
    flex-direction: column;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
    border-radius: var(--space-30);
    background-color: white;
}

.life-moment h4 {
    color: rgba(28, 28, 28, 1);
    font-size: 20px;
    font-weight: 600;
    padding: var(--space-30);
    text-align: start;
    padding-bottom: var(--space-40);
}

.available-platforms-desc {
    padding: 30px 58px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-18);
    border-inline: 1px solid var(--color-light-border);
}

.available-platforms-desc h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 47px;
    line-height: 53px;
    color: var(--color-primary-text);
    letter-spacing: 0.04em;
}

.available-platforms-desc p,
.available-platforms-desc span {
    color: rgba(69, 69, 69, 1);
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    margin-top: var(--space-12);
}

.available-platforms-desc span {
    font-weight: 700;
}

.our-promise-section-wrapper {
    display: flex;
    position: relative;
    background-color: var(--color-primary-bg);
    /*background-image: url("../images/bg-vector.svg");*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.our-promise-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    z-index: 1;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 60px;
    padding-block: 68px;
    padding-inline: 40px;
    background-color: var(--color-primary-bg);

}

.our-promise-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 68px;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.our-promise-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-34);
    max-width: 760px;
}

.our-promise-text {
    font-family: "Kalam", sans-serif;
    display: flex;
    flex-direction: column;
    gap: var(--space-14);
}

.our-promise-text h2 {
    font-size: 41px;
    font-weight: 700;
}

.our-promise-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
}

.our-promise-text p:last-child {
    margin-top: var(--space-24);
}

/* ---------------------------------------------- */
/* --------------Partnership Page --------------- */
/* ---------------------------------------------- */

.secondary-hero-header {
    background-color: #23242a;
}

.partnership-hero-header {
    background-color: #0b0a0a;
    padding-bottom: 26px;
}

.partnership-hero-section {
    background-image: url("../images/rcb-hero-bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    padding-block: 20px;
    padding-bottom: 160px;
}

.partnership-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-14);
}

.partnership-header-features {
    /*background-color: var(--color-red);*/
    background-color: var(--color-yellow);
    padding: var(--space-4) var(--space-10);
    border-radius: var(--space-6);
    display: flex;
    align-items: center;
    list-style-type: disc;
    list-style-position: inside;
    font-size: 14px;
    line-height: 29px;
    font-weight: 500;
    text-transform: uppercase;
    gap: var(--space-16);
    color: var(--color-black);
}

.partnership-header-features li:first-child {
    list-style-type: none;
}

.biggest-stage-section-wrapper {
    display: flex;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.biggest-stage-section-wrapper .white-ellipse {
    top: -9%;
}

.biggest-stage-section {
    display: flex;
    gap: var(--space-44);
    align-items: center;
    position: relative;
    justify-content: space-between;
}

.biggest-stage-image-wrapper {
    width: 50%;
}

.biggest-stage-image-wrapper img {
    width: 100%;
}

.biggest-stage-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-22);
    width: 50%;
    max-width: 560px;
}

.biggest-stage-content h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 68px;
    line-height: 75px;
    font-weight: normal;
    color: var(--color-primary-text);
    letter-spacing: 0.02em;
}

.biggest-stage-content h2 strong {
    /*color: var(--color-red);*/
    color: var(--color-yellow);
    font-weight: normal;
}

.biggest-stage-content p {
    color: rgba(69, 69, 69, 1);
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    margin-top: var(--space-10);
}

.biggest-stage-content span {
    color: rgba(28, 28, 28, 1);
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    font-style: italic;
    position: relative;
    left: var(--space-12);
}

.biggest-stage-content span::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    background-color: var(--color-red);
    border-radius: var(--space-2);
    left: -12px;
}

.partnership-little-extra-section-wrapper {
    display: flex;
    padding: 50px 10px;
    /*background-color: var(--color-red);*/
    background-color: var(--color-yellow);
    color: white;
}

.partnership-little-extra-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
}

.partnership-little-extra-header-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.partnership-little-extra-header {
    display: flex;
    flex-direction: column;
}

.partnership-little-extra-header h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 68px;
    line-height: 75px;
    font-weight: normal;
}

.partnership-little-extra-header-wrapper .partnership-little-extra-description {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}

.partnership-little-extra-items {
    display: flex;
    flex-direction: column;
}

.partnership-little-extra-item {
    display: flex;
    align-items: center;
    padding-block: var(--space-20);
    gap: var(--space-20);
    /*border-bottom: 1px solid #e94d6c;*/
    border-bottom: 1px solid var(--color-primary-bg);
}

.partnership-little-extra-item:last-child {
    border-bottom: none;
}

.partnership-little-extra-item span {
    font-size: 32px;
    line-height: 30px;
    font-weight: 500;
    padding: var(--space-10) var(--space-14);
    /*background-color: #e53558;*/
    background-color: var(--color-primary-bg);
    max-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-little-extra-item h3 {
    font-size: 26px;
    line-height: 30px;
    font-weight: 500;
}

.partnership-little-extra-conclusion {
    padding: var(--space-30);
    /*background-color: #e21c43;*/
    background-color: var(--color-primary-bg);
    border-radius: var(--space-10);
    /*border: 1px solid #e84969;*/
    border: 1px solid var(--color-primary-bg);
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
}

.expectations-section-wrapper {
    display: flex;
    padding: 80px 10px;
    background-color: rgba(249, 250, 251, 1);
}

.expectations-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-40);
    text-align: center;
}

.expectations-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.expectations-header .expectations-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 68px;
    font-weight: normal;
    color: var(--color-primary-text);
}

.expectations-header .expectations-description,
.expectations-conclusion {
    color: rgba(69, 69, 69, 1);
    font-size: 21px;
    line-height: 30px;
    font-weight: 500;
}

.expectations-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-20);
}

.expectations-item {
    display: flex;
    max-width: 400px;
    min-width: 300px;
    flex: 1 1 0%;
    width: 100%;
    flex-direction: column;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
    border-radius: var(--space-30);
    background-color: white;
}

.expectations-item h4 {
    color: rgba(28, 28, 28, 1);
    font-size: 20px;
    font-weight: 600;
    padding: var(--space-30);
    text-align: start;
    padding-bottom: var(--space-40);
}

.more-than-partnership-section-wrapper {
    display: flex;
    position: relative;
    background-color: var(--color-primary-bg);
    background-image: url("../images/bg-vector.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.more-than-partnership-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    z-index: 1;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 60px;
    padding-block: 68px;
    padding-inline: 30px;
}

.more-than-partnership-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    text-align: center;
}

.more-than-partnership-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 68px;
    font-weight: normal;
    letter-spacing: 0.02em;
}

.more-than-partnership-description {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}

.more-than-partnership-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-44);
    max-width: 760px;
    text-align: center;
}

.more-than-partnership-text {
    font-family: "Kalam", sans-serif;
    display: flex;
    flex-direction: column;
    gap: var(--space-14);
}

.more-than-partnership-text h2 {
    font-size: 41px;
    font-weight: 700;
}

.more-than-partnership-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
}

.more-than-partnership-text p:last-child {
    margin-top: var(--space-24);
}

.collectible-stickers-section-wrapper {
    display: flex;
    padding: 50px 10px;
    /*background-color: var(--color-red);*/
    background-color: var(--color-yellow);
    color: white;
}

.collectible-stickers-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.collectible-stickers-section h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 68px;
    line-height: 75px;
    font-weight: normal;
    text-align: center;
}

.collectible-stickers-items {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.collectible-sticker {
    width: 31%;
    max-width: 254px !important;
}

.collectible-sticker-1 {
    transform: rotate(-5.2deg);
    transform-origin: bottom right;
}

.collectible-sticker-3 {
    transform: rotate(5.2deg);
    transform-origin: bottom left;
}

.collectible-stickers-description {
    display: flex;
    flex-direction: column;
    /*background-color: #e21c43;*/
    background-color: var(--color-primary-bg);
    /*border: 1px solid #e84969;*/
    border: 1px solid var(--color-primary-bg);
    border-radius: var(--space-10);
    padding: 30px 15px;
    width: 100%;
    align-items: center;
    gap: var(--space-32);
    font-family: "Kalam", sans-serif;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
}

/* --------------------------------------------- */
/* -------------Product Details Page------------ */
/* --------------------------------------------- */

.product-page-products-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-48);
}

.product-page-products-section-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    align-items: center;
    text-align: center;
}

.product-page-products-section-header h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 36px;
    line-height: 54px;
    font-weight: normal;
    color: var(--color-primary-text);
}

.product-page-products-section-header p {
    color: rgba(31, 41, 51, 1);
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.navigation-section {
    display: flex;
    align-items: center;
    color: rgba(31, 41, 51, 1);
    padding-block: var(--space-24);
}

.navigation-section ul {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    font-size: 13px;
    line-height: 20px;
}

.navigation-section ul li {
    padding-left: var(--space-16);
    position: relative;
}

.navigation-section ul li::before {
    position: absolute;
    content: "";
    background-image: url("../images/right-chevron-list-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 10px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.navigation-section ul li:first-child {
    padding-left: 0;
}

.navigation-section ul li:last-child {
    color: rgba(85, 85, 85, 1);
}

.navigation-section ul li:first-child::before {
    content: none;
}

.product-details-section {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.product-details-images-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    width: 50%;
}

.product-details-main-image-wrapper {
    width: 100%;
    border-radius: var(--space-16);
}

.product-details-main-image-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: var(--space-16);
    object-fit: cover;
}

.product-details-sub-images-wrapper {
    display: flex;
    gap: var(--space-16);
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    height: 80px;
}

.product-details-sub-image-wrapper {
    aspect-ratio: 1 / 1;
    height: 100%;
    border-radius: var(--space-8);
    border: 2.5px solid transparent;
    cursor: pointer;
}

.product-details-sub-image-wrapper.active {
    border-color: rgba(31, 41, 51, 1);
}

.product-details-sub-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--space-6);
}

.product-details-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
    width: 50%;
}

.product-details-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: 47px;
    line-height: 53px;
    font-weight: normal;
    color: var(--color-primary-text);
}

.product-details-price-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    justify-content: space-between;
}

.product-details-price {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    color: rgba(31, 41, 51, 1);
}

.product-details-price-wrapper .btn-primary {
    margin-top: 0;
}

.product-details-description {
    color: rgba(85, 85, 85, 1);
    font-size: 15px;
    line-height: 24px;
}

.product-details-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-16);
    margin-top: var(--space-20);
}

.product-details-feature {
    display: flex;
    align-items: center;
    gap: var(--space-12);
}

.product-details-check-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 249, 230, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-details-feature span {
    color: rgba(68, 68, 68, 1);
    font-size: 13px;
    line-height: 20px;
}

.product-details-additional-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-light-border);
    border-bottom: 1px solid var(--color-light-border);
}

.product-details-additional-info details {
    color: rgba(31, 41, 51, 1);
    font-size: 15px;
    line-height: 24px;
    border-bottom: 1px solid var(--color-light-border);
    display: flex;
    flex-direction: column;
    user-select: none;
    overflow: hidden;
}

.product-details-additional-info details:last-child {
    border-bottom: none;
}

.product-details-additional-info details summary {
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    list-style: none;
    width: 100%;
    cursor: pointer;
    padding: var(--space-20) 0;
}

.product-details-additional-info details summary::-webkit-details-marker {
    display: none;
}

.product-details-additional-info details p {
    padding-bottom: var(--space-20);
    color: rgba(85, 85, 85, 1);
    font-size: 14px;
    line-height: 22px;
}

.product-details-additional-info details summary {
    position: relative;
}

.product-details-additional-info details summary::after,
.product-details-additional-info details summary::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 1.5px;
    background-color: rgba(31, 41, 51, 1);
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* vertical line */
.product-details-additional-info details summary::before {
    transform: translateY(-50%) rotate(90deg);
}

/* when open → hide vertical line */
.product-details-additional-info details[open] summary::before {
    transform: translateY(-50%) rotate(0deg) scaleX(0);
}

.product-details-additional-info details::details-content {
    max-height: 0;

    transition:
        max-height 0.5s ease,
        content-visibility 0.5s ease;

    transition-behavior: allow-discrete;
}

.product-details-additional-info details[open]::details-content {
    max-height: 100px;
}

/* ----------------------------------------------------- */
/* ---------------Our Brand Partners Page--------------- */
/* ----------------------------------------------------- */

.brand-partners-section {
    padding: 50px 10px 50px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.brand-partners-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    align-items: center;
    text-align: center;
    max-width: 870px;
}

.brand-partners-header h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 87px;
    line-height: 90px;
    font-weight: normal;
    color: var(--color-primary-text);
}

.brand-partners-header p {
    color: #555555;
    font-size: 16px;
    line-height: 30px;
}

.brand-partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    width: 100%;
}

.brand-partner-logo {
    border-radius: var(--space-10);
    box-shadow: 0px 4px 4px #88888826;
}

/* --------------------------------------------- */
/* -----------------Recipes Page---------------- */
/* --------------------------------------------- */

.recipe-videos-section {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 50px 0px 80px 0px;
    align-items: center;
    text-align: center;
}

.recipe-videos-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    align-items: center;
    max-width: 870px;
}

.recipe-videos-header h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 87px;
    line-height: 90px;
    font-weight: normal;
    color: var(--color-primary-text);
}

.recipe-videos-header p {
    color: #555555;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}

.recipe-videos-wrapper {
    padding-inline: 50px;
    position: relative;
}

.recipe-video {
    border-radius: var(--space-20);
    /* width: 220px; */
    height: 290px;
}

.recipe-video iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--space-20);
}

.recipe-videos-wrapper .owl-item {
    display: flex;
    justify-content: center;
}

.recipe-videos-wrapper .owl-nav {
    display: flex !important;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    justify-content: space-between;
    margin: 0px !important;
}

.recipe-videos-wrapper .owl-nav button {
    border: 1px solid var(--color-light-border) !important;
    border-radius: var(--space-8) !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 14px 14px !important;
}

.recipe-videos-wrapper .owl-nav button span {
    display: none !important;
}

.recipe-videos-wrapper .owl-nav button.owl-prev {
    background-image: url("../images/left-arrow.svg") !important;
}

.recipe-videos-wrapper .owl-nav button.owl-next {
    background-image: url("../images/right-arrow.svg") !important;
}

.editorial-kitchen-section-wrapper {
    display: flex;
    padding: 50px 10px;
    background-color: var(--color-cream-yellow);
}

.editorial-kitchen-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-48);
}

.editorial-kitchen-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    align-items: center;
    text-align: center;
}

.editorial-kitchen-header h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 68px;
    line-height: 75px;
    font-weight: normal;
    color: var(--color-primary-text);
}

.editorial-kitchen-categories {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    max-width: 100%;
    overflow-x: auto;
}

.editorial-kitchen-category {
    padding: var(--space-8) var(--space-20);
    color: #5c4d47;
    font-size: 14px;
    line-height: 21px;
    background-color: #ffffff;
    border-radius: var(--space-12);
    border: 1px solid #e5e0d8;
    font-weight: 500;
    min-width: fit-content;
}

.editorial-kitchen-category.active {
    background-color: #2d2320;
    color: white;
    border-color: #2d2320;
}

.editorial-kitchen-recipes {
    display: grid;
    gap: var(--space-24);
    grid-template-columns: repeat(3, 1fr);
}

.editorial-kitchen-recipe {
    max-height: 350px;
    display: flex;
    height: fit-content;
    flex-direction: column;
    background-color: white;
    border-radius: var(--space-20);
    overflow: hidden;
}

.editorial-recipe-image-wrapper,
.editorial-recipe-info {
    width: 100%;
}

.editorial-kitchen-recipe .editorial-recipe-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: var(--space-20);
    border-top-right-radius: var(--space-20);
}

.editorial-recipe-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    padding: var(--space-24);
}

.editorial-recipe-info h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
    line-height: 26px;
    font-weight: normal;
    color: var(--color-primary-text);
}

.primary-editorial-kitchen-recipe {
    display: flex;
    max-height: 350px;
    flex-direction: row;
    grid-column: span 2;
    background-color: white;
    border-radius: var(--space-20);
    overflow: hidden;
}

.primary-editorial-kitchen-recipe .editorial-recipe-image-wrapper,
.primary-editorial-kitchen-recipe .editorial-recipe-info {
    width: 50%;
}

.primary-editorial-kitchen-recipe .editorial-recipe-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: var(--space-20);
    border-bottom-left-radius: var(--space-20);
}

.primary-editorial-kitchen-recipe .editorial-recipe-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    padding: var(--space-40);
}

.editorial-recipe-meta-info-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    color: #555555;
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.editorial-recipe-meta-info {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.primary-editorial-kitchen-recipe .editorial-recipe-info h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 32px;
    line-height: 39px;
    font-weight: normal;
    color: var(--color-primary-text);
}

.primary-editorial-kitchen-recipe .editorial-recipe-info p {
    color: #5c4d47;
    font-size: 15px;
    line-height: 24px;
}

/* --------------------------------------------- */
/* ----------------Media Queries---------------- */
/* --------------------------------------------- */

@media (max-width: 1260px) {
    .special-note-section-content-header h2 {
        font-size: 52px;
        line-height: 56px;
    }

    .special-note-section-content p {
        font-size: 18px;
    }

    .special-note-section-image-wrapper {
        width: clamp(200px, 80%, 320px);
    }

    .special-note-section-content-header img {
        max-width: 80px;
    }

    .special-note-section-content-wrapper {
        padding-top: 80px;
    }

    .available-platforms-desc h1 {
        font-size: 39px !important;
        line-height: 45px !important;
    }

    .available-platforms-desc {
        gap: var(--space-6) !important;
    }

    .footer-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-item {
        padding-inline: var(--space-30);
    }

    .footer-item:nth-child(-n + 2) {
        border-bottom: 2px solid #383943;
    }

    .footer-item:nth-child(3) {
        border-left: none;
    }

    .footer-links {
        justify-content: space-between;
    }
}

@media (max-width: 1200px) {
    .hero-left-content .hero-title {
        font-size: 54px;
        line-height: 60px;
    }

    .biggest-stage-content h2 {
        font-size: 46px !important;
        line-height: 52px !important;
    }

    .our-story-text p,
    .biggest-stage-content p {
        font-size: 14px !important;
        line-height: 22px !important;
    }
}

@media (max-width: 1180px) {
    .available-platforms-heading {
        font-size: 40px;
        line-height: 46px;
    }

    .about-us-available-platforms-content {
        flex-direction: column;
    }

    .available-platforms-desc {
        border-inline: none !important;
        border-block: 1px solid var(--color-light-border) !important;
        padding-inline: var(--space-20) !important;
    }

    .about-us-available-platforms-content .available-platforms-stats {
        width: 100%;
        padding: var(--space-30) var(--space-20);
        flex-direction: row;
        max-width: 100%;
        justify-content: space-between;
        text-align: center;
    }

    .about-us-available-platforms-content .available-platforms-stats-item {
        padding-block: 0 !important;
        padding-inline: var(--space-16);
        width: 50%;
        align-items: center;
    }

    .about-us-available-platforms-content .available-platforms-stats-item:first-child {
        border-bottom: none;
        border-right: 1px solid var(--color-light-border);
    }
}

@media (max-width: 1080px) {
    .hero-content {
        flex-direction: column;
        gap: var(--space-42);
        padding-top: var(--space-30);
        padding-bottom: var(--space-40);
    }

    .hero-content .hero-left {
        width: 100%;
        align-items: center;
    }

    .hero-content .hero-left .hero-left-content {
        align-items: center;
        text-align: center;
    }

    .hero-content .hero-right {
        width: 100%;
        max-width: 100%;
    }

    .hero-left-content .hero-title {
        font-size: 68px;
        line-height: 72px;
    }

    .hero-content .hero-right .hero-right-bottom {
        display: none;
    }

    .available-platforms-heading {
        font-size: 32px;
        line-height: 38px;
    }

    .special-note-section-content-header h2 {
        font-size: 40px;
        line-height: 44px;
    }

    .special-note-section-content p {
        font-size: 16px;
    }

    .special-note-section-content-header img {
        max-width: 60px;
    }

    .special-note-section-image-wrapper {
        width: clamp(160px, 80%, 240px);
    }

    .special-note-section-content-wrapper {
        padding-top: 140px;
    }

    .best-sellers-section-wrapper {
        margin-top: 60px;
    }
}

@media (max-width: 1050px) {
    .editorial-kitchen-recipes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 957px) {
    .shop-page-products-section-wrapper .white-ellipse {
        top: -3% !important;
    }

    .our-story-section-wrapper,
    .biggest-stage-section-wrapper {
        padding-top: 50px !important;
    }

    .our-story-section,
    .biggest-stage-section {
        flex-direction: column;
        align-items: start;
    }

    .our-story-mobile-title {
        display: flex !important;
    }

    .our-story-image-wrapper,
    .biggest-stage-image-wrapper {
        width: 100% !important;
    }

    .our-story-content,
    .biggest-stage-content {
        width: 100% !important;
        max-width: 100% !important;
    }

    .our-story-text h2 {
        display: none;
    }

    .our-story-text p {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .product-details-section {
        flex-direction: column;
    }

    .product-details-images-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }

    .product-details-sub-images-wrapper {
        height: 120px !important;
    }

    .product-details-content {
        width: 100% !important;
    }

    .biggest-stage-section-wrapper .white-ellipse {
        top: -100px !important;
    }
}

@media (max-width: 950px) {
    .available-platforms-content {
        flex-direction: column;
    }

    .available-platforms-stats {
        width: 100%;
        padding: var(--space-30) var(--space-20);
        flex-direction: row;
        max-width: 100%;
        justify-content: space-between;
        text-align: center;
    }

    .available-platforms-stats-item {
        padding-block: 0 !important;
        padding-inline: var(--space-16);
        width: 50%;
        align-items: center;
    }

    .available-platforms-stats-item:first-child {
        border-bottom: none;
        border-right: 1px solid var(--color-light-border);
    }

    .available-platforms-heading {
        border-inline: none;
        border-block: 1px solid var(--color-light-border);
        padding-inline: var(--space-20);
    }

    .available-platforms-image-wrapper {
        gap: var(--space-30);
        padding-inline: var(--space-10);
        padding-block: var(--space-20);
    }

    .features-section-wrapper {
        padding-block: 50px;
    }

    .features-section-content h1 {
        font-size: 48px;
    }

    .features-section-content img {
        max-width: 62px;
    }

    .special-note-section-content-wrapper {
        padding-top: 150px;
    }

    .special-note-section-content p {
        font-size: 12px;
    }

    .special-note-section-image-wrapper {
        width: clamp(80px, 80%, 220px);
    }

    .best-sellers-section {
        border-radius: 40px;
    }

    .best-sellers-items-wrapper {
        width: calc(100% - clamp(200px, 25%, 350px) - 40px);
    }

    .best-sellers-item-content h3 {
        font-size: 20px;
    }

    .best-sellers-item-content p {
        font-size: 12px;
        line-height: 18px;
    }

    .best-sellers-section-title {
        font-size: 32px;
        padding: 40px 24px;
    }

    .best-sellers-item {
        align-items: start;
    }

    .best-sellers-item img {
        width: clamp(150px, 30%, 305px);
    }
}

@media (max-width: 870px) {
    .hero-left-content .hero-title {
        font-size: 52px;
        line-height: 55px;
    }

    .primary-nav {
        padding: var(--space-14) var(--space-20);
    }

    .nav-links {
        display: none;
    }

    .mobile-nav-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .best-sellers-section {
        flex-direction: column;
    }

    .best-sellers-section-title {
        width: 100%;
        text-align: center;
        font-size: 38px;
    }

    .best-sellers-items-wrapper {
        width: 100%;
        border-inline: none;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .best-sellers-item-content h3 {
        font-size: 24px;
    }

    .best-sellers-item-content p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (min-width: 768px) {
    .special-note-section-content-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-bottom: 90px;
    }

    .white-ellipse {
        top: -7%;
        height: 170px;
    }

    .scroll-down-indicator {
        display: none;
    }

    .available-platforms-section-wrapper {
        padding-top: 10px;
    }

    .available-platforms-image-wrapper {
        gap: var(--space-20);
    }

    .special-note-section {
        margin-top: 150px;
        height: 700px;
        justify-content: center;
        align-items: start;
    }

    .special-note-section-content {
        width: 100%;
        position: relative;
        bottom: 0;
        height: fit-content;
        text-align: center;
    }

    .special-note-section-content-wrapper {
        background-image: url("../images/special-note-bg-landscape.svg");
        padding-bottom: 30px;
        padding-inline: 80px;
        align-items: flex-end;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 770px;
        width: 480px;
    }

    .special-note-section-content-header {
        justify-content: center;
    }

    .special-note-section-content-header h2 {
        font-size: 38px;
        line-height: 42px;
    }

    .special-note-section-content-header img {
        max-width: 65px;
    }

    .special-note-section-content p {
        font-size: 18px;
    }

    .special-note-section-image-wrapper {
        position: absolute;
        top: -27%;
        transform: rotate(6.5deg) translateX(-50%) scale(0.8);
        transform-origin: bottom left;
        min-width: 300px;
        left: 50%;
    }

    .special-note-section-image-wrapper img {
        width: 400px;
        height: auto;
    }

    .our-journey-portrait-image-wrapper {
        display: none;
    }

    .our-journey-landscape-image-wrapper {
        display: block;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    h1 {
        font-size: 35px !important;
        line-height: 41px !important;
    }

    p {
        font-size: 14px !important;
        line-height: 22px !important;
    }

    .secondary-hero-content .about-stats {
        gap: var(--space-10) !important;
        font-size: 14px !important;
        line-height: 22px !important;
    }

    .cook-with-us-section {
        padding-block: 50px;
    }

    .cook-with-us-section-videos-wrapper {
        gap: var(--space-30);
    }

    .social-with-us-section-wrapper {
        padding-block: 50px;
    }

    .footer-items {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-links ul {
        column-count: 1;
    }

    .footer-item:nth-child(-n + 3) {
        border-bottom: 2px solid #383943;
    }

    .footer-item {
        border-left: none;
    }

    .copyright {
        flex-direction: column-reverse;
        align-items: start;
        gap: var(--space-16);
    }

    .py-100 {
        padding-block: 50px !important;
    }

    .shop-page-hero-section,
    .about-us-page-hero-section {
        margin-bottom: 60px;
        padding-bottom: 90px;
    }

    .shop-page-products-section-wrapper .white-ellipse {
        top: -100px !important;
    }

    .products-grid-pagination-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .our-story-section-wrapper {
        padding-top: 0px !important;
    }

    .our-story-section-wrapper .white-ellipse {
        top: -100px !important;
    }

    .little-extra-header img {
        max-width: 80px;
    }

    .little-extra-item h3,
    .little-extra-conclusion,
    .partnership-little-extra-item h3,
    .partnership-little-extra-conclusion {
        font-size: 20px !important;
        line-height: 28px !important;
    }

    .our-promise-section {
        gap: 50px !important;
    }

    .our-promise-text p,
    .more-than-partnership-text p {
        font-size: 22px !important;
        line-height: 30px !important;
    }

    .biggest-stage-section-wrapper {
        padding-top: 0px !important;
    }

    .partnership-hero-section {
        padding-bottom: 160px;
    }

    .collectible-stickers-description p {
        font-size: 18px !important;
        line-height: 28px !important;
        text-align: center;
    }

    .collectible-stickers-items {
        flex-direction: column;
        width: 100%;
        gap: var(--space-30);
    }

    .collectible-sticker {
        width: 100%;
        max-width: 400px !important;
    }

    .collectible-sticker-1,
    .collectible-sticker-3 {
        transform: none;
    }

    .brand-partners-section {
        padding-block: 50px;
        padding-inline: 10px;
        gap: 50px;
    }

    .brand-partners-logos {
        gap: var(--space-20);
    }

    .editorial-kitchen-section-wrapper {
        padding-block: 50px;
    }

    .editorial-kitchen-section {
        gap: var(--space-32);
    }

    .recipe-videos-section {
        padding-block: 50px;
        gap: 50px;
    }

    .primary-editorial-kitchen-recipe {
        flex-direction: column;
        min-height: fit-content;
    }

    .primary-editorial-kitchen-recipe .editorial-recipe-image-wrapper,
    .primary-editorial-kitchen-recipe .editorial-recipe-info {
        width: 100%;
    }

    .primary-editorial-kitchen-recipe .editorial-recipe-image-wrapper img {
        border-bottom-left-radius: 0;
        max-height: 300px;
    }

    .primary-editorial-kitchen-recipe .editorial-recipe-info {
        padding: var(--space-24);
    }
}

@media (max-width: 749px) {
    .recipe-videos-wrapper {
        padding-inline: 50px;
    }

    .recipe-videos-wrapper .owl-nav button {
        width: 32px !important;
        height: 32px !important;
        background-size: 10px 10px !important;
    }
}

@media (max-width: 650px) {
    .best-sellers-item {
        flex-direction: column;
    }

    .best-sellers-item img {
        width: 100%;
    }

    .biggest-stage-content h2 {
        font-size: 38px !important;
        line-height: 44px !important;
    }

    .editorial-kitchen-recipes {
        grid-template-columns: repeat(1, 1fr);
    }

    .primary-editorial-kitchen-recipe {
        grid-column: span 1;
    }

    .editorial-kitchen-recipe {
        min-height: fit-content;
    }

    .primary-editorial-kitchen-recipe .editorial-recipe-info h3 {
        font-size: 26px;
        line-height: 32px;
    }
}

@media (max-width: 646px) {
    .product-card {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .hero-slider-item-content {
        width: clamp(200px, 60%, 280px);
        border-radius: 34px;
    }

    .hero-slider-image-overlay {
        filter: blur(50px);
        width: 60%;
        height: 180px;
        top: 40%;
    }

    .available-platforms-image-wrapper {
        gap: var(--space-10);
    }

    .features-section-content h1 {
        font-size: 38px;
    }

    .hero-slider-item-content {
        font-size: 20px;
    }

    .available-platforms-desc h1 {
        font-size: 32px !important;
        line-height: 38px !important;
    }
}

@media (max-width: 550px) {
    .hero-slider-item {
        height: clamp(380px, 80vw, 440px);
    }
}

@media (max-width: 480px) {
    .hero-slider-item {
        height: clamp(280px, 80vw, 380px);
    }
}

@media (max-width: 450px) {
    .hero-slider-item-content {
        width: clamp(100px, 60%, 220px);
    }

    .available-platforms-image-wrapper {
        gap: var(--space-2);
    }

    .features-section-content h1 {
        font-size: 28px;
    }
}