.cake-section .cake-item {
    text-align: center;
    padding: 10px;
    transition: 0.3s;
}

.cake-section .cake-item img {
    width: 150px;
    margin: 0 auto 10px;
}

/* Fix arrow position for Cake Carousel */
.cake-section .array-button {
    position: absolute;
    left: 50%;
    top: 250px;
    /* adjust this value to move arrows up/down */
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

/* Ensure wrapper is positioned */
.cake-section {
    position: relative;
}


.array-button {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.array-button button {
    background: #fff;
    border: 1px solid #eee;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: .3s;
}

.array-button button:hover {
    background: #111;
    color: #fff;
}

/* Position arrows at left & right edges */
.cake-section .array-prev,
.cake-section .array-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

/* Left arrow */
.cake-section .array-prev {
    left: 0;
    /* You can change to 10px for slight inset */
}

/* Right arrow */
.cake-section .array-next {
    right: 0;
    /* You can change to 10px for slight inset */
}

/* Ensure the arrow wrapper doesn't center them */
.cake-section .array-button {
    position: relative;
    width: 100%;
}

/* Increase cake image size */
.cake-section .cake-item img {
    width: 330px;
    /* increase width */
    height: 400px;
    /* increase height */
    object-fit: cover;
    border-radius: 15px;
    display: block;
    margin: 0 auto 15px;
}


/* Festive Cake Delivery */
.cakeworld-header {
    background: #A50A02;
    /* padding: 50px 0; */
}

/* Global Font Override */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li,
button,
input,
textarea,
.theme-btn {
    font-family: 'Tharlon', sans-serif !important;
}

/* Section Background */
.festive-delivery-section {
    background-image: url(../assets/img/festival-banner.png);
    padding: 50px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

/* White Rounded Box */
.festive-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    backdrop-filter: blur(3px);
}

/* Left Block */
.festive-left h2 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn img {
    width: 24px;
    height: 24px;
}

/* Right Paragraph */
.festive-right p {
    color: white;
    font-size: 16px;
    line-height: 1.7;
    max-width: 500px;
    text-align: right;
}

/* Responsive */
@media (max-width: 900px) {
    .festive-box {
        flex-direction: column;
        text-align: center;
    }

    .festive-right p {
        text-align: center;
    }
}

/* Four Card Section */

.four-card-section {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    /* 👉 add spacing between cards */
    position: relative;
}

.card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Center Glass Box */
.center-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    padding: 25px 40px;
    border-radius: 15px;
    text-align: center;
}

.center-overlay h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.start-btn {
    background: #be2d22;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

/* Responsive */
@media (max-width: 900px) {
    .cards-container {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
}

/* Testimonial / Review Section */
.review-section {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
}

.review-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px;
}

.review-content-area {
    flex: 1;
    max-width: 850px;
}

.review-title {
    font-size: 26px;
    font-weight: 600;
    color: #5e2d2c;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Decorative Quote Marks */
.quote-left,
.quote-right {
    font-family: Georgia, serif;
    font-size: 120px;
    font-weight: bold;
    color: #e8e8e8;
    line-height: 1;
    user-select: none;
}

.quote-left {
    margin-top: -20px;
}

.quote-right {
    position: absolute;
    bottom: 20px;
    right: 80px;
}

.review-text {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.5px;
    color: #4a4a4a;
    text-align: left;
    margin-bottom: 25px;
}

.client-block {
    margin-top: 15px;
    text-align: left;
}

.stars {
    color: #e0b22d;
    font-size: 14px;
    margin-bottom: 8px;
}

.stars i {
    margin-right: 2px;
}

.client-name {
    font-size: 14px;
    color: #000;
}

.client-name strong {
    font-weight: 700;
}

.client-name span {
    color: #777;
    font-size: 12px;
}

/* Navigation Arrows */
.review-nav {
    position: absolute;
    top: 40px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.review-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.review-nav-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.review-nav-btn i {
    font-size: 12px;
    color: #666;
}

/* Swiper Navigation Override for Review */
.review-slider .swiper-button-prev,
.review-slider .swiper-button-next {
    display: none;
}

.custom-nav-btn {
    width: 35px !important;
    height: 35px !important;
    background: #f4f4f4;
    border-radius: 8px;
}

.swiper-button-next {
    right: 10px !important;
}

.swiper-button-prev {
    right: 60px !important;
}

/*   Footer Section  */
.footer-section {
    background: #A50A02;
    padding: 0px 0;
}

/* Footer Dividers - Light opacity */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
}


.cake-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, auto));
    gap: 50px;
    justify-content: center;
}

.hero-slide {
    height: 500px;
    /* adjust height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.filter-wrapper {
    gap: 12px;
}

/* Common pill box style */
.filter-box,
.filter-dropdown select {
    border: 1px solid #c8b8b8;
    border-radius: 8px;
    padding: 8px 18px;
    background: #fff;
    cursor: pointer;
}

/* Text styling */
.filter-text {
    letter-spacing: 4px;
    font-size: 13px;
    color: #5e2f2f;
}

/* Checkbox hide default */
.custom-check {
    display: none;
}

/* Custom checkbox box */
.checkmark {
    width: 15px;
    height: 15px;
    border: 2px solid #5e2f2f;
    border-radius: 4px;
    display: inline-block;
    position: relative;
}

/* Tick when checked */
.custom-check:checked+.checkmark::after {
    content: "";
    width: 9px;
    height: 9px;
    background: #5e2f2f;
    position: absolute;
    top: 2px;
    left: 2px;
    border-radius: 2px;
}

/* Dropdown styling */
.filter-dropdown select.custom-select-box {
    background: #f1f1f1;
    color: #5e2f2f;
    letter-spacing: 4px;
    height: 40px;
    border-radius: 8px;
    border-color: #e8e8e8;
    padding-right: 30px;
    appearance: none;
}

/* Dropdown arrow */
.filter-dropdown {
    position: relative;
}

.filter-dropdown::after {
    content: "▼";
    font-size: 10px;
    color: #5e2f2f;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.christmas-section {
    background: #fff;
}

.christmas-logo {
    width: 150px;
    height: auto;
}

.christmas-title {
    /* display: inline-block; */
    font-size: 28px;
    font-weight: 700;
    color: #A40A02;
    padding: 6px 20px;
}

.christmas-text {
    max-width: 750px;
    font-size: 14px;
    letter-spacing: 3px;
    color: #444;
    line-height: 28px;
    text-transform: uppercase;
}

.order-btn {
    background: #A40A02 !important;
    padding: 10px 28px;
    border-radius: 25px !important;
    font-size: 15px;
    letter-spacing: 2px;
    border: none;
    transition: 0.3s;
    color: #fff !important;
}

.order-btn:hover {
    background: #7C0701;
}

.social-icons {
    gap: 40px;
    /* Space between icons */
}

.social-circle {
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    padding: 20px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}


.social-circle:hover {
    background: #f4eaea;
    transform: scale(1.1);

    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.social-circle i {
    font-size: 21px;
    color: #9B0900;
    /* Red icons */
}

/* Hover effect */
.social-circle:hover {
    background: #f4eaea;
    transform: scale(1.1);
}



a {
    text-decoration: none !important;
}







/* detail page css  start*/




/* detail page css  end*/




/* Cart Sidebar Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.cart-overlay.open {
    display: block;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.cart-header h3 {
    font-size: 20px;
    font-weight: 600;
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
}

.clear-cart-text {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
    cursor: pointer;
    text-decoration: underline;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cart-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.cart-item-details .price {
    font-size: 14px;
    color: #e63946;
    font-weight: 700;
    margin-bottom: 5px;
}

.cart-meta p {
    font-size: 12px;
    color: #000;
    margin-bottom: 2px;
}

.qty-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.qty-control button {
    background: none;
    border: none;
    padding: 2px 8px;
    font-size: 16px;
    cursor: pointer;
}

.qty-control span {
    padding: 0 5px;
    font-size: 14px;
    font-weight: 600;
}

.remove-btn {
    font-size: 12px;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
}

.cart-separator {
    border: 0;
    border-top: 1px solid #eee;
    margin: 15px 0;
}

.cart-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.subtotal {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.checkout-btn {
    background-color: #E3000F;
    color: white;
    border-radius: 4px;
    font-weight: 700;
}

.view-cart-btn {
    display: block;
    text-align: center;
    color: #333;
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 450px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* ==========================================================================
   Express Cakes Section Styles
   ========================================================================== */
.express-cakes-section {
    background: #FFF4F4;
    padding: 60px 0 80px;
}

.express-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0 30px;
}

.express-title-area {
    text-align: center;
    flex: 1;
}

.express-subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.express-title {
    font-family: 'Test Domaine Display', Georgia, serif;
    font-size: 36px;
    font-weight: 500;
    color: #5e2d2c;
    letter-spacing: 2px;
    margin: 0;
}

.express-nav {
    display: flex;
    gap: 10px;
}

.express-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.express-nav-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.express-nav-btn i {
    font-size: 12px;
    color: #666;
}

/* ==========================================================================
   Product Card Styles (Migrated from shopdetails.html)
   ========================================================================== */
.cake-section {
    background: #FFF4F4;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 60px;
}

.cake-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.cake-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    justify-items: center;
}

.cake-card {
    width: 270px;
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 22px 20px;
    border-bottom: 1px solid rgba(165, 42, 42, 0.26);
    position: relative;
    /* For absolute positioning of wishlist icon */
}

.cake-img-box {
    background: #f7f7f7;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cake-img-box img {
    max-width: 160px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Wishlist Icon Style */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;

    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

/* Show on card hover */
.cake-card:hover .wishlist-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wishlist-btn i {
    color: #bfaea8;
    /* Muted color initially */
    font-size: 16px;
    transition: color 0.3s ease, transform 0.2s;
}

.wishlist-btn:hover {
    background: #fff;
}

.wishlist-btn:hover i {
    color: #d91b1b;
    /* Red on hover */
}

/* Active/Filled State */
.wishlist-btn.active i {
    font-weight: 900;
    /* Solid style for FontAwesome */
    color: #d91b1b;
    transform: scale(1.1);
}

/* Button override for link */
a.cake-btn {
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
    background: linear-gradient(to right, #765630 50%, #E3000F 50%);
    background-size: 200% 100%;
    background-position: left bottom;
    border: none;
    border-radius: 20px;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-out;
}

a.cake-btn:hover {
    background-position: right bottom;
    color: #fff;
    transform: translateY(-3px);
}

/* Ensure the button text is white */
a.cake-btn:visited {
    color: #fff;
}

/* Category Grid (Icons) */
.category-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0px;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
}

.category-grid img {
    max-width: 140px;
    height: auto;
    transition: transform 0.3s ease;
}

.category-grid img:hover {
    transform: translateY(-5px);
}

/* =========================================
   CATEGORY SLIDER & FILTER STYLES
   ========================================= */

/* Filter Bar Toggle */
.switch-toggle {
    width: 40px;
    height: 22px;
    position: relative;
    display: inline-block;
}

.switch-toggle input {
    display: none;
}

.switch-toggle .slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 20px;
    transition: .3s;
    cursor: pointer;
}

.switch-toggle .slider:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: .3s;
}

.switch-toggle input:checked+.slider {
    background: #A50A02;
}

.switch-toggle input:checked+.slider:before {
    transform: translateX(18px);
}

.toggle-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #444;
}

/* Category Slider */
.category-slider-section .swiper {
    padding-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.category-card:hover {
    transform: translateY(-5px);
}

/* Hover Overlay (Glassmorphism) */
.category-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-card:hover .category-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.overlay-box i {
    font-size: 18px;
    color: #A50A02;
    margin-bottom: 10px;
}

.overlay-box h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #444;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Tharlon', sans-serif;
}

.overlay-box p {
    font-size: 24px;
    font-family: 'Great Vibes', cursive;
    /* Ensure font is loaded if used */
    font-style: italic;
    color: #444;
    margin: 0;
}

/* Pagination */
.swiper-pagination-bullet-active {
    background: #A50A02 !important;
}

/* =========================================
   NEW FILTER BAR STYLES (Refined)
   ========================================= */

.filter-bar-row {
    font-family: 'Tharlon', sans-serif;
    /* Ensure font matches */
}

/* Outlined Buttons (Eggless & Select Area) */
.filter-btn-outline {
    border: 1px solid #a50a022e;
    /* Brown border */
    background: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    color: #A50A02;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

/* Custom Square Checkbox */
.custom-checkbox-square {
    width: 16px;
    height: 16px;
    border: 1px solid #a50a022e;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    background: #fff;
}

/* Dropdown (Gray Background) */
.filter-dropdown-gray {
    background: #e9ecef;
    /* Light gray */
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    color: #444;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    min-width: 140px;
    transition: 0.3s;
}

.filter-dropdown-gray:hover {
    background: #dfe2e6;
}

/* Area Menu Links */
.area-menu a:hover {
    background-color: #f8f9fa;
    color: #A50A02 !important;
}

/* =========================================
   HERO BANNER SLIDER (Swiper)
   ========================================= */

.heroSwiper {
    width: 100%;
    height: 550px;
    /* Adjust height as needed */
    position: relative;
}

.hero-slide-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Custom Navigation Arrows */
.hero-arrow-next,
.hero-arrow-prev {
    color: #fff !important;
    /* Arrow color */
    /* Theme color background */
    width: 25px !important;
    height: 25px !important;
    border-radius: 50%;
    /* Circle shape */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.hero-arrow-next:after,
.hero-arrow-prev:after {
    font-size: 14px;
    /* Smaller arrow icon size */
    font-weight: bold;
}

.hero-arrow-next:hover,
.hero-arrow-prev:hover {
    background: #A50A02;

    /* Theme color on hover */
    color: #fff;
    transform: scale(1.1);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #A50A02;
}

ul {
    margin-bottom: 0px !important;
}

/* Date and Time Input Placeholder Styling */
input[type="date"],
input[type="time"],
input[type="datetime-local"] {
    color: #999;
    position: relative;
}

input[type="date"]:focus,
input[type="time"]:focus,
input[type="datetime-local"]:focus {
    color: #000;
}

input[type="date"]:valid,
input[type="time"]:valid,
input[type="datetime-local"]:valid {
    color: #000;
}

/* Show placeholder text for empty date/time inputs */
input[type="date"]:not(:focus):not(:valid),
input[type="time"]:not(:focus):not(:valid),
input[type="datetime-local"]:not(:focus):not(:valid) {
    color: transparent;
}

input[type="date"]:not(:focus):not(:valid)::before,
input[type="time"]:not(:focus):not(:valid)::before,
input[type="datetime-local"]:not(:focus):not(:valid)::before {
    content: attr(placeholder);
    color: #999;
    position: absolute;
    left: 0;
}

/* Quantity input styling */
input[type="number"].qty-input {
    appearance: textfield;
    -moz-appearance: textfield;
    text-align: center;
}

input[type="number"].qty-input::-webkit-outer-spin-button,
input[type="number"].qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.qty-input {
    color: #000;
    font-weight: 500;
}

/* My Wishlist header styling */
.contact-list li a[href="whistlist.html"] {
    color: white !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-list li a[href="whistlist.html"]:hover {
    opacity: 0.9;
}

/* Sticky Header Size Reduction */
.sticky .header-main {
    padding: 10px 0 !important;
    transition: all 0.3s ease;
}

.sticky .logo img {
    max-height: 120px !important;
    transition: all 0.3s ease;
}

.sticky .search-widget {
    height: 40px !important;
}

.sticky .search-widget input {
    height: 40px !important;
    font-size: 14px !important;
}

.sticky .header-icon svg,
.sticky .cart-icon svg {
    width: 30px !important;
    height: 30px !important;
}

.sticky .cart-info span {
    font-size: 12px !important;
    line-height: 1.2 !important;
}

.sticky .header-right {
    gap: 10px !important;
}