    :root {
        --accent: #d91b1b;
        --muted: #6b6b6b;
        --max-w: 1100px;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        background: #fff;
        color: #111;
    }

    .container-max {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    /* TOP BAR (kept visually same) */
    /* TOP BAR LAYOUT */
    .top-bar {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        gap: 20px;
    }

    /* LEFT */
    .tb-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* TOGGLE SWITCH */
    .switch-toggle {
        width: 40px;
        height: 20px;
        position: relative;
        display: inline-block;
    }

    .switch-toggle input {
        display: none;
    }

    .switch-toggle .slider {
        position: absolute;
        inset: 0;
        background: #dcdcdc;
        border-radius: 20px;
        transition: .2s;
    }

    .switch-toggle .slider:before {
        content: "";
        position: absolute;
        width: 14px;
        height: 14px;
        left: 3px;
        top: 3px;
        background: #fff;
        border-radius: 50%;
        transition: .2s;
    }

    .switch-toggle input:checked+.slider {
        background: #d91b1b;
    }

    .switch-toggle input:checked+.slider:before {
        transform: translateX(20px);
    }

    .toggle-label {
        font-size: 14px;
        color: #333;
    }

    /* CENTER BAR */
    .tb-center {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        gap: 16px;
    }

    .filter-text,
    .sort-text,
    .featured-label {
        font-size: 14px;
        color: #222;
    }

    .filter-icon {
        width: 14px;
        height: 14px;
    }

    .down-icon {
        width: 14px;
        height: 14px;
    }

    .featured-wrap {
        display: flex;
        align-items: center;
        gap: 4px;
        cursor: pointer;
    }

    /* RIGHT SIDE AREA SELECT */
    .tb-right {
        display: flex;
        align-items: center;
        gap: 10px;
        background-color: #D9D9D96B;
        border-radius: 5px;
        padding-left: 10px;
    }

    .area-label {
        font-size: 14px;
        color: #333;
    }

    .area-dropdown {
        position: relative;
        display: inline-block;
    }

    .area-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        background: #ffffff;
        border: 1px solid #eee;
        border-radius: 8px;
        cursor: pointer;
        font-size: 14px;
        color: #b63e37;
    }

    /* Dropdown menu */
    .area-menu {
        display: none;
        position: absolute;
        top: 25px !important;
        right: 0;
        min-width: 150px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
        z-index: 20;
    }

    .area-menu a {
        display: block;
        padding: 10px 14px;
        font-size: 14px;
        color: #333;
        text-decoration: none;
    }

    .area-menu a:hover {
        background: #f5f5f5;
    }

    /* class toggled by JS */
    .area-dropdown.open .area-menu {
        display: block;
    }

    /* MOBILE */
    @media (max-width: 768px) {
        .tb-center {
            gap: 12px;
        }

        .area-btn {
            padding: 6px 10px;
        }
    }



    .area-select {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #fafafa;
        /* light background */
        border: 1px solid #efefef;
        /* subtle border */
        padding-left: 6px;
        border-radius: 8px;
        box-shadow: none;
    }

    /* left text */
    .area-label {
        font-size: 14px;
        color: #333;
        white-space: nowrap;
    }

    /* dropdown wrapper */
    .area-dropdown {
        position: relative;
        display: inline-block;
    }

    /* right small button style */
    .area-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #fff;
        /* white pill inside the container */
        border: 1px solid #eee;
        color: #b63e37;
        /* red text */
        padding: 6px 10px;
        border-radius: 6px;
        font-size: 13px;
        cursor: pointer;
        line-height: 1;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    }

    /* caret small */
    .area-btn .caret {
        font-size: 12px;
        color: #b63e37;
    }

    /* dropdown menu (hidden by default) */
    .area-menu {
        position: absolute;
        top: 26px;
        right: 0;
        min-width: 150px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 6px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        display: none;
        z-index: 50;
    }

    /* menu items */
    .area-menu a {
        display: block;
        padding: 8px 12px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
    }

    .area-menu a:hover {
        background: #f5f5f5;
    }

    /* show menu on hover for desktop */
    .area-dropdown:hover .area-menu {
        display: block;
    }

    /* optional small responsive tweak */
    @media (max-width:480px) {
        .area-select {
            padding: 6px;
            gap: 8px;
        }

        .area-btn {
            padding: 6px 8px;
            font-size: 13px;
        }
    }



    /* PAGE / PRODUCT */
    .page-title {
        font-size: 30px;
        font-weight: 500;
        margin-bottom: 18px;
        letter-spacing: 0.6px;
        text-align: center;
    }

    .product-main {
        margin-top: 58px;
        margin-right: 20px;
        margin-left: 20px;
    }

    .row-product {
        display: flex;
        gap: 32px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .left-col {
        flex: 0 0 420px;
        max-width: 420px;
    }

    .right-col {
        flex: 1 1 460px;
        min-width: 260px;
    }

    .img-card {
        background: #fff;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .img-card img {
        width: 100%;
        max-width: 450px;
        border-radius: 16px;
        object-fit: contain !important;
        height: 400px;
        background: #f4f4f4;
    }

    /* RIGHT SIDE */
    .right-product-details {
        padding-left: 8px;
        margin-top: 10px;
    }

    .product-title {
        font-family: 'Domaine Display', serif;
        font-weight: 800;
        font-size: 18px;
        text-transform: uppercase;
        margin-bottom: 6px;
    }

    .product-price {
        font-family: 'Domaine Display', serif;
        color: var(--accent);
        font-weight: 800;
        font-size: 20px;
        margin-bottom: 6px;
    }

    .tax-note {
        color: var(--muted);
        font-size: 12px;
        margin-bottom: 12px;
    }

    hr.sep {
        border: 0;
        height: 1px;
        background: #efefef;
        margin: 12px 0 18px;
    }

    .label-small {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        display: block;
    }

    .size-btns {
        display: flex;
        gap: 14px;
        margin-bottom: 18px;
        flex-wrap: wrap;
    }

    .size {
        padding: 14px 14px;
        background: #f2f2f2;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        border: 0px solid #ddd;
        cursor: pointer;
    }

    .size.active {
        background: #333;
        color: #fff;
    }

    /* layout for date + quantity (same row) */
    .two-col {
        display: flex;
        gap: 18px;
        margin-bottom: 18px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .two-col .field-box {
        flex: 1;
        min-width: 160px;
    }

    .field-label {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
        display: block;
    }

    .small-field {
        height: 44px;
        border-radius: 6px;
        border: 1px solid #ccc;
        padding: 8px 10px;
        width: 100%;
        box-sizing: border-box;
    }

    /* QUANTITY: red rounded box with inner - 1 + */
    .qty-container {
        display: inline-block;
        border: 1px solid var(--accent);
        border-radius: 8px;
        padding: 2px;
        background: #fff;
    }

    .qty-container .qty-box {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .qty-btn {
        width: 36px;
        height: 36px;
        border: none;
        background: transparent;
        font-weight: 700;
        font-size: 16px;
        cursor: pointer;
    }

    .qty-input {
        width: 60px;
        height: 36px;
        text-align: center;
        border: none;
        outline: none;
        font-size: 15px;
        background: transparent;
    }

    .qty-input::-webkit-outer-spin-button,
    .qty-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .custom-textarea {
        width: 100%;
        min-height: 99px;
        border-radius: 6px;
        border: 1px solid #ccc;
        padding: 10px;
        box-sizing: border-box;
    }

    .add-cart {
        width: 100%;
        background: var(--accent);
        color: #fff;
        border: 0;
        padding: 12px;
        font-size: 15px;
        font-weight: 700;
        border-radius: 6px;
        margin-bottom: 18px;
    }

    /* Accordion container */
    .mini-accordion .acc-item {
        border-bottom: 1px solid #efefef;
        padding: 0;
    }

    /* Accordion header */
    .acc-header {
        width: 100%;
        padding: 14px 0;
        background: none;
        border: none;
        outline: none;
        font-size: 14px;
        font-weight: 700;
        color: #000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    /* Arrow style */
    .acc-arrow {
        width: 14px;
        transition: transform 0.25s ease;
    }

    /* Rotate arrow WHEN OPEN */
    .acc-header:not(.collapsed) .acc-arrow {
        transform: rotate(180deg);
    }

    /* Body */
    .acc-body {
        padding: 12px 0;
        font-size: 14px;
        color: #444;
    }


    /* responsive */
    @media (max-width:991.98px) {

        .left-col,
        .right-col {
            flex-basis: 100%;
            max-width: 100%;
        }

        .two-col {
            flex-direction: row;
        }
    }

    @media (max-width:575.98px) {
        .two-col {
            flex-direction: column;
        }

        .page-title {
            font-size: 22px;
        }
    }



    /* ADD these styles to your main stylesheet (place after any existing top-bar rules) */

    /* TOP BAR */
    .top-bar {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        box-sizing: border-box;
    }

    /* containers */
    .tb-left {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

    .tb-center {
        display: flex;
        align-items: center;
        gap: 18px;
        justify-content: center;
        flex: 1 1 auto;
    }

    .tb-right {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 0 0 auto;
    }

    /* toggle */
    .switch-toggle {
        width: 38px;
        height: 20px;
        position: relative;
        display: inline-block;
    }

    .switch-toggle input {
        display: none;
    }

    .switch-toggle .slider {
        position: absolute;
        inset: 0;
        background: #ececec;
        border-radius: 20px;
        transition: .18s;
    }

    .switch-toggle .slider:before {
        content: "";
        position: absolute;
        left: 3px;
        top: 3px;
        width: 14px;
        height: 14px;
        background: #fff;
        border-radius: 50%;
        transition: .18s;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    }

    .switch-toggle input:checked+.slider {
        background: #1e90ff;
    }

    .switch-toggle input:checked+.slider:before {
        transform: translateX(18px);
    }

    .toggle-label {
        font-size: 14px;
        color: #333;
    }

    /* center items */
    .center-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #222;
        font-size: 14px;
    }

    .center-icon {
        width: 14px;
        height: 14px;
        display: inline-block;
        vertical-align: middle;
        opacity: .95;
    }

    /* featured small caret */
    .center-item .down-icon {
        width: 14px;
        height: 14px;
    }

    /* right area */
    .area-label {
        font-size: 14px;
        color: #333;
        margin-right: 6px;
    }

    /* area pill */
    .area-dropdown {
        position: relative;
        display: inline-block;
    }

    .area-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 12px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        cursor: pointer;
        font-size: 14px;
        color: #b63e37;
    }

    .area-menu {
        display: none;
        position: absolute;
        top: 40px;
        right: 0;
        min-width: 150px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
        z-index: 40;
    }

    .area-menu a {
        display: block;
        padding: 10px 12px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
    }

    .area-menu a:hover {
        background: #f5f5f5;
    }

    /* toggled state */
    .area-dropdown.open .area-menu {
        display: block;
    }

    /* responsive */
    @media (max-width: 1199px) {

        /* Mobile Header Layout */
        .header-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-header-left {
            order: 1;
            justify-content: flex-start !important;
            width: auto;
        }

        .mean__menu-wrapper {
            order: 2;
            flex-grow: 1;
            display: flex;
            justify-content: center;
            width: auto;
        }

        .main-menu .logo {
            margin: 0;
        }

        .mobile-header-right {
            order: 3;
            justify-content: flex-end !important;
            width: auto;
        }
    }

    @media (max-width: 768px) {

        /* Top Bar Wrapping */
        .top-bar {
            flex-wrap: wrap;
            gap: 10px;
            padding: 10px 15px;
        }

        .tb-left {
            order: 1;
            margin-right: auto;
        }

        .tb-right {
            order: 2;
            margin-left: auto;
        }

        .tb-center {
            width: 100%;
            order: 3;
            justify-content: space-between;
            gap: 15px;
            margin-top: 15px;
            border-top: 1px solid #f1f1f1;
            padding-top: 12px;
        }

        .center-icon {
            width: 12px;
            height: 12px;
        }

        .area-btn {
            padding: 6px 10px;
        }

        .area-label {
            display: none;
            /* simple cleaner look on mobile */
        }
    }

    /* FILTER DROPDOWN */
    .filter-dropdown {
        position: relative;
        cursor: pointer;
    }

    .filter-dropdown .filter-menu {
        position: absolute;
        top: 28px;
        left: 0;
        min-width: 160px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        display: none;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    .filter-dropdown:hover .filter-menu {
        display: block;
    }

    .filter-menu a {
        display: block;
        padding: 10px 12px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
    }

    .filter-menu a:hover {
        background: #f5f5f5;
    }

    /* FEATURED DROPDOWN */
    .featured-dropdown {
        position: relative;
        cursor: pointer;
    }

    .featured-dropdown .featured-menu {
        position: absolute;
        top: 21px;
        left: 0;
        min-width: 160px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        display: none;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

    .featured-dropdown:hover .featured-menu {
        display: block;
    }

    .featured-menu a {
        display: block;
        padding: 10px 12px;
        font-size: 14px;
        color: #333;
        text-decoration: none;
    }

    .featured-menu a:hover {
        background: #f5f5f5;
    }













    /* SECTION BACKGROUND */
    .cake-section {
        background: #fff;
        /* light pink */
        padding: 20px 0;
        display: flex;
        justify-content: center;
    }

    /* INNER WRAPPER — keeps cards centered and not full width */
    .cake-wrapper {
        max-width: 1000px;
        width: 100%;
        margin: 0 auto;
    }

    /* GRID */
    .cake-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
        justify-items: center;
    }

    /* CARD */
    .cake-card {
        width: 230px;
        background: #ffffff;
        border-radius: 18px;
        padding: 18px 22px 20px;
        border-bottom: 1px solid rgba(165, 42, 42, 0.26);
    }

    /* IMAGE BOX */
    .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);
    }

    /* TEXT */
    .cake-title {
        font-family: 'Domaine Display', serif;
        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin: 0 0 4px;
    }

    .cake-price {
        font-family: 'Domaine Display', serif;
        font-weight: 700;
        font-size: 15px;
        margin: 0 0 4px;
    }

    .cake-rating {
        font-size: 13px;
        margin: 0 0 10px;
    }

    .star {
        color: #ffc85c;
        margin-right: 6px;
    }

    /* BUTTON */
    .cake-btn {
        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;
    }

    .cake-btn::before {
        content: "•";
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
    }

    /* HOVER: #E3000F animated */
    .cake-btn:hover {
        background-position: right bottom;
        color: #fff;
        transform: translateY(-3px);
    }

    /* RESPONSIVE */
    .cake-wrapper {
        padding: 0 15px;
    }

    /* Add padding for mobile */
    .cake-card {
        width: 100%;
        /* Fluid width to fill grid cell */
        max-width: 280px;
        /* Limit max width */
        background: #ffffff;
        border-radius: 18px;
        padding: 18px 22px 20px;
        border-bottom: 2px solid rgba(165, 42, 42, 0.26);
        /* Slightly thicker border for visibility */
        margin: 0 auto;
        /* Center in cell */
        position: relative;
        /* For absolute positioning of wishlist icon */
    }

    @media (max-width:1100px) {
        .cake-grid {
            grid-template-columns: repeat(3, 1fr);
            padding: 0 10px;
        }
    }

    @media (max-width:820px) {
        .cake-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
    }

    @media (max-width:520px) {
        .cake-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
        }

        .cake-wrapper {
            padding: 0 10px;
        }

        .cake-card {
            padding: 12px 10px 14px;
            max-width: 100%;
        }

        .cake-img-box {
            padding: 12px;
            height: 120px;
            margin-bottom: 10px;
        }

        .cake-img-box img {
            max-width: 100px;
        }

        .cake-title {
            font-size: 11px;
            letter-spacing: 1px;
        }

        .cake-price {
            font-size: 13px;
        }

        .cake-rating {
            font-size: 11px;
            margin-bottom: 8px;
        }

        .cake-btn {
            padding: 6px 0;
            font-size: 11px;
        }

        .cake-btn::before {
            left: 10px;
            font-size: 14px;
        }
    }





    /* Use this exact block (adds !important so it overrides other rules) */
    .tb-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }


    .cake-grid1 {
        display: flex;

        gap: 53px;
        justify-items: center;
        justify-content: center;
        align-items: center;
    }
