:root {
    --ash-bg: #ffffff;
    --ash-text: #222222;
    --ash-muted: #6b7280;
    --ash-line: #ececec;
    --ash-soft: #f7f7f7;
    --ash-pill: #ff385c;
    --ash-pill-dark: #e11d48;
    --ash-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    --ash-shadow-lg: 0 18px 45px rgba(0, 0, 0, .12);
    --ash-radius: 999px;
    --ash-radius-lg: 24px;
}

.ash-header {
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--ash-line);
}

.ash-header-top {
    padding: 18px 24px 14px;
}

.ash-header-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr 300px;
    align-items: start;
    gap: 20px;
}

.ash-header-left,
.ash-header-right {
    display: flex;
    align-items: center;
    min-height: 56px;
}

.ash-header-right {
    justify-content: flex-end;
}

.ash-brand img,
.ash-header-bottom-logo img,
.ash-mobile-brand img {
     display: block;
    max-height: 54px;
    width: auto;
    background-color: #2b2a28;
    border-radius: 5px;
    padding: 0px 14px;
}

.ash-mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    padding: 0;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
}

.ash-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #222;
    margin: 5px auto;
    border-radius: 10px;
    transition: .3s ease;
}

.ash-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.ash-top-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.ash-top-nav-link {
    position: relative;
    text-decoration: none;
    color: var(--ash-text);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 12px;
    transition: .25s ease;
}

.ash-top-nav-link:hover {
    background: #f4f4f4;
    color: #000;
}

.ash-top-nav-link.ash-active::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -6px;
    height: 3px;
    border-radius: 30px;
    background: #222;
}

.ash-search-bar {
    width: 100%;
    max-width: 860px;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 999px;
    box-shadow: var(--ash-shadow);
    display: grid;
    grid-template-columns: 1.2fr 1px 1fr 1px 1fr 1px 1fr auto;
    align-items: center;
    overflow: hidden;
}

.ash-search-item {
    padding: 14px 22px;
    min-width: 0;
}

.ash-search-item label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.ash-search-item input,
.ash-search-item select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #555;
    font-size: 15px;
    padding: 0;
    appearance: none;
}

.ash-search-item input::placeholder {
    color: #8b8b8b;
}

.ash-search-divider {
    width: 1px;
    height: 34px;
    background: #e5e5e5;
}

.ash-search-btn {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border: none;
    border-radius: 50%;
    margin-right: 8px;
    background: linear-gradient(135deg, var(--ash-pill), var(--ash-pill-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .25s ease;
}

.ash-search-btn:hover {
    transform: scale(1.04);
}

.ash-search-btn svg {
    width: 22px;
    height: 22px;
}

.ash-head-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ash-bulk-btn,
.ash-host-link,
.ash-auth-pill {
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: .25s ease;
}

.ash-bulk-btn {
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 999px;
}

.ash-bulk-btn:hover {
    background: #000;
}

.ash-host-link {
    background: transparent;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 999px;
}

.ash-host-link:hover {
    background: #f3f3f3;
    color: #000;
}

.ash-auth-pill {
    background: #f12c53;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border: 1px solid #f12c53;
    border-radius: 999px;
}

.ash-auth-pill:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.ash-account-btn {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 999px;
    padding: 7px 10px 7px 7px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .04);
    transition: .25s ease;
}

.ash-account-btn:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.ash-account-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    flex-shrink: 0;
}

.ash-account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ash-account-name {
    max-width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.ash-account-menu-icon {
    width: 18px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ash-account-menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: #333;
    border-radius: 10px;
}

.ash-header-bottom {
    border-top: 1px solid var(--ash-line);
    background: #fff;
    padding: 12px 24px;
}

.ash-header-bottom-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.ash-cats-trigger-wrap {
    position: relative;
    justify-self: start;
}

.ash-cats-trigger {
    height: 46px;
    padding: 0 18px;
    border: 1px solid #ddd;
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
}

.ash-cats-trigger svg {
    width: 18px;
    height: 18px;
}

.ash-cats-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 420px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 22px;
    box-shadow: var(--ash-shadow-lg);
    padding: 20px;
    display: none;
}

.ash-cats-trigger-wrap.ash-open .ash-cats-dropdown {
    display: block;
}

.ash-cats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.ash-cats-link {
    text-decoration: none;
    color: #222;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fafafa;
    border: 1px solid #efefef;
    transition: .25s ease;
}

.ash-cats-link:hover {
    background: #f1f1f1;
    color: #000;
}

.ash-header-bottom-logo {
    justify-self: center;
}

.ash-header-offer {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 14px;
}

.ash-header-offer strong {
    color: #111;
}

.ash-offer-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ash-pill);
    display: inline-block;
}

.ash-offcanvas-backdrop,
.ash-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    transition: .28s ease;
    z-index: 1200;
}

.ash-offcanvas-backdrop.ash-show,
.ash-mobile-backdrop.ash-show {
    opacity: 1;
    visibility: visible;
}

.ash-account-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1300;
    transform: translateX(100%);
    transition: .32s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .12);
    display: flex;
    flex-direction: column;
}

.ash-account-offcanvas.ash-show {
    transform: translateX(0);
}

.ash-account-offcanvas-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 20px 16px;
    border-bottom: 1px solid #eee;
}

.ash-account-user {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.ash-account-user-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.ash-account-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ash-account-user h4 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.ash-account-user p {
    margin: 0;
    font-size: 13px;
    color: #777;
    word-break: break-word;
}

.ash-offcanvas-close,
.ash-mobile-close {
    width: 42px;
    height: 42px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.ash-offcanvas-close span,
.ash-mobile-close span {
    position: absolute;
    left: 11px;
    top: 20px;
    width: 20px;
    height: 2px;
    background: #222;
    border-radius: 10px;
}

.ash-offcanvas-close span:first-child,
.ash-mobile-close span:first-child {
    transform: rotate(45deg);
}

.ash-offcanvas-close span:last-child,
.ash-mobile-close span:last-child {
    transform: rotate(-45deg);
}

.ash-account-offcanvas-body {
    flex: 1;
    overflow: auto;
    padding: 18px 20px;
}

.ash-account-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ash-account-link {
    text-decoration: none;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fafafa;
    border: 1px solid #eee;
    transition: .25s ease;
}

.ash-account-link:hover {
    background: #f1f1f1;
    color: #000;
}

.ash-account-offcanvas-foot {
    padding: 18px 20px 24px;
    border-top: 1px solid #eee;
}

.ash-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    background: linear-gradient(135deg, var(--ash-pill), var(--ash-pill-dark));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 16px;
}

.ash-mobile-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1300;
    transform: translateX(-100%);
    transition: .32s ease;
    /* box-shadow: 10px 0 30px rgba(0, 0, 0, .12); */
    display: flex;
    flex-direction: column;
}

.ash-mobile-panel.ash-show {
    transform: translateX(0);
}

.ash-mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.ash-mobile-panel-body {
    padding: 20px;
    overflow: auto;
}

.ash-mobile-search-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.ash-mobile-search-group {
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    padding: 12px 14px;
}

.ash-mobile-search-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.ash-mobile-search-group input,
.ash-mobile-search-group select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #555;
}

.ash-mobile-search-btn {
    min-height: 50px;
    border: none;
    background: linear-gradient(135deg, var(--ash-pill), var(--ash-pill-dark));
    color: #fff;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
}

.ash-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.ash-mobile-nav a,
.ash-mobile-cat-list a {
    text-decoration: none;
    color: #222;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fafafa;
    border: 1px solid #eee;
    display: block;
}

.ash-mobile-cat-box h5 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.ash-mobile-cat-list {
    display: grid;
    gap: 8px;
}

.ash-mobile-auth {
    margin-top: 24px;
}

.ash-mobile-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 16px;
    text-decoration: none;
    background: #111;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .ash-header-inner {
        grid-template-columns: 200px 1fr 220px;
    }

    .ash-search-bar {
        grid-template-columns: 1fr 1px 1fr 1px 1fr auto;
    }

    .ash-search-item:last-of-type,
    .ash-search-divider:nth-last-of-type(2) {
        display: none;
    }

    .ash-account-name {
        display: none;
    }
}

@media (max-width: 991px) {
    .ash-header-top {
        padding: 14px 16px;
    }

    .ash-header-inner {
        grid-template-columns: 1fr auto;
        gap: 16px;
    }

    .ash-header-center {
        grid-column: 1 / -1;
        order: 3;
    }

    .ash-top-nav {
        display: none;
    }

    .ash-mobile-toggle {
        display: inline-block;
    }

    .ash-header-left {
        justify-content: flex-start;
    }

    .ash-header-right {
        justify-content: flex-end;
    }

    .ash-header-bottom {
        display: none;
    }

    .ash-search-bar {
        max-width: 100%;
        grid-template-columns: 1fr;
        border-radius: 26px;
        padding: 10px;
        gap: 8px;
    }

    .ash-search-divider {
        display: none;
    }

    .ash-search-item {
        padding: 12px 14px;
        border: 1px solid #eee;
        border-radius: 16px;
        background: #fff;
    }

    .ash-search-btn {
        width: 100%;
        height: 50px;
        border-radius: 16px;
        margin: 0;
    }

    .ash-bulk-btn {
        display: none;
    }

    .ash-host-link {
        display: none;
    }
}

@media (max-width: 575px) {
    .ash-header-top {
        padding: 12px;
    }

    .ash-brand img {
        max-height: 36px;
    }

    .ash-auth-pill {
        padding: 10px 14px;
        font-size: 13px;
    }

    .ash-account-btn {
        padding: 6px 8px 6px 6px;
    }

    .ash-account-avatar {
        width: 34px;
        height: 34px;
    }

    .ash-account-offcanvas,
    .ash-mobile-panel {
        width: 100%;
    }
}

.ash-header-right {
    min-width: max-content;
}

.formuidesign {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* --  */

/* product box  */


.ash-product-card,
.ash-product-card * {
    box-sizing: border-box;
}

.ash-product-card {
    width: 100%;
    margin-bottom: 22px;
}

.ash-product-card__inner {
    position: relative;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
}

.ash-product-card__inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border-color: #e6e6e6;
}

.ash-product-media {
    position: relative;
    margin: 0;
    min-height: 255px;
    padding: 16px 16px 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ash-product-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 205px;
    text-decoration: none;
}

.ash-product-image {
    max-width: 100%;
    max-height: 185px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform .28s ease;
}

.ash-product-card__inner:hover .ash-product-image {
    transform: scale(1.04);
}

.ash-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f4f4f4;
    color: #2d2d2d;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ash-product-badge__dot {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    background: #fff;
    color: #ef233c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(239, 35, 60, 0.18);
}

.ash-product-top-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
}

.ash-product-floating-actions {
    position: absolute;
    right: 14px;
    bottom: 10px;
    z-index: 4;
}

.ash-product-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e7e7e7;
    background: #fff;
    color: #6b7280;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
    transition: all .22s ease;
    padding: 0;
}

.ash-product-icon-btn:hover {
    color: #ef233c;
    border-color: #ef233c;
    transform: translateY(-1px);
}

.ash-product-icon-btn i {
    font-size: 18px;
    line-height: 1;
}

.ash-product-body {
    padding: 8px 16px 16px;
}

.ash-product-title {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.38;
    font-weight: 700;
    color: #1d2433;
    min-height: 46px;
}

.ash-product-title a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ash-product-location-row {
    margin-bottom: 12px;
}

.ash-product-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #7a8091;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

.ash-product-location svg {
    color: #7a8091;
    flex: 0 0 auto;
    margin-top: 1px;
}

.ash-product-location span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ash-product-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.ash-product-price {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    color: #2b2f3a;
}

.ash-product-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #4b5563;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.ash-product-rating i {
    color: #f5b301;
    font-size: 18px;
    line-height: 1;
}

.ash-product-rating span {
    font-size: 16px;
    color: #4b5563;
}

.ash-product-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(180deg, #ff2d55 0%, #e8173f 100%);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    box-shadow: 0 8px 18px rgba(232, 23, 63, 0.28);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    padding: 10px;
}

.ash-product-book-btn:hover {
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(232, 23, 63, 0.34);
    filter: brightness(1.02);
}

.ash-product-book-status {
    position: absolute;
    left: 14px;
    bottom: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: #ef233c;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.ash-product-book-status--available {
    background: #1faa59;
}

/* Share */
.ash-share-wrapper {
    position: relative;
}

.ash-share-menu {
    position: absolute;
    top: 50%;
    right: 48px;
    transform: translateY(-50%);
    display: none;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
    padding: 7px 9px;
    z-index: 20;
}

.ash-share-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f8;
    color: #303646;
    text-decoration: none;
    transition: all .2s ease;
}

.ash-share-icon i {
    font-size: 16px;
}

.ash-share-icon:hover {
    background: #ef233c;
    color: #fff;
}

.ash-share-wrapper:hover .ash-share-menu {
    display: flex;
}

/* Override old product classes only inside this card */
.ash-product-card .product-action-vertical,
.ash-product-card .product-action,
.ash-product-card .product-price,
.ash-product-card .product-cat,
.ash-product-card .product-title,
.ash-product-card .product-body,
.ash-product-card .product-media {
    all: unset;
}

@media (max-width: 767.98px) {
    .ash-product-media {
        min-height: 220px;
        padding: 14px 14px 4px;
    }

    .ash-product-image-link {
        min-height: 180px;
    }

    .ash-product-image {
        max-height: 160px;
    }

    .ash-product-title {
        font-size: 15px;
        min-height: 42px;
    }

    .ash-product-location {
        font-size: 13px;
    }

    .ash-product-price {
        font-size: 20px;
    }

    .ash-product-rating {
        font-size: 16px;
    }

    .ash-product-rating span {
        font-size: 14px;
    }

    .ash-product-book-btn {
        min-height: 46px;
        font-size: 18px;
        border-radius: 12px;
    }

    .ash-product-icon-btn {
        width: 36px;
        height: 36px;
    }

    .ash-share-menu {
        right: 42px;
        gap: 6px;
        padding: 6px 7px;
    }

    .ash-share-icon {
        width: 29px;
        height: 29px;
        min-width: 29px;
    }

    .ash-product-badge {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ash-product-card__inner {
        border-radius: 18px;
    }

    .ash-product-body {
        padding: 8px 14px 14px;
    }

    .ash-product-title {
        font-size: 14px;
    }

    .ash-product-price {
        font-size: 20px;
    }

    .ash-product-book-btn {
        font-size: 17px;
    }
}

.share-wrapper a svg {
    width: 20px;
    color: #ee1d45;
}


.btn-product-icon:hover,
.btn-product-icon:focus {
    background-color: transparent !important;
}


/* -- testimonials-card  */


/* ================================
   KekeCruise Testimonial Section
   Unique Classes - No Conflict
================================ */

.kkc-testimonial-section {
    position: relative;
    padding: 70px 0 80px;
    background: #ffffff;
    overflow: hidden;
    padding-top: 0px;
}

.kkc-testimonial-section .container {
    position: relative;
    z-index: 2;
}

/* Header */
.kkc-testimonial-header {
    max-width: 640px;
    margin: 0 auto 42px;
    text-align: center;
}

.kkc-testimonial-header h2 {
    margin: 0 0 12px;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.8px;
}

.kkc-testimonial-header h2 span {
    color: #ef3340;
}

.kkc-testimonial-header p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    color: #5f5f5f;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider */
.kkc-testimonial-slider {
    position: relative;
}

.kkc-testimonial-slider .owl-stage-outer {
    padding: 8px 0 18px;
}

.kkc-testimonial-slider .item {
    height: 100%;
}

/* Card */
.kkc-testimonial-card {
    position: relative;
    background: #f6f3f3;
    border-radius: 10px;
    padding: 28px 22px 20px;
    text-align: center;
    min-height: 265px;
    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    box-shadow: none;
}

.kkc-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* Quote */
.kkc-testimonial-quote {
    font-size: 72px;
    line-height: 1;
    font-weight: 800;
    color: #f3c4cd;
    margin-bottom: 10px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text */
.kkc-testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #1d1d1d;
    font-weight: 400;
    max-width: 92%;
    margin: 0 auto 20px;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Divider */
.kkc-testimonial-divider {
    width: 100%;
    height: 1.5px;
    background: #000;
    margin: 0 auto 16px;
    opacity: 0.9;
}

/* Footer */
.kkc-testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
}

.kkc-testimonial-user-img {
    width: 42px !important;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.kkc-testimonial-user-info h6 {
    margin: 0 0 3px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #181818;
}

.kkc-testimonial-user-info span {
    display: none;
    /* screenshot me visible nahi tha, isliye hide */
}

.kkc-testimonial-stars {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 1px;
    color: #f4aa18;
    font-weight: 700;
}

/* Owl dots */
.kkc-testimonial-slider.owl-theme .owl-dots {
    margin-top: 26px;
    text-align: center;
}

.kkc-testimonial-slider.owl-theme .owl-dots .owl-dot {
    outline: none;
}

.kkc-testimonial-slider.owl-theme .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0 4px;
    background: #cfd4da;
    border-radius: 50%;
    transition: all 0.25s ease;
    display: block;
}

.kkc-testimonial-slider.owl-theme .owl-dots .owl-dot.active span,
.kkc-testimonial-slider.owl-theme .owl-dots .owl-dot:hover span {
    width: 26px;
    border-radius: 30px;
    background: linear-gradient(90deg, #ff2f63 0%, #6fa9ff 100%);
}

/* Responsive */
@media (max-width: 1199.98px) {
    .kkc-testimonial-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 991.98px) {
    .kkc-testimonial-section {
        padding: 60px 0 70px;
    }

    .kkc-testimonial-header {
        margin-bottom: 34px;
    }

    .kkc-testimonial-header h2 {
        font-size: 36px;
    }

    .kkc-testimonial-card {
        min-height: 250px;
        padding: 24px 18px 18px;
    }

    .kkc-testimonial-text {
        font-size: 14px;
        min-height: 82px;
    }
}

@media (max-width: 767.98px) {
    .kkc-testimonial-section {
        padding: 50px 0 60px;
    }

    .kkc-testimonial-header h2 {
        font-size: 30px;
    }

    .kkc-testimonial-header p {
        font-size: 14px;
        line-height: 1.6;
    }

    .kkc-testimonial-card {
        border-radius: 12px;
        min-height: auto;
        padding: 24px 18px 18px;
    }

    .kkc-testimonial-quote {
        font-size: 58px;
        height: 42px;
        margin-bottom: 8px;
    }

    .kkc-testimonial-text {
        max-width: 100%;
        min-height: auto;
        margin-bottom: 18px;
    }

    .kkc-testimonial-divider {
        margin-bottom: 14px;
    }

    .kkc-testimonial-user-info h6 {
        font-size: 14px;
    }

    .kkc-testimonial-stars {
        font-size: 12px;
    }
}

@media (max-width: 575.98px) {
    .kkc-testimonial-header h2 {
        font-size: 26px;
    }

    .kkc-testimonial-header {
        margin-bottom: 28px;
    }

    .kkc-testimonial-card {
        padding: 22px 16px 16px;
    }

    .kkc-testimonial-text {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .kkc-testimonial-user-img {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }
}


.kkc-testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kkc-testimonial-quote svg {
    width: 55px;
}



/* ==========================================
       KKC Home Blog Section - Unique CSS
    ========================================== */

.kkc-home-blog-section {
    position: relative;
    padding: 72px 0 82px;
    background: #ffffff;
    overflow: hidden;
    padding-top: 0px !important;
}

.kkc-home-blog-section .container {
    position: relative;
    z-index: 2;
}

/* Header */
.kkc-home-blog-header {
    max-width: 640px;
    margin: 0 auto 42px;
    text-align: center;
}

.kkc-home-blog-header h2 {
    margin: 0 0 12px;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: #111111;
}

.kkc-home-blog-header h2 span {
    color: #ef3340;
}

.kkc-home-blog-header p {
    max-width: 560px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    color: #555555;
}

/* Slider */
.kkc-home-blog-slider {
    position: relative;
}

.kkc-home-blog-slider .owl-stage-outer {
    padding: 6px 0 18px;
}

.kkc-home-blog-slider .item {
    height: 100%;
}

/* Card */
.kkc-home-blog-card {
    height: 100%;
    background: transparent;
}

.kkc-home-blog-image-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f3f3;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.kkc-home-blog-image-link {
    display: block;
    text-decoration: none;
}

.kkc-home-blog-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.kkc-home-blog-card:hover .kkc-home-blog-image {
    transform: scale(1.04);
}

/* Content */
.kkc-home-blog-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 8px 0 8px;
}

.kkc-home-blog-text-wrap {
    flex: 1 1 auto;
    min-width: 0;
}

.kkc-home-blog-title {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 500;
    color: #111111;
    letter-spacing: -0.2px;
}

.kkc-home-blog-title a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kkc-home-blog-title a:hover {
    color: #ef3340;
}

/* Arrow Button */
.kkc-home-blog-arrow {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #ef2d4f;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(239, 45, 79, 0.22);
    transition: all 0.25s ease;
    margin-top: 2px;
}

.kkc-home-blog-arrow:hover {
    color: #ffffff;
    background: #d91f41;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 25px rgba(239, 45, 79, 0.28);
}

.kkc-home-blog-arrow svg {
    display: block;
}

/* Dots */
.kkc-home-blog-slider.owl-theme .owl-dots {
    margin-top: 28px;
    text-align: center;
}

.kkc-home-blog-slider.owl-theme .owl-dots .owl-dot {
    outline: none;
}

.kkc-home-blog-slider.owl-theme .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0 4px;
    border-radius: 50%;
    background: #cfd6dc;
    transition: all 0.25s ease;
    display: block;
}

.kkc-home-blog-slider.owl-theme .owl-dots .owl-dot.active span,
.kkc-home-blog-slider.owl-theme .owl-dots .owl-dot:hover span {
    width: 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff2f63 0%, #6da8ff 100%);
}

/* View More */
.kkc-home-blog-more {
    text-align: center;
    margin-top: 26px;
}

.kkc-home-blog-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.25s ease;
}

.kkc-home-blog-more-btn:hover {
    background: #ef3340;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1199.98px) {
    .kkc-home-blog-header h2 {
        font-size: 40px;
    }

    .kkc-home-blog-image {
        height: 225px;
    }
}

@media (max-width: 991.98px) {
    .kkc-home-blog-section {
        padding: 62px 0 72px;
    }

    .kkc-home-blog-header {
        margin-bottom: 34px;
    }

    .kkc-home-blog-header h2 {
        font-size: 38px;
    }

    .kkc-home-blog-image {
        height: 220px;
    }

    .kkc-home-blog-title {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .kkc-home-blog-section {
        padding: 52px 0 62px;
    }

    .kkc-home-blog-header {
        margin-bottom: 28px;
    }

    .kkc-home-blog-header h2 {
        font-size: 31px;
    }

    .kkc-home-blog-header p {
        font-size: 14px;
        line-height: 1.65;
    }

    .kkc-home-blog-image {
        height: 300px;
    }

    .kkc-home-blog-content {
        padding: 14px 4px 0 4px;
        gap: 14px;
    }

    .kkc-home-blog-title {
        font-size: 16px;
        line-height: 1.4;
    }

    .kkc-home-blog-arrow {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

@media (max-width: 575.98px) {
    .kkc-home-blog-header h2 {
        font-size: 27px;
    }

    .kkc-home-blog-header p {
        font-size: 13.5px;
    }

    .kkc-home-blog-image {
        height: 300px;
        border-radius: 10px;
    }

    .kkc-home-blog-title {
        font-size: 15px;
    }

    .kkc-home-blog-arrow {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .kkc-home-blog-more {
        margin-top: 22px;
    }

    .kkc-home-blog-more-btn {
        min-height: 44px;
        padding: 10px 20px;
        font-size: 13px;
    }
}


@media screen and (min-width: 1280px) {
    .container {
        max-width: 95% !important;
    }
}

.browse-category-products {
    padding: 0px !important;
}



/* =========================
   AASHAPURA CUSTOM FOOTER
   Unique Prefix: ashf-
========================= */

.ashf-footer-wrap {
    position: relative;
    background: #f8f8f8;
    color: #1f1f1f;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-family: inherit;
}

.ashf-footer-wrap a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.ashf-footer-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Top Strip */
.ashf-top-strip {
    position: relative;
    padding: 28px 0 24px;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ashf-top-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.ashf-top-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 6px;
}

.ashf-top-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(220, 24, 64, 0.12);
    color: #e31837;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.ashf-top-content h4 {
    margin: 0 0 4px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #111111;
}

.ashf-top-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
}

/* App Section */
.ashf-app-section {
    position: relative;
    padding: 28px 0 34px;
    background:
        radial-gradient(circle at top left, rgba(227, 24, 55, 0.06), transparent 30%),
        radial-gradient(circle at bottom right, rgba(227, 24, 55, 0.08), transparent 30%);
}

.ashf-app-card {
    position: relative;
    background: linear-gradient(135deg, #ea1839 0%, #cc1230 100%);
    border-radius: 18px;
    min-height: 170px;
    padding: 26px 34px;
    display: grid;
    grid-template-columns: 170px 1fr 260px;
    align-items: center;
    gap: 22px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(204, 18, 48, 0.18);
}

.ashf-app-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.ashf-app-cycle {
    position: relative;
    z-index: 1;
    text-align: center;
}

.ashf-app-cycle img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.ashf-app-content,
.ashf-app-store {
    position: relative;
    z-index: 1;
}

.ashf-app-content h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 38px;
    /* font-weight: 800; */
    line-height: 1.2;
}

.ashf-app-content p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.7;
    max-width: 560px;
}

.ashf-app-subtitle {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.ashf-app-store {
    text-align: right;
}

.ashf-app-store h6 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.ashf-store-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.ashf-store-buttons a {
    display: inline-flex;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.ashf-store-buttons img {
    display: block;
    height: 46px;
    width: auto;
    object-fit: contain;
}

/* Main Footer */
.ashf-main-footer {
    position: relative;
    padding: 60px 0 36px;
    background-color: #fcfcfc;
    background-image: radial-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px);
    background-size: 24px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.ashf-main-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
    gap: 40px;
}

.ashf-footer-logo-box {
    margin-bottom: 20px;
}

.ashf-footer-logo {
    max-height: 42px;
    width: auto;
    object-fit: contain;
}

.ashf-about-text {
    margin: 0 0 24px;
    color: #000000;
    font-size: 16px;
    line-height: 1.9;
    max-width: 480px;
}

.ashf-contact-block {
    margin-bottom: 22px;
}

.ashf-contact-block h5,
.ashf-links-col h4 {
    margin: 0 0 16px;
    color: #111;
    font-size: 25px;
    font-weight: 500;
}

.ashf-social-list {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ashf-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.ashf-social-link:hover {
    background: #e31837;
    color: #fff;
    border-color: #e31837;
    transform: translateY(-2px);
}

.ashf-phone-box span {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #555;
}

.ashf-phone-box a {
    font-size: 26px;
    font-weight: 700;
    color: #2f55d4;
}

.ashf-phone-box a:hover {
    color: #e31837;
}

.ashf-links-col ul li {
    margin-bottom: 10px;
}

.ashf-links-col ul li a {
    color: #000000;
    font-size: 17px;
    font-weight: 400;
    font-family: 'Poppins';
}

.ashf-links-col ul li a:hover {
    color: #e31837;
    padding-left: 4px;
}

/* Bottom */
.ashf-bottom-bar {
    padding: 18px 0;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.ashf-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.ashf-bottom-inner p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.ashf-bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.ashf-bottom-links li a {
    color: #666;
    font-size: 14px;
}

.ashf-bottom-links li a:hover {
    color: #e31837;
}

/* Responsive */
@media (max-width: 1199px) {
    .ashf-top-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ashf-app-card {
        grid-template-columns: 120px 1fr;
    }

    .ashf-app-store {
        text-align: left;
        grid-column: 1 / -1;
    }

    .ashf-store-buttons {
        justify-content: flex-start;
    }

    .ashf-main-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .ashf-about-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .ashf-top-strip {
        padding: 22px 0 18px;
    }

    .ashf-top-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ashf-top-card {
        padding: 8px 0;
    }

    .ashf-top-content h4 {
        font-size: 18px;
    }

    .ashf-app-section {
        padding: 20px 0 24px;
    }

    .ashf-app-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 18px;
        gap: 16px;
    }

    .ashf-app-cycle img {
        max-height: 95px;
    }

    .ashf-app-content h2 {
        font-size: 28px;
    }

    .ashf-app-content p {
        max-width: 100%;
        font-size: 14px;
    }

    .ashf-app-store {
        text-align: center;
    }

    .ashf-store-buttons {
        justify-content: center;
    }

    .ashf-main-footer {
        padding: 44px 0 26px;
    }

    .ashf-main-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ashf-phone-box a {
        font-size: 22px;
    }

    .ashf-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}




/* ===========================
   AASHAPURA PRODUCT CARD UI
   Unique Prefix: ashp-
=========================== */

.ashp-product-card {
    position: relative;
    width: 100%;
}

.ashp-product-card__inner {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    height: 100%;
}

.ashp-product-card__inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
    border-color: rgba(226, 29, 72, 0.18);
}

.ashp-product-media {
    position: relative;
    margin: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.ashp-product-image-link {
    display: block;
    position: relative;
}

.ashp-product-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ashp-product-card__inner:hover .ashp-product-image {
    transform: scale(1.06);
}

.ashp-product-top-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
}

.ashp-product-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ashp-product-icon-btn:hover {
    background: #e11d48;
    border-color: #e11d48;
    transform: translateY(-2px);
}

.ashp-book-status {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.ashp-book-status--booked {
    background: rgba(220, 38, 38, 0.94);
    color: #ffffff;
}

.ashp-book-status--available {
    background: rgba(22, 163, 74, 0.94);
    color: #ffffff;
}

.ashp-product-body {
    padding: 18px 18px 20px;
}

.ashp-price-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.ashp-product-price {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.ashp-product-rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #f59e0b;
    font-size: 14px;
    flex-shrink: 0;
}

.ashp-product-title {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.ashp-product-title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 52px;
}

.ashp-product-title a:hover {
    color: #e11d48;
}

.ashp-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
}

.ashp-product-location {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    min-width: 0;
    flex: 1;
}

.ashp-product-location svg {
    flex-shrink: 0;
    color: #e11d48;
}

.ashp-product-location span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ashp-product-date {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 7px 10px;
    border-radius: 999px;
}

.ashp-product-action {
    margin-top: 4px;
}

.ashp-product-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    border: none;
}

.ashp-product-btn:hover {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Optional: if old theme adds weird spacing */
.ashp-product-card .product-body,
.ashp-product-card .product-action,
.ashp-product-card .product-media {
    all: unset;
}

/* Responsive */
@media (max-width: 991px) {
    .ashp-product-image {
        height: 230px;
    }

    .ashp-product-title {
        font-size: 17px;
    }

    .ashp-product-price {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .ashp-product-body {
        padding: 16px;
    }

    .ashp-product-image {
        height: 220px;
    }

    .ashp-product-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .ashp-product-date {
        margin-left: 22px;
    }

    .ashp-product-btn {
        min-height: 46px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .ashp-product-image {
        height: 210px;
    }

    .ashp-product-price {
        font-size: 19px;
    }

    .ashp-product-title {
        font-size: 16px;
    }

    .ashp-book-status {
        font-size: 11px;
        padding: 6px 12px;
    }

    .ashp-product-icon-btn {
        width: 38px;
        height: 38px;
    }
}

.categorysearchbox {
    background-color: #eeeeee3b;
    padding: 16px;
    border-radius: 10px;
}

.buttonimportant {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0px;
    box-shadow: rgba(232, 23, 63, 0.28) 0px 8px 18px;
    color: rgb(255, 255, 255) !important;
    background: linear-gradient(rgb(255, 45, 85) 0%, rgb(232, 23, 63) 100%);
    border-radius: 14px;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    padding: 10px;
    text-decoration: none !important;
    border: 0px;
}



