* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, sans-serif;
}

body, html {
    height: 100%;
    background-color: white;
}

body {
    max-width: 450px;
    margin: 0 auto;
}


body.loading {
    overflow: hidden;
} 

.SecondColor{
    color: #ffbd59;
}

/* Loader */

#page-loader {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Logo style */
#page-loader img {
    width: 200px;
    height: auto;
    animation: pulse 1.2s ease-in-out infinite;
}

/* Subtle animation */
@keyframes pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    50%  { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1);   opacity: 0.7; }
}


.loader-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.top-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    /* bottom: 230px; */
    z-index: 3;
}

.top-logo-style-1 {
    width: 120px;
    /* height: 120px; */
    /* border-radius: 50%; */
    object-fit: cover;
    /* object-fit: contain; */
    /* border: 2px solid #ffbd59; */
    /* padding: 5px; */
    /* background: #000; */
}

.top-logo-style-2 {
    width: 130px;
    height: 130px;
    /* border-radius: 50%; */
    /* object-fit: contain; */
    /* border: 1px solid #000; */
    /* padding: 5px; */
    /* background: #fff; */
}

/* ===== Cards Section ===== */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    padding: 16px;
}

.card {
    background-color: #fff !important;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid #eeeeee;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card h1 {
    font-size: 16px;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* Contact list */
.card ul {
    list-style: none;
    background-color: #fff !important;
    padding: 0;
}

.card ul li {
    background-color: #fff !important;
    font-size: 14px;
    padding: 6px 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ===== Contact Card ===== */

.contact-card {
    padding: 18px;
}

.contact-card h4 {
    font-size: 15px;
    margin-bottom: 12px;
}

/* Row */
.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    color: #000;
    position: relative;
}

.contact-row:not(:last-child) {
    border-bottom: 1px solid #eee;
}

/* Icon */
.contact-row .icon {
    width: 36px;
    height: 36px;
    background: #e5e5e5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* Text */
.contact-row .text {
    flex: 1;
}

.contact-row .label {
    font-size: 12.5px;
    text-transform: uppercase;
    opacity: .8;
    font-weight: 480;
}

.contact-row .value {
    display: block;
    font-size: 15px;
    font-weight: 550;
}

/* Arrow */
.contact-row .arrow {
    font-size: 14px;
    opacity: 0.3;
}

.contact-row a {
    font-size: 14px;
    background-color: #000;
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    margin: 0;
    text-decoration: none;
}

.float-right{
    float: right;
}

/* Hover */
.contact-row:hover {
    background: #fafafa;
    border-radius: 10px;
}


/* ===== Slider Begin  ===== */
.slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    scroll-behavior: smooth;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 auto;
    scroll-snap-align: center;
}

/* ===== Dots ===== */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.slider-dots button {
    width: 7px;
    height: 7px;
    padding: 3px;
    margin: 0px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: 0.25s;
}

.slider-dots button.active {
    background: #000;
    transform: scale(1.2);
}

/* ===== Slider END ===== */

/* ===== TEAM MEMBER CARD BEGIN ===== */

.team-card {
    width: 47%;
    background: #e9e9e9;
    border-radius: 120px 120px 16px 16px;
    padding: 8px 7px;
    text-align: center;
    margin: 2px auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.team-photo {
    width: 110px;
    height: 110px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    background: #ddd;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h2 {
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 550;
}

.team-card p {
    font-size: 11.5px;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.4;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.team-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ccc;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: #111;
}

.team-slider {
    overflow: hidden;
    margin: 0px 0;
}
.team-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* snap effect */
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}
.team-track::-webkit-scrollbar {
    display: none;
}
.team-card {
    scroll-snap-align: start;
    min-width: 47%; /* Important for slider */
}

/* ===== TEAM MEMBER CARD END ===== */

/* ===== Video CARD Begin ===== */
/* ===== Video Slider ===== */
.video-wrapper {
    overflow: hidden;
}

.video-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.video-track::-webkit-scrollbar {
    display: none;
}

/* ===== Video Card ===== */
.video-item {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    cursor: pointer;
}

/* Image wrapper */
.video-thumb {
    position: relative;
}

/* Image */
.video-thumb img {
    width: 100% !important;
    height: auto !important;
    border-radius: 10px;
    display: block;
}

/* Play icon ONLY on image */
.play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    background: rgba(0,0,0,.35);
    border-radius: 10px;
    pointer-events: none;
}

/* Caption */
.video-item p {
    margin-top: 6px;
    font-size: 13px;
    text-align: center;
}
/* ===== Tablet ===== */
@media (min-width: 768px) {
    .video-item {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

/* ===== Desktop ===== */
@media (min-width: 1024px) {
    .video-item {
        flex: 0 0 30%;
        max-width: 30%;
    }
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;                 /* always flex */
    align-items: center;
    justify-content: center;

    visibility: hidden;            /* hidden by default */
    opacity: 0;
    pointer-events: none;

    transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* ACTIVE STATE */
.video-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* Backdrop */
.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

/* Modal box */
.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;

    transform: scale(0.95) translateY(10px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Animate in */
.video-modal.active .video-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* iframe */
.video-modal-content iframe {
    width: 100%;
    height: 100%;
}

/* close button */
.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

.video-modal,
.video-modal-content {
    transition-timing-function: cubic-bezier(.4,0,.2,1);
}

@media (prefers-reduced-motion: reduce) {
    .video-modal,
    .video-modal-content {
        transition: none;
    }
}

/* ===== Video CARD End ===== */

/* =========================
   GALLERY CARD
========================= */

.gallery-card {
    padding: 16px;
}

/* =========================
   GALLERY WRAPPER
========================= */

.gallery-wrapper {
    overflow: hidden;
}

/* =========================
   GALLERY TRACK (SLIDER)
========================= */

.gallery-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

/* =========================
   GALLERY ITEM
========================= */

.gallery-item {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    text-decoration: none;
    color: inherit;
    background-color: transparent;
    border: 0px;
}

/* =========================
   GALLERY IMAGE (SAME HEIGHT)
========================= */

.gallery-item img {
    width: 100%;
    height: 350px;              /* SAME HEIGHT */
    object-fit: cover;          /* Crop nicely */
    border-radius: 6px;
    display: block;
    background: #eee;
    transition: transform 0.3s ease;
}

/* Hover effect (desktop) */
.gallery-item:hover img {
    transform: scale(1.04);
}

/* =========================
   GALLERY CAPTION
========================= */

.gallery-item span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    text-align: center;
    line-height: 1.4;
}

/* =========================
   RESPONSIVE HEIGHTS
========================= */

/* Tablet */
@media (min-width: 768px) {
    .gallery-item {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .gallery-item img {
        height: 220px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .gallery-item {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .gallery-item img {
        height: 260px;
    }
}

/* =========================
   GALLERY MODAL
========================= */

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition: opacity .3s ease, visibility .3s ease;
}

.gallery-modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* Backdrop */
.gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.85);
}

/* Modal box */
.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    touch-action: pan-y; /* allow vertical, block horizontal */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 1;
    animation: zoomIn .3s ease;
}

/* Image */
.gallery-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
}

/* Caption */
.gallery-modal-content p {
    color: #fff;
    margin-top: 12px;
    font-size: 14px;
    text-align: center;
    max-width: 90%;
}

/* Close */
.gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Navigation arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0 12px;
}

.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }

/* Hide arrows on mobile */
@media (max-width: 768px) {
    .gallery-nav {
        display: none;
    }
}

/* Animation */
@keyframes zoomIn {
    from { transform: scale(.95); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Hours card  */

/* =========================
   HOURS CARD
========================= */

.hours-card {
    overflow: hidden;
}

/* Header clickable */
.hours-header {
    cursor: pointer;
    user-select: none;
}

/* =========================
   CONTENT ANIMATION
========================= */

.hours-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.35s cubic-bezier(.4,0,.2,1),
        opacity 0.25s ease;
}

/* Expanded */
.hours-card.expanded .hours-content {
    max-height: 500px; /* must be >= content height */
    opacity: 1;
}

/* =========================
   CHEVRON
========================= */

.toggle-icon {
    transition: transform 0.3s ease;
}

.hours-card.expanded .toggle-icon {
    transform: rotate(180deg);
}

/* =========================
   LIST ITEMS (STAGGER)
========================= */

/* ===== Working Hours Card ===== */

.hours-card {
    margin-top: 16px;
}

/* Header clickable */
.hours-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
}

.hours-header h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0px;
}

/* Status */
.hours-status {
    font-size: 13px;
    color: #16a34a;
    white-space: nowrap;
}
.hours-status.closed {
    color: #dc2626;
}

/* Toggle icon */
.toggle-icon {
    transition: transform 0.3s ease;
}

/* Collapsed */
.hours-card.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

/* Content */
.hours-content {
    overflow: hidden;
    max-height: 500px;
    transition: max-height 0.35s ease;
    margin-top: 0px;
}

.hours-card.collapsed .hours-content {
    max-height: 0;
    margin-top: 0;
}

/* List */
.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.hours-list li.closed strong {
    color: #999;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list strong{
    font-weight: 500 !important;
}

/* Notes */
.hours-note {
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.75;
}


/* ===== Header right ===== */
.hours-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Status */
.hours-status {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.hours-status.closed {
    color: #f87171;
}

/* Light mode color */
@media (prefers-color-scheme: light) {
    .hours-status {
        color: #16a34a;
    }
}


/* ----- Animated status badge ----- */
.hours-status {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.hours-status.open {
    background: #16a34a22;
    color: #16a34a;
    animation: pulseStatus 2.4s infinite;
}

.hours-status.closed {
    background: #dc262622;
    color: #dc2626;
}

.hours-status.soon {
    background: #facc1522;
    color: #ca8a04;
}

/* Pulse animation */
@keyframes pulseStatus {
    0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.4); }
    70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
    100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

/* ----- Smooth collapse animation ----- */
.hours-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: 
        max-height 0.45s ease,
        opacity 0.45s ease,
        margin-top 0.3s ease;
}

.hours-card.expanded .hours-content {
    max-height: 600px;
    opacity: 1;
    margin-top: 12px;
}
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;

    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.25s ease;
}

.hours-card.expanded .hours-list li {
    opacity: 1;
    transform: translateY(0);
}

/* stagger effect */
.hours-card.expanded .hours-list li:nth-child(1) { transition-delay: .05s; }
.hours-card.expanded .hours-list li:nth-child(2) { transition-delay: .1s; }
.hours-card.expanded .hours-list li:nth-child(3) { transition-delay: .15s; }
.hours-card.expanded .hours-list li:nth-child(4) { transition-delay: .2s; }
.hours-card.expanded .hours-list li:nth-child(5) { transition-delay: .25s; }
.hours-card.expanded .hours-list li:nth-child(6) { transition-delay: .30s; }
.hours-card.expanded .hours-list li:nth-child(7) { transition-delay: .35s; }

/* =========================
   STATUS COLORS
========================= */

.hours-list li.closed strong {
    color: #c00;
}

.hours-status.open {
    color: #2e7d32;
}

.hours-status.closed {
    color: #c62828;
}


/*  LInks Begin  */

/* =========================
   ACCORDION BASE
========================= */

.accordion {
    overflow: hidden;
}

/* Header */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

/* Chevron */
.toggle-icon {
    transition: transform 0.3s ease;
}

.accordion.expanded .toggle-icon {
    transform: rotate(180deg);
}

/* =========================
   ACCORDION CONTENT
========================= */

.accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.35s cubic-bezier(.4,0,.2,1),
        opacity 0.25s ease;
}

.accordion.expanded .accordion-content {
    max-height: 500px;
    opacity: 1;
}

/* =========================
   LINKS LIST
========================= */
/* =========================
   LINKS CARD
========================= */

.links-card {
    padding: 16px;
    overflow: hidden;
}

/* =========================
   ACCORDION HEADER
========================= */

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

/* Chevron */
.toggle-icon {
    transition: transform 0.3s ease;
}

.links-card.expanded .toggle-icon {
    transform: rotate(180deg);
}

/* =========================
   ACCORDION CONTENT
========================= */

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.35s cubic-bezier(.4,0,.2,1),
        opacity 0.25s ease;
}

/* Expanded state */
.links-card.expanded .accordion-content {
    max-height: 500px; /* must be >= content height */
    opacity: 1;
}

/* =========================
   LINKS LIST
========================= */

.links-list {
    list-style: none;
    padding: 12px 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

/* =========================
   LINK ITEM (BASE)
========================= */

.links-item a {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;

    background: #f7f7f7;
    transition:
        background 0.25s ease,
        transform 0.2s ease;
}

/* Icon image */
.links-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Label */
.links-item span {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

/* External link icon */
.links-item i {
    font-size: 14px;
    opacity: 0.6;
}

/* Hover / active */
.links-item a:hover {
    background: #eee;
    transform: translateY(-2px);
}

.links-item a:active {
    transform: scale(0.98);
}

/* =========================
   STAGGERED ANIMATION
   (same as HOURS)
========================= */

/* Initial state */
.links-list li {
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.25s ease;
}

/* Visible state */
.links-card.expanded .links-list li {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.links-card.expanded .links-list li:nth-child(1) { transition-delay: .05s; }
.links-card.expanded .links-list li:nth-child(2) { transition-delay: .1s; }
.links-card.expanded .links-list li:nth-child(3) { transition-delay: .15s; }
.links-card.expanded .links-list li:nth-child(4) { transition-delay: .2s; }
.links-card.expanded .links-list li:nth-child(5) { transition-delay: .25s; }

/*  LInks End  */

/*  Credit */

.credit-card{
    padding: 20px 20px 30px 20px;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.credit-card p{
    padding: 2px;
    font-weight: 500;
}

.credit-card a{
    background-color: #ffbd59;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    text-transform: capitalize;
    /* margin-top: 8px; */
    padding: 9px 50px;
    border-radius: 5px;
    color: black;
    animation: pulseCard 1s infinite;
}
/* Bottom logo */
.powered {
    /* display: flex;
    justify-content: center; */
    margin-bottom: 0px;
}

.poweredImg {
    width: 65% !important;
    height: auto !important;
    opacity: 1;
}

/* Pulse animation */
@keyframes pulseCard {
    0% { box-shadow: 0 0 0 0 rgba(255, 188, 87,0.8); }
    70% { box-shadow: 0 0 0 8px rgba(255, 188, 87,0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 188, 87,0); }
}


/* Store  */

/* ===== Products Slider ===== */

.products-wrapper {
    overflow: hidden;
    margin-top: 12px;
}

/* =============== PRODUCT CARD ================ */
.product-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    width: 220px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* =============== IMAGE SLIDER ================ */
.product-img-slider {
    position: relative;
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
}

.product-img-track {
    display: flex;
    height: 100%;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.product-img-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    scroll-snap-align: center;
    pointer-events: none;
}

.product-img-track::-webkit-scrollbar {
    display: none;
}

.products-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.products-track::-webkit-scrollbar {
    display: none;
}

.product-item {
    position: relative;
    min-width: 220px;
    background: #f8f8f8;
    border-radius: 16px;
    padding: 12px;
    scroll-snap-align: start;
    text-align: center;
}

.product-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 12px;
}

/* =============== BADGE ================ */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.8);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* =============== BODY CONTENT ================ */
.product-body {
    padding: 18px;
}

.product-title {
    font-size: 15px;
    font-weight: 650;
    margin-bottom: 4px;
}

.product-tagline {
    font-size: 13px;
    font-weight: 550;
    opacity: .7;
    margin-bottom: 6px;
}

.product-desc {
    font-size: 12px;
    text-align: justify;
    color: #666;
    line-height: 1.4;
    margin-bottom: 14px;
}

/* Badge */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
}

.badge.promo { background: #e63946; }
.badge.new   { background: #2a9d8f; }

/* Text */
.product-item h5 {
    font-size: 14px;
    margin: 10px 0 4px;
}

.product-item .price {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* WhatsApp Button */
.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #000000;
    color: #fff;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.wa-btn:hover {
    transform: scale(0.97);
    opacity: 0.9;
}

/* Dots */
.products-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.products-dots span {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
}

.products-dots .active {
    background: #000;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price .new {
    font-size: 18px;
    font-weight: bold;
    color: #111;
}

.product-price .old {
    font-size: 14px;
    opacity: 0.5;
    margin-left: 6px;
    text-decoration: line-through;
}

.product-buy {
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.products-slider {
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
}
.products-track {
    display: flex;
    gap: 16px;
}
.products-slider::-webkit-scrollbar { display: none; }

.product-card { flex-shrink: 0; }

.product-price {
    display: flex;
    flex-direction: column; /* vertical */
    align-items: flex-start; /* ou center selon ton style */
    gap: 2px;
}

.product-price .new {
    font-size: 15px;
    font-weight: 700;
    color: green;
}

.product-price .old {
    font-size: 12px;
    opacity: .6;
    text-decoration: line-through;
    margin-top: -2px;
    margin-left: 2px;
}

.discount {
    font-size: 12px;
    font-weight: 600;
    background-color: #ffbd59;
    color: black;
}

.nouveau {
    font-size: 12px;
    font-weight: 600;
    background-color: green;
    color: white;
}

/* Contact */

/* WhatsApp row highlight */

/* .contact-row.whatsapp .icon {
    background: #25D366;
    color: #fff;
} */

/* Address actions */
.address-actions {
    margin-top: 6px;
    justify-content: flex-end;
    display: flex;
    gap: 10px;
}

.address-actions a,
.address-actions button {
    font-size: 13px;
    background: none;
    border: none;
    color: black;
    font-weight: 500;
    cursor: pointer;
    padding: 7px 13px;
    background-color: #ffbd59;
    border-radius: 5px;
    margin-top: 5px;
}

.primary-star {
    margin-left: 6px;
    font-size: 19px;
    color: #ffbd59 !important;
    position: relative;
    top: 1px;
    left: 4px;
    vertical-align: middle;
}

/* Map wrapper animation */
.map-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 
        max-height 0.4s cubic-bezier(.4,0,.2,1),
        opacity 0.3s ease;
}

.map-wrapper.open {
    max-height: 300px;
    opacity: 1;
}

.map-wrapper iframe {
    width: 100%;
    height: 250px;
    border: 1px solid #666;
    border-radius: 6px;
    margin-top: 8px;
}


/* Profile */

.profile {
    position: relative;
    height: 90vh;
/* url('../../assets/images/bg.webp') */
    background-image: var(--client-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: flex-end;
    color: #fff;
}


/* Black gradient overlay */
.profile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 20%,
        rgba(0,0,0,0.9) 65%,
        rgba(0,0,0,1) 100%
    );
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 24px;
    width: 100%;
    bottom: 40px;
}

h1 {
    font-size: 31px;
    font-weight: 700;
    line-height: 1.2;
}

.subtitle {
    font-size: 18px;
    opacity: 1;
    font-weight: 500;
    margin-top: 4px;
}

.company {
    font-size: 15px;
    font-weight: 500;
    opacity: 1;
    margin-top: 4px;
}

.description {
    font-size: 14px;
    margin-top: 12px;
    opacity: 1;
    max-width: 500px;
}

.buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
}

.buttons .btn {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    animation: btnFadeUp 0.45s ease forwards;
}

.buttons .btn:nth-child(1) { animation-delay: .05s; }
.buttons .btn:nth-child(2) { animation-delay: .1s; }
.buttons .btn:nth-child(3) { animation-delay: .15s; }
.buttons .btn:nth-child(4) { animation-delay: .2s; }
.buttons .btn:nth-child(5) { animation-delay: .25s; }

@keyframes btnFadeUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn:active {
    transform: scale(0.97);
}

.btn:hover {
    background: rgba(255,255,255,1);
    color: #000;
}

.btn i {
    font-size: 16px;
}

/* Primary phone button */
.btn.primary-btn {
    background: #ffbd59;
    color: #000;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(244,196,48,.4);
}


.btn.primary-btn i {
    color: #000;
}

/* Hover stays consistent */
.btn.primary-btn:hover {
    background: #ffbd59;
    color: #000;
}

/* ===== Bio Card ===== */

.bio-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.bio-card {
    opacity: 0;
    transform: translateY(10px);
}

.bio-card.bio-animate {
    animation: bioFadeIn 0.5s ease forwards;
}

@keyframes bioFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bio content collapse */
.bio-content {
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(.4,0,.2,1);
}

/* Toggle button */
.bio-toggle {
    margin-top: 13px;   
    float: right;
    font-size: 13px;
    background: none;
    border: none;
    color: black;
    font-weight: 500;
    cursor: pointer;
    padding: 7px 13px;
    background-color: #ffbd59;
    text-decoration: none;
    border-radius: 5px;
}

.bio-toggle:hover {
    text-decoration: none;
}

/* ===== Floating Save Contact ===== */

.floating-save-contact {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 999;
    width: calc(100% - 32px);
    max-width: 420px;
}

.floating-save-contact button {
    width: 156px;
    float: right;
    padding: 13px 15px;
    border-radius: 12px;
    border: none;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.floating-save-contact button:hover {
    transform: scale(0.98);
    opacity: 0.95;
}

/* Social Card */

.social-icons {
    display: grid;
    grid-template-columns: repeat(6, 42px); /* 6 per row */
    gap: 14px;
    justify-content: flex-start;
    margin-top: 12px;
}

@media (max-width: 420px) {
    .social-icons {
        grid-template-columns: repeat(4, 42px);
    }
}

@media (max-width: 320px) {
    .social-icons {
        grid-template-columns: repeat(3, 42px);
    }
}


.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 18px;
    text-decoration: none;

    opacity: 0;
    transform: translateY(8px) scale(0.95);
    animation: socialFadeUp 0.45s ease forwards;

    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    transition: transform .2s ease, box-shadow .2s ease;
}

@keyframes socialFadeUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.social-icon.instagram {
    background: #E1306C !important;
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.whatsapp {
    background: #25D366;
}

.social-icon.linkedin {
    background: #0A66C2;
}

/* Existing */
.social-icon.instagram { background: #E1306C; }
.social-icon.facebook  { background: #1877F2; }
.social-icon.whatsapp  { background: #25D366; }
.social-icon.linkedin  { background: #0A66C2; }
.social-icon.tiktok  { background: #000000; }

.social-icon.snapchat {
    background: #FFFC00;
    color: #000;
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.twitter,
.social-icon.x {
    background: #000000;
}

.social-icon.telegram {
    background: #229ED9;
}

.social-icon.github {
    background: #24292e;
}

.social-icon.discord {
    background: #5865F2;
}


.social-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 26px rgba(0,0,0,.35);
}


/* ===== Share Button ===== */
.share-btn {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 12px;

    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 16px;
    cursor: pointer;
    z-index: 1000;

    transition: transform 0.2s ease, background 0.2s ease;
}

.share-btn:hover {
    background: rgba(0,0,0,0.75);
    transform: scale(1.05);
}

.share-btn:active {
    transform: scale(0.95);
}

/* ===== SHARE MODAL ===== */

.share-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999999 !important;
    padding: 16px;
}


.share-modal.active {
    display: flex;
}

.share-content {
    width: 100%;
    max-width: 380px;
    background: #fff;
    height: auto;
    max-height: 85vh;
    border-radius: 12px;
    padding: 40px 10px;
    text-align: center;
    position: relative;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Close Icon */
.share-close {
    position: absolute;
    top: 3px;
    right: 18px;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0.6;
}
.share-close:hover { opacity: 1; }

/* Avatar */
.share-avatar-style-1 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
    padding: 5px;
    background-color: black;
    border: 1px solid #999;
}

.share-avatar-style-2 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 5px;
    padding: 5px;
    background-color: white;
    border: 1px solid #999;
}

/* Titles */
.share-content h2 {
    font-size: 20px;
    font-weight: 700;
}
.share-subtitle {
    font-size: 13px;
    opacity: 0.8;
}
.share-subtitle-bold {
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
}

/* QR */
.share-qr img {
    width: 150px;
    margin: 10px 0 10px;
    /* background: #ffbd59; */
    /* padding: 3px; */
    /* border-radius: 4px; */
}

/* Wallet text */
.share-text {
    font-size: 14px;
    margin-bottom: 12px;
}

/* Wallet buttons */
.wallet-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.wallet-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 14px;
    border-radius: 6px;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
}
.wallet-btn img {
    width: 28px;
}
.wallet-btn.google { background: #000; }
.wallet-btn.apple { background: #000; }

/* Action buttons */
.share-actions-major {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 10px 35px;
    flex-wrap: nowrap;   /* 🔥 force la même ligne */
}

.share-major-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap; /* empêche le retour à la ligne */
}

.share-major-btn {
    padding: 9px 20px;
    font-size: 14px;
    border-radius: 6px;
    background: #eeeeee;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000 !important;
    font-weight: 550 !important;
    justify-content: center;
    cursor: pointer;
}

.share-actions-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.share-social {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #eeeeee;
    color: #111;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.share-social:hover {
    background: #ddd;
    transform: scale(1.07);
}


.share-action i { font-size: 18px; }

/* SLIDE-UP ANIMATION */
.share-content {
    animation: slideUp 0.35s ease;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* BUTTON COLORS */
/* .share-whatsapp { border-color: #25D366; color: #25D366; }
.share-whatsapp:hover { background: #25D366; color: #fff; }

.share-sms { border-color: #0ea5e9; color: #0ea5e9; }
.share-sms:hover { background: #0ea5e9; color: #fff; }

.share-email { border-color: #dc2626; color: #dc2626; }
.share-email:hover { background: #dc2626; color: #fff; }

.share-facebook { border-color: #2563eb; color: #2563eb; }
.share-facebook:hover { background: #2563eb; color: #fff; } */


.product-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.product-dots .dot {
    width: 6px;
    height: 6px;
    background: rgba(120, 120, 120, 0.6);
    border-radius: 50%;
}

.product-dots .dot.active {
    background: #000;
}

.copy-toast {
    position: fixed;
    top: 30px;                 /* 🔝 en haut */
    left: 50%;                 /* ⬅️ centre */
    transform: translateX(-50%) translateY(-10px);
    
    background: #111;
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;

    opacity: 0;
    pointer-events: none;

    z-index: 99999 !important;            /* 🔥 très au-dessus */

    transition: opacity 0.25s ease, transform 0.25s ease;
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


/*  Food Menu */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    /* min-height: auto; */
    /* max-height: 500px; */
    /* overflow-y: scroll; */
}

/* Card */
.menu-item {
    background: #fff;
    border-radius: 6%;
    padding: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

/* Image */
.menu-img {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Content */
.menu-content {
    flex: 1;
}

.menu-title {
    font-size: 15px;
    font-weight: 600;
}

.menu-desc {
    font-size: 12px;
    opacity: .65;
    margin: 4px 0 6px;
}

/* Footer */
.menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0px;
}

.price {
    font-size: 15px;
    font-weight: 600;
    color: #f39c12;
}

.whatsapp-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #000;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 15px;
}

.menu-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 14px;
    scroll-behavior: smooth; /* 🔥 important */
}

.menu-tabs::-webkit-scrollbar {
    display: none;
}

.tab {
    padding: 4px 13px;
    border-radius: 8px;
    background: #f1f3f5;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: .25s;
}

.tab.active {
    background: #000;
    color: #fff;
}

/* Animation slide */
.menu-list {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-list.slide-out {
    transform: translateX(-20px);
    opacity: 0;
}

.menu-list.slide-in {
    transform: translateX(0);
    opacity: 1;
}


.menu-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 14px;
    scroll-behavior: smooth; /* 🔥 important */
}

.menu-tabs::-webkit-scrollbar {
    display: none;
}

.menu-tabs-wrapper {
    position: relative;
}

/* Ombres */
.menu-tabs-wrapper::before,
.menu-tabs-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 28px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s;
    z-index: 2;
}

/* Ombre gauche */
.menu-tabs-wrapper::before {
    left: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.15),
        transparent
    );
}

/* Ombre droite */
.menu-tabs-wrapper::after {
    right: 0;
    background: linear-gradient(
        to left,
        rgba(0,0,0,.15),
        transparent
    );
}

/* Activer les ombres */
.menu-tabs-wrapper.shadow-left::before {
    opacity: 1;
}

.menu-tabs-wrapper.shadow-right::after {
    opacity: 1;
}


/* reviews-card */

.reviews-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
}

.reviews-card h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.reviews-summary {
    text-align: center;
    margin: 12px 0;
}

.reviews-summary .rating {
    font-size: 36px;
    font-weight: bold;
}

.reviews-summary .stars {
    color: #f5b301;
    font-size: 18px;
}

.reviews-summary .count {
    color: #777;
    font-size: 14px;
}

.review-item {
    border-top: 1px solid #eee;
    padding: 12px 0;
}

.review-item strong {
    display: block;
    font-size: 14px;
}

.review-item p {
    font-size: 14px;
    color: #555;
}

.review-btn {
    display: block;
    margin-top: 16px;
    text-align: center;
    padding: 12px;
    background: #000;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
}


.reviews-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.reviews-card.show {
    opacity: 1;
    transform: translateY(0);
}


.review-item {
    opacity: 0;
    animation: fadeUp 0.4s ease forwards;
}

.review-item:nth-child(1) { animation-delay: .1s; }
.review-item:nth-child(2) { animation-delay: .2s; }
.review-item:nth-child(3) { animation-delay: .3s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

