/* top-header */
.top-header {
    background: #0a2a53;
    color: #fcfbfb;

}

.top-header h6 {
    font-size: 19px;
    font-weight: 700;

}

.logo-img {
    width: 100px;
    height: auto;
}


@media (min-width: 325px) and (max-width: 486px) {

    .logo-col {
        justify-content: center !important;
    }

    .logo-img {
        width: 150px;
        height: auto;
    }

}

.blink-text {
    color: #f7f7f7ff;
    font-weight: bold;
    animation: blink 2.5s infinite;
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.top-header img {
    height: 30px;
    padding-left: 4px;
    padding-right: 4px;
}

.top-header .icons {
    text-align: end;
    padding-top: 2px;

}

/* search bar */

.gradient-search {
    position: relative;
    width: 100%;
}


.gradient-input {
    width: 100%;
    padding: 12px 55px 12px 20px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    background: linear-gradient(90deg, #f0f5ff, #d9e4ff);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gradient-input:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
    background: linear-gradient(90deg, #e0f0ff, #b0d4ff);
}


.gradient-btn {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #ff5722, #ff8a50);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gradient-btn:hover {
    background: linear-gradient(45deg, #e64a19, #ff7043);
}

.gradient-btn i {
    font-size: 16px;
}

/* middle */
.middle {
    background: #F2E0C9;
}

.middle a {
    color: white;
    text-decoration: none;
}

.middle img {
    /* width: 100%;
  height: 103px;
  filter: brightness(0);
  padding: 0px 0px 10px 15px; */
    width: 100%;
    height: 90px;
}

@media (max-width: 768px) {
    .middle img {
        width: 100%;
        height: 66px;
        padding-left: 0;
    }

    .login-cart,
    .search-col {
        padding-bottom: 3px;
    }
}



.middle .search {
    padding-top: 16px;
}

/* navbar */
.navbar .nav-item {
    padding-left: 14px;
    padding-right: 14px;
}

.navbar-nav .nav-link {
    color: white !important;
    position: relative;
    font-weight: 500;
    padding: 8px 15px;
    transition: 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #ffeb3b;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
}

/* carousel */
.home-slider img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.home-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.home-slider .owl-nav .owl-prev {
    left: 10px;
}

.home-slider .owl-nav .owl-next {
    right: 10px;
}

.home-slider .owl-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.owl-carousel .owl-item img {
    display: block;

}

/* explore */

.explore-section .product-card {

    transition: transform 0.3s, box-shadow 0.4s, background 0.5s;
    cursor: pointer;

}


.explore-section a {
    text-decoration: none;

}

.explore-section .interactive-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.3);

}

.explore-section .product-img-circle {
    /* width: 161px;
  height: 149px; */
    width: 212px;
    height: 224px;
    margin: auto;
    /* border-radius: 50%; */
    overflow: hidden;
    transition: transform 0.5s, box-shadow 0.4s;
}

.explore-section .interactive-card:hover .product-img-circle {
    transform: scale(1.1);

}

.explore-section .product-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.explore-section .interactive-card:hover .product-img-circle img {
    transform: scale(1.1) rotate(2deg);
}

.explore-section .product-card h5 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.explore-section .interactive-card:hover h5 {
    color: #004d99;
}

.explore-section .product-card p {
    font-size: 1.2rem;
}

.explore-section .btn-outline-primary {
    transition: all 0.3s;
}

.explore-section .btn-outline-primary:hover {
    background-color: #0066cc;
    color: #eeeff1;
    border-color: #0066cc;
}

@media (max-width: 768px) {
    .explore-section .product-img-circle {
        width: 140px;
        height: 140px;
    }

    .explore-section .product-card h5 {
        font-size: 1.3rem;
    }

    .explore-section .product-card p {
        font-size: 1rem;
    }
}

.explore-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #eef3ff 100%);
}


.section-title-alt {
    font-size: 2.2rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    color: #141618;
    padding-left: 12px;
}


.explore-card-alt {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

.explore-card-alt:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}


.explore-img-circle-alt {
    width: 200px;
    height: 200px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.explore-card-alt:hover .explore-img-circle-alt {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 111, 60, 0.35);
}

.explore-img-circle-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.explore-card-alt .btn {
    border-radius: 30px;
    padding: 6px 16px;
    font-weight: 500;
    background: #0d6efd;
    border: none;
    transition: all 0.3s ease;
}

.explore-card-alt .btn:hover {
    background: #ff6f3c;
    color: #fff;
}

/*  */
.new-collection {
    /* background-color: #e3e3e3; */
    /* background: #4794d352; */
}

.new-collection h2 {
    padding-bottom: 12px;
}

.new-collection .btn a {
    text-decoration: none;
    color: black;
}

.new-collection .btn a:hover {

    color: rgb(248, 245, 245);
}

/* our product */

.section-heading {
    font-size: 39px;

    font-weight: 700;
    color: #222;
}

.product-card-alt {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card-alt:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.product-img-alt {
    position: relative;
    /* padding: 20px; */
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.product-img-alt img {
    /* width: 100%;
  height: 200px; */
    width: 100%;

    height: 190px;

    /* object-fit: contain; */
    transition: transform 0.3s ease;
}

.product-card-alt:hover img {
    transform: scale(1.05);
}

/* Wishlist icon */
.wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    border-radius: 50%;
    padding: 6px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist:hover {
    background: #dc3545;
    color: #fff;
}

.product-body {
    padding: 15px;
    text-align: center;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-price {
    font-size: 1.1rem;
    color: #dc3545;
    font-weight: 700;
}

.product-price .old-price {
    font-size: 0.9rem;
    color: #888;
    text-decoration: line-through;
    margin-left: 5px;
}

.rating {
    color: #ffc107;
    font-size: 0.9rem;
}


/* about-us */
.about-heading {
    color: #c0392b;
    font-size: 42px;
    position: relative;
}

.about-heading i {
    color: #e67e22;
}

.about-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 60px;
    height: 3px;
    background: #e67e22;
    border-radius: 2px;
}

.text {
    /* font-size: 1.05rem; */
    font-size: 20px;
    color: #555;
    line-height: 1.7;
}

.btn-about {
    background: #e67e22;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.3);
}


.about-image-wrapper {
    position: relative;
    display: inline-block;
}

.about-image-wrapper img {
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}


.circle-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.about-us .row {
    min-height: 100%;
}

.about-img {
    max-height: 100%;
    object-fit: contain;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* footer */
.site-footer {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #e9e6df;

}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffc107;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.footer-help {
    padding-left: 10px;
}

.footer-help ul {
    display: inline-block;
    text-align: left;
}

.consent-buttons .btn {
    min-width: 90px;
    font-size: 14px;
    border-radius: 6px;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin: 0 6px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #444;
    color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ffc107;
    color: #000;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    z-index: 1000;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    padding: 14px;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* contact */
.contact-area {
    background: linear-gradient(135deg, #f3f8ff, #e6ecff, #fdfdff);
}

/* Contact box */
.contact-box {
    max-width: 650px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
}

.input-group-text {
    background: #f0f3f9;
    border: none;
    font-size: 1.1rem;
    color: #4e89ff;
}

.form-control {
    border: 2px solid #eee;
    border-radius: 0 12px 12px 0;
    padding: 12px 15px;
}

.form-control:focus {
    border-color: #4e89ff;
    box-shadow: none;
}

.btn-submit {
    background: linear-gradient(135deg, #4e89ff, #6c63ff);
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 30px;
    color: #fff;
    transition: 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #6c63ff, #4e89ff);
    transform: translateY(-2px);
}

.text-gradient {
    background: linear-gradient(135deg, #4e89ff, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.map-section {

    padding: 23px 20px;
    background: #f9f9f9;
}

.map-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 350px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* about us */
.about-us {
    background: linear-gradient(135deg, #fdfbfb, #ebedee);
    /* background: #faf2dd; */
}

.about-img-wrapper {
    position: relative;
    display: inline-block;
}

.about-us p {
    text-align: justify;
}

.about-img-wrapper img {
    border-radius: 20px;
}

.about-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px dashed #4e89ff;
    border-radius: 25px;
    z-index: -1;
}

.btn-about {
    background: linear-gradient(135deg, #4e89ff, #6c63ff);
    color: #fff;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    transition: 0.3s;
}

.btn-about:hover {
    background: linear-gradient(135deg, #6c63ff, #4e89ff);
    transform: translateY(-2px);
}

.text-gradient {
    background: linear-gradient(135deg, #4e89ff, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* vision */
.vision-section p {
    text-align: justify;
}

.vision-section {
    background: linear-gradient(135deg, #e0f7ff, #ffffff);
    position: relative;
    overflow: hidden;
}

.text-gradient {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-subtitle {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
}

.vision-box {
    background: #fff;
    border-left: 6px solid #00c6ff;
    transition: transform 0.4s ease;
}

.vision-box:hover {
    transform: translateY(-5px);
}

.btn-vision {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.btn-vision:hover {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    transform: scale(1.05);
}


.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 8s ease-in-out infinite;
}

.shape1 {
    width: 200px;
    height: 200px;
    background: #0072ff;
    top: -50px;
    left: -50px;
}

.shape2 {
    width: 150px;
    height: 150px;
    background: #00c6ff;
    bottom: -40px;
    right: -40px;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* value section */
.values-section {
    background: #faf2dd;
}

/* mission */
.mission-section p {
    text-align: justify;
}

.mission-section {
    background: linear-gradient(135deg, #f9fcff, #ffffff);
    position: relative;
    overflow: hidden;
}

.text-gradient {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-img-wrapper {
    position: relative;
    display: inline-block;

}

.mission-img-wrapper img {
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.mission-img-wrapper img:hover {
    transform: scale(1.05);
}

.mission-shape {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: #96c93d;
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
}

.btn-mission {
    background: linear-gradient(135deg, #00b09b, #96c93d);
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 176, 155, 0.3);
}

.btn-mission:hover {
    background: linear-gradient(135deg, #96c93d, #00b09b);
    transform: scale(1.05);
}

/* Floating decorative shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: floatMission 9s ease-in-out infinite;
}

.mission-shape1 {
    width: 180px;
    height: 180px;
    background: #00b09b;
    top: -60px;
    left: -40px;
}

.mission-shape2 {
    width: 120px;
    height: 120px;
    background: #96c93d;
    bottom: -40px;
    right: -30px;
}

@keyframes floatMission {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* value */
.values-section h2 {
    color: #0072ff;
}

.values-section .underline {
    display: block;
    width: 60px;
    height: 3px;
    background: #0072ff;
    margin-top: 8px;
}

.values-section p {
    font-size: 15px;
    line-height: 1.7;
}

.object-fit-cover {
    object-fit: cover;
}

.values-section p {
    text-align: justify;
}



/* recipe */
.dishes-section {
    background: #f9f9f9;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    position: relative;
}

.dishes-carousel {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 30px;
    justify-content: center;
}

.dish-item {
    flex: 0 0 300px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.dish-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.dish-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.dish-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.btn-learn {
    display: inline-block;
    padding: 8px 20px;
    background: #ff5722;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-learn:hover {
    background: #e64a19;
}

.carousel-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel-nav span {
    cursor: pointer;
    font-size: 2rem;
    color: #ff5722;
    transition: 0.3s;
}

.carousel-nav span:hover {
    color: #e64a19;
}

/* recipe */
.product-slider-section .slide-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-slider-section .slide-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-slider-section .slide-overlay h5 {
    font-weight: 600;
}

.product-slider-section .item img {
    height: 380px;
}

/* recipe */
.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.product-img {
    transition: transform 0.3s;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}


.overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .overlay {
    opacity: 1;
}

.overlay button {
    display: none;
}

.product-card:hover .overlay button {
    display: inline-block;
}

.learn-more-btn {
    transition: transform 0.2s;
}

.learn-more-btn:hover {
    transform: scale(1.05);
}

/* product */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.category {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.category img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.category p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}



.product1 {
    display: flex;
    padding: 20px;
}

.sidebar {
    width: 250px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-right: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.sidebar h3 {
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 10px;
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.3s;
}

.sidebar ul li:hover {
    background: #f0f0f0;
}

.product-list {
    flex: 1;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    min-height: 400px;
}

.product-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
}



/* product */
.products-cat .product-section {
    display: flex;
    gap: 20px;
    padding-top: 0px;
    margin: 0;
    max-width: 1300px;
}

.product-section {
    display: flex;
    gap: 20px;
    padding-top: 10px;
    margin: 16px auto;
    max-width: 1300px;
}

.product-section .text-2 a {
    color: white;
    text-decoration: none;
}

.sidebar {
    flex: 1;
    max-width: 250px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.sidebar h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #222;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.sidebar label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 15px;
}

.product-list {
    flex: 3;
    /* display: grid; */
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


@media (max-width: 768px) {
    .product-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;

    }

}

@media (max-width: 786px) {
    .product-list {
        flex: 1;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        display: grid;
    }
}

@media (max-width: 486px) {
    .product-list {
        flex: 1;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        display: grid;
    }

    .product-section .text-1 img {
        width: 30px;
        height: 30px;
    }
}

.product-section .text-1 img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}


@media (max-width: 325px) {
    .product-list {
        flex: 1;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        display: grid;
    }

    .product-section .text-1 img {
        width: 50px;
        height: 50px;
    }
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    position: relative;
    transition: 0.3s;
    border: 1px solid #d5d0d0;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    /* margin-bottom: 10px; */
}

.product-card h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.price {
    font-weight: bold;
    font-size: 16px;
    color: #2e7d32;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    margin-left: 5px;
    font-size: 14px;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e53935;
    color: #fff;
    font-size: 13px;
    padding: 3px 7px;
    border-radius: 6px;
}

.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1e88e5;
    color: #fff;
    font-size: 13px;
    padding: 3px 7px;
    border-radius: 6px;
}

.buttons {
    margin-top: 10px;
    display: flex;
    gap: 6px;
}

.buttons button {
    /* flex: 1; */
    /* border: none; */
    border-radius: 8px;
    padding: 6px;
    cursor: pointer;
    font-size: 11px;
    transition: 0.3s;
}

/* .buy-now {
  background: #f05440;
  color: #fff;
} */

.buy-now .btn {
    color: #ffffff;
    text-decoration: none;

}

.buy-now:hover {
    background: #e65100;
}

/* .add-cart {
  background: #f1f1f1;
  color: #fdfdfd;
}

.add-cart:hover {
  background: #ddd;
  color: black;
} */

.add-cart a {
    color: rgb(187, 161, 17);
    text-decoration: none;
    font-size: 10px;
}

.add-cart a:hover {
    color: rgb(250, 250, 250);
    text-decoration: none;
    font-size: 11px;
}

/*  */
.recipe-wrapper {
    /* max-width: 1300px; */
    /* margin: 50px; */
    /* padding: 20px; */
}

.recipe-wrapper h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
    /* text-decoration: underline; */
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.recipe-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.recipe-card:hover {
    transform: translateY(-6px);
}

/* Recipe Image */
.recipe-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eee;
}

/* Title Section */
.recipe-title-box {
    padding: 15px 15px 0 15px;
}

.recipe-title-box h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.recipe-title-box span {
    font-size: 13px;
    color: #777;
}

/* Content Box */
.recipe-content {
    padding: 10px 15px 15px 15px;
}

.recipe-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Meta Info */
.recipe-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #444;
    margin-bottom: 15px;
}

/* Buttons */
.recipe-actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}


.recipe-actions button {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.view-btn {
    /* background: #f1f1f1; */
    background-color: rgb(249 233 8);
    color: #333;
}

.view-btn:hover {
    /* background: #ddd; */
    background-color: yellow;
}

.shop-btn {
    /* background: #ff7043; */
    background: #e72c2c;
    color: #fff;
}

.shop-btn:hover {
    background: #e64a19;
}


/* buy-now */
.buy .buy-form {
    /* background-color: #ddd8d9; */
    border-radius: 10px;
    border: 1px solid rgb(167, 165, 165);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.buy .btn {
    padding: 40px;
}

.buy .buy-form h2 {
    color: #b10f0f;
}

/* products */
.products .text-3 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.products h6 {
    font-size: 21px;
    padding: 10px 0px 10px 0px;
    height: 40px;
    border-bottom: 2px solid #e7e4e4;

}

.products .text-3 {
    border: 1px solid #ebe1e1;
    border-radius: 15px;

}

.product-img img {
    width: 73%;
    padding: 10px;
}

.buy-now a {
    color: white;
    text-decoration: none;
    font-size: 12px;
}

/* product category */
.bottom-images img {
    transition: transform 0.3s, box-shadow 0.3s;
}

.bottom-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bottom-images .text-4 {
    /* border: 1px solid #f3ebeb; */
}

.bottom-images .text-4 img {
    width: 99%;
}

.footer {
    background-color: #0a2a53;
    /* background-color: #71182A; */
    color: white;
}

.footer h2 {
    text-decoration: underline;

}

.footer .contact {
    border-right: 2px solid #c7b7b7;
}

.social-icons a {
    color: #fff;
    margin-right: 12px;
    font-size: 20px;
    transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
    color: #0d6efd;
    transform: scale(1.1);
}


/* mackerel */
.product-page .btn a {
    text-decoration: none;
    color: white;
}

/* recipe */
/* .recipe-carousel .marquee-card img {
  height: 175px;
  width: 278px;

} */
.recipe-carousel .marquee-card img {
    height: 152px;
    width: 243px;
}

.recipe-carousel p {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}

/* .recipe-carousel .carousel-inner .carousel-item img {
  height: 90%;
  width: 100%;
} */

.recipe-carousel h2 {
    text-align: center;
    /* text-decoration: underline; */
    font-size: 35px;
    font-weight: 700;
}

/* .recipe-carousel .carousel-item p {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  text-shadow: 2px 0 #efefef;
  color: #181515;
} */

/* .recipe-carousel .carousel-inner .carousel-item {
  background: #82a2d5;
  padding: 20px;
} */

.recipe-wrapper .shop-btn a {
    text-decoration: none;
    color: white;
}

.recipe-wrapper .view-btn a {
    text-decoration: none;
    color: black;
}

/* product-category */


.big-img {
    max-height: 550px;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.4s ease-in-out;
}

.small-thumb {
    width: 90px;
    height: 90px;

    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s, border 0.3s;
}

.small-thumb:hover {
    transform: scale(1.1);
    border: 2px solid #ffc107;
}

.small-thumb.active {
    border: 3px solid #ff5722;
}


.qty-input {
    width: 60px;
    height: 40px;
    font-size: 18px;
}


.hover-grow {
    transition: all 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.05);
}


.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


.product-info h2 {
    font-size: 28px;
    color: #212121;
}

/* product-category-carousel */
.product-category-carousel .carousel-inner .carousel-item img {
    height: 90%;
    width: 100%;
}

.product-category-carousel h2 {
    text-align: center;
    text-decoration: underline;
    font-size: 35px;
    font-weight: 700;
}

.product-category-carousel .carousel-item p {
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    color: #1e191b;
    text-shadow: 1px 0 #f1f1f1;
}

.product-category-carousel p {
    font-size: 28px;
    font-weight: 600;
}

.product-category-carousel {
    background: #e6e7e9;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* add-to-cart */
.cart .text-area img {
    height: 92%;
    width: 100%;
}

.cart .text-area p {
    font-size: 17px;
}

.cart .text-area h5 {
    font-size: 16px;
    font-weight: 400;
    color: #858080;
}

.cart .text-area h3 {
    font-size: 18px;
}

.cart .text-area h3:hover {
    color: rgb(25, 97, 190);
}

.cart .text-area h2 {
    font-size: 18px;
    font-family: system-ui;
}

.cart .text-area h2:hover {
    color: rgb(216, 25, 25);
}


.cart .text-area {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: 1px solid #e9e3e3;
}

.cart .saved-address {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.cart .saved-address p {
    font-size: 18px;
    padding-top: 10px;
}

.cart .price-tag {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;

}

.cart .price-tag p {
    padding: 14px;
}

.cart .total {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    color: #625c5c;
}

/* product-section */

.product-section .btn-outline-warning a {
    color: #fda32f;
    text-decoration: none;
}

.product-section .btn-outline-warning a:hover {
    color: white;
}


/* about-media query */
@media (max-width: 325px) {
    .about-us .about-img-wrapper img {
        height: 196px;
        width: 460px;
    }

    .mission-section .mission-img-wrapper img {
        height: 296px;
        width: 394px;
    }
}

.about-us img {
    height: 365px;
    width: 476px;
}

.mission-section img {
    height: 371px;
    width: 342px;
}


/* products */
/* .sm-product h2{
  background-color:#6ab04c;
  text-align: center;
  color: white;
  border-radius: 10px;
}
.sm-product h2:hover{
color: #bb1b1b;
} */
.products-cat h2 {
    text-align: center;
    text-decoration: underline;
    /* background: #eb4d4b;
  color: white;
  border-radius: 10px; */
}

/* .product-section h2 {
  font-size: 32px;
  border-radius: 10px;
  color: #f7f6f6;

  background: linear-gradient(173deg, #cb1828, #b72d52, #d76c17);
} */


/* product page */
.product-section .custom-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* background: #ff793f1a; */
    background: #FBF3CA;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 40px 0;
}

.product-section .custom-marquee-track {
    display: flex;
    width: fit-content;
    animation: scrollMarquee 30s linear infinite;
}

.product-section .custom-marquee-wrapper:hover .custom-marquee-track {
    animation-play-state: paused;
}

.product-section .marquee-card {
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 0px;
    margin: 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #003b6d;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    transition: transform 0.3s;
}

.product-section .marquee-card:hover {
    transform: scale(1.05);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 325px) {
    .products-cat .sidebar {
        max-width: none;
    }
}


/* recipe */
.custom-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* background: #fdf2f2; */
    background: #FBF3CA;
    padding: 20px 0;
}

.custom-marquee-track {
    display: flex;
    width: fit-content;
    animation: scrollMarquee 30s linear infinite;
}

.custom-marquee-wrapper:hover .custom-marquee-track {
    animation-play-state: paused;
}



.marquee-card:hover {
    transform: scale(1.05);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.recipe-carousel a {
    text-decoration: none;
    color: black;
}

.recipee a {
    color: rgb(14, 84, 141);
}

/* sardine-products */
.sardine body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.sardine .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.sardine .content-header {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sardine .product-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.sardine .content-header h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.sardine .sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sardine .sort-options span {
    font-weight: bold;
    color: #333;
}

.sardine .sort-option {
    background: #f1f3f4;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.sardine .sort-option:hover {
    background: #e8f0fe;
    border-color: #1976d2;
}

.sardine .sort-option.active {
    background: #1976d2;
    color: white;
    border-color: #1976d2;
}

.sardine .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.sardine .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.sardine .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.sardine .product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sardine .product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sardine .product-card:hover .product-image {
    transform: scale(1.05);
}

.sardine .product-info {
    padding: 16px;
}

.sardine .product-name {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    /* margin-bottom: 8px; */
    line-height: 1.4;
    min-height: 44px;
}

.sardine .product-details {
    color: #666;
    font-size: 17px;
    margin-bottom: 12px;
}

.sardine .price-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.sardine .current-price {
    font-size: 18px;
    font-weight: bold;
    color: #cb0c0c;
}

.sardine .original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.sardine .discount {
    background: #ff4444;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.sardine .sort-animation {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sardine .loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

@media (max-width: 768px) {
    .sardine .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .sardine .sort-options {
        justify-content: center;
    }
}

/* own-recipe */
.own-recipe {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: #faf2dd;
}

.own-recipe h2 {
    text-align: center;
    /* text-decoration: underline; */
}

.own-recipe .form-sec {
    background: #B54304;
    border-radius: 20px;
}

.own-recipe .form-sec label {
    color: white;
    padding-bottom: 7px;
}

.own-recipe .btn {
    padding-left: 20px;
    padding-right: 20px;
}

/* certificate */
.certificate h6 {
    font-size: 26px;
    background: green;
    text-align: center;
    padding: 10px;
    text-decoration: underline;
    color: #ede8e8;
}

.certificates h2 {
    text-align: center;
}

.certificates .text-1 {
    border: 1px solid rgb(22, 134, 18);
}

/* about-certificate */
.about-certificate {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.about-certificate img {
    height: 87%;
    width: 100%;
    border: 1px solid black;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.about-certificate h2 {
    font-size: 35px;
    text-align: center;
}

.about-certificate .text-1 h6 {
    text-align: center;
    font-size: 26px;
    color: #1e201d;
    padding-top: 10px;
    text-shadow: 1px 1px #72adc9;
}

.about-certificate .text-1 a {
    text-decoration: none;

}

/* products upper */
.productss {
    color: #333;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.custom-marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.custom-marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 1rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-card {
    flex: 0 0 auto;
    width: 280px;
    min-width: 280px;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.small-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.small-thumb:hover,
.small-thumb.active {
    border: 2px solid #dc3545;
    transform: scale(1.1);
}

.text-1,
.text-2 {
    text-decoration: none;
}

.text-2 a,
.btn a {
    color: inherit;
    text-decoration: none;
}

.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.custom-marquee-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-card {
        width: 250px;
        min-width: 250px;
    }

    .custom-marquee-track {
        gap: 0.75rem;
    }

    .product-card {
        padding: 1rem !important;
    }

    .small-thumb {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .marquee-card {
        width: 220px;
        min-width: 220px;
    }

    /* .product-card img {
    height: 150px !important;
  } */

    .btn-sm {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .small-thumb {
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 992px) {
    .product-grid {
        display: none;
    }
}

@media (max-width: 991px) {
    .custom-marquee-wrapper {
        /* display: none; */
    }

    .product-grid {
        display: block;
    }
}

.product-grid .col-md-6 {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) and (max-width: 991px) {
    .product-grid .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .product-grid .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* floating footer */
.floating-icons {
    position: fixed;
    right: 0px;
    bottom: 30%;
    z-index: 1000;
}

.floating-icons a {
    display: block;
    text-align: center;
    margin: 2px 0;
    font-size: 24px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 91%;
    color: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.fb-icon {
    background: #0a2a53;
}

.call-icon {
    background: #28a745;
}

.youtube-icon {
    background: #df1006;
}

.wht-icon {
    background: #27ae60;
}

.floating-icons a:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .sardine-1 p {
        font-size: 17px;
    }

    .sardine-1 .marquee-card img {
        height: 129px;
        width: 186px;
    }

    .mackerel-1 p {
        font-size: 17px;
    }

    .mackerel-1 .marquee-card img {
        height: 129px;
        width: 186px;
    }

    .tuna-1 p {
        font-size: 17px;
    }

    .tuna-1 .marquee-card img {
        height: 129px;
        width: 186px;
    }

    .explore-section .product-img-circle img {

        height: 89%;
    }

    .top-header .hidden img {
        display: none;

    }
}

/* login */

.login p {
    color: #706666;
    font-size: 14px;
}

.login .btn {
    padding-left: 40%;
    padding-right: 43%;
    font-size: 15px;
}

.login .text {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px;
}

.login .text-1 h6 {
    padding-top: 197px;
    color: #bb3908;
}

/* order-summary */
.order p {
    text-align: justify;
}

.order .btns {
    text-align: center;
}

.order .row {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.order h2 {
    font-size: 28px;
    font-family: sans-serif;
    font-weight: 700;
}

.order h6 {
    font-size: 20px;
}

.order p {
    font-size: 16px;
}

/* order1 */
.order1 h6 {
    font-size: 19px;
    color: #191924;
}

.order1 p {
    font-size: 20px;
    margin-bottom: 0;
    color: #096609;
}

.order1 h2 {
    font-size: 24px;
    color: #141493;
}

.order1 img {
    height: 103px;
    width: 141px;
}

.order1 h5 {
    color: rgb(52, 93, 148);
}

.order1 h3 {
    font-size: 21px;
    color: #626262;
}

.order1 h5 {
    color: rgb(52, 93, 148);
    font-size: 19px;
    text-align: center;
    padding: 2px;
}

.order1 .text-1 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.order1 .text {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.order-2 h2 {
    font-size: 19px;
}

.order-2 p {
    font-size: 15px;
    margin-bottom: 0;
    color: #1f261f;
}

.order-2 h2 {
    font-size: 20px;
    padding-top: 6px;
    color: #085420;
}

/* order-place */
.order-place .fa-solid {
    color: #6e6c6c;
    font-size: 17px;
}

.order-place h6 {
    font-size: 20px;
    font-weight: 400;
    font-family: system-ui;
}

.order-place .accordion-button {
    font-size: 26px;
    color: black;
    font-weight: 600;
}

.order-place p {
    text-align: end;
    font-size: 20px;
}

.order-place h2 {
    font-size: 24px;
}

.textt p {
    text-align: justify;
    color: #646464;
}

.textt .row {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.payment span {
    color: gray;
    text-decoration: line-through;
    font-size: 24px;
}

.payment p {
    font-size: 25px;
    font-weight: 500;
}

.payment .row {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* product page */
@media (max-width: 992px) {

    .products-cat #product-list .col-md-3,
    #product-list .col-md-4,
    #product-list .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 486px) {

    .products-cat #product-list .col-md-3,
    #product-list .col-md-4,
    #product-list .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 325px) {

    .products-cat #product-list .col-md-3,
    #product-list .col-md-4,
    #product-list .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.products-cat .product-card .d-flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.products-cat .product-card .btn {
    flex: 1;
    /* ensures equal width */
    white-space: nowrap;
    /* keeps text on one line */
    font-size: 10px;

}

/* catalogue */
.catalogue .catalogue-sec {
    /* border: 1px solid #cbc9c9; */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 20px;
    border-left: 3px solid #2980b9;
    border-radius: 20px;
}

.catalogue .catalogue-sec h2 {
    text-align: center;
    font-size: 38px;
    font-family: 'Font Awesome 7 Free';
}

.catalogue .broucher-sec {
    /* border: 1px solid #cbc9c9; */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-left: 3px solid #2980b9;
    border-radius: 20px;
    padding: 20px;
}

.catalogue .broucher-sec h2 {
    text-align: center;
    font-size: 38px;
    font-family: 'Font Awesome 7 Free';
}

@media (min-width: 360px) and (max-width: 390px) {
    .product-card img {
        width: 100%;
        height: 58px;
        object-fit: contain;
        /* margin-bottom: 10px; */
    }

    .products-cat .product-card .btn {
        flex: 1;
        white-space: nowrap;
        font-size: 5px;
    }
}

@media (min-width: 319px) and (max-width: 359px) {
    .product-card img {
        width: 100%;
        height: 58px;
        object-fit: contain;

    }

    .products-cat .product-card .btn {
        flex: 1;
        white-space: nowrap;
        font-size: 5px;
    }
}

/* copyright */
.copyright a {
    color: white;
}

.copyright a:hover {
    color: #3498db;
}

.explore-collection a {
    text-decoration: none;
}

/* slider */
.mobile-hidden {
    display: none;
}

/* testimonial */
.testimonial-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.testimonial-section h2 {
    font-weight: 700;
    color: #333;
}

.testimonial-section .testimonial-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonial-section .testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-section .testimonial-card {
    flex: 0 0 33.333%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
}

.testimonial-section .testimonial-card img {
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-section .testimonial-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.testimonial-section .testimonial-card h5 {
    font-weight: 600;
    color: #333;
}


.testimonial-section .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #007bff;
    cursor: pointer;
    user-select: none;
    z-index: 10;
}

.testimonial-section .prev {
    left: 0;
}

.testimonial-section .next {
    right: 0;
}

.testimonial-section .testimonial-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.testimonial-section .testimonial-dots .active {
    background: #007bff;
}

.testimonial-section h6 {
    font-weight: 400;
}


@media (max-width: 992px) {
    .testimonial-section .testimonial-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .testimonial-section .testimonial-card {
        flex: 0 0 100%;
    }
}


.user-top h2 {
    background: #f2e0c9;
    color: #0a0808;
    font-size: 19px;
    font-family: inherit;
}

.user-top p {
    font-size: 14px;
    font-weight: 500;
}

.user-top spam {
    color: blue;
}

.user-top .texttt-1 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.user-top .text-1 {
    /* 
  padding: 0;
  margin: 0; */

}

.user-top .text-1 input {
    border: none;
    border-bottom: 1px solid #b9b9b9;
    border-radius: 0;
}

.user-top .text-1 .continue-btn .btn {
    width: 100%;
    font-family: system-ui;
    border-radius: 0;
}

.user-top .text-2 h6 {
    font-size: 17px;
    color: #626161;
    font-weight: 400;
    font-family: math;

}

.user-top .text-2 .fa-solid {
    color: #2424eb;
}

.user-top .text-1 span {
    background: white;
    color: black;
    padding-left: 6px;
    padding-right: 6px;
    border-radius: 4px;

}

.user-top .text-2 p {
    color: #4a4a4a;
    font-size: 14px;
    font-family: system-ui;
    padding-top: 5px;
}

.secure-text img {
    width: 44px;

}

.secure-text p {
    color: #727272;
    font-size: 13px;
}

.order-status .text-1 h2 {
    font-size: 29px;
    border-bottom: 1px solid #a7a7a7;
    font-family: emoji;
    font-weight: 600;

}

.order-status .text-1 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.order-status .text-2 .form-control {
    padding: 8px 15px;
}

.order-status .order-img img {
    width: 100px;
}

.order-status .order-img {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.order-status .order-img1 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.order-status .order-img1 img {
    width: 100px;
}

.footer .contact a {
    text-decoration: none;
    color: white;
}

.table-meas table,
th,
td {
    border: 1px solid black;
    border-collapse: collapse;
}

.about-product h2 {
    font-size: 28px;
    font-family: none;
    font-weight: 600;
}

.about-product ul li {
    line-height: 28px;
    font-size: 18px;
    font-family: system-ui;
}

.p-description h2 {
    font-size: 28px;
    font-family: fangsong;
    font-weight: 600;
}

.p-description p {
    font-size: 18px;
    font-family: system-ui;
}

.ingredient img {
    width: 340px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.ingredient h6 {
    font-size: 29px;
    font-family: inherit;
}

.ingredient .text-1 {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.ingredient .text-1 h1 {
    font-size: 27px;
    font-family: sans-serif;
    font-weight: 600;
    text-decoration: underline;

}

.ingredient .text-1 ul li {
    font-size: 18px;

}

.ingredient .text-1 h5 {
    font-size: 21px;
    font-weight: 600;
}

.ingredient .text-1 p {
    font-size: 18px;
    font-family: system-ui;
}

.recipe-1 ul li {
    font-size: 17px;
    font-family: sans-serif;
}

.recipe-1 h5 {
    font-size: 31px;
    text-align: center;
    font-family: auto;
    font-weight: 500;
    color: #040458;
}

.recipe-1 h1 {
    font-size: 21px;
    font-family: system-ui;

}

.recipe-1 .text-1 p {
    font-size: 17px;
    font-family: sans-serif;
}

.content h4 {
    text-align: center;
    font-size: 26px;
    background: #9f1e00;
    color: white;
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 9px;
}

.tip h4 {
    text-align: center;
    font-size: 26px;
    background: #9f1e00;
    color: white;
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 9px;
}

.content ul {
    font-family: sans-serif;
    font-size: 20px;
}

.content ul li {
    list-style: disc;
    list-style-position: inside;
}

.recipe-1 .text-area {
    border-right: 1px solid #dbdbdb;
}

.recipe-1 .tipss {
    text-align: center;
}

/* recipe2 page */
.r2 img {
    border-radius: 100%;
    height: 126px;
    width: 130px;
}

.r3 img {
    width: 350px;
    height: 250px;
    border-radius: 10px;
}

.r3 .text h6 {
    color: black;
    font-family: system-ui;
    font-size: 19px;

}

.r3 h2 {
    /* text-shadow: 2px 0px #d10707;
  color: #631d81;
  font-size: 38px; */
    font-size: 39px;
    font-family: system-ui;
    font-weight: 700;
}

.r3 .text-1 {
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}


.r3 .text h5 {
    background: #026a56;
    color: white;
    border-radius: 8px;
    font-family: sans-serif;
    font-size: 18px;

}

.r3 .text a {
    text-decoration: none;
}


.sub-recipe h6 {
    font-size: 47px;
    font-family: ui-monospace;
    color: #0a5485;
    text-shadow: 1px 0 black;

}

.sub-recipe ul {
    font-size: 21px;
    font-family: emoji;
}

.sub-recipe p {
    font-family: none;
    font-size: 21px;
}

.sub-recipe h1 {
    font-size: 30px;
    font-family: emoji;
    font-weight: 600;

}

.sub-recipe h2 {
    font-size: 30px;
    font-family: emoji;
    font-weight: 600;

}

.sub-recipe h5 {
    font-size: 35px;
    font-family: emoji;
    font-weight: 600;

}

.sub-recipe .text-1 {
    border-right: 1px solid #b33939;
    border-right-style: dashed;
    background: #f1ebdd;
}

.sub-recipe .text-2 {
    background: #f2e0c9;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.sub-recipe ul li {
    font-size: 19px;
    font-family: none;
}

.sub-recipe .btn {
    font-size: 26px;
    font-family: math;
}

.sub-recipe .textt {
    text-align: end;
}

.accordion .accordion-item .accordion-collapse .accordion-body a {
    color: black;
    text-decoration: none;
}

.accordion-button:not(.collapsed) {
    color: #fffffc;
    background-color: #B53471;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion .one {
    background: #aee1bf3d;
    color: #221d1d;
}

.accordion .two {
    background: #b5d5dd42;
    color: #221d1d;
}

.accordion .three {
    background: #f9b9c342;
    color: #221d1d;
}

.accordion .four {
    background: #dbca781f;
    color: #221d1d;
}

.accordion .five {
    background: #e0fdf629;
    color: #221d1d;
}

.accordion .six {
    background: #b2f5d630;
    color: #221d1d;
}

.accordion .seven {
    background: #dbdbf52e;
    color: #221d1d;
}

.accordion .eight {
    background: #ffe5e647;
    color: #221d1d;
}

.faqs h2 {
    font-size: 30px;
    font-family: inherit;
    font-weight: 700;
}

.faqs .container {
    background: #e9e9e921;
    padding: 17px;
    border-radius: 14px;
    border: 1px solid #d3d3d3;
}

.footer a {
    text-decoration: none;
    color: white;
}

.service-terms h2 {
    text-align: center;
    font-size: 40px;
    font-family: revert;
    color: white;
    font-weight: 700;
    background: #0a2a53;
}

.service-terms h6 {
    text-align: justify;
    font-size: 16px;
    color: black;
    font-weight: 400;
}

.service-terms .text {
    border: 1px solid #c5c2c2;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.service-terms h5 {
    font-size: 23px;
    font-family: revert;
    color: black;
    font-weight: 600;
}

.service-terms p {
    font-size: 17px;
    line-height: 23px;
    color: black;
}

.service-terms .service-terms1 {
    border-left: 2px solid #c96032;
    padding-left: 10px;
    border-radius: 5px;
}

/* .service-terms .service-terms1:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 10px;

} */

.service-terms .service-terms1 a {
    text-decoration: none;
    color: black;
}

.service-terms .service-terms1 ul li {
    color: black;
    font-size: 18px;
}

.service-terms h3 {
    color: black;
}

.service-terms ul li {
    font-size: 17px;
    color: black;
}