@font-face {
    font-family: 'Fenix';
    src: url('../fonts/fenix.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hanken Grotesk';
    src: url('../fonts/hankengrotesk.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #04033D;
    --accent-color: #C89B3C;
    --font-family: 'Hanken Grotesk', sans-serif;
    --heading-font: 'Fenix', serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Prevent horizontal scroll on body */
}

/* Global Overflow Prevention */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
div {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.header-container {
    position: relative;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top-bar {
    background-color: var(--primary-color);
    color: white;
    height: 45px;
    display: flex;
    align-items: center;
    clip-path: polygon(140px 0, 100% 0, 100% 100%, 190px 100%);
    margin-left: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .header-container {
        display: flex;
        flex-direction: column;
    }

    .top-bar {
        clip-path: none;
        order: -1;
        height: auto;
        padding: 5px 0;
    }

    .top-bar-content {
        padding-right: 0;
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-bar a {
        margin: 2px 10px;
        font-size: 13px;
    }
}

.top-bar-content {
    width: 100%;
    padding-right: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--accent-color);
}

.top-bar a i {
    font-size: 20px;
    margin-right: 10px;
}

.social-icons {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.social-icons a {
    margin-left: 15px;
    font-size: 22px;
}

.logo-area {
    z-index: 10;
}

.logo-area img {
    height: 110px;
    width: auto;
    display: block;
    margin-top: 5px;
}

@media (min-width: 992px) {
    .logo-area {
        position: absolute;
        top: 0;
        left: 20px;
    }
}

@media (max-width: 991px) {
    .logo-area img {
        height: 60px;
        margin-top: 0;
    }
}

.main-navbar {
    background-color: white;
    padding: 20px 0;
    min-height: 70px;
}

@media (min-width: 992px) {

    .main-navbar,
    .main-navbar .container-fluid {
        position: static !important;
    }
}

.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: #000 !important;
    font-weight: 700;
    font-size: 16px;
    padding: 5px 0 !important;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #04033D;
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cart-area i {
    font-size: 24px;
    color: #04033D;
}

@media (max-width: 991px) {
    .main-navbar {
        padding: 10px 0;
    }

    .navbar-collapse {
        order: 4;
        width: 100%;
        margin-top: 15px;
    }

    .navbar-nav {
        text-align: center;
    }
}

@media (max-width: 991px) {
    .top-bar {
        clip-path: none;
        height: auto;
        padding: 10px 0;
    }

    .top-bar-content {
        padding-right: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .top-bar a {
        margin: 5px 0;
    }

    .logo-area {
        position: relative;
        left: 0;
        height: auto;
    }

    .logo-area img {
        height: 60px;
    }

    .main-navbar {
        padding: 10px 15px;
    }

    .navbar-collapse {
        order: 10;
        width: 100%;
    }
}

.hero-slider-section {
    position: relative;
    width: 100%;
}

.hero-slide {
    height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 50px;
    max-width: 690px;
    gap: 20px;
}

.hero-content h2 {
    font-family: var(--heading-font);
    font-size: 65px;
    font-weight: 400;
    /* text-transform: uppercase; */
    line-height: 0.8;
    margin-bottom: 5px;
}

.hero-content h2 span {
    color: var(--accent-color);
    font-size: 30px !important;

}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.8);
}

.btn-hero {
    background-color: var(--accent-color);
    color: white !important;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 35px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #a67e2a;
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-hero:hover::before {
    left: 0;
}

.featured-card {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    z-index: 3;
}

.featured-img-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
}

.featured-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-tag {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.featured-title {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
}

.featured-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 25px;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.card-price {
    font-size: 20px;
    font-weight: 700;
}

.explore-details {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.explore-details:hover {
    color: white;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    transition: all 0.3s;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: #A68B57;
}

.swiper-button-prev-custom {
    left: 40px;
}

.swiper-button-next-custom {
    right: 40px;
}

.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: white !important;
    opacity: 0.3;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 1199px) {
    .featured-card {
        right: 5%;
        width: 320px;
    }
}

@media (max-width: 991px) {
    .featured-card {
        display: none;
    }

    .hero-slide {
        height: 500px;
    }

    .hero-content {
        padding: 0 15px;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-content h2 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        display: none;
    }
}

.about-section {
    background-color: #123443;
    color: white;
    overflow: hidden;
}

.about-content-col {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content {
    max-width: 600px;
    text-align: left;
}

.about-label {
    font-family: var(--heading-font);
    color: var(--accent-color);
    letter-spacing: 6px;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 400;
}

.about-title {
    font-family: var(--heading-font);
    font-size: 2.3rem;
    margin-bottom: 40px;
    line-height: 1.2;
    text-transform: uppercase;
    color: white;
    font-weight: 400;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    font-weight: 300;
}

.about-page-text a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

.about-page-text a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.read-story-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 10px;
    font-size: 13px;
    display: inline-block;
    transition: all 0.3s ease;
}

.read-story-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.read-story-link:hover {
    color: white;
}

.read-story-link:hover::after {
    width: 100%;
    background-color: white;
}

.about-img-col img {
    height: 100%;
    object-fit: cover;
    min-height: 700px;
    display: block;
}

@media (max-width: 991px) {
    .about-content-col {
        padding: 40px 20px;
    }

    .about-label {
        font-size: 1.8rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-img-col img {
        min-height: 500px;
    }
}

.showcase-section {
    padding: 30px 0;
    background-color: #fff;
}

.expertise-label {
    color: var(--accent-color);
    letter-spacing: 4px;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.expertise-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    color: #1a1a1a;
    font-weight: 500;
}

.expertise-underline {
    width: 130px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}


.liqueur-underline {
    width: 130px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}


.showcase-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.showcase-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.showcase-card:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%); */
    display: flex;
    align-items: flex-end;
    padding: 30px;
    border-radius: 12px;
}

.showcase-info {
    width: 100%;
}

.showcase-category {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.showcase-name {
    font-family: var(--heading-font);
    color: white;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 991px) {
    .showcase-section {
        padding: 40px 0;
    }

    .expertise-title {
        font-size: 2.2rem;
    }

    .showcase-name {
        font-size: 1.25rem;
    }
}

.collection-section {
    background-color: #fff;
    padding: 60px 0;
}

@media (max-width: 991px) {
    .collection-section {
        padding: 40px 0;
    }
}

.collection-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: center;
}

.collection-tabs {
    border: none;
    gap: 30px;
}

.collection-tabs .nav-link {
    background: none;
    border: none;
    color: #666 !important;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 0 0 5px 0 !important;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
}

.collection-tabs .nav-link:hover,
.collection-tabs .nav-link.active {
    color: #000 !important;
}

.collection-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.collection-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.collection-img-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    margin: 15px;
    width: calc(100% - 30px);
}

.collection-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-name {
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
    color: #1a1a1a;
}

.item-price {
    font-weight: 700;
    font-size: 1.25rem;
    /* font-size: 18px; */
    display: flex;
    align-items: center;
    /* color: #1a1a1a; */
    color: #bfa373;
}

.old-price-strike {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 8px;
    font-weight: 400;
}

.new-price-gold {
    color: var(--accent-color);
}

.item-desc {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.btn-add-cart {
    background-color: var(--accent-color);
    color: white !important;
    border: none;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-add-cart::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #a67e2a;
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-add-cart:hover::before {
    left: 0;
}

.collection-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.collection-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.9);
}

.product-name {
    text-decoration: none;
}

.product-name h4:hover {
    color: var(--accent-color);
}

@media (max-width: 991px) {
    .collection-title {
        font-size: 30px;
    }

    .collection-tabs {
        gap: 15px;
    }

    .collection-tabs .nav-link {
        font-size: 11px;
    }
}

.testimonial-section {
    position: relative;
    padding: 30px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.testimonial-label {
    color: var(--accent-color);
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--body-font);
}

.testimonial-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.stars i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.author-name {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.testimonial-pagination {
    bottom: -40px !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 8px !important;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .testimonial-title {
        font-size: 2.2rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }
}

.footer-section {
    background-color: #000;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.page-banner {
    height: 500px;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-title {
    font-family: var(--heading-font);
    font-size: 50px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.banner-title span {
    color: var(--accent-color);
}

.banner-subtitle {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.liqueurs-banner {
    background-image: url('../images/liqueurs-banner.jpg');
}

.food-banner {
    background-image: url('../images/foods-banner.jpg');
}

.contact-us-banner {
    background-image: url('../images/contact_banner.png');
}

.about-banner {
    background-image: url('../images/about_banner.png');
}

.cart-banner {
    background-image: url('../images/cart_banner.jpg');
}

.reservations-banner {
    background-image: url('../images/reservation-banner.png');
}

.events-banner {
    background-image: url('../images/event_banner.jpg.jpeg');
}

@media (max-width: 991px) {
    .page-banner {
        height: 350px;
    }

    .banner-title {
        font-size: 50px;
    }

    .banner-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .page-banner {
        height: 300px;
    }

    .banner-title {
        font-size: 36px;
    }
}

.category-main-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 400;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.category-card:hover {
    /* transform: translateY(-10px); */
}

.category-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 2;
}

.glass-box {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    color: white;
}

.category-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.category-title:hover {
    color: var(--accent-color);
}


.category-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.4;
}

.explore-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.explore-link:hover {
    color: white;
}

.liqueur-title {
    color: var(--accent-color);
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .category-main-title {
        font-size: 30px;
    }

    .category-title {
        font-size: 1.5rem;
    }
}

.filter-bar {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px 25px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
}

.sort-label {
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

.sort-select {
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    padding: 8px 35px 8px 15px !important;
    background-color: #fff !important;
    color: #333 !important;
    box-shadow: none !important;
    min-width: 160px;
}

.sort-select:focus {
    border-color: var(--accent-color) !important;
}

.search-input-wrapper {
    position: relative;
    width: 320px;
}

.search-input {
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    padding: 10px 45px 10px 18px !important;
    background-color: #fff !important;
    box-shadow: none !important;
}

.search-input:focus {
    border-color: var(--accent-color) !important;
}

.search-icon-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
    z-index: 5;
}

@media (max-width: 767px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch !important;
        gap: 20px;
    }

    .search-input-wrapper {
        width: 100%;
    }
}

.food-item-horizontal {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    min-height: 160px;
    border: 1px solid #f0f0f0;
    position: relative;
    display: flex;
    align-items: stretch;
}

.food-item-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.food-img-wrapper {
    flex: 0 0 150px;
    height: 170px;
    overflow: hidden;
}

.food-img-wrapper img {
    width: 150px;
    height: 100%;
    object-fit: cover;
}

.food-info-flex {
    padding: 20px 25px 20px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.header-info {
    flex: 1;
    margin-right: 30px;
}

.food-name {
    font-size: 18px;
    font-weight: 700;
    color: #2b3445;
    margin-bottom: 8px;
}

.food-desc {
    font-size: 14px;
    color: #7d879c;
    line-height: 1.6;
    margin-bottom: 12px;
}

.add-ons-text {
    font-size: 12px;
    color: #a1a1a1;
}

.pricing-area {
    text-align: right;
    min-width: 150px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.price-row {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #4b566b;
}

.price-label {
    margin-right: 8px;
    text-transform: uppercase;
    font-size: 12px;
    color: #666;
}

.old-price-strike {
    text-decoration: line-through;
    color: #ff4d4d;
    margin: 0 8px;
}

.new-price-gold {
    color: #bfa373;
}

/* Custom adjustment for smaller screens to handle flex row issues */
@media (max-width: 768px) {
    .food-info-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .header-info {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .pricing-area {
        text-align: left !important;
        min-width: auto;
        white-space: normal;
    }
}


.add-item-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    background: #bfa373;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(191, 163, 115, 0.3);
    transition: all 0.3s ease;
}

.add-item-btn:hover {
    background: #2b3445;
    transform: scale(1.1);
}

.add-item-btn i {
    font-size: 24px;
}

@media (max-width: 575px) {
    .food-item-horizontal {
        flex-direction: column;
        min-height: auto;
    }

    .food-img-wrapper {
        width: 100%;
        flex: 0 0 200px;
        height: 200px;
    }

    .food-img-wrapper img {
        width: 100%;
    }

    .food-info-flex {
        padding: 20px;
    }

    .pricing-area {
        text-align: left;
        margin-top: 5px;
        border-top: 1px solid #f0f0f0;
        padding-top: 15px;
    }

    .add-item-btn {
        bottom: 15px;
        right: 15px;
    }
}



.contact-banner {
    height: 420px;
    background: url('../images/contact_banner.png') center center no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.contact-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(4, 3, 61, 0.82) 0%, rgba(4, 3, 61, 0.55) 100%);
    z-index: 1;
}

.contact-banner .container {
    position: relative;
    z-index: 2;
}

.contact-banner-label {
    display: inline-block;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.contact-banner .banner-title {
    font-family: var(--heading-font);
    font-size: clamp(42px, 8vw, 80px);
    color: #fff;
    letter-spacing: 6px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 0;
}

.contact-banner-sub {
    font-family: var(--font-family);
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
}

.contact-quick-bar {
    background: var(--primary-color);
    padding: 16px 0;
}

.quick-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.quick-bar-item:last-child {
    border-right: none;
}

.quick-bar-item i {
    color: var(--accent-color);
    font-size: 16px;
}

.contact-info-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(4, 3, 61, 0.07);
    padding: 40px;
    height: 100%;
    border-top: 4px solid var(--accent-color);
}

.contact-info-heading {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-info-subtext {
    font-family: var(--font-family);
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-item h6 {
    font-family: var(--font-family);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item p {
    margin-bottom: 0;
    color: #555;
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.7;
}

.contact-info-item p a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-item p a:hover {
    color: var(--accent-color);
}

.contact-social h6 {
    font-family: var(--font-family);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(4, 3, 61, 0.07);
    padding: 40px;
    border-top: 4px solid var(--accent-color);
}

.contact-form-heading {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 8px;
}

.contact-form-subtext {
    font-family: var(--font-family);
    color: #777;
    font-size: 14px;
    margin-bottom: 28px;
}

.contact-field-group {
    margin-bottom: 0;
}

.contact-label {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 7px;
}

.contact-input {
    width: 100%;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14px;
    font-family: var(--font-family);
    color: #333;
    background: #fafafa;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
}

.contact-input:focus {
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.12);
}

.contact-textarea {
    resize: vertical;
    min-height: 130px;
}

.submit-btn-premium {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px 40px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.submit-btn-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.submit-btn-premium span,
.submit-btn-premium i {
    position: relative;
    z-index: 1;
}

.submit-btn-premium:hover {
    color: var(--primary-color);
    border-color: var(--accent-color);
    box-shadow: 0 14px 32px rgba(200, 155, 60, 0.35);
}

.submit-btn-premium:hover::after {
    transform: scaleX(1);
}

.contact-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(4, 3, 61, 0.1);
    border: 3px solid var(--accent-color);
}

@media (max-width: 991px) {
    .contact-info-card {
        margin-bottom: 30px;
    }

    .quick-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        justify-content: flex-start;
        padding-left: 20px;
    }

    .quick-bar-item:last-child {
        border-bottom: none;
    }
}

.recognition-section {
    padding: 0px 0 40px;
    background-color: #fff;
    text-align: center;
}

.recognition-header {
    margin-bottom: 30px;
}

.recognition-title {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 400;
}

.recognition-underline {
    width: 70px;
    height: 3px;
    background-color: #C89B3C;
    margin: 0 auto;
}

.guru-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.guru-badge {
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    width: 190px;
    position: relative;
}

.guru-badge:hover {
    transform: scale(1.12);
    z-index: 10;
}

.guru-badge img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.12));
}

@media (max-width: 991px) {
    .recognition-section {
        padding: 40px 0 20px;
    }

    .recognition-title {
        font-size: 2.2rem;
    }

    .guru-badge {
        width: 140px;
    }

    .guru-row {
        gap: 10px;
        margin-top: 30px;
    }
}

.awards-section {
    padding: 100px 0;
    background-color: #fff;
}

@media (max-width: 991px) {
    .awards-section {
        padding: 40px 0;
    }
}

.awards-header {
    text-align: center;
    margin-bottom: 60px;
}

.awards-icon {
    font-size: 32px;
    color: #bfa373;
    margin-bottom: 20px;
}

.awards-title {
    font-family: var(--heading-font);
    font-size: 3.2rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.awards-underline {
    width: 70px;
    height: 3px;
    background-color: #bfa373;
    margin: 0 auto;
}

.award-card {
    background-color: #123443;
    border-radius: 12px;
    padding: 20px 25px;
    color: white;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.award-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.award-year {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.award-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.badge-gold,
.badge-best {
    background-color: #bfa373;
    color: #fff;
}

.badge-silver {
    background-color: #fff;
    color: #123443;
}

.badge-bronze {
    background-color: #8a6d3b;
    color: #fff;
}

.award-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.25;
}

.award-org {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .awards-title {
        font-size: 2.22rem;
    }

    .contact-banner {
        height: 320px;
    }
}

.product-details-section {
    padding: 100px 0 50px 0;
    background-color: #fff;
}

.product-gallery {
    display: flex;
    flex-direction: column;
}

.main-img-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #5a190b;
}

.main-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-gallery {
    display: flex;
    gap: 15px;
}

.thumbnail-item {
    width: 100px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item.active {
    border-color: var(--accent-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.product-title {
    font-family: var(--heading-font);
    font-size: 52px;
    color: #1a1a1a;
    margin-bottom: 0px;
}

.product-sku {
    font-size: 11px;
    color: #666;
    letter-spacing: 1px;
}

.product-price-wrapper {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.current-price {
    font-size: 1.5rem;
    font-family: var(--body-font);
    color: #1a1a1a;
}

.old-price {
    font-size: 1.1rem;
    color: #ff4d4d;
    text-decoration: line-through;
    margin-left: 10px;
    opacity: 0.8;
}

.product-divider {
    width: 100%;
    height: 1px;
    background-color: #ebebeb;
    margin: 30px 0;
}

.product-actions {
    max-width: 400px;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    background-color: #f8f8f8;
    border-radius: 4px;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.qty-btn {
    border: none;
    background: transparent;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    padding: 5px 15px;
}

.qty-input {
    width: 40px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.btn-add-primary {
    background-color: #c89b3c;
    color: #fff;
    border: 2px solid #c89b3c;
    padding: 12px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-add-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #a67e2a;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-add-primary:hover::before {
    left: 0;
}

.btn-add-primary:hover {
    color: #fff;
}

.btn-add-secondary {
    background-color: transparent;
    color: #c89b3c;
    border: 1px solid #c89b3c;
    padding: 12px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-add-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #c89b3c;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-add-secondary:hover::before {
    left: 0;
}

.btn-add-secondary:hover {
    color: #fff;
}

.story-title {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.story-text {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
}

.ingredients-list {
    list-style: none;
    padding-left: 0;
}

.ingredients-list li {
    position: relative;
    padding-left: 15px;
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
    font-weight: 500;
}

.ingredients-list li::before {
    content: "•";
    color: #c89b3c;
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 18px;
}

@media (max-width: 991px) {
    .product-details-section {
        padding: 40px 0;
    }

    .product-title {
        font-size: 2.8rem;
    }
}

.recommendations-section {
    padding: 50px 0 0px;
    background-color: #fff;
}

@media (max-width: 991px) {
    .recommendations-section {
        padding: 30px 0 0px;
    }
}

.recommendations-title {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 0;
}

.explore-all-link {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.explore-all-link i {
    margin-left: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.explore-all-link:hover {
    color: var(--accent-color);
}

.explore-all-link:hover i {
    transform: translateX(5px);
}

.recommendations-swiper {
    padding-bottom: 60px;
}

.recommendations-swiper .swiper-wrapper {
    align-items: stretch;
}

.recommendations-swiper .swiper-slide {
    height: auto;
}

.recommendations-button-next,
.recommendations-button-prev {
    color: var(--accent-color);
    background-color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    top: 40%;
    transition: all 0.3s ease;
}

.recommendations-button-next:hover,
.recommendations-button-prev:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.recommendations-button-next::after,
.recommendations-button-prev::after {
    font-size: 18px;
    font-weight: 900;
}

.recommendations-button-prev {
    left: 10px;
}

.recommendations-button-next {
    right: 10px;
}

.recommendations-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d1d1;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.recommendations-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    width: 25px;
    border-radius: 10px;
}

/* --- Shopping Cart Sidebar --- */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    /* Hidden by default */
    width: 450px;
    height: 100vh;
    background-color: #f8f8f8;
    z-index: 9999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f8f8;
}

.cart-sidebar-header h3 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    margin: 0;
    color: #1a1a1a;
}

.cart-sidebar-header .close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #ff4d4d;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cart-sidebar-header .close-btn:hover {
    transform: rotate(90deg);
}

.cart-items-wrapper {
    flex: 1;
    overflow-y: auto;
    padding: 0 30px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

.cart-item-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #5a190b;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    margin: 0 0 5px;
    color: #1a1a1a;
}

.cart-item-price {
    font-weight: 600;
    color: #1a1a1a;
}

.cart-item-size {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cart-qty-selector {
    display: inline-flex;
    align-items: center;
    background-color: #f1ebd5;
    border-radius: 4px;
    padding: 2px 8px;
}

.cart-qty-selector .qty-btn {
    border: none;
    background: transparent;
    font-size: 14px;
    color: #1a1a1a;
    padding: 0 10px;
}

.cart-qty-selector .qty-input {
    width: 30px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.remove-btn {
    background: none;
    border: none;
    color: #ff4d4d;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0;
}

.remove-btn i {
    font-size: 12px;
    margin-right: 4px;
}

.cart-sidebar-footer {
    padding: 30px;
    background: #f8f8f8;
    border-top: 1px solid var(--accent-color);
}

.cart-summary {
    font-family: var(--font-family);
}

.cart-summary span:first-child {
    font-weight: 600;
    font-size: 13px;
    color: #666;
    letter-spacing: 1.5px;
}

.cart-summary .subtotal-price {
    font-family: var(--font-family);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-checkout {
    background-color: #c49a3c;
    color: white !important;
    width: 100%;
    padding: 15px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(196, 154, 60, 0.3);
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    background-color: #bfa373;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 154, 60, 0.4);
}

.continue-shopping {
    display: block;
    text-align: center;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.continue-shopping:hover {
    color: var(--accent-color);
}

@media (max-width: 480px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Fix for Category Section stacked padding on mobile */
@media (max-width: 991px) {
    .category-section.py-5 {
        padding: 40px 0 0 !important;
    }

    .category-section .container.py-5 {
        padding: 0 15px 40px !important;
    }

    /* Global fix to prevent double padding in sections */
    section .container.py-5,
    section .container.py-4 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }
}

/* --- Cart Page Section --- */
.cart-page-section {
    background-color: #fff;
    font-family: var(--font-family);
}

.continue-shopping-link {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.continue-shopping-link:hover {
    color: var(--accent-color);
}

.cart-item-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.cart-item-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.cart-item-img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-title {
    font-family: var(--heading-font);
    font-size: 24px;
    color: #1a1a1a;
}

.cart-item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 450px;
}

.cart-item-size {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.cart-item-price {
    font-size: 20px;
    color: #1a1a1a;
}

.cart-qty-selector {
    background: #f8f8f8;
    border-radius: 6px;
    padding: 2px 5px;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    padding: 0 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.qty-btn:hover {
    color: var(--accent-color);
}

.qty-input {
    width: 30px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.remove-item-link {
    color: #ff4d4d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.remove-item-link:hover {
    opacity: 0.7;
    color: #ff4d4d;
}

.btn-update-cart {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-update-cart::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #a67e2a;
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-update-cart:hover::before {
    left: 0;
}

.btn-update-cart:hover {
    color: white !important;
    transform: translateY(-2px);
}

/* Order Summary */
.order-summary-card {
    background: #fff;
    border-radius: 20px;
    /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05); */
    border: none;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-family: var(--heading-font);
    font-size: 32px;
    color: var(--primary-color);
}

.summary-label {
    font-size: 15px;
    color: #777;
    font-weight: 500;
}

.summary-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: #ebebeb;
}

.total-label {
    font-size: 14px;
    letter-spacing: 2px;
    color: #1a1a1a;
    font-weight: 800;
}

.total-price {
    font-size: 28px;
    color: #1a1a1a;
}

.btn-checkout-cart {
    background-color: var(--accent-color);
    color: white !important;
    padding: 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(200, 155, 60, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-checkout-cart::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #a67e2a;
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-checkout-cart:hover::before {
    left: 0;
}

.btn-checkout-cart:hover {
    color: white !important;
    /* transform: translateY(-3px); */
    box-shadow: 0 12px 35px rgba(200, 155, 60, 0.3);
}

.trust-icons {
    color: #ccc;
    font-size: 20px;
}

.trust-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #aaa;
}

.trust-subtext {
    font-size: 10px;
    font-weight: 500;
    color: #ccc;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .order-summary-card {
        margin-top: 40px;
        position: static;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        padding: 30px !important;
    }

    .cart-item-img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 767px) {
    .cart-item-card {
        flex-direction: column;
        text-align: center;
        padding: 20px !important;
    }

    .cart-item-img {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }

    .cart-item-info {
        margin-left: 0 !important;
        width: 100%;
    }

    .cart-item-info .d-flex.justify-content-between {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px;
    }

    .cart-item-desc {
        max-width: 100%;
        margin-bottom: 15px !important;
    }

    .cart-item-price-wrapper {
        text-align: center !important;
        margin-bottom: 15px;
    }

    .cart-qty-selector {
        margin: 0 auto 15px !important;
        width: fit-content;
    }

    .remove-item-link {
        display: block;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .cart-item-img {
        height: 160px;
    }

    .cart-item-title {
        font-size: 20px;
    }

    .summary-title {
        font-size: 26px;
    }

    .total-price {
        font-size: 24px;
    }

    .btn-checkout-cart {
        padding: 15px;
        font-size: 13px;
    }
}

/* --- Checkout Page Mockup Redesign --- */
.checkout-page {
    background-color: #fff;
}

.mockup-title {
    font-family: var(--heading-font);
    font-size: 32px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 400;
}

.mockup-label {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.checkout-page .form-control.mockup-input {
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    box-shadow: none;
}

.checkout-page .form-control.mockup-input::placeholder {
    color: #999;
    font-weight: 400;
}

.checkout-page .form-control.mockup-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 1px var(--accent-color);
}

.mockup-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: all 0.2s ease-in-out;
}

.mockup-checkbox:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.mockup-checkbox:checked::after {
    content: '\2714';
    font-size: 14px;
    color: white;
    display: block;
}

.mockup-checkbox-label {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
}

.mockup-submit-btn {
    background-color: #C19942;
    color: white !important;
    border: none;
    padding: 10px 35px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mockup-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #a88539;
    transition: left 0.5s ease;
    z-index: -1;
}

.mockup-submit-btn:hover::before {
    left: 0;
}

.mockup-submit-btn:hover {
    color: white !important;
    transform: translateY(-2px);
}

/* Order Summary */
.mockup-cart-item {
    padding-bottom: 10px;
}

.mockup-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.mockup-item-title {
    font-family: var(--heading-font);
    font-size: 18px;
    color: #111;
    font-weight: 400;
}

.mockup-item-price {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-top: 4px;
}

.mockup-qty-selector {
    background-color: #f5f5f5;
    border-radius: 4px;
    width: 80px;
    height: 32px;
    overflow: hidden;
}

.qty-btn-inline {
    background: transparent;
    border: none;
    width: 26px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    padding: 0;
}

.qty-btn-inline:hover {
    background-color: #e0e0e0;
    color: #333;
}

.qty-input-inline {
    background: transparent;
    border: none;
    width: 28px;
    height: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    pointer-events: none;
    padding: 0;
}

.mockup-remove-link {
    font-size: 10px;
    font-weight: 700;
    color: #ff4d4d;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.mockup-remove-link:hover {
    color: #d90000;
}

.mockup-summary-separator {
    border-top: 1px solid #e0e0e0;
}

.mockup-subtotal-label {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    letter-spacing: 1px;
}

.mockup-subtotal-value {
    font-size: 17px;
    font-weight: 400;
    color: #111;
}

.mockup-place-order-btn {
    background-color: #C19942;
    color: white !important;
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    max-width: 280px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(193, 153, 66, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mockup-place-order-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #a88539;
    transition: left 0.5s ease;
    z-index: -1;
}

.mockup-place-order-btn:hover::before {
    left: 0;
}

.mockup-place-order-btn:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 153, 66, 0.3);
}

@media (max-width: 991px) {
    .checkout-page .col-lg-5 {
        margin-top: 60px;
    }
}


/* Welcome Popup Modal */
.welcome-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.welcome-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.welcome-modal {
    background-color: #0d212c;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    position: relative;
    padding: 60px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    border: 1px solid rgba(200, 155, 60, 0.2);
}

.welcome-modal-overlay.active .welcome-modal {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: var(--accent-color);
}

.modal-top-label {
    color: var(--accent-color);
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.modal-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.modal-underline {
    width: 80px;
    height: 1px;
    background: rgba(200, 155, 60, 0.4);
    margin: 25px auto;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.modal-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.choice-card {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.choice-card:hover {
    /* transform: translateY(-5px); */
}

.choice-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.choice-card:hover .choice-card-bg {
    transform: scale(1.1);
}

.choice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 33, 44, 0.3), rgb(54 69 77 / 41%));
}

.choice-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
}

.choice-emoji {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.choice-label {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.choice-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.btn-modal-choice {
    background-color: var(--accent-color);
    text-transform: uppercase;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--accent-color);
}

.btn-modal-choice:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.modal-skip-btn {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 8px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.modal-skip-btn:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 767px) {
    .welcome-modal {
        padding: 40px 20px 30px;
        width: 95%;
        max-height: 95vh;
        overflow-y: auto;
    }

    .modal-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .modal-top-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .modal-underline {
        margin: 15px auto;
    }

    .modal-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .modal-choice-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .choice-card {
        height: 180px;
    }

    .choice-emoji {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .choice-label {
        font-size: 1.5rem;
    }

    .choice-desc {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .btn-modal-choice {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .modal-skip-btn {
        padding: 6px 20px;
        font-size: 0.75rem;
    }

    .modal-close-btn {
        top: 15px;
        right: 15px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .modal-title {
        font-size: 1.5rem;
    }

    .choice-card {
        height: 160px;
    }
}