/* ==========================================================================
   Raicraft Clone - Custom Elementor Overrides
   Apply these classes directly in Elementor settings for a pixel-perfect replica
   ========================================================================== */

/* --- 1. Announcement Bar --- */
.bb-announcement-bar {
    background-color: var(--brand-pink);
    color: #ffffff;
    font-size: 14px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bb-announcement-bar p {
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

.bb-announcement-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #ffffff;
    color: #1f2937;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: color 0.2s ease, background-color 0.2s ease;
    flex-shrink: 0;
}

.bb-announcement-whatsapp-btn:hover {
    color: var(--whatsapp-green-hover);
    background-color: #f9fafb;
}

.bb-announcement-whatsapp-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--whatsapp-green);
}

/* --- 2. Main Header & Search --- */
.bb-header-container {
    background-color: #ffffff;
    border-bottom: 1px solid var(--gray-100);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

/* Sticky Class */
.bb-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    animation: slideIn 0.2s ease-out;
    box-shadow: var(--shadow-md);
}

/* Search bar styling */
.bb-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-pill);
    max-width: 480px;
    width: 100%;
    height: 44px;
    background: #ffffff;
    padding: 2px 4px 2px 18px;
    transition: border-color 0.2s ease;
}

.bb-search-wrapper:focus-within {
    border-color: #222222;
}

.bb-search-input {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: var(--text-main);
    background: transparent;
    padding-right: 75px; /* space for icon buttons */
}

.bb-search-actions {
    position: absolute;
    right: 48px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bb-search-action-btn {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gray-500);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.bb-search-action-btn:hover {
    background-color: var(--gray-100);
    color: var(--text-main);
}

.bb-search-action-btn.ai-search-btn:hover {
    color: var(--brand-pink);
}

.bb-search-submit-btn {
    background-color: var(--brand-pink);
    border: none;
    outline: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    margin-left: auto;
}

.bb-search-submit-btn:hover {
    background-color: #000000;
}

.bb-search-submit-btn svg {
    stroke: #ffffff;
    width: 18px;
    height: 18px;
}

/* User & Cart Icons */
.bb-header-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-main);
    position: relative;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.bb-header-icon-link:hover {
    background-color: var(--gray-100);
}

.bb-header-icon-link svg {
    stroke: var(--text-main);
    width: 20px;
    height: 20px;
}

.bb-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: var(--brand-pink);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* --- 3. Scrollable Category Pills --- */
.bb-categories-container {
    width: 100%;
    margin-top: 12px;
    overflow: hidden;
}

.bb-drag-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.bb-drag-scroll::-webkit-scrollbar {
    display: none; /* Hide standard scrollbar */
}

.bb-drag-scroll.active-dragging {
    cursor: grabbing;
}

.bb-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 13px;
    color: var(--text-main);
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    user-select: none;
}

.bb-category-pill:hover {
    background-color: var(--gray-200);
    border-color: var(--gray-300);
}

.bb-category-pill img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* --- 4. Product Cards Grid --- */
.bb-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px 0;
}

@media (min-width: 640px) {
    .bb-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .bb-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.bb-product-card {
    background-color: #ffffff;
    border: 1px solid var(--gray-100);
    border-radius: var(--border-radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.bb-product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.bb-product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: var(--brand-pink);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    z-index: 2;
}

.bb-product-image-wrap {
    position: relative;
    padding-top: 100%; /* Square Aspect Ratio */
    background-color: var(--gray-50);
    overflow: hidden;
}

.bb-product-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bb-product-card:hover .bb-product-image-wrap img {
    transform: scale(1.04);
}

.bb-product-details {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bb-product-brand {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    text-decoration: none;
}

.bb-product-brand:hover {
    color: var(--brand-pink);
}

.bb-product-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 8px;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-decoration: none;
}

.bb-product-title:hover {
    color: var(--brand-pink);
}

.bb-product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
}

.bb-product-rating svg {
    width: 12px;
    height: 12px;
    fill: #FBBF24; /* Yellow Stars */
}

.bb-product-rating span {
    font-size: 11px;
    color: var(--gray-500);
    margin-left: 4px;
}

.bb-product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 12px;
}

.bb-product-sale-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-pink);
}

.bb-product-regular-price {
    font-size: 12px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.bb-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: transparent;
    border: 1px solid var(--brand-pink);
    color: var(--brand-pink);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    width: 100%;
}

.bb-product-btn:hover {
    background-color: var(--brand-pink);
    color: #ffffff;
}

/* --- 5. Footer --- */
.bb-footer {
    background-color: #ffffff;
    border-top: 1px solid var(--gray-200);
    padding: 40px 0 20px;
    margin-top: 40px;
}

.bb-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .bb-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bb-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bb-footer-col h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-main);
    margin-bottom: 16px;
    font-weight: 700;
}

.bb-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bb-footer-links a {
    font-size: 13px;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.2s ease;
}

.bb-footer-links a:hover {
    color: var(--brand-pink);
}

.bb-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.bb-footer-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.bb-footer-social-icon:hover {
    background-color: var(--brand-pink);
    color: #ffffff;
}

.bb-footer-social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}


/* --- Raicraft final button visibility fix --- */
:root {
    --brand-pink: #ff1a58;
    --brand-pink-hover: #111827;
    --text-main: #111827;
}

body.woocommerce-page .single_add_to_cart_button.button.alt,
body.single-product .single_add_to_cart_button.button.alt,
body .raicraft-single-product-page form.cart button.single_add_to_cart_button.button.alt,
body .woocommerce ul.products li.product a.button.add_to_cart_button,
body .product-card a.button.add_to_cart_button,
body .btn-add-bag,
body .btn-buy-now {
    background: #ff1a58 !important;
    background-color: #ff1a58 !important;
    background-image: none !important;
    color: #ffffff !important;
    border: 1px solid #ff1a58 !important;
    border-radius: 8px !important;
    min-height: 46px !important;
    font-weight: 800 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body.woocommerce-page .single_add_to_cart_button.button.alt:hover,
body.single-product .single_add_to_cart_button.button.alt:hover,
body .raicraft-single-product-page form.cart button.single_add_to_cart_button.button.alt:hover,
body .woocommerce ul.products li.product a.button.add_to_cart_button:hover,
body .product-card a.button.add_to_cart_button:hover,
body .btn-add-bag:hover,
body .btn-buy-now:hover {
    background: #111827 !important;
    background-color: #111827 !important;
    border-color: #111827 !important;
    color: #ffffff !important;
}

body .bb-header,
body .bb-header-container,
body .categories-nav,
body .nav-wrapper {
    background: #ffffff !important;
    color: #111827 !important;
    border-bottom: 1px solid #e5e7eb !important;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06) !important;
}

body .site-logo a,
body .brand-logo-text,
body .header-actions a,
body .nav-icon,
body .cat-pill,
body .mega-menu-list a,
body .search-input,
body .user-name-span {
    color: #111827 !important;
}

body .product-single-layout {
    display: grid !important;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr) !important;
    gap: 36px !important;
    align-items: start !important;
}

body .product-gallery,
body .product-info-wrap,
body .filter-sidebar,
body.woocommerce div.product div.images,
body.woocommerce div.product .summary {
    background: #ffffff !important;
    color: #374151 !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06) !important;
}

body .product-single-title,
body.woocommerce div.product .product_title,
body .woocommerce-loop-product__title,
body .product-title {
    color: #111827 !important;
}

body .price-box,
body .sale-price,
body.woocommerce div.product p.price,
body.woocommerce div.product span.price,
body .product-card .price,
body.woocommerce ul.products li.product .price {
    color: #ff1a58 !important;
    font-weight: 800 !important;
}

@media (max-width: 767px) {
    body .product-single-layout {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
}


/* --- BeautyBooth style product tabs and related cards --- */
body.single-product .raicraft-product-detail-tabs {
    clear: both;
    margin: 34px 0 42px;
    background: #ffffff;
    border: 1px solid #edf0f5;
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.05);
    overflow: hidden;
}

body.single-product .raicraft-product-detail-tabs > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

body.single-product .raicraft-product-tab-labels {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 18px 22px 0;
    border-bottom: 1px solid #eef1f6;
    overflow-x: auto;
}

body.single-product .raicraft-product-tab-labels label {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: #8b92a5;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    white-space: nowrap;
}

body.single-product .raicraft-product-tab-labels label::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: transparent;
}

body.single-product .raicraft-product-detail-tabs > input:nth-of-type(1):checked ~ .raicraft-product-tab-labels label:nth-child(1),
body.single-product .raicraft-product-detail-tabs > input:nth-of-type(2):checked ~ .raicraft-product-tab-labels label:nth-child(2),
body.single-product .raicraft-product-detail-tabs > input:nth-of-type(3):checked ~ .raicraft-product-tab-labels label:nth-child(3) {
    color: #ff1a58 !important;
}

body.single-product .raicraft-product-detail-tabs > input:nth-of-type(1):checked ~ .raicraft-product-tab-labels label:nth-child(1)::after,
body.single-product .raicraft-product-detail-tabs > input:nth-of-type(2):checked ~ .raicraft-product-tab-labels label:nth-child(2)::after,
body.single-product .raicraft-product-detail-tabs > input:nth-of-type(3):checked ~ .raicraft-product-tab-labels label:nth-child(3)::after {
    background: #ff1a58;
}

body.single-product .raicraft-product-tab-panel {
    display: none;
    padding: 18px 22px 22px;
}

body.single-product .raicraft-product-detail-tabs > input:nth-of-type(1):checked ~ .raicraft-panel-benefits,
body.single-product .raicraft-product-detail-tabs > input:nth-of-type(2):checked ~ .raicraft-panel-ingredients,
body.single-product .raicraft-product-detail-tabs > input:nth-of-type(3):checked ~ .raicraft-panel-use {
    display: block;
}

body.single-product .raicraft-product-tab-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}

body.single-product .raicraft-product-tab-panel li {
    position: relative;
    padding-left: 25px;
    color: #526070;
    font-size: 14px;
    line-height: 1.55;
}

body.single-product .raicraft-product-tab-panel li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff1a58;
    font-weight: 900;
}

body.single-product section.related.products {
    margin-top: 42px;
}

body.single-product section.related.products > h2 {
    margin: 0 0 20px;
    color: #111827;
    font-size: 24px;
    font-weight: 800;
}

body.single-product .related.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px !important;
    margin: 0 !important;
}

body.single-product .related.products ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    position: relative;
    background: #ffffff !important;
    border: 1px solid #edf0f5 !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06) !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

body.single-product .related.products ul.products li.product:hover {
    transform: translateY(-3px);
    border-color: #ffd1df !important;
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.1) !important;
}

body.single-product .related.products ul.products li.product img {
    width: 100% !important;
    aspect-ratio: 1 / 1;
    object-fit: contain !important;
    background: #fbfcfd !important;
    padding: 16px;
    margin: 0 !important;
}

body.single-product .related.products .woocommerce-loop-product__title {
    min-height: 44px;
    padding: 12px 14px 0 !important;
    color: #111827 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
}

body.single-product .related.products ul.products li.product .price {
    display: block;
    padding: 8px 14px 0;
    color: #ff1a58 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

body.single-product .related.products ul.products li.product .button {
    width: calc(100% - 28px);
    margin: 12px 14px 14px !important;
    text-align: center;
    justify-content: center;
}

@media (max-width: 991px) {
    body.single-product .related.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    body.single-product .raicraft-product-tab-labels {
        gap: 18px;
        padding-left: 16px;
        padding-right: 16px;
    }

    body.single-product .raicraft-product-tab-panel {
        padding: 16px;
    }

    body.single-product .related.products ul.products {
        grid-template-columns: 1fr;
    }
}


/* --- Raicraft product page layout repair --- */
body.single-product .raicraft-single-product-page div.product {
    display: grid !important;
    grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.05fr) !important;
    column-gap: 36px !important;
    row-gap: 28px !important;
    align-items: start !important;
    width: 100% !important;
}

body.single-product .raicraft-single-product-page div.product::before,
body.single-product .raicraft-single-product-page div.product::after {
    content: none !important;
    display: none !important;
}

body.single-product .raicraft-single-product-page div.product .woocommerce-product-gallery,
body.single-product .raicraft-single-product-page div.product div.images {
    grid-column: 1 !important;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

body.single-product .raicraft-single-product-page div.product .summary,
body.single-product .raicraft-single-product-page div.product .entry-summary {
    grid-column: 2 !important;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

body.single-product .raicraft-product-detail-tabs,
body.single-product section.related.products,
body.single-product .upsells.products {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    clear: both !important;
}

body.single-product section.related.products ul.products {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

body.single-product section.related.products ul.products li.product {
    width: 100% !important;
    min-width: 0 !important;
}

@media (max-width: 900px) {
    body.single-product .raicraft-single-product-page div.product {
        grid-template-columns: 1fr !important;
    }

    body.single-product .raicraft-single-product-page div.product .woocommerce-product-gallery,
    body.single-product .raicraft-single-product-page div.product div.images,
    body.single-product .raicraft-single-product-page div.product .summary,
    body.single-product .raicraft-single-product-page div.product .entry-summary,
    body.single-product .raicraft-product-detail-tabs,
    body.single-product section.related.products {
        grid-column: 1 !important;
    }

    body.single-product section.related.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 575px) {
    body.single-product section.related.products ul.products {
        grid-template-columns: 1fr !important;
    }
}


/* --- Raicraft related product grid placement fix --- */
body.single-product section.related.products ul.products li.product,
body.single-product section.related.products ul.products li.product.first,
body.single-product section.related.products ul.products li.product.last {
    clear: none !important;
    float: none !important;
    grid-column: auto !important;
    width: 100% !important;
}


/* --- Raicraft related product clearfix grid fix --- */
body.single-product section.related.products ul.products::before,
body.single-product section.related.products ul.products::after {
    content: none !important;
    display: none !important;
}


/* --- BeautyBooth style cards after Add to Cart --- */
body.single-product .raicraft-after-cart-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0 18px;
}

body.single-product .raicraft-after-cart-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 11px 13px;
    background: #ffffff;
    border: 1px solid #eef1f6;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
    color: #344054;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

body.single-product .raicraft-after-cart-card .raicraft-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 999px;
    background: #fff1f5;
    color: #ff1a58;
    font-size: 14px;
    font-weight: 900;
}

body.single-product .raicraft-after-cart-card:hover {
    border-color: #ffd1df;
    box-shadow: 0 12px 26px rgba(255, 26, 88, 0.1);
}

@media (max-width: 575px) {
    body.single-product .raicraft-after-cart-cards {
        grid-template-columns: 1fr;
    }
}


/* --- Raicraft BeautyBooth product summary polish --- */
body.single-product .sku_wrapper,
body.single-product .product_meta .sku_wrapper {
    display: none !important;
}

body.single-product .raicraft-product-sale-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 402px;
    min-height: 40px;
    margin: 0 0 22px;
    padding: 9px 16px;
    background: #fff1e9;
    border: 0 !important;
    border-radius: 10px;
    color: #111827;
    font-size: 14px;
    line-height: 1;
}

body.single-product .raicraft-product-sale-strip strong {
    color: #ff1a58;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .01em;
}

body.single-product .raicraft-product-brand-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: #b9876e;
    font-size: 15px;
    font-weight: 700;
}

body.single-product .raicraft-product-brand-row strong {
    color: #111827;
    font-size: 15px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.single-product .product_title,
body.single-product .product-single-title {
    font-size: 24px !important;
    line-height: 1.24 !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
}

body.single-product .woocommerce-product-rating,
body.single-product .price,
body.single-product .summary p,
body.single-product .summary li,
body.single-product .summary span {
    font-size: 14px;
}

body.single-product .raicraft-choose-size {
    margin: 18px 0 14px;
}

body.single-product .raicraft-choose-size > span {
    display: block;
    margin-bottom: 9px;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
}

body.single-product .raicraft-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.single-product .raicraft-size-pill {
    min-height: 34px;
    padding: 7px 15px;
    border: 1px solid #d9dee8;
    border-radius: 999px;
    background: #ffffff;
    color: #344054;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

body.single-product .raicraft-size-pill.is-active,
body.single-product .raicraft-size-pill:hover {
    border-color: #ff1a58;
    color: #ff1a58;
    background: #fff4f7;
}

body.single-product .raicraft-product-detail-tabs {
    margin: 16px 0 14px !important;
    background: #ffffff !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

body.single-product .raicraft-product-tab-labels {
    gap: 30px;
    padding: 0 !important;
    border-bottom: 1px solid #eef1f6;
    overflow: visible !important;
    scrollbar-width: none;
}

body.single-product .raicraft-product-tab-labels::-webkit-scrollbar {
    display: none;
}

body.single-product .raicraft-product-tab-labels label {
    min-height: 38px;
    font-size: 13px;
    font-weight: 900;
}

body.single-product .raicraft-product-tab-panel {
    padding: 16px 0 4px !important;
}

body.single-product .raicraft-product-tab-panel ul {
    gap: 12px;
}

body.single-product .raicraft-product-tab-panel li {
    color: #344054;
    font-size: 14px;
    line-height: 1.45;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.single-product .raicraft-after-cart-cards {
    margin-top: 12px !important;
}

body.single-product .raicraft-after-cart-card {
    border: 0 !important;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08) !important;
    font-size: 13px !important;
}

@media (max-width: 575px) {
    body.single-product .raicraft-product-sale-strip {
        max-width: 100%;
    }

    body.single-product .raicraft-product-tab-labels {
        gap: 20px;
        overflow-x: auto !important;
    }

    body.single-product .raicraft-product-tab-panel li {
        white-space: normal;
    }
}


/* --- Raicraft BeautyBooth font size final override --- */
body.single-product .raicraft-single-product-page div.product .summary .product_title,
body.single-product.woocommerce div.product .summary .product_title {
    font-size: 24px !important;
    line-height: 1.24 !important;
    font-weight: 800 !important;
}

body.single-product .raicraft-product-tab-labels label,
body.single-product .raicraft-product-tab-panel li,
body.single-product .raicraft-after-cart-card,
body.single-product .raicraft-choose-size,
body.single-product .raicraft-size-pill {
    font-size: 13px !important;
}


/* --- Raicraft product final requested fixes --- */
body.single-product .raicraft-product-brand-row a {
    color: #b9876e !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

body.single-product .raicraft-product-brand-row a.raicraft-brand-link {
    color: #111827 !important;
    font-weight: 900 !important;
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

body.single-product .summary .price,
body.single-product.woocommerce div.product p.price,
body.single-product.woocommerce div.product span.price {
    font-size: 38px !important;
    line-height: 1.05 !important;
    font-weight: 900 !important;
    color: #ff1a58 !important;
}

body.single-product .woocommerce-product-gallery,
body.single-product div.product div.images,
body.single-product .product-gallery,
body.single-product .woocommerce-product-gallery__image,
body.single-product .main-img-wrap {
    border: 0 !important;
    box-shadow: none !important;
}

body.single-product .raicraft-after-cart-card,
body.single-product .product-gallery,
body.single-product .product-info-wrap {
    border: 0 !important;
}

body.single-product .raicraft-product-detail-tabs {
    border: 1px solid #edf0f5 !important;
    border-radius: 14px !important;
    padding: 0 18px 16px !important;
    box-shadow: none !important;
    overflow: visible !important;
}

body.single-product .raicraft-product-tab-labels {
    overflow: visible !important;
    scrollbar-width: none !important;
}

body.single-product .raicraft-product-tab-labels::-webkit-scrollbar {
    display: none !important;
}

body.single-product .raicraft-product-tab-panel li {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    color: #344054 !important;
    line-height: 1.55 !important;
}

body.single-product div.product div.images .flex-control-thumbs,
body.single-product .woocommerce-product-gallery .flex-control-thumbs {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.single-product div.product div.images .flex-control-thumbs li,
body.single-product .woocommerce-product-gallery .flex-control-thumbs li {
    width: 72px !important;
    float: none !important;
    margin: 0 !important;
}

body.single-product div.product div.images .flex-control-thumbs img,
body.single-product .woocommerce-product-gallery .flex-control-thumbs img {
    width: 72px !important;
    height: 72px !important;
    object-fit: contain !important;
    padding: 6px;
    border: 0 !important;
    border-radius: 8px;
    background: #f8fafc;
    opacity: 1 !important;
}

body.single-product form.cart .quantity.raicraft-qty-ready {
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
    width: 116px;
    min-height: 46px;
    padding: 0 8px;
    border: 1px solid #d9dee8;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
}

body.single-product form.cart .quantity.raicraft-qty-ready .qty {
    width: 42px !important;
    min-height: 44px !important;
    padding: 0 !important;
    border: 0 !important;
    text-align: center !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    background: transparent !important;
    -moz-appearance: textfield;
}

body.single-product form.cart .quantity.raicraft-qty-ready .qty::-webkit-outer-spin-button,
body.single-product form.cart .quantity.raicraft-qty-ready .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body.single-product .raicraft-qty-btn {
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 999px;
    background: #fff1f5;
    color: #ff1a58;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
}

body.single-product .raicraft-qty-btn:hover {
    background: #ff1a58;
    color: #ffffff;
}


/* --- Raicraft final mobile responsive and BeautyBooth polish --- */
body.single-product .raicraft-product-topbar {
    display: none !important;
}

body.single-product .summary .price,
body.single-product.woocommerce div.product p.price,
body.single-product.woocommerce div.product span.price {
    color: #111827 !important;
    font-size: 38px !important;
    font-weight: 900 !important;
}

body.single-product .raicraft-product-sale-strip span {
    font-weight: 400 !important;
}

body.single-product .raicraft-product-brand-row,
body.single-product .raicraft-product-brand-row a,
body.single-product .raicraft-product-brand-row b {
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

body.single-product .raicraft-product-brand-row a.raicraft-brand-link {
    font-weight: 700 !important;
}

body.single-product .raicraft-product-detail-tabs {
    border: 1px solid #edf0f5 !important;
}

body.single-product .raicraft-product-tab-panel li {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

body.single-product .woocommerce-product-gallery,
body.single-product div.product div.images,
body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image,
body.single-product .woocommerce-product-gallery__image a,
body.single-product .woocommerce-product-gallery__image img {
    border: 0 !important;
    box-shadow: none !important;
}

body.single-product .raicraft-after-cart-card,
body.single-product .product-gallery,
body.single-product .product-info-wrap {
    border: 0 !important;
}

.bb-header .site-logo,
.bb-header .brand-logo,
.bb-header .logo-wrap,
.bb-header .brand-logo-text {
    text-align: center !important;
}

.mobile-menu-toggle::before,
.categories-nav::before {
    content: '☰';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    color: #111827;
    font-size: 17px;
    line-height: 1;
}

.search-icon-btn,
.search-submit,
.bb-search-submit-btn {
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 767px) {
    body.single-product .raicraft-single-product-page div.product {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }

    body.single-product .raicraft-product-sale-strip {
        order: -20;
        width: 100% !important;
        max-width: none !important;
        margin: 0 0 10px !important;
    }

    body.single-product .raicraft-single-product-page div.product .woocommerce-product-gallery,
    body.single-product .raicraft-single-product-page div.product div.images {
        order: -10;
        width: 100% !important;
    }

    body.single-product .raicraft-single-product-page div.product .summary,
    body.single-product .raicraft-single-product-page div.product .entry-summary {
        width: 100% !important;
        padding-bottom: 86px !important;
    }

    body.single-product .summary .cart,
    body.single-product.woocommerce div.product form.cart {
        position: fixed !important;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        display: grid !important;
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 10px !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom)) !important;
        background: #ffffff !important;
        border-top: 1px solid #e5e7eb !important;
        box-shadow: 0 -10px 28px rgba(17, 24, 39, 0.12) !important;
    }

    body.single-product form.cart .quantity.raicraft-qty-ready {
        width: 112px !important;
    }

    body.single-product .single_add_to_cart_button,
    body.single-product.woocommerce div.product form.cart .button {
        width: 100% !important;
        min-height: 48px !important;
        margin: 0 !important;
    }

    body.single-product .raicraft-after-cart-cards,
    body.single-product .raicraft-product-detail-tabs {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    body.single-product .raicraft-product-detail-tabs {
        padding: 0 14px 14px !important;
    }

    body.single-product .raicraft-product-tab-labels {
        gap: 18px !important;
        overflow-x: auto !important;
    }

    body.single-product .raicraft-product-tab-panel li {
        font-size: 13px !important;
    }

    .bb-header .header-row,
    .bb-header-container .header-row {
        position: relative !important;
        display: grid !important;
        grid-template-columns: 44px 1fr 44px !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .bb-header .site-logo,
    .bb-header .brand-logo,
    .bb-header .logo-wrap {
        grid-column: 2 !important;
        justify-self: center !important;
        text-align: center !important;
    }

    .bb-header .header-actions,
    .bb-header .search-icon-btn,
    .bb-header .search-submit,
    .bb-header .bb-search-submit-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .search-bar,
    .bb-search-wrapper {
        min-width: 0 !important;
    }
}


/* --- Raicraft mobile final correction --- */
@media (max-width: 767px) {
    body.single-product .raicraft-single-product-page div.product .summary,
    body.single-product .raicraft-single-product-page div.product .entry-summary {
        display: contents !important;
    }

    body.single-product .raicraft-product-sale-strip {
        order: -30 !important;
    }

    body.single-product .raicraft-single-product-page div.product .woocommerce-product-gallery,
    body.single-product .raicraft-single-product-page div.product div.images {
        order: -20 !important;
    }

    body.single-product .raicraft-product-brand-row,
    body.single-product .summary .product_title,
    body.single-product .summary .price,
    body.single-product .summary .woocommerce-product-rating,
    body.single-product .raicraft-choose-size,
    body.single-product .raicraft-after-cart-cards,
    body.single-product .raicraft-product-detail-tabs,
    body.single-product .summary .product_meta {
        width: 100% !important;
    }

    .bb-header .search-icon-btn,
    .bb-header .search-submit,
    .bb-header .bb-search-submit-btn,
    .header-actions .search-icon-btn,
    .header-actions .search-submit {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        opacity: 1 !important;
        visibility: visible !important;
        color: #111827 !important;
    }

    .bb-header .search-icon-btn svg,
    .bb-header .search-submit svg,
    .bb-header .bb-search-submit-btn svg,
    .header-actions .search-icon-btn svg,
    .header-actions .search-submit svg {
        width: 19px !important;
        height: 19px !important;
        display: block !important;
    }
}


/* --- Raicraft reference product mobile cleanup --- */
body.single-product .woocommerce-product-details__short-description,
body.single-product .summary > p:not(.price){display:none!important;}
body.single-product .raicraft-after-cart-cards{order:40!important;}
body.single-product .raicraft-product-detail-tabs{order:50!important;}
@media (max-width:767px){
body.single-product .summary .cart,
body.single-product.woocommerce div.product form.cart{grid-template-columns:104px minmax(0,1fr)!important;min-height:66px!important;height:auto!important;padding:9px 12px calc(9px + env(safe-area-inset-bottom))!important;}
body.single-product form.cart .quantity.raicraft-qty-ready{width:104px!important;min-height:46px!important;height:46px!important;}
body.single-product form.cart .quantity .screen-reader-text{position:absolute!important;width:1px!important;height:1px!important;overflow:hidden!important;clip:rect(1px,1px,1px,1px)!important;white-space:nowrap!important;}
body.single-product .single_add_to_cart_button,
body.single-product.woocommerce div.product form.cart .button{min-height:46px!important;height:46px!important;padding:10px 14px!important;font-size:14px!important;line-height:1!important;}
body.single-product .raicraft-after-cart-cards{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;margin-top:14px!important;}
body.single-product .raicraft-after-cart-card{min-height:58px!important;padding:10px 11px!important;font-size:12px!important;line-height:1.25!important;}
}


/* --- Raicraft product page requested refinements 2026-07-05 --- */
body.single-product .summary .price {
    margin-bottom: 8px !important;
}
body.single-product .raicraft-after-price-note {
    display: block !important;
    max-width: 470px !important;
    margin: 4px 0 14px !important;
    color: #344054 !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    font-weight: 400 !important;
}
body.single-product .raicraft-choose-size {
    margin: 0 0 14px !important;
    padding: 0 !important;
}
body.single-product .raicraft-choose-size > span {
    display: block !important;
    margin-bottom: 8px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}
body.single-product .raicraft-size-options {
    margin: 0 !important;
    gap: 8px !important;
}
body.single-product .raicraft-size-pill {
    min-height: 30px !important;
    padding: 7px 14px !important;
    font-size: 12px !important;
}
body.single-product form.cart {
    margin: 14px 0 16px !important;
}
body.single-product .raicraft-product-detail-tabs {
    margin: 14px 0 14px !important;
    width: 100% !important;
    max-width: 490px !important;
}
body.single-product .raicraft-after-cart-cards {
    margin: 14px 0 0 !important;
    gap: 10px !important;
    max-width: 490px !important;
}
body.single-product .raicraft-after-cart-card {
    min-height: 72px !important;
    padding: 14px 16px !important;
    gap: 12px !important;
}
body.single-product section.related.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
}
body.single-product section.related.products ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    float: none !important;
}
@media (max-width: 767px) {
    body.single-product .summary,
    body.single-product .entry-summary {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    body.single-product .summary .price {
        margin-bottom: 6px !important;
    }
    body.single-product .raicraft-after-price-note {
        margin: 2px 0 12px !important;
        font-size: 12px !important;
        line-height: 1.55 !important;
    }
    body.single-product .raicraft-choose-size {
        margin-bottom: 12px !important;
    }
    body.single-product .raicraft-product-detail-tabs {
        margin: 12px 0 12px !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    body.single-product .raicraft-product-tab-labels {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 0 !important;
        overflow: visible !important;
    }
    body.single-product .raicraft-product-tab-labels label {
        min-width: 0 !important;
        padding: 11px 4px 9px !important;
        font-size: 10px !important;
        line-height: 1.2 !important;
        white-space: normal !important;
        text-align: center !important;
        word-break: normal !important;
    }
    body.single-product .raicraft-product-tab-panel {
        padding: 12px 14px 14px !important;
    }
    body.single-product .raicraft-product-tab-panel li {
        margin-bottom: 9px !important;
        font-size: 12px !important;
        line-height: 1.45 !important;
    }
    body.single-product form.cart {
        margin: 12px 0 14px !important;
        gap: 10px !important;
    }
    body.single-product .raicraft-after-cart-cards {
        margin-top: 12px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }
    body.single-product .raicraft-after-cart-card {
        min-height: 68px !important;
        padding: 12px 10px !important;
        font-size: 12px !important;
    }
    body.single-product section.related.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }
}
@media (max-width: 360px) {
    body.single-product .raicraft-product-tab-labels label {
        font-size: 9px !important;
        padding-left: 2px !important;
        padding-right: 2px !important;
    }
    body.single-product section.related.products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
/* --- End Raicraft product page requested refinements 2026-07-05 --- */

/* --- Raicraft mobile product order final 2026-07-05 --- */
@media (max-width: 767px) {
  body.single-product .summary.entry-summary,
  body.single-product div.product .summary {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  body.single-product .summary .price { order: 4 !important; }
  body.single-product .raicraft-after-price-note { order: 5 !important; }
  body.single-product .raicraft-choose-size { order: 6 !important; margin: 10px 0 8px !important; }
  body.single-product .raicraft-product-detail-tabs { order: 7 !important; margin: 10px 0 12px !important; }
  body.single-product .summary form.cart { order: 8 !important; margin: 10px 0 12px !important; }
  body.single-product .raicraft-after-cart-cards { order: 9 !important; margin: 10px 0 0 !important; }
  body.single-product .product_meta { order: 10 !important; }

  body.single-product .raicraft-product-detail-tabs .raicraft-tabs-nav {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    overflow: visible !important;
  }

  body.single-product .raicraft-product-detail-tabs .raicraft-tab-btn {
    min-width: 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: 10px !important;
    line-height: 1.25 !important;
    text-align: left !important;
    padding: 0 4px 11px 0 !important;
  }

  body.single-product .related.products ul.products,
  body.single-product .upsells.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 12px !important;
    row-gap: 18px !important;
  }
}


/* --- Raicraft mobile info frame order final 2026-07-05 --- */
@media (max-width: 767px) {
  body.single-product .raicraft-mobile-info-frame {
    display: contents !important;
  }

  body.single-product .raicraft-mobile-info-frame .raicraft-product-detail-tabs {
    order: 7 !important;
    margin: 10px 0 12px !important;
  }

  body.single-product .summary form.cart {
    order: 8 !important;
    margin: 10px 0 12px !important;
  }

  body.single-product .raicraft-mobile-info-frame .raicraft-after-cart-cards {
    order: 9 !important;
    margin: 10px 0 0 !important;
  }

  body.single-product .raicraft-mobile-info-frame .product_meta {
    order: 10 !important;
  }
}


/* --- Raicraft product reference redesign 2026-07-05 --- */
body.single-product {
  --rc-pink: #ff1b68;
  --rc-soft-pink: #fff6fa;
  --rc-text: #0e1b33;
  --rc-muted: #66728a;
  --rc-line: #e9edf5;
  --rc-panel: #ffffff;
}

body.single-product .site-main {
  background: #fbfcff !important;
}

body.single-product .raicraft-product-topbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  max-width: 1220px !important;
  margin: 18px auto 14px !important;
  padding: 0 18px !important;
  color: #6e7890 !important;
  font-family: Roboto, Arial, sans-serif !important;
  font-size: 10px !important;
  line-height: 1.4 !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
}

body.single-product .raicraft-product-topbar a,
body.single-product .raicraft-product-topbar span {
  color: #6e7890 !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

body.single-product .raicraft-single-product-page.container {
  width: min(1220px, calc(100vw - 36px)) !important;
  max-width: 1220px !important;
  margin: 0 auto 36px !important;
  padding: 0 !important;
}

body.single-product .raicraft-single-product-page div.product {
  display: grid !important;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr) !important;
  column-gap: 48px !important;
  align-items: start !important;
  position: relative !important;
  min-height: 650px !important;
  padding: 34px 40px 34px !important;
  background: var(--rc-panel) !important;
  border: 1px solid var(--rc-line) !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 34px rgba(15, 28, 52, 0.04) !important;
  overflow: visible !important;
}

body.single-product .woocommerce-product-gallery {
  position: relative !important;
  width: 100% !important;
  min-height: 590px !important;
  margin: 0 !important;
  padding: 74px 42px 132px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #fcfdff !important;
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}

body.single-product .woocommerce-product-gallery::before {
  content: "INTENSE GLOW";
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--rc-pink);
  color: #fff;
  font: 700 9px/1 Roboto, Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.single-product .woocommerce-product-gallery::after {
  content: "♡";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #9aa4b5;
  font: 700 20px/1 Arial, sans-serif;
  box-shadow: 0 8px 22px rgba(15, 28, 52, 0.11);
}

body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image--placeholder {
  width: 100% !important;
  height: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

body.single-product .woocommerce-product-gallery img.wp-post-image {
  width: min(310px, 100%) !important;
  height: 360px !important;
  max-height: 360px !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.single-product .summary.entry-summary {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 28px 0 0 !important;
  color: var(--rc-text) !important;
  font-family: Roboto, Arial, sans-serif !important;
}

body.single-product .raicraft-product-sale-strip {
  display: none !important;
}

body.single-product .summary.entry-summary::after {
  content: "⭐ 4.9";
  position: absolute;
  top: 18px;
  right: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff8dc;
  color: #5b4b00;
  font: 700 11px/1 Roboto, Arial, sans-serif;
}

body.single-product .raicraft-product-brand-row {
  margin: 0 0 18px !important;
  color: var(--rc-pink) !important;
  font: 700 11px/1.35 Roboto, Arial, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
}

body.single-product .raicraft-product-brand-row a,
body.single-product .raicraft-product-brand-row span {
  color: inherit !important;
  font: inherit !important;
  text-decoration: none !important;
}

body.single-product .product_title.entry-title {
  margin: 0 76px 14px 0 !important;
  color: #101725 !important;
  font-family: "Roboto Slab", Georgia, serif !important;
  font-size: 27px !important;
  line-height: 1.22 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body.single-product .summary.entry-summary .price {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 56px !important;
  margin: 0 0 18px !important;
  padding: 0 18px !important;
  border: 1px solid #ffd8e7 !important;
  border-radius: 10px !important;
  background: #fffafb !important;
  color: #071224 !important;
  font-family: Roboto, Arial, sans-serif !important;
  font-size: 28px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

body.single-product .summary.entry-summary .price .amount,
body.single-product .summary.entry-summary .price bdi {
  color: inherit !important;
  font: inherit !important;
}

body.single-product .raicraft-after-price-note {
  display: block !important;
  max-width: 610px !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  color: #5d687d !important;
  font-family: Roboto, Arial, sans-serif !important;
  font-size: 12px !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
  background: transparent !important;
  border: 0 !important;
}

body.single-product .raicraft-choose-size {
  margin: 0 0 22px !important;
  padding: 0 !important;
  color: var(--rc-muted) !important;
  font-family: Roboto, Arial, sans-serif !important;
  font-size: 10px !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

body.single-product .raicraft-size-options,
body.single-product .raicraft-size-list {
  display: flex !important;
  gap: 8px !important;
  margin-top: 8px !important;
}

body.single-product .raicraft-size-option,
body.single-product .raicraft-size-pill,
body.single-product .raicraft-choose-size a,
body.single-product .raicraft-choose-size span:not(:first-child) {
  min-width: 54px !important;
  height: 30px !important;
  padding: 8px 13px !important;
  border: 1px solid var(--rc-line) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #29344a !important;
  font: 700 11px/1 Roboto, Arial, sans-serif !important;
  text-align: center !important;
  text-transform: none !important;
}

body.single-product .raicraft-choose-size .active,
body.single-product .raicraft-choose-size [aria-current="true"],
body.single-product .raicraft-choose-size span:last-child {
  background: #111827 !important;
  color: #fff !important;
  border-color: #111827 !important;
}

body.single-product .raicraft-product-detail-tabs {
  width: 100% !important;
  margin: 0 0 26px !important;
  padding: 18px 20px 20px !important;
  border: 1px solid var(--rc-line) !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

body.single-product .raicraft-product-detail-tabs .raicraft-tabs-nav {
  display: flex !important;
  gap: 28px !important;
  margin: 0 0 18px !important;
  padding: 0 0 11px !important;
  border-bottom: 1px solid var(--rc-line) !important;
  overflow: visible !important;
}

body.single-product .raicraft-product-detail-tabs .raicraft-tab-btn {
  position: relative !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #8b95a7 !important;
  font: 700 11px/1.3 Roboto, Arial, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

body.single-product .raicraft-product-detail-tabs .raicraft-tab-btn.active,
body.single-product .raicraft-product-detail-tabs .raicraft-tab-btn[aria-selected="true"] {
  color: var(--rc-pink) !important;
}

body.single-product .raicraft-product-detail-tabs .raicraft-tab-btn.active::after,
body.single-product .raicraft-product-detail-tabs .raicraft-tab-btn[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background: var(--rc-pink);
}

body.single-product .raicraft-product-detail-tabs li,
body.single-product .raicraft-product-detail-tabs p,
body.single-product .raicraft-product-detail-tabs .raicraft-tab-panel {
  color: #516079 !important;
  font: 400 11px/1.65 Roboto, Arial, sans-serif !important;
}

body.single-product .raicraft-product-detail-tabs li::marker {
  color: var(--rc-pink) !important;
}

body.single-product .summary.entry-summary form.cart {
  display: flex !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 26px 0 0 !important;
  border-top: 1px solid var(--rc-line) !important;
  gap: 0 !important;
}

body.single-product .summary.entry-summary form.cart .quantity {
  display: none !important;
}

body.single-product .summary.entry-summary form.cart .single_add_to_cart_button {
  width: 100% !important;
  min-height: 50px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 11px !important;
  background: var(--rc-pink) !important;
  color: #fff !important;
  font: 800 12px/1 Roboto, Arial, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
  box-shadow: 0 12px 24px rgba(255, 27, 104, 0.22) !important;
}

body.single-product .summary.entry-summary form.cart .single_add_to_cart_button::before {
  content: "▣";
  margin-right: 8px;
  font-size: 10px;
}

body.single-product .product_meta {
  display: none !important;
}

@media (min-width: 768px) {
  body.single-product .summary.entry-summary .raicraft-after-cart-cards {
    position: absolute !important;
    left: calc(-100% - 48px) !important;
    bottom: 20px !important;
    width: calc(100% - 2px) !important;
    max-width: 420px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 18px 0 0 !important;
    border-top: 1px solid var(--rc-line) !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    z-index: 3 !important;
  }

  body.single-product .summary.entry-summary .raicraft-after-cart-cards > * {
    min-height: 38px !important;
    padding: 0 16px 0 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #526078 !important;
    font: 700 10px/1.35 Roboto, Arial, sans-serif !important;
  }
}

@media (max-width: 767px) {
  body.single-product .raicraft-product-topbar {
    display: none !important;
  }

  body.single-product .raicraft-single-product-page.container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 16px 28px !important;
  }

  body.single-product .raicraft-single-product-page div.product {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    gap: 0 !important;
  }

  body.single-product .woocommerce-product-gallery {
    min-height: 460px !important;
    padding: 74px 18px 54px !important;
    border-radius: 0 !important;
    background: #fff !important;
  }

  body.single-product .woocommerce-product-gallery::before {
    top: 20px !important;
    left: 4px !important;
  }

  body.single-product .woocommerce-product-gallery::after {
    top: 16px !important;
    right: 4px !important;
  }

  body.single-product .woocommerce-product-gallery img.wp-post-image {
    width: min(300px, 86vw) !important;
    height: 300px !important;
    max-height: 300px !important;
  }

  body.single-product .summary.entry-summary {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 4px 24px !important;
  }

  body.single-product .summary.entry-summary::after {
    top: 0 !important;
    right: 4px !important;
  }

  body.single-product .raicraft-product-brand-row {
    order: 1 !important;
    margin: 0 0 18px !important;
    padding-right: 82px !important;
  }

  body.single-product .product_title.entry-title {
    order: 2 !important;
    margin: 0 0 16px !important;
    font-size: 24px !important;
    line-height: 1.24 !important;
  }

  body.single-product .summary.entry-summary .price {
    order: 3 !important;
    min-height: 52px !important;
    margin-bottom: 16px !important;
    font-size: 25px !important;
  }

  body.single-product .raicraft-after-price-note {
    order: 4 !important;
    margin-bottom: 16px !important;
    font-size: 12px !important;
  }

  body.single-product .raicraft-choose-size {
    order: 5 !important;
    margin-bottom: 18px !important;
  }

  body.single-product .raicraft-mobile-info-frame {
    display: contents !important;
  }

  body.single-product .raicraft-product-detail-tabs {
    order: 6 !important;
    margin: 0 0 18px !important;
    padding: 16px 14px 18px !important;
    border-radius: 10px !important;
  }

  body.single-product .raicraft-product-detail-tabs .raicraft-tabs-nav {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  body.single-product .raicraft-product-detail-tabs .raicraft-tab-btn {
    white-space: normal !important;
    font-size: 10px !important;
    line-height: 1.25 !important;
  }

  body.single-product .summary.entry-summary form.cart {
    order: 7 !important;
    padding-top: 18px !important;
    margin: 0 0 16px !important;
  }

  body.single-product .summary.entry-summary .raicraft-after-cart-cards {
    order: 8 !important;
    position: static !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.single-product .summary.entry-summary .raicraft-after-cart-cards > * {
    min-height: 68px !important;
    padding: 12px !important;
    border: 1px solid var(--rc-line) !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: none !important;
  }
}
/* --- End Raicraft product reference redesign 2026-07-05 --- */


/* --- Raicraft product reference redesign corrections 2026-07-05 --- */
body.single-product .raicraft-single-product-page div.product {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding-bottom: 0 !important;
  isolation: isolate !important;
}

body.single-product .raicraft-single-product-page div.product::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 684px;
  background: #fff;
  border: 1px solid var(--rc-line);
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(15, 28, 52, 0.04);
  z-index: -1;
}

body.single-product .woocommerce-product-gallery,
body.single-product .summary.entry-summary {
  z-index: 1 !important;
}

body.single-product .woocommerce-product-gallery img.wp-post-image {
  width: 330px !important;
  max-width: 82% !important;
  height: 330px !important;
  max-height: 330px !important;
  object-fit: contain !important;
}

body.single-product .raicraft-product-detail-tabs {
  max-width: none !important;
  width: 100% !important;
}

@media (min-width: 768px) {
  body.single-product .summary.entry-summary .raicraft-after-cart-cards {
    left: calc(-72.5% - 48px) !important;
    bottom: 18px !important;
  }

  body.single-product .related.products,
  body.single-product .upsells.products {
    grid-column: 1 / -1 !important;
    position: relative !important;
    z-index: 2 !important;
    margin-top: 68px !important;
  }
}

@media (max-width: 767px) {
  body.single-product .raicraft-single-product-page div.product::before {
    display: none !important;
  }

  body.single-product .woocommerce-product-gallery img.wp-post-image {
    width: min(300px, 86vw) !important;
    height: 300px !important;
  }
}
/* --- End Raicraft product reference redesign corrections 2026-07-05 --- */


/* --- Raicraft product reference polish 2026-07-05 --- */
body.single-product .summary.entry-summary > .raicraft-product-detail-tabs,
body.single-product .summary.entry-summary .raicraft-mobile-info-frame > .raicraft-product-detail-tabs {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 26px !important;
}

body.single-product .raicraft-choose-size > span:first-child {
  font-size: 0 !important;
}

body.single-product .raicraft-choose-size > span:first-child::before {
  content: "AVAILABLE SIZES / VOLUMES:";
  font: 700 10px/1.4 Roboto, Arial, sans-serif !important;
  color: var(--rc-muted) !important;
}

body.single-product .raicraft-choose-size .raicraft-size-pill {
  appearance: none !important;
  min-width: 54px !important;
  height: 30px !important;
  padding: 0 13px !important;
  border: 1px solid var(--rc-line) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #29344a !important;
  font: 700 11px/1 Roboto, Arial, sans-serif !important;
  box-shadow: none !important;
}

body.single-product .raicraft-choose-size .raicraft-size-pill.is-active {
  background: #111827 !important;
  color: #fff !important;
  border-color: #111827 !important;
}

body.single-product .summary.entry-summary form.cart .single_add_to_cart_button {
  font-size: 0 !important;
}

body.single-product .summary.entry-summary form.cart .single_add_to_cart_button::before {
  content: "▣" !important;
  margin-right: 8px !important;
  font: 700 10px/1 Roboto, Arial, sans-serif !important;
  vertical-align: middle !important;
}

body.single-product .summary.entry-summary form.cart .single_add_to_cart_button::after {
  content: "ADD TO SHOPPING BAG" !important;
  font: 800 12px/1 Roboto, Arial, sans-serif !important;
  vertical-align: middle !important;
}

@media (max-width: 767px) {
  body.single-product .summary.entry-summary > .raicraft-product-detail-tabs,
  body.single-product .summary.entry-summary .raicraft-mobile-info-frame > .raicraft-product-detail-tabs {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 18px !important;
  }
}
/* --- End Raicraft product reference polish 2026-07-05 --- */


/* --- Raicraft product reference mobile order fix 2026-07-05 --- */
@media (max-width: 767px) {
  body.single-product .summary.entry-summary > .raicraft-product-detail-tabs,
  body.single-product .summary.entry-summary .raicraft-mobile-info-frame > .raicraft-product-detail-tabs {
    order: 6 !important;
  }

  body.single-product .summary.entry-summary form.cart {
    order: 7 !important;
  }

  body.single-product .summary.entry-summary .raicraft-after-cart-cards,
  body.single-product .summary.entry-summary .raicraft-mobile-info-frame > .raicraft-after-cart-cards {
    order: 8 !important;
  }
}
/* --- End Raicraft product reference mobile order fix 2026-07-05 --- */


/* --- Raicraft product pixel pass 2026-07-05 --- */
body.single-product .raicraft-product-topbar {
  max-width: 1180px !important;
  width: min(1180px, calc(100vw - 40px)) !important;
  min-height: 22px !important;
  height: auto !important;
  margin: 12px auto 10px !important;
  padding: 0 !important;
  background: transparent !important;
}

body.single-product .raicraft-single-product-page.container {
  width: min(1180px, calc(100vw - 40px)) !important;
  max-width: 1180px !important;
  margin: 0 auto 34px !important;
}

body.single-product .raicraft-single-product-page div.product {
  grid-template-columns: 465px minmax(0, 1fr) !important;
  column-gap: 44px !important;
  min-height: 0 !important;
  padding: 28px 30px 0 !important;
  align-items: start !important;
}

body.single-product .raicraft-single-product-page div.product::before {
  height: 650px !important;
  border-radius: 16px !important;
  border-color: #e8edf5 !important;
  box-shadow: 0 10px 28px rgba(18, 31, 56, 0.035) !important;
}

body.single-product .raicraft-single-product-page div.product > .woocommerce-product-gallery {
  width: 100% !important;
  min-height: 590px !important;
  height: 590px !important;
  padding: 64px 34px 122px !important;
  align-items: flex-start !important;
  justify-content: center !important;
  background: #fff !important;
}

body.single-product .raicraft-single-product-page div.product > .woocommerce-product-gallery::before {
  top: 24px !important;
  left: 24px !important;
  padding: 6px 12px !important;
  font-size: 8px !important;
  line-height: 1 !important;
  border-radius: 999px !important;
}

body.single-product .raicraft-single-product-page div.product > .woocommerce-product-gallery::after {
  top: 22px !important;
  right: 22px !important;
  width: 36px !important;
  height: 36px !important;
  font-size: 19px !important;
  color: #aeb6c4 !important;
}

body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery__image--placeholder {
  height: 360px !important;
  min-height: 360px !important;
  align-items: center !important;
}

body.single-product .woocommerce-product-gallery img.wp-post-image {
  width: 300px !important;
  max-width: 78% !important;
  height: 300px !important;
  max-height: 300px !important;
  object-fit: contain !important;
}

body.single-product .summary.entry-summary {
  padding: 24px 0 0 !important;
  min-width: 0 !important;
}

body.single-product .summary.entry-summary::after {
  top: 20px !important;
  right: 0 !important;
  padding: 5px 9px !important;
  font-size: 10px !important;
}

body.single-product .raicraft-product-brand-row {
  margin: 0 0 16px !important;
  font-size: 10px !important;
  line-height: 1.35 !important;
  color: #ff1b68 !important;
}

body.single-product .product_title.entry-title {
  margin: 0 72px 14px 0 !important;
  font-size: 25px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

body.single-product .summary.entry-summary .price {
  min-height: 56px !important;
  margin: 0 0 18px !important;
  padding: 0 18px !important;
  border-radius: 10px !important;
  border-color: #ffdbe8 !important;
  background: #fffafb !important;
  font-size: 32px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

body.single-product .summary.entry-summary .price .woocommerce-Price-currencySymbol {
  font-size: 20px !important;
  line-height: 1 !important;
  margin-right: 1px !important;
  vertical-align: baseline !important;
}

body.single-product .raicraft-after-price-note {
  width: 100% !important;
  max-width: 560px !important;
  margin: 0 0 16px !important;
  color: #54627a !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
}

body.single-product .raicraft-choose-size {
  margin: 0 0 20px !important;
}

body.single-product .raicraft-size-options {
  margin-top: 7px !important;
}

body.single-product .raicraft-choose-size .raicraft-size-pill {
  height: 29px !important;
  min-width: 54px !important;
  border-radius: 8px !important;
  font-size: 10px !important;
}

body.single-product .summary.entry-summary > .raicraft-product-detail-tabs,
body.single-product .summary.entry-summary .raicraft-mobile-info-frame > .raicraft-product-detail-tabs {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 24px !important;
  padding: 17px 20px 18px !important;
  border-radius: 12px !important;
  border-color: #e8edf5 !important;
}

body.single-product .raicraft-product-detail-tabs .raicraft-tabs-nav,
body.single-product .raicraft-product-detail-tabs [role="tablist"] {
  margin: 0 0 16px !important;
  padding-bottom: 10px !important;
  gap: 30px !important;
}

body.single-product .raicraft-product-detail-tabs .raicraft-tab-btn {
  font-size: 10px !important;
  line-height: 1.25 !important;
}

body.single-product .raicraft-product-detail-tabs li,
body.single-product .raicraft-product-detail-tabs p,
body.single-product .raicraft-product-detail-tabs .raicraft-tab-panel {
  font-size: 10px !important;
  line-height: 1.7 !important;
}

body.single-product .summary.entry-summary form.cart {
  padding-top: 24px !important;
  border-top-color: #e8edf5 !important;
}

body.single-product .summary.entry-summary form.cart .single_add_to_cart_button {
  min-height: 50px !important;
  height: 50px !important;
  border-radius: 10px !important;
  box-shadow: 0 15px 26px rgba(255, 27, 104, 0.22) !important;
}

@media (min-width: 768px) {
  body.single-product .summary.entry-summary .raicraft-after-cart-cards {
    left: calc(-465px - 44px) !important;
    bottom: 24px !important;
    width: 420px !important;
    max-width: 420px !important;
    height: 58px !important;
    padding-top: 16px !important;
  }

  body.single-product .related.products,
  body.single-product .upsells.products {
    margin-top: 62px !important;
  }
}

@media (max-width: 767px) {
  body.single-product .raicraft-single-product-page.container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 16px 28px !important;
  }

  body.single-product .raicraft-single-product-page div.product {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  body.single-product .raicraft-single-product-page div.product > .woocommerce-product-gallery {
    min-height: 430px !important;
    height: 430px !important;
    padding: 58px 16px 42px !important;
  }

  body.single-product .raicraft-single-product-page div.product > .woocommerce-product-gallery::before {
    top: 16px !important;
    left: 0 !important;
  }

  body.single-product .raicraft-single-product-page div.product > .woocommerce-product-gallery::after {
    top: 12px !important;
    right: 0 !important;
  }

  body.single-product .woocommerce-product-gallery__wrapper,
  body.single-product .woocommerce-product-gallery__image--placeholder {
    height: 300px !important;
    min-height: 300px !important;
  }

  body.single-product .woocommerce-product-gallery img.wp-post-image {
    width: min(280px, 82vw) !important;
    max-width: 82vw !important;
    height: 280px !important;
    max-height: 280px !important;
  }

  body.single-product .summary.entry-summary {
    padding: 0 0 24px !important;
  }

  body.single-product .product_title.entry-title {
    font-size: 24px !important;
    line-height: 1.24 !important;
    margin-bottom: 16px !important;
  }

  body.single-product .summary.entry-summary .price {
    min-height: 52px !important;
    font-size: 30px !important;
    margin-bottom: 16px !important;
  }

  body.single-product .raicraft-after-price-note {
    font-size: 11px !important;
    line-height: 1.6 !important;
    margin-bottom: 16px !important;
  }

  body.single-product .summary.entry-summary > .raicraft-product-detail-tabs,
  body.single-product .summary.entry-summary .raicraft-mobile-info-frame > .raicraft-product-detail-tabs {
    padding: 16px 14px 18px !important;
    margin-bottom: 18px !important;
  }

  body.single-product .raicraft-product-detail-tabs .raicraft-tabs-nav,
  body.single-product .raicraft-product-detail-tabs [role="tablist"] {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  body.single-product .summary.entry-summary form.cart {
    padding-top: 18px !important;
  }
}
/* --- End Raicraft product pixel pass 2026-07-05 --- */


/* --- Raicraft product final price/button tightener 2026-07-05 --- */
body.single-product.woocommerce div.product .summary.entry-summary p.price,
body.single-product.woocommerce-page div.product .summary.entry-summary p.price,
body.single-product .summary.entry-summary p.price {
  font-size: 32px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

body.single-product.woocommerce div.product .summary.entry-summary p.price .amount,
body.single-product.woocommerce div.product .summary.entry-summary p.price bdi,
body.single-product.woocommerce div.product .summary.entry-summary p.price .woocommerce-Price-amount,
body.single-product.woocommerce-page div.product .summary.entry-summary p.price .amount,
body.single-product.woocommerce-page div.product .summary.entry-summary p.price bdi,
body.single-product.woocommerce-page div.product .summary.entry-summary p.price .woocommerce-Price-amount {
  font-size: 32px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
}

body.single-product.woocommerce div.product .summary.entry-summary p.price .woocommerce-Price-currencySymbol,
body.single-product.woocommerce-page div.product .summary.entry-summary p.price .woocommerce-Price-currencySymbol {
  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  margin-right: 2px !important;
}

body.single-product.woocommerce div.product .summary.entry-summary form.cart .single_add_to_cart_button,
body.single-product.woocommerce-page div.product .summary.entry-summary form.cart .single_add_to_cart_button,
body.single-product .summary.entry-summary form.cart button.single_add_to_cart_button {
  border-radius: 10px !important;
  min-height: 50px !important;
  height: 50px !important;
  padding: 0 20px !important;
}

@media (max-width: 767px) {
  body.single-product.woocommerce div.product .summary.entry-summary p.price,
  body.single-product.woocommerce-page div.product .summary.entry-summary p.price,
  body.single-product .summary.entry-summary p.price,
  body.single-product.woocommerce div.product .summary.entry-summary p.price .amount,
  body.single-product.woocommerce div.product .summary.entry-summary p.price bdi,
  body.single-product.woocommerce div.product .summary.entry-summary p.price .woocommerce-Price-amount,
  body.single-product.woocommerce-page div.product .summary.entry-summary p.price .amount,
  body.single-product.woocommerce-page div.product .summary.entry-summary p.price bdi,
  body.single-product.woocommerce-page div.product .summary.entry-summary p.price .woocommerce-Price-amount {
    font-size: 30px !important;
    line-height: 1 !important;
  }

  body.single-product.woocommerce div.product .summary.entry-summary p.price .woocommerce-Price-currencySymbol,
  body.single-product.woocommerce-page div.product .summary.entry-summary p.price .woocommerce-Price-currencySymbol {
    font-size: 17px !important;
  }
}
/* --- End Raicraft product final price/button tightener 2026-07-05 --- */


/* --- Raicraft product latest reference match 2026-07-05 --- */
body.single-product .wa__widget_container,
body.single-product .wa__btn_popup,
body.single-product .joinchat,
body.single-product .ht-ctc-chat,
body.single-product .crisp-client,
body.single-product #tidio-chat,
body.single-product iframe[src*="tawk"],
body.single-product iframe[src*="crisp"],
body.single-product iframe[src*="tidio"] {
  display: none !important;
  visibility: hidden !important;
}

@media (min-width: 768px) {
  body.single-product .raicraft-product-topbar {
    width: min(1140px, calc(100vw - 48px)) !important;
    max-width: 1140px !important;
    margin: 10px auto 10px !important;
  }

  body.single-product .raicraft-single-product-page.container {
    width: min(1140px, calc(100vw - 48px)) !important;
    max-width: 1140px !important;
  }

  body.single-product .raicraft-single-product-page div.product {
    grid-template-columns: 440px minmax(0, 1fr) !important;
    column-gap: 46px !important;
    padding: 26px 28px 0 !important;
  }

  body.single-product .raicraft-single-product-page div.product::before {
    height: 640px !important;
    border-radius: 16px !important;
  }

  body.single-product .raicraft-single-product-page div.product > .woocommerce-product-gallery {
    width: 440px !important;
    height: 580px !important;
    min-height: 580px !important;
    padding: 62px 32px 118px !important;
  }

  body.single-product .woocommerce-product-gallery__wrapper,
  body.single-product .woocommerce-product-gallery__image--placeholder {
    height: 330px !important;
    min-height: 330px !important;
  }

  body.single-product .woocommerce-product-gallery img.wp-post-image {
    width: 282px !important;
    max-width: 76% !important;
    height: 282px !important;
    max-height: 282px !important;
  }

  body.single-product .summary.entry-summary {
    padding-top: 22px !important;
  }

  body.single-product .summary.entry-summary .raicraft-after-cart-cards {
    left: calc(-440px - 46px) !important;
    bottom: 24px !important;
    width: 392px !important;
    max-width: 392px !important;
    height: 58px !important;
    border-top: 1px solid #e7ecf4 !important;
    border-left: 1px solid #e7ecf4 !important;
    border-right: 1px solid #e7ecf4 !important;
    border-bottom: 1px solid #e7ecf4 !important;
    padding: 0 !important;
    align-items: center !important;
  }

  body.single-product .summary.entry-summary .raicraft-after-cart-cards > * {
    min-height: 56px !important;
    align-items: center !important;
    padding: 0 13px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
  }

  body.single-product .product_title.entry-title {
    font-size: 24px !important;
    margin-bottom: 14px !important;
  }

  body.single-product .summary.entry-summary .price,
  body.single-product.woocommerce div.product .summary.entry-summary p.price,
  body.single-product.woocommerce-page div.product .summary.entry-summary p.price {
    height: 54px !important;
    min-height: 54px !important;
    font-size: 31px !important;
  }

  body.single-product .raicraft-after-price-note {
    max-width: 540px !important;
    margin-bottom: 15px !important;
  }

  body.single-product .summary.entry-summary > .raicraft-product-detail-tabs,
  body.single-product .summary.entry-summary .raicraft-mobile-info-frame > .raicraft-product-detail-tabs {
    padding: 16px 19px 17px !important;
    margin-bottom: 22px !important;
  }

  body.single-product .related.products,
  body.single-product .upsells.products {
    margin-top: 58px !important;
  }
}

@media (max-width: 767px) {
  body.single-product .raicraft-single-product-page.container {
    width: 100% !important;
    padding: 0 8px 28px !important;
    margin: 0 !important;
    background: #f8fafd !important;
  }

  body.single-product .raicraft-single-product-page div.product {
    width: 100% !important;
    padding: 16px !important;
    border: 1px solid #e8edf5 !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(16, 29, 54, 0.04) !important;
    overflow: hidden !important;
  }

  body.single-product .raicraft-single-product-page div.product > .woocommerce-product-gallery {
    width: 100% !important;
    height: 338px !important;
    min-height: 338px !important;
    padding: 44px 10px 24px !important;
    border-radius: 10px !important;
    background: #fff !important;
  }

  body.single-product .raicraft-single-product-page div.product > .woocommerce-product-gallery::before {
    top: 12px !important;
    left: 12px !important;
    padding: 5px 10px !important;
    font-size: 8px !important;
  }

  body.single-product .raicraft-single-product-page div.product > .woocommerce-product-gallery::after {
    top: 8px !important;
    right: 8px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 17px !important;
  }

  body.single-product .woocommerce-product-gallery__wrapper,
  body.single-product .woocommerce-product-gallery__image--placeholder {
    height: 250px !important;
    min-height: 250px !important;
  }

  body.single-product .woocommerce-product-gallery img.wp-post-image {
    width: min(245px, 78vw) !important;
    max-width: 78vw !important;
    height: 245px !important;
    max-height: 245px !important;
  }

  body.single-product .summary.entry-summary {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }

  body.single-product .summary.entry-summary .raicraft-after-cart-cards,
  body.single-product .summary.entry-summary .raicraft-mobile-info-frame > .raicraft-after-cart-cards {
    order: 0 !important;
    position: static !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    height: 64px !important;
    margin: 0 0 22px !important;
    padding: 0 !important;
    border: 0 !important;
    border-top: 1px solid #edf1f6 !important;
    border-bottom: 1px solid #edf1f6 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.single-product .summary.entry-summary .raicraft-after-cart-cards > * {
    min-height: 62px !important;
    padding: 9px 8px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 9px !important;
    line-height: 1.25 !important;
  }

  body.single-product .raicraft-product-brand-row {
    order: 1 !important;
    margin: 0 0 16px !important;
    padding-right: 78px !important;
    font-size: 10px !important;
  }

  body.single-product .product_title.entry-title {
    order: 2 !important;
    margin: 0 0 14px !important;
    font-size: 20px !important;
    line-height: 1.24 !important;
  }

  body.single-product .summary.entry-summary .price,
  body.single-product.woocommerce div.product .summary.entry-summary p.price,
  body.single-product.woocommerce-page div.product .summary.entry-summary p.price {
    order: 3 !important;
    height: 46px !important;
    min-height: 46px !important;
    margin: 0 0 14px !important;
    padding: 0 12px !important;
    font-size: 24px !important;
    border-radius: 9px !important;
  }

  body.single-product.woocommerce div.product .summary.entry-summary p.price .amount,
  body.single-product.woocommerce div.product .summary.entry-summary p.price bdi,
  body.single-product.woocommerce div.product .summary.entry-summary p.price .woocommerce-Price-amount,
  body.single-product.woocommerce-page div.product .summary.entry-summary p.price .amount,
  body.single-product.woocommerce-page div.product .summary.entry-summary p.price bdi,
  body.single-product.woocommerce-page div.product .summary.entry-summary p.price .woocommerce-Price-amount {
    font-size: 24px !important;
  }

  body.single-product.woocommerce div.product .summary.entry-summary p.price .woocommerce-Price-currencySymbol,
  body.single-product.woocommerce-page div.product .summary.entry-summary p.price .woocommerce-Price-currencySymbol {
    font-size: 14px !important;
  }

  body.single-product .raicraft-after-price-note {
    order: 4 !important;
    margin: 0 0 18px !important;
    font-size: 10px !important;
    line-height: 1.62 !important;
  }

  body.single-product .raicraft-choose-size {
    order: 5 !important;
    margin: 0 0 16px !important;
    height: auto !important;
  }

  body.single-product .summary.entry-summary > .raicraft-product-detail-tabs,
  body.single-product .summary.entry-summary .raicraft-mobile-info-frame > .raicraft-product-detail-tabs {
    order: 6 !important;
    width: 100% !important;
    padding: 14px 14px 16px !important;
    margin: 0 0 20px !important;
    border-radius: 10px !important;
  }

  body.single-product .raicraft-product-detail-tabs .raicraft-tabs-nav,
  body.single-product .raicraft-product-detail-tabs [role="tablist"] {
    margin-bottom: 12px !important;
    padding-bottom: 9px !important;
  }

  body.single-product .summary.entry-summary form.cart {
    order: 7 !important;
    padding-top: 20px !important;
    margin: 0 !important;
  }

  body.single-product .summary.entry-summary form.cart .single_add_to_cart_button {
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 9px !important;
  }

  body.single-product .related.products,
  body.single-product .upsells.products {
    order: 90 !important;
    margin-top: 28px !important;
  }
}
/* --- End Raicraft product latest reference match 2026-07-05 --- */


/* --- Raicraft product rating/mobile final cleanup 2026-07-06 --- */
@media (max-width: 767px) {
  body.single-product .summary.entry-summary::after {
    top: auto !important;
    right: 0 !important;
    transform: translateY(0) !important;
    margin-top: 0 !important;
    align-self: flex-end !important;
    order: 1 !important;
    position: relative !important;
    width: max-content !important;
    height: 22px !important;
    padding: 5px 9px !important;
    z-index: 2 !important;
  }

  body.single-product .raicraft-product-brand-row {
    margin-top: -22px !important;
    padding-right: 80px !important;
  }

  body.single-product .mobile-bottom-nav a[href*="chat"],
  body.single-product .mobile-bottom-nav a:has(.chat),
  body.single-product .mobile-bottom-nav a:has([class*="chat"]),
  body.single-product .mobile-bottom-nav a:has([class*="analyzer"]),
  body.single-product .mobile-bottom-nav a[href*="analyzer"] {
    display: none !important;
  }
}
/* --- End Raicraft product rating/mobile final cleanup 2026-07-06 --- */


/* --- Raicraft requested product remaining fixes 2026-07-06 --- */
body.single-product .summary.entry-summary .raicraft-after-cart-cards {
  overflow: hidden !important;
}

body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 28px 1fr !important;
  align-content: center !important;
  align-items: center !important;
  column-gap: 8px !important;
  color: #0c1830 !important;
  font: 800 12px/1.15 Roboto, Arial, sans-serif !important;
  text-transform: uppercase !important;
}

body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card::before {
  width: 24px !important;
  height: 24px !important;
  margin: 0 !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: #fff3f7 !important;
  color: #ff1b68 !important;
  font: 900 15px/1 Roboto, Arial, sans-serif !important;
  grid-row: 1 / span 2 !important;
}

body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:first-child::before {
  content: "♡" !important;
  border: 0 !important;
}

body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:nth-child(2)::before {
  content: "▱" !important;
  border: 0 !important;
}

body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:first-child::after {
  content: "Direct import from Seoul";
  display: block;
  grid-column: 2;
  color: #8290a6;
  font: 400 10px/1.25 Roboto, Arial, sans-serif;
  text-transform: none;
}

body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:nth-child(2)::after {
  content: "On orders over 2,999৳";
  display: block;
  grid-column: 2;
  color: #8290a6;
  font: 400 10px/1.25 Roboto, Arial, sans-serif;
  text-transform: none;
}

body.single-product .summary.entry-summary form.cart .quantity,
body.single-product .summary.entry-summary form.cart .raicraft-qty-ready {
  display: none !important;
}

body.single-product .summary.entry-summary form.cart {
  display: block !important;
}

body.single-product .summary.entry-summary form.cart .single_add_to_cart_button,
body.single-product.woocommerce div.product .summary.entry-summary form.cart .single_add_to_cart_button,
body.single-product.woocommerce-page div.product .summary.entry-summary form.cart .single_add_to_cart_button {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

body.single-product .summary.entry-summary form.cart .single_add_to_cart_button::before,
body.single-product.woocommerce div.product .summary.entry-summary form.cart .single_add_to_cart_button::before,
body.single-product.woocommerce-page div.product .summary.entry-summary form.cart .single_add_to_cart_button::before {
  content: "" !important;
  margin: 0 !important;
  display: none !important;
}

body.single-product .summary.entry-summary form.cart .single_add_to_cart_button::after,
body.single-product.woocommerce div.product .summary.entry-summary form.cart .single_add_to_cart_button::after,
body.single-product.woocommerce-page div.product .summary.entry-summary form.cart .single_add_to_cart_button::after {
  content: "Add to cart" !important;
  font: 800 14px/1 Roboto, Arial, sans-serif !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

body.single-product .related.products a.button,
body.single-product .related.products button,
body.single-product .upsells.products a.button,
body.single-product .upsells.products button {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

@media (max-width: 767px) {
  body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card {
    grid-template-columns: 24px 1fr !important;
    column-gap: 7px !important;
    font-size: 9px !important;
    line-height: 1.15 !important;
  }

  body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card::before {
    width: 22px !important;
    height: 22px !important;
    font-size: 13px !important;
  }

  body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:first-child::after,
  body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:nth-child(2)::after {
    font-size: 8px !important;
    line-height: 1.2 !important;
  }

  body.single-product .summary.entry-summary form.cart .single_add_to_cart_button::after,
  body.single-product.woocommerce div.product .summary.entry-summary form.cart .single_add_to_cart_button::after,
  body.single-product.woocommerce-page div.product .summary.entry-summary form.cart .single_add_to_cart_button::after {
    font-size: 13px !important;
  }

  body.single-product .related.products a.button,
  body.single-product .related.products button,
  body.single-product .upsells.products a.button,
  body.single-product .upsells.products button {
    width: 100% !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }
}
/* --- End Raicraft requested product remaining fixes 2026-07-06 --- */


/* --- Raicraft final requested fixes hard override 2026-07-06 --- */
body.single-product .summary.entry-summary .raicraft-after-cart-cards {
  height: 72px !important;
  min-height: 72px !important;
}

body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card {
  height: 70px !important;
  min-height: 70px !important;
  overflow: visible !important;
}

body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:first-child {
  font-size: 0 !important;
}

body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:first-child::before {
  content: "♡" !important;
}

body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:first-child .raicraft-card-title,
body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:first-child strong {
  font-size: 0 !important;
}

body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:first-child::after {
  content: "100%A AUTHENTICA Direct import fromA Seoul" !important;
  white-space: pre-line !important;
  color: #0c1830 !important;
  font: 800 12px/1.12 Roboto, Arial, sans-serif !important;
}

body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:nth-child(2) {
  font-size: 0 !important;
}

body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:nth-child(2)::before {
  content: "▱" !important;
}

body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:nth-child(2)::after {
  content: "FREE SHIPPINGA On orders overA 2,999৳" !important;
  white-space: pre-line !important;
  color: #0c1830 !important;
  font: 800 12px/1.12 Roboto, Arial, sans-serif !important;
}

body.single-product.woocommerce div.product form.cart div.quantity,
body.single-product.woocommerce-page div.product form.cart div.quantity,
body.single-product div.product form.cart div.quantity,
body.single-product form.cart .quantity,
body.single-product form.cart .raicraft-qty-ready {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body.single-product.woocommerce div.product form.cart,
body.single-product.woocommerce-page div.product form.cart,
body.single-product div.product form.cart,
body.single-product .summary.entry-summary form.cart {
  display: block !important;
  width: 100% !important;
}

body.single-product.woocommerce div.product form.cart .single_add_to_cart_button,
body.single-product.woocommerce-page div.product form.cart .single_add_to_cart_button,
body.single-product div.product form.cart .single_add_to_cart_button,
body.single-product .summary.entry-summary form.cart .single_add_to_cart_button {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
}

@media (max-width: 767px) {
  body.single-product .summary.entry-summary .raicraft-after-cart-cards {
    height: 72px !important;
    min-height: 72px !important;
    margin-bottom: 18px !important;
  }

  body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card {
    height: 70px !important;
    min-height: 70px !important;
  }

  body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:first-child::after,
  body.single-product .summary.entry-summary .raicraft-after-cart-cards > .raicraft-after-cart-card:nth-child(2)::after {
    font-size: 9px !important;
    line-height: 1.12 !important;
  }
}
/* --- End Raicraft final requested fixes hard override 2026-07-06 --- */
