.header-top {
    background: #121212; /* dark theme */
    padding: 16px 0;
    font-size: 14px;
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left Info */
.top-info {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}


.top-info i {
    color: #ff5722;
    font-size: 14px;
}

/* Right Section */
.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Search */
.search-wrp {
    position: relative;
}

.search-wrp input {
    background: #1e1e1e;
    border: none;
    padding: 6px 35px 6px 12px;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    width: 150px;
}

.search-wrp input::placeholder {
    color: #aaa;
}

.search-wrp button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ff5722;
    cursor: pointer;
}

/* Social Icons */
.social-icon a {
    color: #e0e0e0;
    font-size: 14px;
    margin-left: 10px;
    transition: 0.3s;
}

.social-icon a:hover {
    color: #ff5722;
}


@media (max-width: 768px) {
    .header-top-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .top-info {
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-right {
        justify-content: center;
    }
}


.animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.swiper-slide-active .animate-item.active {
    opacity: 1;
    transform: translateY(0);
}


.swiper.food-catagory-slider.swiper-initialized.swiper-horizontal.swiper-pointer-events.swiper-backface-hidden {
    height: fit-content;
}

.burger-banner-items.bg-cover {
    width: 100%;
    height: 100%;
}

.food-banner-section .single-offer-items.bg-cover.style-3 {
    width: 100%;
    height: 100%;
}

.single-offer-items.style-2.bg-cover {
    height: 100%;
}

.swiper-horizontal {
    touch-action: pan-y;
    height: fit-content;
}

.food-slider-wrapper {
    position: relative;
}

/* Arrow common style */
.food-category-section .swiper-button-prev,
.food-category-section .swiper-button-next {
    width: 55px;
    height: 55px;
    background: #e31e24;
    border-radius: 50%;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
}

/* Left arrow outside */
.food-category-section .swiper-button-prev {
    left: -70px;
}

/* Right arrow outside */
.food-category-section .swiper-button-next {
    right: -70px;
}

/* Default arrow icon remove */
.food-category-section .swiper-button-prev::after,
.food-category-section .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

/* Hover effect */
.food-category-section .swiper-button-prev:hover,
.food-category-section .swiper-button-next:hover {
    background: #000;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .food-category-section .swiper-button-prev {
        left: 10px;
    }
    .food-category-section .swiper-button-next {
        right: 10px;
    }
}


.chefe-section {
    background: #fff;
        padding-top: 50px;
}

.sub-title {
    color: var(--theme2);
    margin-bottom: 5px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
}

.chefe-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.chefe-card:hover {
    transform: translateY(-10px);
}

.chefe-thumb img {
    display: block;
    padding: 30px;
    transition: transform 0.5s ease;
}

.chefe-card:hover .chefe-thumb img {
    transform: scale(1.1);
}

/* Social Icons */
.chefe-social {
    position: absolute;
    top: 30px;
    right: 8px;
}

.chefe-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.4s;
}

.chefe-social ul li {
    margin-bottom: 10px;
}

.chefe-social ul li a {
    width: 42px;
    height: 42px;
    background: #e31e24;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.chefe-social ul li a:hover {
    background: #000;
}

.share-btn {
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 10px;
}

.chefe-card:hover .chefe-social ul {
    transform: scaleY(1);
}

/* Content */
.chefe-content {
    text-align: center;
    padding: 0px 25px 20px;
}

.chefe-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.chefe-content p {
    color: #777;
    font-size: 15px;
}


/* category css  */

.popular-food-section {
    background: #faf6ed;
    padding: 100px 0;
}

/* Card */
.food-card {
    background: #fff;
    border-radius: 22px;
    padding: 90px 25px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease; /* Hover animation */
}

/* Card hover effect */
.food-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Image Wrapper */
.food-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease; /* Hover animation */
}

/* Inner Image */
.food-img img {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    transition: all 0.4s ease; /* Hover animation */
}

/* Second dashed ring */
.food-img .circle-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgb(255 77 77 / 74%);
    animation: rotateRing 10s linear infinite;
    left: 76px;
    width: 150px;
    height: 150px;
}

/* Image hover pulse effect */
.food-card:hover .food-img img {
    transform: matrix(1, 0, 0, 1, 0, 0);
}

/* Content */
.food-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 6px;
}

.food-content p {
    font-size: 14px;
    color: #777;
}

.grilled-button.category a.theme-btn {
    padding: 12px 20px;
    margin-top: 15px;
}

@keyframes rotateRing {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

/* Swiper overflow fix */
.popularFood-slider {
    overflow: visible !important;
    padding-top: 111px !important;
}


/* about page section  */
.about-section {
    position: relative;
    padding: 100px 0;
}

.bg-shape.grey {
    background-image: url('../img/shape-grey.png');
    background-repeat: repeat;
    background-position: bottom center;
    width: 100%;
    height: 15px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}

/* Image + Video Button */
.about-section .content-img-holder {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.content-img-holder img {
    width: 100%;
    border-radius: 20px;
    display: block;
    transition: transform 0.5s ease;
}

/* Zoom image slightly on hover */
.content-img-holder:hover img {
    transform: scale(1.05);
}

/* Video Play Button */
.content-img-holder .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    color: #ff9d2d;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Pulse Animation for Play Button */
.play-btn .play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

/* Text Info */
.about-info h2 {
    text-transform: none;
    font-size: 42px;
    line-height: 48px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-info p {
    margin: 10px 0px;
    color: #555;
    font-size: 18px;
    line-height: 26px;
}

.about-info span {
    color: var(--theme2);
    margin-bottom: 5px;
    display: inline-block;
    font-weight: 700;
    text-transform: capitalize;
}

/* Button Styling */
.default-btn {
    display: inline-block;
    background: #ff9d2d;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    height: 45px;
    line-height: 45px;
    padding: 0 35px;
    letter-spacing: 1px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.default-btn:hover {
    background: #ff7a00;
    transform: translateY(-3px);
}
.about-points {
    margin-top: 25px;
}

.about-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-points ul li {
    position: relative;
    font-size: 16px;
    line-height: 28px;
    color: #555;
    padding-left: 30px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.about-points ul li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff9d2d;
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Hover effect for fun */
.about-points ul li:hover i {
    transform: scale(1.2);
    color: #ff7a00;
}


/* ==============================
   CONTACT PAGE DESIGN
============================== */

.contact-page {
    background: #f7f7f7;
}

/* -------- Contact Info Boxes -------- */
.contact-info-items {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: 100%;
}

.contact-info-items:hover,
.contact-info-items.active {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-info-items .icon {
    width: 70px;
    height: 70px;
    background: #fcb837;
    color: #fff;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-items h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.contact-info-items p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* -------- Contact Section -------- */
.contact-section {
    padding-bottom: 80px;
}

.contact-area {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* -------- Left Content -------- */
.map-content-area h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.map-content-area p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* -------- Google Map Fix -------- */
.google-map {
    overflow: hidden;
    border-radius: 16px;
}

.google-map iframe {
    width: 100%;
    height: 320px;
    border: none;
}

/* -------- Contact Form -------- */
.contact-form-items {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 18px;
}

.contact-title h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-title p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* -------- Form Fields -------- */
.form-clt {
    position: relative;
}

.form-clt input,
.form-clt textarea {
    width: 100%;
    padding: 14px 45px 14px 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s;
    background: #fff;
}

.form-clt textarea {
    height: 130px;
    resize: none;
}

.form-clt input:focus,
.form-clt textarea:focus {
    border-color: #ff7a00;
    outline: none;
}

.form-clt .icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
}



/* -------- Responsive -------- */
@media (max-width: 991px) {
    .contact-area {
        padding: 30px;
    }
    .contact-form-items {
        padding: 30px;
    }
}

.fooder-menu-wrapper .food-menu-items .food-menu-content h4 del {
    color: #7a7575;
}

.food-menu-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.food-menu-link:hover .food-menu-items {
    transition: 0.3s ease;
}


.page-nav-wrap .pagination {
    justify-content: center;
}

.page-nav-wrap .page-link {
    color: #ff9d2d;
}

.page-nav-wrap .page-item.active .page-link {
    background-color: #ff9d2d;
    border-color: #ff9d2d;
    color: #fff;
}
/* Main Card */
.shop-list-items {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(.21,.6,.35,1),
                box-shadow 0.45s ease;
}

.shop-list-items:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 55px rgba(0,0,0,0.14);
}

/* Image */
.shop-image {
    width: 180px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
}

.shop-image img {
    width: 100%;
    transition: transform 0.7s ease;
}

.shop-list-items:hover .shop-image img {
    transform: scale(1.15);
}

/* Content reveal */
.shop-content {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.shop-list-items:hover .shop-content {
    transform: translateX(6px);
}

/* Title */
.shop-content h3 a {
    transition: color 0.3s ease;
}

.shop-list-items:hover .shop-content h3 a {
    color: #ff9d2d;
}

/* Button */
.shop-content .theme-btn {
    margin-top: 12px;
    transition: all 0.35s ease;
}

.shop-list-items:hover .theme-btn {
    background: #ff9d2d;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
}

/* Gradient shine overlay */
.shop-list-items::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 40%,
        rgba(255,157,45,0.15),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none; /* 🔥 CLICK FIX */
}

.shop-list-items:hover::after {
    opacity: 1;
}

.discount-badge{
    margin-left: 10px;
    background: #ff4242;
    color: #fff;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
}


.star-rating i {
    font-size: 22px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.star-rating i.active {
    color: #ff9d2d;
}

.star-rating i:hover {
    color: #ff9d2d;
}


/* Section */
.booking-section {
    position: relative;
    padding: 50px 0;
    background: #f5f5f5;
    overflow: hidden;
}

.booking-section .bg-shape.white {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #fff 40%, transparent 100%);
    z-index: 0;
}

/* Left Content */
.section-heading {
    position: relative;
    z-index: 2;
}

.section-heading h4 {
    font-size: 16px;
    letter-spacing: 2px;
    color: #ff9d2d;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.section-heading h2 span {
    color: #ff9d2d;
}

.section-heading p {
    margin: 18px 0;
    color: #666;
    max-width: 480px;
}


.section-heading .default-btn:hover {
    background: #111;
    transform: translateY(-3px);
}

/* Booking Card */
.booking-form {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.booking-form h3 {
    font-size: 26px;
    margin-bottom: 25px;
    position: relative;
}

.booking-form h3 span {
    width: 50px;
    height: 3px;
    background: #ff9d2d;
    display: block;
    margin-top: 6px;
}


/* Inputs */
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    font-size: 14px;
    margin: 10px 0px;
}

.form-padding .nice-select {
    background-color: #ffffff;
    width: unset;
    outline: none;
    padding: 14px 16px;
    border: 1px solid #958d8e52;
    border-radius: 9px;
}
.form-padding .nice-select span.current {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 500;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #ff9d2d;
    box-shadow: 0 0 0 3px rgba(255,157,45,0.15);
    outline: none;
}

/* Submit Button */
.book-btn {
    width: 100%;
    margin-top: 22px;
    padding: 15px;
    background: linear-gradient(135deg, #ff9d2d, #ff7a18);
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.book-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255,157,45,0.4);
}

.booking-form-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* Full width message */
.booking-form-group .full-width {
    grid-column: span 2;
}

/* Inputs spacing fix */
.booking-form input,
.booking-form select,
.booking-form textarea {
    margin: 0;
}


/* Responsive */
@media(max-width: 768px) {
    .section-heading h2 {
        font-size: 34px;
    }

    .booking-form-group {
        grid-template-columns: 1fr;
    }

    .booking-form-group .message {
        grid-column: span 1;
    }
}

/* ===== MARQUEE ===== */
section.instagram-gallery {
    padding: 50px 0px 0px;
}

.instagram-marquee {
    overflow: hidden;
    width: 100%;
    margin-bottom: 40px;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

.marquee-right .marquee-track {
    animation: scroll-right 25s linear infinite;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* Pause on hover */
.instagram-marquee:hover .marquee-track {
    animation-play-state: paused;
}



.instagram-img {
    position: relative;
    overflow: hidden;
}

.instagram-img img {
    width: 75%;
    display: block;
}

/* Overlay */
.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 19, 23, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Icon */
.insta-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 42px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

/* Hover */
.instagram-item:hover .insta-overlay {
    opacity: 1;
    visibility: visible;
}

.instagram-item:hover .insta-icon {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}


/* ===== SECTION ===== */
.chefs-bg-section {
    position: relative;
    background: #f4f1ea;
        padding: 50px 0px;
}

.check-style-one li:before {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    color: #fff;
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25px;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #d12525;
    font-size: 12px;
}

.dot-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    z-index: -1;
}

/* ===== LEFT CONTENT ===== */
.chef-content-box .sub-title {
        color: #d12525;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chef-content-box.content-box-gap p {
    margin: 25px 0px;
    transition: all 0.4s ease-in-out;
}

.chef-content-box h2 {
        font-size: 38px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.check-style-one li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-style-one li::before {
    content: "✔";
    position: absolute;
    left: -7px;
    top: 0;
    color: #fff7f5;
}

/* ===== CHEF CARD ===== */
.single-team-item {
    overflow: hidden;
}

.chef-img {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
        margin: 10px;
}

.chef-img img {
    width: 100%;
    transition: transform 0.5s ease;
}

/* Overlay */
.chef-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Hover Content */
.hover-content {
    position: absolute;
    bottom: 20px;
    left: 50px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 4px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.hover-content .title {
    font-size: 18px;
    margin-bottom: 2px;
}

.hover-content .position {
    display: inline-block;
    font-size: 14px;
    background: #d12525;
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
}

/* Hover Effects */
.single-team-item:hover img {
    transform: scale(1.08);
}

.single-team-item:hover .chef-overlay {
    opacity: 1;
}

.single-team-item:hover .hover-content {
    transform: translateY(0);
    opacity: 1;
}

/* Button */
.main-btn.filled-btn {
    background: #ff4d24;
    color: #fff;
    padding: 14px 30px;
    border-radius: 4px;
    transition: 0.3s;
}

.main-btn.filled-btn:hover {
    background: #e63e1c;
}
@media (max-width: 991px) {
    .chef-content-box h2 {
        font-size: 34px;
    }
}


/* wishlist css  */

/* Page */
.wishlist-page { padding: 80px 0; }

/* Card */
.wishlist-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    overflow-x: auto;
}

/* Table */
.wishlist-table {
    width: 100%;
    border-collapse: collapse;
}

.wishlist-table thead {
    background: #18171a;
}

.wishlist-table thead th {
    color: #fff;
    padding: 14px;
    font-size: 14px;
    text-transform: uppercase;
}

.wishlist-table tbody td {
    padding: 16px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    font-size: 15px;
}

/* Image */
.wishlist-table img {
    width: 80px;
    border-radius: 10px;
    transition: .3s;
}
.wishlist-table img:hover { transform: scale(1.05); }

/* Remove */
.remove a {
    color: #ff4d4f;
    font-size: 18px;
}

/* Name */
.name a {
    font-weight: 600;
    color: #222;
    text-decoration: none;
}
.name a:hover { color: #082b5f; }

/* Price */
.price ins {
    color: #e63946;
    font-weight: 600;
    text-decoration: none;
}
.price del {
    color: #999;
    margin-left: 6px;
    font-size: 14px;
}

/* Stock */
.in-stock { color: #28a745; font-weight: 600; }

/* Buttons */
.th-btn {
    background: #d12525;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
}
.th-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

/* Empty */
.wishlist-empty {
    background: #fff;
    padding: 60px 20px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.wishlist-empty i {
    font-size: 100px;
    color: #d12525;
    margin-bottom: 20px;
}

/* Responsive */
@media(max-width:768px){
    .wishlist-table thead { display: none; }
    .wishlist-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #eee;
        border-radius: 14px;
        padding: 10px;
    }
    .wishlist-table td {
        display: flex;
        justify-content: space-between;
        border: none;
        padding: 10px;
    }
}

/* ================= CART TABLE ================= */
.cart_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.cart_table thead {
    background: linear-gradient(135deg, #01050b, #000);
}

.cart_table thead th {
    color: #fff;
    padding: 16px;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
}

.cart_table tbody td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

/* ================= PRODUCT IMAGE ================= */
.cart-productimage img {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 8px;
    transition: all .3s ease;
}

   .cart-productimage img {
        width: 100px;
        height: 100px;
        object-fit: contain;
    }
    .quantity {
        display: flex;
        align-items: center;
    }
    .quantity input {
        width: 50px;
        text-align: center;
        margin: 0 5px;
    }
    .qty-btn {
        padding: 5px 10px;
        cursor: pointer;
    }

    .cart-detail {
    padding: 50px;
    background: #ffffff;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.cart-productimage img:hover {
    transform: scale(1.05);
}

/* ================= PRODUCT NAME ================= */
.cart-productname {
    font-weight: 600;
    color: #222;
        font-size: 20px;
}

.cart-productname:hover {
    color: #e63946;
}

/* ================= PRICE ================= */
.amount {
    font-weight: 600;
    color: #e63946;
    font-size: 16px;
}

/* ================= QUANTITY ================= */
.quantity {
    justify-content: center;
}

.qty-btn {
    background: #121213;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    border: none;
    transition: all .3s ease;
}

.qty-btn:hover {
    background: #000;
    transform: scale(1.1);
}

.qty-input {
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 38px;
    font-weight: 600;
        color: #000;
}

/* ================= REMOVE ================= */
.remove i {
    color: #ff4d4f;
    font-size: 18px;
    transition: all .3s ease;
}

.remove i:hover {
    transform: rotate(90deg) scale(1.2);
}

/* ================= ACTION BUTTONS ================= */
.actions {
    text-align: right !important;
    padding: 25px !important;
}

/* ================= CART TOTALS ================= */
.cart_totals {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}
.cart-detail h2.h4.summary-title {
    font-size: 25px;
    font-weight: 700;
}

.cart_totals td {
    padding: 16px;
    font-size: 16px;
}

.cart_totals .order-total td {
    font-weight: 700;
    color: #ff4d4f;
    font-size: 18px;
}


/* ================= RESPONSIVE ================= */
@media(max-width: 768px) {
    .cart_table thead {
        display: none;
    }

    .cart_table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #eee;
        border-radius: 14px;
        padding: 10px;
    }

    .cart_table td {
        display: flex;
        justify-content: space-between;
        text-align: right;
        padding: 12px;
        border: none;
    }

    .cart_table td::before {
        content: attr(data-title);
        font-weight: 600;
        color: #ff4d4f;
        text-align: left;
    }

    .actions {
        text-align: center;
    }
}



/* Icon cards */
.icon-items {
    background: #fff;
    padding: 18px;
    border-radius: 16px;
    gap: 15px;
    margin-bottom: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
        margin-top: 20px;
}

.icon-items:hover {
    transform: translateY(-6px);
        margin-top: 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.icon-items .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding: 20px;
}

/* Button animation */
.theme-btn {
    transition: all 0.3s ease;
}

.theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,122,24,0.4);
}

/* Image animation */
.about-image-2 img {
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    animation: floatImage 4s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.about-image-2 img:hover {
    transform: scale(1.05);
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}
