/* International Watches Public Page CSS */

.watches-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 25px !important;
    font-family: 'Inter', 'Open Sans', sans-serif;
    background-color: #ffffff;
    box-sizing: border-box !important;
}

.watches-sticky-header {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 71px !important;
    z-index: 100 !important;
    background-color: #ffffff !important;
    padding-top: 10px !important;
    padding-bottom: 5px !important;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
}

#list_bar {
    display: block !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 15px !important;
}

.watches-page-title {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Search and Filters Bar */
.watches-search-filter-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    position: relative;
}

.watches-search-bar-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.watches-search-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 280px;
}

.watches-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.watches-search-input {
    width: 100%;
    padding: 10px 15px 10px 38px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    color: #333333 !important;
}

.watches-search-input:focus {
    border-color: #007D79;
}

.watches-avail-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.watches-avail-checkbox span {
    display: inline-block !important;
    color: #333333 !important;
    font-size: 13px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.watches-action-btns {
    display: flex;
    gap: 10px;
}

.btn-watches-search {
    background-color: #007D79;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.btn-watches-search:hover {
    background-color: #005f5c;
    color: #ffffff;
}

.btn-watches-reset {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #cccccc;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-watches-reset:hover {
    background-color: #fff1f0 !important;
    border-color: #ffa39e !important;
    color: #d9363e !important;
}

/* Horizontal Filters dropdowns */
.watches-dropdowns-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.watch-filter-select {
    padding: 8px 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background: #ffffff;
    font-size: 13px;
    color: #444;
    outline: none;
    cursor: pointer;
    min-width: 110px;
    transition: all 0.2s ease;
}

.watch-filter-select:focus {
    border-color: #007D79;
}

/* Active / Selected state for Top Dropdown Filters */
.watch-filter-select.has-selected,
div.selector.has-selected,
.selector.has-selected {
    border: 1.5px solid #007D79 !important;
    background-color: #ffffff !important;
    background-image: none !important;
    box-shadow: 0 1px 4px rgba(0, 125, 121, 0.15) !important;
    border-radius: 4px !important;
}

div.selector.has-selected>span,
.selector.has-selected>span,
.watch-filter-select.has-selected {
    color: #222222 !important;
    font-weight: 600 !important;
}

div.selector.has-selected>span::after,
.selector.has-selected>span::after {
    border-top-color: #007D79 !important;
}

.watch-filter-reset-link {
    color: #d9363e;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.watch-filter-reset-link:hover {
    background-color: #fff1f0 !important;
    color: #d9363e !important;
    text-decoration: none !important;
}

html,
body {
    max-width: 100vw;
    overflow-x: clip !important;
}

html.table-view-active,
body.table-view-active {
    overflow: hidden !important;
    height: 100% !important;
}

/* Custom Sleek Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #007D79;
}

.mobile-table-scroll {
    width: 100%;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
}

.watches-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 25px !important;
    font-family: 'Inter', 'Open Sans', sans-serif;
    background-color: #ffffff;
    box-sizing: border-box !important;
    overflow: visible !important;
}

/* Ensure parent wrappers do not clip sticky positioning on desktop */
@media (min-width: 992px) {

    .page-container,
    .page-content-wrapper,
    .page-content,
    .page-content-inner {
        overflow: visible !important;
    }
}

/* Main Layout Grid */
.watches-main-layout {
    display: flex !important;
    align-items: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    box-sizing: border-box !important;
    min-height: 650px !important;
    overflow: visible !important;
}

.watches-right-content {
    min-height: 550px !important;
}

/* Left Sidebar "Refine Search" - Permanent Full Height Sticky Filter Section */
.watches-left-sidebar {
    width: 250px !important;
    min-width: 250px !important;
    max-width: 250px !important;
    flex-shrink: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-right: 5px;
    z-index: 95;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 288px !important;
    max-height: calc(100vh - 298px) !important;
    align-self: flex-start !important;
}

@media (min-width: 992px) {
    .watches-right-content {
        margin-left: 15px !important;
        flex: 1 !important;
        min-width: 0 !important;
        min-height: 550px !important;
    }
}

.watches-left-sidebar::-webkit-scrollbar {
    width: 4px;
}

.watches-left-sidebar::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 4px;
}

.watches-left-sidebar::-webkit-scrollbar-thumb:hover {
    background: #007D79;
}

.refine-search-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    border-bottom: 2px solid #007D79;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.refine-section-card {
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
}

.refine-section-header {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.refine-search-subinput {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 12px;
    outline: none;
}

.refine-checkbox-list {
    max-height: none !important;
    overflow-y: visible !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.refine-checkbox-label {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    margin: 0;
}

.refine-chk-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.refine-checkbox-label input {
    margin: 0;
}

.filter-count-pill {
    background-color: #f2f4f7;
    color: #667085;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: auto;
    line-height: 1.2;
}

.view-more-link {
    display: inline-block;
    font-size: 12px;
    color: #007D79;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    text-decoration: none;
}

.view-more-link:hover {
    text-decoration: underline;
}

/* Right Content Area */
.watches-right-content {
    flex: 1 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

#list_bar {
    position: relative;
    z-index: 35;
    background: #ffffff;
}

.watches-action-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 10px 20px;
    width: 100%;
}

.watches-action-left {
    flex: 1;
}

.watches-action-center {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
}

.watches-count-badge {
    background-color: #007D79;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 4px;
    display: inline-block;
    white-space: nowrap;
}

.watches-sorting-controls {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.watch-filter-select {
    min-width: 150px;
    height: 34px;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
}

.flex-toggle-views {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
}

.toggle_view_icons {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #cbd5e1 !important;
    background: #ffffff !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.toggle_view_icons svg {
    width: 20px !important;
    height: 20px !important;
    stroke: #475569 !important;
    color: #475569 !important;
    display: inline-block !important;
    transition: all 0.25s ease !important;
}

.toggle_view_icons.selected {
    border-color: #007D79 !important;
    background: #ecfdf5 !important;
}

.toggle_view_icons.selected svg {
    stroke: #007D79 !important;
    color: #007D79 !important;
}

.toggle_view_icons:hover {
    border-color: #007D79 !important;
    background: #ecfdf5 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 125, 121, 0.18) !important;
}

.toggle_view_icons:hover svg {
    stroke: #007D79 !important;
    color: #007D79 !important;
    transform: scale(1.08);
}

.toggle_view_icons.selected:hover {
    border-color: #005f5c !important;
    background: #007D79 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 125, 121, 0.3) !important;
}

.toggle_view_icons.selected:hover svg {
    stroke: #ffffff !important;
    color: #ffffff !important;
    transform: scale(1.08);
}

/* Legacy watch-media-btn (kept for safety) */


/* Image Carousel Controls on Watch Card */
.watch-card-image-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.watch-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    z-index: 5;
}

.watch-card-image-container:hover .watch-carousel-arrow {
    opacity: 0.85;
}

.watch-carousel-arrow:hover {
    opacity: 1 !important;
    background: #007D79;
}

.watch-carousel-prev {
    left: 5px;
}

.watch-carousel-next {
    right: 5px;
}

.watch-image-count-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
    z-index: 4;
}

.watch-video-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 125, 121, 0.9);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 5;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.watch-card-image-container:hover .watch-video-badge {
    transform: scale(1.05);
    background: #005f5c;
}

.watches-sorting-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-right: 5px;
}

/* Watch Grid Listing */
.watches-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .watches-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .watches-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .watches-grid-container {
        grid-template-columns: 1fr;
    }
}

/* Watch Details Card */
.watch-detail-card {
    background: #ffffff;
    border: 1.5px solid #007D79 !important;
    border-radius: 8px;
    padding: 10px;
    position: relative;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 125, 121, 0.08);
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.watch-detail-card:hover {
    transform: translateY(-3px);
    border-color: #005f5c !important;
    box-shadow: 0 6px 18px rgba(0, 125, 121, 0.2) !important;
}

.watch-card-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: #007D79;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 3px;
    z-index: 2;
    text-transform: uppercase;
}

.watch-card-checkbox,
.watch-detail-card .checker {
    position: absolute !important;
    right: 10px !important;
    top: 10px !important;
    z-index: 10 !important;
    cursor: pointer;
    width: 19px;
    height: 19px;
}

.watch-card-image-container {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 8px;
    position: relative;
}

.watch-card-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Media icons overlay */
.watch-card-media-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 6px;
}

.watch-media-btn {
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #555555;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.watch-media-btn:hover {
    border-color: #007D79;
    color: #007D79;
}

/* Watch Info block */
.watch-info-brand {
    font-size: 12px;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.watch-info-model {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.watch-info-ref {
    font-size: 12.5px;
    color: #666666;
    margin-bottom: 5px;
}

/* Spec list grid */
.watch-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 10px;
    padding: 5px 0;
    border-top: 1px solid #f2f2f2;
    margin-top: 5px;
}

.watch-spec-item {
    display: flex;
    flex-direction: column;
}

.watch-spec-label {
    font-size: 9px;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
    margin-bottom: 1px;
    letter-spacing: 0.5px;
}

.watch-spec-value {
    font-size: 11px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.25;
}

/* Price Actions */
.watch-price-row {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed #eaeaea;
    display: flex;
    justify-content: center;
}

.watch-real-price {
    font-size: 17px;
    font-weight: 700;
    color: #007D79 !important;
}

.watch-real-price .incl_gst,
.watch-real-price small {
    color: #007D79 !important;
}

.btn-watch-view-price {
    width: 100%;
    background-color: transparent;
    border: 1.5px solid #007D79;
    color: #007D79;
    padding: 9px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    font-size: 13.5px;
    transition: all 0.2s;
}

.btn-watch-view-price:hover {
    background-color: #007D79;
    color: #ffffff;
}

.watch-real-price {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
}

/* Modals */
.watch-modal-overlay {
    background-color: rgba(0, 0, 0, 0.7) !important;
}

/* Mobile Filter Sheet & Trigger Button */
.btn-watches-filter-mobile {
    display: none;
    background-color: #ffffff;
    color: #007D79;
    border: 1.5px solid #007D79;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    transition: all 0.2s ease;
}

.btn-watches-filter-mobile:hover {
    background-color: #ecfdf5;
}

.mobile-sort-sheet {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 9999;
}

.mobile-sort-sheet .mobile-sort-content {
    position: absolute;
    inset: auto 0 0;
    background: #fff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 20px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-sort-sheet .mobile-sort-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.mobile-sort-sheet .mobile-sort-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.mobile-sort-close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    line-height: 1;
}

.mobile-sort-actions {
    display: flex;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.mobile-sort-actions .style-full {
    flex: 1;
    text-align: center;
}

/* Comprehensive Responsive Breakpoints */
@media (min-width: 1400px) {
    .watches-grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    .watches-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .watches-dropdowns-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .watches-main-layout {
        flex-direction: column;
    }

    .watches-left-sidebar {
        display: none !important;
    }

    .watches-right-content {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .btn-watches-filter-mobile {
        display: flex;
    }

    .watches-dropdowns-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
    }

    .watch-filter-select {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }
}

@media (min-width: 640px) and (max-width: 991px) {
    .watches-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    #front_breadcrumb .breadcrumb_icons {
        flex-wrap: wrap !important;
        row-gap: 6px !important;
    }

    .watches-container {
        padding: 12px 15px !important;
    }

    .watches-search-filter-card {
        padding: 14px;
        margin-bottom: 15px;
    }

    .watches-search-bar-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .watches-search-input-wrapper {
        min-width: 100%;
        width: 100%;
    }

    .watches-action-btns {
        display: flex;
        width: 100%;
        gap: 8px;
    }

    .btn-watches-search,
    .btn-watches-reset {
        flex: 1;
        text-align: center;
        padding: 8px 12px;
    }

    .watches-action-header-bar {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        text-align: center;
        padding: 10px 14px;
    }

    .watches-sorting-controls {
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 639px) {
    .watches-grid-container {
        grid-template-columns: 1fr;
    }

    .watches-dropdowns-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .watches-dropdowns-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .watch-filter-select {
        font-size: 12px !important;
        padding: 6px 6px !important;
        text-overflow: ellipsis;
    }

    .watch-filter-reset-link {
        grid-column: 1 / -1;
        margin-left: 0 !important;
        width: 100%;
        justify-content: center;
        display: flex;
        padding: 6px 0;
    }
}

/* ===== List View Responsive Card Layout (Same as International Diamond) ===== */
.intl-list-mobile-cards {
    display: none;
}

@media (max-width: 1024px) {
    .intl-list-desktop-table {
        display: none !important;
    }

    .intl-list-mobile-cards {
        display: flex !important;
        flex-direction: column;
        gap: 14px;
        padding: 8px 0;
        width: 100%;
    }
}

@media (min-width: 640px) and (max-width: 1024px) {
    .intl-list-mobile-cards {
        display: flex !important;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 14px;
    }

    .intl-mobile-card {
        width: calc(50% - 7px) !important;
        flex-shrink: 0;
    }
}

.intl-mobile-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    width: 100%;
}

.intl-mobile-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.intl-mobile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.intl-mobile-card-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.intl-mobile-card-header-left input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #007D79;
}

.intl-mobile-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #007D79;
}

.intl-mobile-card-header-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.intl-mobile-card-status {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    color: #fff;
    background-color: #007D79;
    text-transform: uppercase;
}

.intl-mobile-card-ref {
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

.intl-mobile-card-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background-color: #e2e8f0;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

@media (min-width: 577px) {
    .intl-mobile-card-specs-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.intl-spec-cell {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 3px;
    min-width: 0;
    text-align: center;
}

.intl-spec-header {
    background: transparent !important;
    font-size: 9.5px !important;
    font-weight: 700 !important;
    text-align: center !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 2px !important;
    border-bottom: none !important;
    width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 1.2 !important;
}

.intl-spec-value {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-align: center !important;
    color: #1e293b !important;
    width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 1.25 !important;
}

.intl-mobile-card-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.intl-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    padding: 2px 0;
}

.intl-detail-row span {
    color: #64748b;
}

.intl-detail-row strong {
    color: #1e293b;
}

.intl-mobile-card-footer {
    display: flex;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    align-items: center;
    justify-content: space-between;
}

/* Media Buttons (Image / Video) in Mobile List Cards */
.intl-media-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #007D79 !important;
    background-color: #f0fdfa !important;
    border: 1.5px solid #007D79 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 1px 3px rgba(0, 125, 121, 0.08) !important;
    outline: none !important;
    line-height: 1.2 !important;
}

.intl-media-btn:hover {
    background-color: #007D79 !important;
    color: #ffffff !important;
    border-color: #007D79 !important;
    box-shadow: 0 2px 6px rgba(0, 125, 121, 0.2) !important;
    text-decoration: none !important;
}

.intl-media-btn i {
    font-size: 13px !important;
}

.intl-media-btn-video {
    color: #0284c7 !important;
    background-color: #f0f9ff !important;
    border-color: #0284c7 !important;
    box-shadow: 0 1px 3px rgba(2, 132, 199, 0.08) !important;
}

.intl-media-btn-video:hover {
    background-color: #0284c7 !important;
    color: #ffffff !important;
    border-color: #0284c7 !important;
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.2) !important;
}

.intl-media-btn-disabled,
.intl-media-btn:disabled,
button.intl-media-btn[disabled] {
    color: #94a3b8 !important;
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    cursor: not-allowed !important;
    opacity: 0.65 !important;
    box-shadow: none !important;
}

/* Hyperlink style for View Price */
.view-price-link {
    color: #007D79 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-decoration: underline !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
    display: inline-block;
}

.view-price-link:hover {
    color: #005f5c !important;
    text-decoration: underline !important;
}

/* Enhanced Laptop/Desktop Table List View Styling */
.intl-list-desktop-table {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    overflow-x: auto !important;
    overflow-y: visible !important;
    margin-bottom: 25px;
}

.intl-list-desktop-table table {
    margin-bottom: 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.intl-list-desktop-table table thead th {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;
    background-color: #f8fafc !important;
    color: #475569 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.4px;
    padding: 12px 10px !important;
    border-bottom: 2px solid #cbd5e1 !important;
    border-top: none !important;
    vertical-align: middle !important;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.intl-list-desktop-table table tbody td {
    padding: 10px 10px !important;
    vertical-align: middle !important;
    font-size: 13px !important;
    color: #1e293b !important;
    border-bottom: 1px solid #f1f5f9 !important;
    border-top: none !important;
    transition: background-color 0.15s ease;
}

.intl-list-desktop-table table tbody tr:hover td {
    background-color: #f0fdfa !important;
}

/* Force parent containers of the sticky sidebar to have visible overflow to allow sticky positioning */
.page-container,
.page-content-wrapper,
.page-content,
.page-content-inner,
.watches-container,
.watches-main-layout,
.watches-right-content {
    overflow: visible !important;
}

.d-none {
    display: none !important;
}

/* ==========================================
   Share Modal Styling (Matches Diamonds)
   ========================================== */
#dlg_share .share_pill {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    min-width: 80px !important;
    padding: 14px 12px 12px !important;
    border-radius: 14px !important;
    border: 1.5px solid #cbd5e1 !important;
    background: #ffffff !important;
    cursor: pointer !important;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-align: center !important;
    user-select: none !important;
    color: #0f172a !important;
}

#dlg_share .share_pill svg {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s ease, color 0.2s ease !important;
    color: #0f172a !important;
}

#dlg_share .share_pill svg[stroke] {
    stroke: #0f172a !important;
    fill: none !important;
}

#dlg_share .share_pill svg:not([stroke]),
#dlg_share [onclick*="whatsapp"] svg {
    fill: #0f172a !important;
    stroke: none !important;
}

#dlg_share .share_pill svg path {
    stroke: inherit;
}

#dlg_share .share_pill .uppercase,
#dlg_share .modal-body .share_pill .uppercase,
#dlg_share .modal-content .share_pill .uppercase {
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: #0f172a !important;
    line-height: 1 !important;
    margin-top: 4px !important;
    display: block !important;
}

/* Hover State */
#dlg_share .share_pill:hover {
    border-color: #007D79 !important;
    background: rgba(0, 125, 121, 0.12) !important;
    transform: translateY(-2px) !important;
}

#dlg_share .share_pill:hover svg {
    transform: scale(1.12) !important;
    color: #007D79 !important;
}

#dlg_share .share_pill:hover svg[stroke] {
    stroke: #007D79 !important;
}

#dlg_share .share_pill:hover svg:not([stroke]) {
    fill: #007D79 !important;
}

#dlg_share .share_pill:hover .uppercase,
#dlg_share .modal-body .share_pill:hover .uppercase {
    color: #007D79 !important;
}

/* Active / Border-2 State */
#dlg_share .share_pill.active,
#dlg_share .share_pill.border-2 {
    border-color: #007D79 !important;
    background: rgba(0, 125, 121, 0.15) !important;
    border-width: 2px !important;
}

#dlg_share .share_pill.active .uppercase,
#dlg_share .share_pill.border-2 .uppercase,
#dlg_share .modal-body .share_pill.active .uppercase,
#dlg_share .modal-body .share_pill.border-2 .uppercase {
    color: #007D79 !important;
    font-weight: 800 !important;
}

#dlg_share .share_pill.active svg[stroke],
#dlg_share .share_pill.border-2 svg[stroke] {
    stroke: #007D79 !important;
}

#dlg_share .share_pill.active svg:not([stroke]),
#dlg_share .share_pill.border-2 svg:not([stroke]) {
    fill: #007D79 !important;
}

/* COMPARE PAGE — Table layout with teal theme */
.cmp-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border: 1.5px solid #d6e5e4;
    border-radius: 50px !important;
    background: #fff;
    color: #3d4f4e;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.22s;
    letter-spacing: 0.3px;
}

.cmp-back-btn:hover {
    border-color: #007D79;
    color: #007D79;
    background: rgba(0, 125, 121, 0.08);
    text-decoration: none;
}

.cmp-heading {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #111918;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cmp-heading::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, #007D79, #88ddda);
    border-radius: 2px !important;
}

.cmp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid #d6e5e4;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
}

.cmp-table th,
.cmp-table td {
    padding: 12px 16px;
    vertical-align: middle;
    border-bottom: 1px solid #eaf2f1;
    font-size: 13px;
}

/* Label column (left) */
.cmp-label {
    color: #007D79;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    width: 180px;
    min-width: 180px;
    border-right: 1px solid #d6e5e4;
    text-align: right;
    padding-right: 20px;
}

/* Product value columns */
.cmp-val {
    text-align: left;
    color: #111918;
    font-weight: 500;
    min-width: 220px;
    border-right: 1px solid #eaf2f1;
}

.cmp-val:last-child {
    border-right: none;
}

/* Header row */
.cmp-header {
    background: #f0f8f7;
    color: #007d79;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    position: relative;
    border-right: 1px solid #d6e5e4;
    text-align: left;
}

.cmp-header:last-child {
    border-right: none;
}

.cmp-header-label {
    background: #f0f8f7;
    border-right: 1px solid #d6e5e4;
    width: 180px;
    min-width: 180px;
}

/* Remove button */
.cmp-remove-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #8fa09e;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    transition: color 0.2s;
}

.cmp-remove-btn:hover {
    color: #b84444;
}

/* Image cell */
.cmp-img-cell {
    padding: 20px !important;
}

.cmp-img-cell img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px !important;
    cursor: pointer;
    transition: transform 0.25s ease;
    display: block;
    margin: 0 auto;
}

.cmp-img-cell img:hover {
    transform: scale(1.04);
}

.cmp-no-img {
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f9fbfb;
    border: 1px dashed #cedbd9;
    border-radius: 8px !important;
    color: #8c9b99;
}

.cmp-no-img i {
    font-size: 32px;
    margin-bottom: 8px;
}

.cmp-no-img span {
    font-size: 12px;
    font-weight: 500;
}

/* Detail view button */
.cmp-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: #007D79;
    color: #fff !important;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: background 0.2s;
    letter-spacing: 0.5px;
    border: none;
}

.cmp-detail-btn:hover {
    background: #005c59;
}

/* Section dividers */
.cmp-section-row {
    background: #fcfdfe;
}

.cmp-section-label {
    text-align: left;
    background: #f0f7f6;
    color: #3e5250;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 8px 16px !important;
    border-top: 1px solid #d6e5e4;
    border-bottom: 1px solid #d6e5e4 !important;
}

/* Specific properties */
.cmp-price-cell {
    background: #f4faf9;
}

.cmp-sell-price {
    font-size: 16px;
    font-weight: 700;
    color: #007d79;
}

/* Badge */
.cmp-stone-badge {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(0, 125, 121, 0.08);
    color: #007D79;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px !important;
}

/* Empty state */
.cmp-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b8280;
}

.cmp-empty i {
    font-size: 48px;
    opacity: 0.2;
    margin-bottom: 14px;
    display: block;
}

.cmp-empty p {
    font-size: 14px;
    font-weight: 500;
}

.cmp-table-wrap {
    overflow-x: auto;
    border-radius: 16px !important;
}

/* Image Lightbox */
.cmp-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.cmp-lightbox.active {
    display: flex;
}

.cmp-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px !important;
    background: #fff;
    padding: 10px;
}

.cmp-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Modal Overrides to match Diamond styling for readability */
#dlg_cart .modal-content.dia-enq,
#dlg_remove_diamond_cart .modal-content.dia-enq,
#dlg_remove_wishlist_diamond_cart .modal-content.dia-enq,
#dlg_cancel_cart .modal-content.dia-enq {
    background-color: #193a3c !important;
    border: 1px solid #1c4747 !important;
}

#dlg_cart .modal-content.dia-enq label,
#dlg_cart .modal-content.dia-enq h4,
#dlg_cart .modal-content.dia-enq td,
#dlg_cart .modal-content.dia-enq th,
#dlg_cart .modal-content.dia-enq legend,
#dlg_cart .modal-content.dia-enq fieldset h4,
#dlg_cart .modal-content.dia-enq .checkbox label,
#dlg_cancel_cart .modal-content.dia-enq h4 {
    color: #ffffff !important;
}

#dlg_cart .modal-content.dia-enq input[type="text"],
#dlg_cart .modal-content.dia-enq select {
    background-color: #ffffff !important;
    color: #333333 !important;
}

/* Wishlist Filter Pills styling */
.wishlist_filter {
    background-color: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #64748b !important;
    transition: all 0.2s ease !important;
}

.wishlist_filter.active {
    background-color: #193a3c !important;
    border-color: #193a3c !important;
    color: #ffffff !important;
}

.wishlist_filter:hover {
    background-color: #193a3c !important;
    border-color: #193a3c !important;
    color: #ffffff !important;
}

/* View switcher styling */
.toggle_view_icons {
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    background: #f8fafc !important;
    padding: 6px 10px !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.toggle_view_icons svg {
    color: #64748b !important;
    width: 20px !important;
    height: 20px !important;
}

.toggle_view_icons.selected {
    background-color: #193a3c !important;
    border-color: #193a3c !important;
}

.toggle_view_icons.selected svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
    fill: none !important;
}

.toggle_view_icons:hover {
    border-color: #193a3c !important;
    background: #e6f2f2 !important;
}

.toggle_view_icons:hover svg {
    color: #193a3c !important;
}

/* ==========================================================================
   Desktop / Mobile Action Button & Sticky Header Responsive Improvements
   ========================================================================== */
.btn-text-desktop {
    display: inline !important;
}

.btn-text-mobile {
    display: none !important;
}

@media (max-width: 767px) {
    .btn-text-desktop {
        display: none !important;
    }

    .btn-text-mobile {
        display: inline !important;
    }

    /* Make header sit correctly and stay sticky on mobile below fixed navbar (70px) */
    .watches-sticky-header {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 70px !important;
        z-index: 999 !important;
        background-color: #ffffff !important;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Action buttons container inside mobile view (compact iPad icon style) */
    #watch_actions.diamond-actions-container,
    #watch_actions_mob.diamond-actions-container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-end !important;
        align-items: center !important;
        width: auto !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 0 6px 0 !important;
        gap: 6px !important;
    }

    #watch_actions.diamond-actions-container .btn-watches-search,
    #watch_actions_mob.diamond-actions-container .btn-watches-search {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: #007D79 !important;
        color: #ffffff !important;
        border: 1px solid #007D79 !important;
        border-radius: 4px !important;
        box-shadow: 0 2px 4px rgba(0, 125, 121, 0.2) !important;
        margin: 0 !important;
    }

    #watch_actions.diamond-actions-container .btn-watches-search:hover,
    #watch_actions_mob.diamond-actions-container .btn-watches-search:hover {
        background-color: #005f5c !important;
        color: #ffffff !important;
    }

    #watch_actions.diamond-actions-container .btn-watches-search i,
    #watch_actions_mob.diamond-actions-container .btn-watches-search i {
        font-size: 15px !important;
        color: #ffffff !important;
        margin: 0 !important;
    }

    #watch_actions.diamond-actions-container .btn-watches-search .btn-text-desktop,
    #watch_actions.diamond-actions-container .btn-watches-search .btn-text-mobile,
    #watch_actions_mob.diamond-actions-container .btn-watches-search .btn-text-desktop,
    #watch_actions_mob.diamond-actions-container .btn-watches-search .btn-text-mobile {
        display: none !important;
    }

    /* Style the list_bar and header elements to fit in a single line on mobile */
    .watches-action-header-bar {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 6px 10px !important;
        gap: 8px !important;
        border: 1px solid #eaeaea !important;
        border-radius: 6px !important;
        background: #ffffff !important;
    }

    .watches-action-left {
        display: none !important;
    }

    .watches-action-center {
        flex: unset !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .watches-count-badge {
        padding: 4px 10px !important;
        font-size: 11px !important;
        border-radius: 4px !important;
        white-space: nowrap !important;
        font-weight: 700 !important;
    }

    .watches-sorting-controls {
        flex: 1 !important;
        width: auto !important;
        justify-content: flex-end !important;
        gap: 6px !important;
    }

    .watches-sorting-label {
        display: none !important;
    }

    .watches-sorting-controls select.watch-filter-select {
        min-width: 100px !important;
        max-width: 120px !important;
        height: 30px !important;
        font-size: 11px !important;
        padding: 2px 6px !important;
        margin: 0 !important;
        border-radius: 4px !important;
    }

    .flex-toggle-views {
        gap: 4px !important;
    }

    .toggle_view_icons {
        width: 30px !important;
        height: 30px !important;
        padding: 0 !important;
        border-radius: 4px !important;
    }

    .toggle_view_icons svg {
        width: 16px !important;
        height: 16px !important;
    }
}

.watches-main-layout,
.watches-right-content {
    overflow: visible !important;
}

@media (max-width: 991px) {
    .watches-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px !important;
        box-sizing: border-box !important;
    }

    .watches-main-layout {
        flex-direction: column !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .watches-left-sidebar {
        display: none !important;
    }

    .watches-right-content {
        width: 100% !important;
        margin-left: 0 !important;
        max-width: 100% !important;
    }

    #front_breadcrumb,
    .breadcrumb_icons {
        flex-wrap: wrap !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .breadcrumb_icons .box {
        width: 100% !important;
        flex: 1 1 100% !important;
        margin-bottom: 5px !important;
    }

    .breadcrumb_icons .icon-css {
        width: 100% !important;
        flex: 1 1 100% !important;
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        margin-top: 4px !important;
    }
}

/* Custom Tooltip Styling */
.tooltip {
    z-index: 10000 !important;
    opacity: 1 !important;
    pointer-events: none;
}

.tooltip-inner {
    background-color: #1e293b !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
    letter-spacing: 0.2px;
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #1e293b !important;
}

.tooltip.top .tooltip-arrow {
    border-top-color: #1e293b !important;
}

/* Share Watches Modal (#dlg_share) Styling - Matched to Jewellery Share Modal */
#dlg_share.modal .modal-content,
#dlg_share .modal-content {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border-radius: 12px !important;
    border: none !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

#dlg_share .modal-header {
    background: #007D79 !important;
    border-bottom: none !important;
    padding: 14px 20px !important;
    position: relative !important;
}

#dlg_share .modal-header .modal-title,
#dlg_share.modal .modal-title {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    margin: 0 !important;
}

#dlg_share .modal-header button.btn-link,
#dlg_share .modal-header .close,
#dlg_share .modal-header button {
    color: #ffffff !important;
    opacity: 0.9 !important;
    font-size: 20px !important;
    text-shadow: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#dlg_share .modal-header button.btn-link:hover,
#dlg_share .modal-header .close:hover {
    opacity: 1 !important;
    color: #ffffff !important;
}

#dlg_share .modal-footer .btn-default {
    border-radius: 6px !important;
    border: 1px solid #cbd5e1 !important;
    background: #ffffff !important;
    color: #334155 !important;
    font-weight: 600 !important;
    padding: 6px 18px !important;
}

#dlg_share .modal-footer .btn-primary,
#dlg_share #share_btn {
    border-radius: 6px !important;
    background: #007D79 !important;
    border-color: #007D79 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 6px 22px !important;
}

#dlg_share .share_pill {
    transition: all 0.2s ease-in-out !important;
    cursor: pointer !important;
}

#dlg_share .share_pill:hover {
    border-color: #007D79 !important;
    background: #ecfdf5 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 125, 121, 0.15) !important;
}

#dlg_share .share_pill.active,
#dlg_share .share_pill.border-2 {
    border: 2px solid #007D79 !important;
    background-color: #ecfdf5 !important;
    color: #007D79 !important;
}

#dlg_share .share_pill.active .uppercase,
#dlg_share .share_pill.border-2 .uppercase {
    color: #007D79 !important;
}

#dlg_share .share_pill.active svg,
#dlg_share .share_pill.border-2 svg {
    color: #007D79 !important;
    stroke: #007D79 !important;
}

@media (max-width: 767px) {
    #dlg_share .modal-dialog {
        width: 88% !important;
        max-width: 350px !important;
        margin: 25px auto !important;
    }

    #dlg_share .modal-body {
        padding: 16px 12px !important;
    }

    #dlg_share label {
        font-size: 13px !important;
        font-weight: 600 !important;
        color: #334155 !important;
        margin-bottom: 6px !important;
        display: block !important;
    }

    #dlg_share #shared_by,
    #dlg_share .form-control {
        border-radius: 6px !important;
        border: 1px solid #cbd5e1 !important;
        height: 38px !important;
        font-size: 13px !important;
        padding: 6px 12px !important;
        box-shadow: none !important;
    }

    #dlg_share .share_actions,
    #dlg_share .margin-top-20.row {
        margin-left: -3px !important;
        margin-right: -3px !important;
        gap: 0 !important;
    }

    #dlg_share .share_actions>[class*="col-xs-"],
    #dlg_share .margin-top-20.row>[class*="col-xs-"] {
        padding-left: 3px !important;
        padding-right: 3px !important;
    }

    #dlg_share .share_pill {
        min-width: 0 !important;
        padding: 8px 2px !important;
        width: 100% !important;
    }

    #dlg_share .share_pill svg {
        width: 20px !important;
        height: 20px !important;
        margin-bottom: 3px !important;
    }

    #dlg_share .share_pill .uppercase {
        font-size: 9px !important;
        line-height: 1.1 !important;
        letter-spacing: 0px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        width: 100% !important;
    }
}

/* Register Recommendation Modal (#dia_view_price) Styling */
#dia_view_price .modal-content {
    border-radius: 12px !important;
    border: none !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
    background: #ffffff !important;
}

#dia_view_price .price-modal-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 105px !important;
    padding: 8px 22px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out !important;
    cursor: pointer !important;
    letter-spacing: 0.5px !important;
}

#dia_view_price .price-modal-btn-login {
    background-color: #007D79 !important;
    border: 1px solid #007D79 !important;
    color: #ffffff !important;
}

#dia_view_price .price-modal-btn-login:hover,
#dia_view_price .price-modal-btn-login:focus {
    background-color: #006663 !important;
    border-color: #006663 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 125, 121, 0.25) !important;
}

#dia_view_price .price-modal-btn-register {
    background-color: #ffffff !important;
    border: 1px solid #007D79 !important;
    color: #007D79 !important;
}

#dia_view_price .price-modal-btn-register:hover,
#dia_view_price .price-modal-btn-register:focus {
    background-color: #ecfdf5 !important;
    border-color: #007D79 !important;
    color: #007D79 !important;
    transform: translateY(-1px);
}

#dia_view_price .price-modal-btn-close {
    background-color: #f1f5f9 !important;
    border: 1px solid #cbd5e1 !important;
    color: #475569 !important;
}

#dia_view_price .price-modal-btn-close:hover,
#dia_view_price .price-modal-btn-close:focus {
    background-color: #e2e8f0 !important;
    border-color: #94a3b8 !important;
    color: #0f172a !important;
    transform: translateY(-1px);
}

/* ===== Compact Single Row Filters layout ===== */
.watches-search-filter-card.compact-single-row {
    padding: 10px 14px !important;
    margin-bottom: 20px !important;
    border-radius: 6px !important;
}

.watches-search-single-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
}

.watches-search-single-row .watches-search-input-wrapper {
    flex: 1.5 !important;
    min-width: 200px !important;
    max-width: 320px !important;
}

.watches-search-single-row .watches-search-input {
    padding: 6px 12px 6px 32px !important;
    font-size: 13px !important;
    height: 34px !important;
}

.watches-search-single-row .watches-search-icon {
    left: 10px !important;
    font-size: 12px !important;
}

.watches-search-single-row .watch-filter-select,
.watches-search-single-row div.selector {
    flex: 1 !important;
    min-width: 95px !important;
    max-width: 125px !important;
    padding: 6px 10px !important;
    font-size: 13px !important;
    height: 34px !important;
    border: 1px solid #cccccc !important;
    border-radius: 4px !important;
    background: #ffffff !important;
    color: #333333 !important;
    outline: none !important;
    cursor: pointer !important;
    line-height: 20px !important;
}

.watches-search-single-row div.selector span {
    padding: 0 !important;
    line-height: 20px !important;
    height: auto !important;
    font-size: 13px !important;
    background: transparent !important;
    color: #333333 !important;
}

.watches-search-single-row .watches-avail-checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
    margin: 0 4px !important;
}

.watches-search-single-row .btn-watches-search {
    background-color: #007D79 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 6px 16px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    font-size: 13px !important;
    height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.watches-search-single-row .btn-watches-reset {
    background-color: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #cccccc !important;
    padding: 6px 16px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    font-size: 13px !important;
    height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.watches-search-single-row .btn-watches-filter-mobile {
    height: 34px !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
}

@media (max-width: 991px) {
    .watches-search-single-row {
        gap: 8px !important;
    }
    .watches-search-single-row .watches-search-input-wrapper {
        max-width: 100% !important;
        flex: 1 1 100% !important;
    }
    .watches-search-single-row .watch-filter-select,
    .watches-search-single-row div.selector {
        max-width: 100% !important;
        flex: 1 1 calc(25% - 8px) !important;
        min-width: calc(25% - 8px) !important;
    }
}

@media (max-width: 767px) {
    .watches-search-single-row .watch-filter-select,
    .watches-search-single-row div.selector {
        flex: 1 1 calc(33.33% - 8px) !important;
        min-width: calc(33.33% - 8px) !important;
    }
}

@media (max-width: 575px) {
    .watches-search-single-row .watch-filter-select,
    .watches-search-single-row div.selector {
        flex: 1 1 calc(50% - 8px) !important;
        min-width: calc(50% - 8px) !important;
    }
    .watches-search-single-row .watches-avail-checkbox {
        flex: 1 1 100% !important;
        justify-content: center !important;
        margin: 4px 0 !important;
    }
    .watches-search-single-row .btn-watches-search,
    .watches-search-single-row .btn-watches-reset,
    .watches-search-single-row .btn-watches-filter-mobile {
        flex: 1 1 auto !important;
        width: 100% !important;
    }
}

/* ===== Title Row with Action Buttons ===== */
.watches-title-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 6px !important;
}

.watches-title-row .watches-page-title {
    margin: 0 !important;
    flex-shrink: 0 !important;
}

/* ===== Inline Action Buttons (in title row) ===== */
.watches-actions-inline {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ===== Sticky Top Wrapper (title + buttons + search filters) ===== */
.watches-top-sticky-wrapper {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 71px !important;
    z-index: 110 !important;
    background-color: #ffffff !important;
    padding-top: 10px !important;
    padding-bottom: 6px !important;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.08) !important;
}

@media (max-width: 991px) {
    .watches-top-sticky-wrapper {
        position: relative !important;
        top: auto !important;
        z-index: 1 !important;
        box-shadow: none !important;
        padding-top: 0 !important;
    }
    .watches-mobile-sticky-bar {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 70px !important;
        z-index: 110 !important;
        background-color: #ffffff !important;
        padding: 8px 10px 6px 10px !important;
        margin-bottom: 15px !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    }
    .watches-left-sidebar {
        position: relative !important;
        top: auto !important;
        max-height: none !important;
    }
}