/* =========================================================
   GLOBAL WRAPPER
========================================================= */

.odoo-expert-wrapper {
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
}

/* =========================================================
   BASE PRODUCT GRID
========================================================= */

.odoo-expert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: var(--odoo-grid-justify, center);
    gap: 25px;
    margin: 20px 0;
    font-family: inherit;
}

.odoo-expert-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    width: 100%;
}

@media (min-width: 768px) {
    .odoo-expert-card {
        width: calc((100% - (25px * (var(--odoo-grid-cols, 3) - 1))) / var(--odoo-grid-cols, 3));
    }
}

.odoo-expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* =========================================================
   PRODUCT CARD CONTENT
========================================================= */

.odoo-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.odoo-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.odoo-expert-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.odoo-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: var(--odoo-text-align, left);
    align-items: var(--odoo-align-items, flex-start);
}

.odoo-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.odoo-card-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: var(--odoo-desc-lines, 20);
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v2-desc {
    margin-bottom: 20px;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    text-overflow: clip;
}

.odoo-card-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 0.85rem;
    color: #555;
    width: 100%;
}

.odoo-card-meta li {
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f0f0f0;
}

.odoo-card-meta li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.odoo-card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: auto;
}

/* =========================================================
   PRODUCT CARD CAPTIONS
========================================================= */

.odoo-card-price-caption {
    width: 100%;
    font-size: 0.9rem;
    font-weight: 400;
    color: #555;
    line-height: 1.4;
    margin: 0 0 10px;
}

.odoo-session-count {
    font-weight: 700;
    color: #000;
}

.odoo-card-expert-name {
    width: 100%;
    font-size: 0.95rem;
    font-weight: 400;
    color: #555;
    line-height: 1.4;
    margin: 0 0 12px;
}

.odoo-card-expert-name a,
.odoo-detail-expert-name a {
    color: inherit;
    text-decoration: none;
}

.odoo-card-expert-name a:hover,
.odoo-detail-expert-name a:hover {
    text-decoration: underline;
}

.odoo-card-expert-name strong {
    font-size: 1.08rem;
    font-weight: 700;
    color: #111;
}

/* =========================================================
   PRODUCT CARD BUTTONS
========================================================= */

.odoo-btn {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
    min-width: 120px;
    margin-top: auto;
    text-decoration: none;
}

.odoo-expert-card:hover .odoo-btn {
    background-color: #000;
    color: #fff;
}

.odoo-card-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
    width: 100%;
}

.odoo-card-buttons .odoo-btn {
    flex: 1;
}

.odoo-btn-outline {
    background-color: transparent;
    border: 1px solid #333;
    color: #333;
}

.odoo-btn-outline:hover {
    background-color: #f0f0f0 !important;
    color: #333 !important;
}

/* =========================================================
   PROFILE SHORTCODE GRID - STABLE 3 COLUMNS
========================================================= */

.odoo-expert-grid.odoo-profile-masonry-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 25px !important;
    align-items: start !important;
}

.odoo-expert-grid.odoo-profile-masonry-grid .odoo-expert-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    display: flex !important;
}

.odoo-expert-grid.odoo-profile-masonry-grid .odoo-card-link {
    height: auto !important;
}

.odoo-expert-grid.odoo-profile-masonry-grid .odoo-card-body {
    height: auto !important;
}

.odoo-expert-grid.odoo-profile-masonry-grid .odoo-card-image {
    height: auto !important;
    min-height: 0 !important;
}

.odoo-expert-grid.odoo-profile-masonry-grid .odoo-card-image img {
    width: 100%;
    height: auto !important;
    max-height: 340px;
    object-fit: contain;
}

/* =========================================================
   DETAIL PAGE
========================================================= */

.odoo-detail-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
    font-family: inherit;
    line-height: 1.6;
    color: #333;
}

.odoo-detail-header {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.odoo-detail-image {
    flex: 1;
    min-width: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    background-color: #f9f9f9;
}

.odoo-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 600px;
}

.odoo-detail-meta-info {
    flex: 1.5;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.odoo-detail-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin: 0 0 20px 0;
    line-height: 1.2;
    color: #111;
    font-weight: 700;
}

.odoo-detail-expert-name {
    font-size: 1.05rem;
    color: #555;
    margin: -8px 0 20px;
}

.odoo-detail-expert-name strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
}

.odoo-detail-main-price {
    margin-bottom: 25px;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #333;
}

.odoo-detail-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2c3e50;
}

.odoo-detail-card-meta li {
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
    font-size: 1.1rem;
}

.odoo-detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.odoo-detail-book-btn {
    background-color: #007bff;
    color: #fff !important;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    border: none;
    cursor: pointer;
}

.odoo-detail-book-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.odoo-profile-btn {
    background-color: #6c757d !important;
    box-shadow: 0 4px 15px rgba(108,117,125,0.3) !important;
}

.odoo-profile-btn:hover {
    background-color: #5a6268 !important;
    box-shadow: 0 6px 20px rgba(108,117,125,0.4) !important;
}

/* =========================================================
   DETAIL SECTIONS
========================================================= */

.odoo-detail-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    margin-bottom: 35px;
    border: 1px solid #eee;
}

@media (min-width: 768px) {
    .odoo-detail-section {
        padding: 40px;
    }
}

.odoo-detail-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 1.4rem;
    color: #111;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.odoo-detail-section h3 svg {
    width: 28px;
    height: 28px;
    color: #007bff;
    flex-shrink: 0;
}

.odoo-detail-content {
    font-size: 1.1rem;
    color: #444;
}

.highlights-section {
    background-color: #fffdf5;
    border-color: #ffeeba;
}

.highlights-section h3 {
    border-color: #ffc107;
}

.penalty-list {
    list-style: none;
    padding: 0 !important;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.penalty-list li {
    background: #fdf2f2;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #fbd5d5;
    text-align: center;
    font-size: 0.95rem;
}

.odoo-detail-footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
}

.odoo-main-store-btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff !important;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
}

.odoo-detail-related-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eaeaea;
}

.odoo-detail-related-products h2 {
    text-align: center;
    font-size: 2rem;
    color: #111;
    margin-bottom: 30px;
    font-weight: bold;
}

/* =========================================================
   CATALOG SEARCH - TWO ROW UI
========================================================= */

.odoo-catalog-toolbar {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 10px 0 30px;
    margin-bottom: 10px;
}

.odoo-catalog-toolbar-head {
    text-align: center;
    margin-bottom: 18px;
}

.odoo-catalog-toolbar-head h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 700;
    color: #1f2937;
}

.odoo-catalog-search-wrapper {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --soft-bg: #f9fafb;

    width: 100%;
    max-width: 780px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.odoo-catalog-search-bar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
    border-radius: 26px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.04);
    padding: 10px;
    border: 1px solid #eef0f3;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.odoo-catalog-search-bar:focus-within {
    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.11),
        0 4px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.odoo-catalog-search-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--soft-bg);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    padding: 6px 8px 6px 18px;
}

.odoo-catalog-search-input {
    flex: 1 1 auto;
    min-width: 0;
    border: none !important;
    background: transparent !important;
    padding: 12px 8px !important;
    font-size: 16px;
    color: var(--text-main);
    outline: none !important;
    box-shadow: none !important;
    margin: 0;
}

.odoo-catalog-search-input::placeholder {
    color: #9ca3af;
}

.odoo-catalog-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none !important;
    border-radius: 9999px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    gap: 8px;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.odoo-catalog-search-btn:hover {
    background-color: var(--primary-hover);
}

.odoo-catalog-search-btn:active {
    transform: scale(0.97);
}

.odoo-catalog-search-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.odoo-catalog-filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.odoo-catalog-language-selector,
.odoo-catalog-category-selector {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--soft-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.odoo-catalog-language-selector select,
.odoo-catalog-category-selector select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    width: 100%;
    background: transparent;
    border: none !important;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
    padding: 13px 36px 13px 16px;
    cursor: pointer;
    outline: none !important;
    box-shadow: none !important;
    transition: color 0.2s ease;
}

.odoo-catalog-language-selector select::-ms-expand,
.odoo-catalog-category-selector select::-ms-expand {
    display: none;
}

.odoo-catalog-language-selector::after,
.odoo-catalog-category-selector::after {
    content: "";
    position: absolute;
    inset-inline-end: 14px;
    top: 50%;
    transform: translateY(-50%);
    border-inline-start: 4px solid transparent;
    border-inline-end: 4px solid transparent;
    border-top: 5px solid var(--text-muted);
    pointer-events: none;
}

.odoo-catalog-language-selector select:hover,
.odoo-catalog-language-selector select:focus,
.odoo-catalog-category-selector select:hover,
.odoo-catalog-category-selector select:focus {
    color: var(--text-main);
}

/* =========================================================
   CATALOG RESULTS + MASONRY
========================================================= */

.odoo-catalog-results-container.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

.odoo-catalog-results-meta {
    margin-bottom: 16px;
    color: #555;
    font-size: 0.98rem;
}

.odoo-catalog-empty {
    padding: 30px;
    border: 1px dashed #d8d8d8;
    border-radius: 16px;
    text-align: center;
    background: #fafafa;
    color: #666;
}

.odoo-catalog-masonry {
    column-count: 3;
    column-gap: 22px;
}

.odoo-catalog-masonry .odoo-expert-card {
    display: inline-block;
    width: 100%;
    margin: 0 0 22px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    vertical-align: top;
}

.odoo-catalog-masonry .odoo-card-link {
    display: block;
    height: auto;
}

.odoo-catalog-masonry .odoo-card-body {
    height: auto;
}

.odoo-catalog-masonry .odoo-card-image {
    height: auto;
    min-height: 0;
}

.odoo-catalog-masonry .odoo-card-image img {
    width: 100%;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    display: block;
}

.odoo-catalog-masonry .odoo-card-desc {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
    display: block;
}

/* =========================================================
   CATALOG PAGINATION
========================================================= */

.odoo-catalog-pagination {
    margin-top: 34px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.odoo-catalog-page-btn {
    min-width: 44px;
    height: 44px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #374151;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.odoo-catalog-page-btn:hover {
    transform: translateY(-2px);
    border-color: #111827;
    color: #111827;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.odoo-catalog-page-btn.is-active {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
    box-shadow: 0 10px 22px rgba(17,24,39,0.22);
}
/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
    .odoo-expert-grid.odoo-profile-masonry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .odoo-catalog-masonry {
        column-count: 2;
    }
}

@media (max-width: 767px) {
    .odoo-expert-grid.odoo-profile-masonry-grid {
        grid-template-columns: 1fr !important;
    }

    .odoo-catalog-toolbar {
        padding: 10px 0 24px;
    }

    .odoo-catalog-toolbar-head h2 {
        font-size: 1.6rem;
    }

    .odoo-catalog-search-wrapper {
        max-width: 100%;
        padding: 0 12px;
    }

    .odoo-catalog-search-bar {
        padding: 6px;
    }

    .odoo-catalog-search-main-row {
        padding-inline-start: 14px;
    }

    .odoo-catalog-search-btn .btn-text {
        display: none;
    }

    .odoo-catalog-search-btn {
        width: 44px;
        height: 44px;
        padding: 0;
    }

    .odoo-catalog-filter-row {
        grid-template-columns: 1fr;
    }

    .odoo-catalog-language-selector select,
    .odoo-catalog-category-selector select {
        font-size: 14px;
        padding: 10px 24px 10px 12px;
    }

    .odoo-catalog-search-input {
        font-size: 15px;
    }

    .odoo-catalog-masonry {
        column-count: 1;
    }
}

/* =========================================================
   CATEGORY PRODUCT PAGE
========================================================= */
/* =========================================================
   CATEGORY PRODUCT PAGE
========================================================= */

.odoo-category-page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 0;
}

.odoo-category-page-results.is-loading {
    opacity: 0.6;
    pointer-events: none;
}

.odoo-category-page-section {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.odoo-category-browser-wrap {
    margin-bottom: 10px;
}



.odoo-catalog-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* =========================================================
   PRODUCT CATEGORY NAV - SAME STYLE AS [expert_subcategories]
========================================================= */

.odoo-product-cat-nav {
    margin-bottom: 30px;
    font-family: inherit;
    text-align: center;
}

.odoo-product-cat-nav .nav-breadcrumb {
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.odoo-product-cat-nav .parent-item {
    text-decoration: none;
    color: #0073aa;
}

.odoo-product-cat-nav .parent-item:hover {
    text-decoration: underline;
}

.odoo-product-cat-nav .nav-arrow {
    margin: 0 10px;
    color: #ccc;
}

.odoo-product-cat-nav .current-item {
    color: #333;
}

.odoo-product-cat-nav .nav-children {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.odoo-product-cat-nav .child-tag {
    padding: 6px 12px 4px 12px;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.odoo-product-cat-nav .child-tag:hover {
    color: #0073aa;
    border-bottom: 2px solid #0073aa;
}

.odoo-product-cat-nav .cat-icon {
    width: 20px;
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
}

/* =========================================================
   RANDOM PRODUCTS SLIDER - FULL WIDTH + PINTEREST HEIGHT
========================================================= */

.odoo-products-slider-wrapper {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 60px;
    box-sizing: border-box;
}

.odoo-products-slider-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 2px 24px;
    scrollbar-width: none;
}

.odoo-products-slider-track::-webkit-scrollbar {
    display: none;
}

.odoo-products-slider-item {
    flex: 0 0 calc((100% - 66px) / 3) !important;
    max-width: calc((100% - 66px) / 3) !important;
    min-width: calc((100% - 66px) / 3) !important;
    scroll-snap-align: start;
    box-sizing: border-box;
    align-self: flex-start !important;
}

/* card must fit content, not equal height */
.odoo-products-slider-item .odoo-expert-card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    display: flex !important;
}

.odoo-products-slider-item .odoo-card-link {
    height: auto !important;
    min-height: 0 !important;
}

.odoo-products-slider-item .odoo-card-body {
    height: auto !important;
    min-height: 0 !important;
}

/* fixed image area only, card itself stays natural height */
.odoo-products-slider-item .odoo-card-image {
    width: 100%;
    height: 250px !important;
    min-height: 250px !important;
    max-height: 250px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    overflow: hidden;
}

.odoo-products-slider-item .odoo-card-image img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center;
    display: block;
}

.odoo-slider-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.odoo-slider-prev {
    left: 12px;
}

.odoo-slider-next {
    right: 12px;
}



@media (max-width: 900px) {
    .odoo-products-slider-item {
        flex-basis: calc((100% - 22px) / 2) !important;
        max-width: calc((100% - 22px) / 2) !important;
        min-width: calc((100% - 22px) / 2) !important;
    }
}

@media (max-width: 767px) {
    .odoo-products-slider-wrapper {
        padding: 0 46px;
    }

    .odoo-products-slider-item {
        flex-basis: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }

    .odoo-products-slider-item .odoo-card-image {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }

    .odoo-slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 26px;
    }
}
/* =========================================================
   EXPERT PROFILE CATALOG
========================================================= */

.odoo-expert-catalog-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 0;
}

.odoo-expert-catalog-nav {
    margin-bottom: 30px;
    font-family: inherit;
    text-align: center;
}

.odoo-expert-catalog-nav .nav-breadcrumb {
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.odoo-expert-catalog-nav .parent-item {
    text-decoration: none;
    color: #0073aa;
}

.odoo-expert-catalog-nav .parent-item:hover {
    text-decoration: underline;
}

.odoo-expert-catalog-nav .nav-arrow {
    margin: 0 10px;
    color: #ccc;
}

.odoo-expert-catalog-nav .current-item {
    color: #333;
}

.odoo-expert-catalog-nav .nav-children {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.odoo-expert-catalog-nav .child-tag {
    padding: 6px 12px 4px 12px;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.odoo-expert-catalog-nav .child-tag:hover {
    color: #0073aa;
    border-bottom: 2px solid #0073aa;
}

.odoo-expert-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    align-items: start;
}

.odoo-expert-profile-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.odoo-expert-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

.odoo-expert-profile-card-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

.odoo-expert-profile-image {
    width: 100%;
    aspect-ratio: 450 / 550;
    background: #f9fafb;
    overflow: hidden;
}

.odoo-expert-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.odoo-expert-profile-body {
    padding: 20px;
}

.odoo-expert-profile-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
    line-height: 1.35;
}

.odoo-expert-profile-about {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.55;
    margin-bottom: 14px;
}

.odoo-expert-profile-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 0.88rem;
    color: #555;
}

.odoo-expert-profile-meta li {
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
}

.odoo-expert-profile-meta li:last-child {
    border-bottom: none;
}

.odoo-expert-profile-meta strong {
    color: #111;
    font-weight: 700;
}

.odoo-expert-profile-btn {
    display: inline-block;
    width: 100%;
    background: #111;
    color: #fff;
    text-align: center;
    padding: 11px 16px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 8px;
}

.odoo-expert-profile-pagination {
    margin-top: 34px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.odoo-expert-profile-pagination .page-numbers {
    min-width: 44px;
    height: 44px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.odoo-expert-profile-pagination .page-numbers.current {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.odoo-expert-profile-empty {
    padding: 30px;
    border: 1px dashed #ddd;
    border-radius: 14px;
    text-align: center;
    color: #666;
    background: #fafafa;
}

@media (max-width: 1024px) {
    .odoo-expert-profile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .odoo-expert-profile-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   EXPLORE PRODUCTS CATEGORY GRID (NEW)
========================================================= */
.odoo-explore-products-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.odoo-explore-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 60px;
    color: #ffffff;
}

.odoo-explore-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 50px 40px;
    width: 100%;
}

.odoo-explore-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 calc((100% - 80px) / 3);
    min-width: 0;
}

.odoo-explore-card-line {
    width: 60px;
    height: 4px;
    background-color: #ff2d55;
    margin-bottom: 25px;
}

.odoo-explore-card-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.4;
    color: #ffffff;
}

.odoo-explore-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex: 1 1 auto;
    opacity: 0.9;
    color: white;
}

.odoo-explore-card-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #d4af37;
    color: #d4af37;
    background: transparent;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.odoo-explore-card-btn:hover {
    background-color: #d4af37;
    color: #111;
}

@media (max-width: 1024px) {
    .odoo-explore-card {
        flex-basis: calc((100% - 40px) / 2);
    }
}

@media (max-width: 767px) {
    .odoo-explore-card {
        flex-basis: 100%;
    }
    .odoo-explore-title {
        font-size: 2.2rem;
    }
}

/* =========================================================
   MAIN NAV BLOCKS SHORTCODE
========================================================= */
.nav-blocks-wrapper {
    max-width: 1200px;
    margin: 40px auto;
}

.nav-blocks-wrapper .odoo-explore-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.nav-block-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 15px;
    transition: background 0.3s ease;
    flex: 1 1 calc((100% - 80px) / 3);
    min-width: 0;
    height: auto;
    justify-content: flex-start;
}

.nav-block-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.nav-block-item .odoo-explore-card-title {
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.nav-block-item .odoo-explore-card-desc {
    flex: 1 1 auto;
}

.nav-block-item .odoo-explore-card-btn {
    margin-top: auto;
}

@media (max-width: 1024px) {
    .nav-block-item {
        flex-basis: calc((100% - 40px) / 2);
    }
}

@media (max-width: 767px) {
    .nav-block-item {
        flex-basis: 100%;
    }
}
