
.numerology-hero {
    position: relative;
    min-height: 670px;
    display: flex;
    align-items: center;
    overflow: hidden;

    /* Fallback if video doesn't load */
    background: #08051a;
}


/* =========================================
   BACKGROUND VIDEO
========================================= */

.hero-video-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;

    pointer-events: none;
}


/* =========================================
   VIDEO DARK / PURPLE OVERLAY
========================================= */

.hero-video-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

   /*  background:
        linear-gradient(
            90deg,
            rgba(6, 3, 25, 0.85) 0%,
            rgba(10, 5, 35, 0.68) 42%,
            rgba(15, 7, 45, 0.58) 72%,
            rgba(7, 3, 24, 0.85) 100%
        ); */

    pointer-events: none;
}


/* Extra cinematic glow */

/* .numerology-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    z-index: 2;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(154, 92, 255, 0.08),
            transparent 38%
        ),
        radial-gradient(
            circle at 20% 30%,
            rgba(94, 64, 255, 0.05),
            transparent 32%
        );
}
 */


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-video-bg{
    width: 100%;
}

#hero {
  width: 100%;

  /* background: #fff;
  background:url('../images/hero_bg.png') ; */
}

#hero .container-fluid {
  padding-top: 10px;
  position: relative;
}



#hero h2 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {

    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}



/* =========================================
   ORDER PROCESS
========================================= */

.order-process-section {
    background: transparent;
}

.process-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e85d04;
    margin-bottom: 10px;
}

.process-title {
    font-size: 38px;
    font-weight: 800;
    color: #1f1f1f;
    margin-bottom: 10px;
}

.process-title span {
    color: #e85d04;
}

.process-subtitle {
    color: #fff;
    font-size: 16px;
}


/* Main process */

.order-process {
    max-width: 100%;
    margin: auto;
}


/* Individual item */

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    position: relative;
}


/* Connecting line */

/* .process-item:not(:last-child)::after {
    content: "";
    position: absolute;

    left: 27px;
    top: 60px;

    width: 2px;
    height: calc(100% + 18px);

    background: #e8e8e8;

    z-index: 0;
} */


/* Number */

.process-number {
    width: 54px;
    height: 54px;

    min-width: 54px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1f1f1f;
    color: #fff;

    font-size: 14px;
    font-weight: 800;

    position: relative;
    z-index: 2;
}


/* Icon */

.process-icon {
    width: 54px;
    height: 54px;

    min-width: 54px;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    color: #e85d04;

    font-size: 21px;

  /*   box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.07); */

    position: relative;
    z-index: 2;
}



/* Accordion */

.process-item .accordion {
    margin: 0;
}

.process-item .accordion-item {
    border: 0;
    border-radius: 16px !important;
    overflow: hidden;
    background: #ffffff;
    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.06);
}


/* Accordion button */

.process-item .accordion-button {
    min-height: 76px;

    padding: 15px 22px;

    background: #fff;

    color: #222;

    box-shadow: none !important;

    display: flex;
    align-items: center;
}


/* Remove bootstrap arrow */

.process-item .accordion-button::after {
    width: 10px;
    height: 10px;

    background-size: 10px;

    margin-left: auto;
}


/* Text */

.process-item .accordion-button span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.process-item .accordion-button strong {
    font-size: 17px;
    font-weight: 700;
}

.process-item .accordion-button small {
    font-size: 13px;
    font-weight: 400;
    color: #888;
}


/* Open state */

.process-item .accordion-button:not(.collapsed) {
    color: #e85d04;
    background: #ffffff;
}


/* Body */

.process-item .accordion-body {
    padding: 0 22px 20px;

    color: #777;

    font-size: 14px;
    line-height: 1.7;
}


/* Active number */

.process-item.active .process-number,
.process-item .accordion-button:not(.collapsed) ~ * {
    /* optional active styling */
}

.process-item.active .process-number {
    background: #e85d04;
}


/* Hover */

.process-item:hover .process-number {
    background: #e85d04;
    transition: 0.3s ease;
}

.process-item:hover .process-icon {
    transform: translateY(-2px);
    transition: 0.3s ease;
}


/* Mobile */

@media (max-width: 767px) {

    .process-title {
        font-size: 29px;
    }

    .process-subtitle {
        font-size: 14px;
    }

    .process-item {
        gap: 10px;
    }

    .process-number {
        width: 42px;
        height: 42px;
        min-width: 42px;

        font-size: 12px;
    }

    .process-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;

        font-size: 17px;

        border-radius: 11px;
    }

    .process-item:not(:last-child)::after {
        left: 20px;
        top: 48px;
    }

    .process-item .accordion-button {
        min-height: 65px;
        padding: 12px 15px;
    }

    .process-item .accordion-button strong {
        font-size: 14px;
    }

    .process-item .accordion-button small {
        font-size: 11px;
    }

    .process-item .accordion-body {
        padding: 0 15px 16px;
        font-size: 13px;
    }
}




/* ==========================================
   MODERN FOOD PRODUCT CARD
========================================== */

.food-product-card {
    position: relative;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 20px;

    overflow: hidden;

    height: 100%;

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Hover */

.food-product-card:hover {
    transform: translateY(-5px);

    border-color: transparent;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.10);
}


/* ==========================================
   PRODUCT INFORMATION
========================================== */

.food-product-info {
    padding: 7px 18px 10px;
    position: absolute;
    bottom: 85px;
    z-index: 99;
    background: #ffffff9e;
    width: 100%;
    height: 80px;
}


/* Product name */

.food-product-name {
    margin: 0 0 2px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: #000;
}

.food-product-name a {
    color: #000;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
    font-size: 16px;
}

.food-product-name a:hover {
    color: #e85d04;
}


/* ==========================================
   RATING
========================================== */

.food-rating-row {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 8px;
}

.food-rating {
    display: flex;

    gap: 2px;
}

.food-rating i {
    color: #f5a623;

    font-size: 12px;
}

.rating-number {
    color: #777;

    font-size: 12px;

    font-weight: 500;
}


/* ==========================================
   PRICE
========================================== */

.food-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.food-current-price {
    font-size: 19px;
    font-weight: 800;
    color: #000;
}

.food-old-price {
    font-size: 13px;

    color: #333;

    text-decoration: line-through;
}

.food-discount {
    display: inline-flex;

    align-items: center;

    padding: 3px 7px;

    border-radius: 5px;

    background: #fff1e9;

    color: #e85d04;

    font-size: 10px;

    font-weight: 700;
}


/* ==========================================
   IMAGE
========================================== */

.food-product-image {
    position: relative;

    width: 100%;

    aspect-ratio: 1 / 0.82;

    background: #f8f8f8;

    overflow: hidden;
}


/*
    IMPORTANT:
    contain = full image visible
    No food/product cropping
*/

.food-product-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    padding: 8px;

    transition:
        transform 0.5s ease;
}


/* Image hover */

.food-product-card:hover
.food-product-image img {
    transform: scale(1.04);
}


/* ==========================================
   SALE BADGE
========================================== */

.food-sale-badge {
    position: absolute;

    left: 12px;

    top: 12px;

    padding: 6px 10px;

    border-radius: 7px;

    background: #e85d04;

    color: #fff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.3px;

    z-index: 3;
}


/* ==========================================
   WISHLIST
========================================== */

.food-wishlist {
    position: absolute;

    right: 12px;

    top: 12px;

    width: 38px;

    height: 38px;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,0.95);

    color: #444;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 16px;

    box-shadow:
        0 4px 15px rgba(0,0,0,0.10);

    cursor: pointer;

    z-index: 3;

    transition: all 0.25s ease;
}

.don_wislist,
.food-wishlist:hover {
    background: #e85d04;

    color: #fff;

    transform: scale(1.08);
}


/* ==========================================
   LISTING INFO
========================================== */

.food-listing-info {
    position: absolute;

    left: 10px;

    bottom: 10px;

    z-index: 3;
}


/* ==========================================
   FOOTER
========================================== */

.food-product-footer {
    padding: 12px 18px 18px;

    margin-top: auto;
}


/* ==========================================
   ADD TO CART
========================================== */

.food-cart-form {
    width: 100%;
}

.food-add-cart {
    width: 100%;

    height: 46px;

    border: 0;

    border-radius: 11px;

    background: #e85d04;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.food-add-cart:hover {
    background: #c94d00;

    color: #fff;

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(232, 93, 4, 0.25);
}

.food-add-cart i {
    font-size: 15px;
}


/* ==========================================
   CONTACT PRICE
========================================== */

.contact-price-btn {
    background: #222;
}

.contact-price-btn:hover {
    background: #000;
}


/* ==========================================
   CART MESSAGE
========================================== */

.add_massage_box {
    font-size: 12px;

    text-align: center;

    color: #e85d04;

    padding: 0 15px 12px;
}


/* ==========================================
   DESCRIPTION
========================================== */

.food-product-description {
    padding: 0 18px 18px;

    color: #777;

    font-size: 13px;

    line-height: 1.6;
}



@media (max-width: 767px) {

    .food-product-info {
    padding: 7px 18px 10px;
    position: absolute;
    bottom: 66px;
    z-index: 99;
    background: #ffffffc4;
    width: 100%;
    height: 63px;
}

.food-product-name a{
    font-size: 12px;
}

    .food-product-card {
        border-radius: 15px;
    }

    .food-product-info {
        padding: 7px 13px 8px;
    }



    .food-product-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
     font-size: 14px;
        margin-bottom: 6px;
}


    .food-current-price {
        font-size: 16px;
    }

    .food-old-price {
        font-size: 11px;
    }

    .food-discount {
        font-size: 9px;
        padding: 2px 5px;
    }

    .food-product-image {
        aspect-ratio: 1 / 0.85;
    }

    .food-product-image img {
        padding: 5px;
    }

    .food-wishlist {
        width: 32px;
        height: 32px;

        right: 8px;
        top: 8px;

        font-size: 13px;
    }

    .food-sale-badge {
        left: 8px;
        top: 8px;

        padding: 4px 7px;

        font-size: 9px;
    }

    .food-product-footer {
        padding: 8px 13px 13px;
    }

    .food-add-cart {
        height: 40px;

        border-radius: 9px;

        font-size: 12px;
    }




    .cart_table td.product-thumbnail {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    vertical-align: top;
}

.cart_table td.product-thumbnail > a {
    display: block;
    margin-bottom: 0px;
}

.cart_table td.product-thumbnail > a img {
    display: block;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.cart_table td.product-thumbnail .quantity {
    display: flex;
    justify-content: flex-end;
    margin-top: 0px;
}


}




.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 28px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;

    color: #000;
    font-weight: 600;
    letter-spacing: 0.3px;

    cursor: pointer;
    overflow: hidden;

    /* Animated gradient */
    background: linear-gradient(
        120deg,
        #8f5f00,
        #d4a72c,
        #f5d77a,
        #c28a16,
        #8f5f00
    );

    background-size: 300% 300%;

    animation: heroBtnGradient 5s ease infinite;

    box-shadow:
        0 8px 25px rgba(201, 151, 38, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Gradient movement */

@keyframes heroBtnGradient {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}




/* Premium Form Fields */
 .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #343434;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
    text-align: left;
    display: block;
}

 .form-control,
 .form-select {
    min-height: 52px;
    padding: 12px 16px;
    font-size: 14px;
    color: #292929;
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.035);
    transition: all 0.25s ease;
}

/* Placeholder */
 .form-control::placeholder {
    color: #a0a0a0;
}

/* Focus Effect */
 .form-control:focus,
 .form-select:focus {
    border-color: #b28a45;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(178, 138, 69, 0.12);
    outline: none;
}

/* Select Arrow */
 .form-select {
    cursor: pointer;
}

/* Continue Button */
 .btn-primary {
    min-height: 48px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #ffffff;
    background: #1f1f1f;
    border: 1px solid #1f1f1f;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
}

 .btn-primary:hover {
    background: #b28a45;
    border-color: #b28a45;
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(178, 138, 69, 0.25);
}


.table>:not(:last-child)>:last-child>* {
    border-bottom-color: rgb(226 226 227);
}


.quantity .form-control,
.quantity .form-select {
    min-height: 36px;
}