.dropdown-menu .content-tab-list .note{
    color: #000;
}

/* =============================================
   LIVE SEARCH SUGGESTIONS
   ============================================= */

.wrap-form-search-product {
    position: relative;
}

.search-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.16), 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    z-index: 99999;
}

.search-suggestions.is-visible {
    display: block;
    animation: ssSlideDown 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes ssSlideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Inner grid */
.ss-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.ss-inner:has(.ss-col:only-child) {
    grid-template-columns: 1fr;
}

.ss-col {
    padding: 18px 20px;
}

.ss-col-products {
    border-right: 1px solid #f0f0f0;
}

/* Section title */
.ss-section-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b0b0b0;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

/* List */
.ss-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ss-list li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Item */
.ss-item-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 8px;
    border-radius: 9px;
    text-decoration: none;
    color: #1a1a1a;
    background: transparent;
    transition: background 0.14s;
}

.ss-item-link:hover {
    background: #f5f5f5;
    color: #1a1a1a;
}

/* Thumbnail */
.ss-item-img {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
}

.ss-item-img img {
    width: 56px;
    height: 56px;
    max-width: 56px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

/* Info */
.ss-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ss-item-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Keyword highlight */
.ss-mark {
    background: #fff8c5;
    font-weight: 700;
    border-radius: 2px;
    padding: 0 1px;
}

/* Price */
.ss-item-price {
    font-size: 12px;
    font-weight: 700;
    color: #e53935;
    line-height: 1;
}

.ss-item-price .woocommerce-Price-amount {
    color: #e53935;
}

/* Post meta */
.ss-item-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.ss-meta-cat {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: #2d6a4f;
    border-radius: 4px;
    padding: 2px 7px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ss-meta-date {
    font-size: 11px;
    color: #aaa;
}

/* Excerpt */
.ss-item-excerpt {
    font-size: 11px;
    color: #888;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* View all */
.ss-view-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-top: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    background: #f5f5f5;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: background 0.14s;
}

.ss-view-all:hover {
    background: #ebebeb;
    color: #000;
}

/* No results */
.ss-no-results {
    padding: 32px 24px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.ss-no-results strong {
    color: #333;
}

/* Loading dots */
.ss-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 32px 20px;
}

.ss-loading span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
    display: block;
    animation: ssPulse 1.2s ease-in-out infinite;
}

.ss-loading span:nth-child(2) { animation-delay: 0.18s; }
.ss-loading span:nth-child(3) { animation-delay: 0.36s; }

@keyframes ssPulse {
    0%, 80%, 100% { transform: scale(0.65); opacity: 0.35; }
    40%           { transform: scale(1);    opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .ss-inner {
        grid-template-columns: 1fr;
    }

    .ss-col-products {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .ss-col {
        padding: 14px 16px;
    }
}

/* =============================================
   ORDER LOOKUP PAGE
   ============================================= */

.section-order-lookup {
    padding: 80px 0 100px;
}

/* Hero */
.order-lookup-hero {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.lookup-main-title {
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    margin-bottom: 18px;
}

.lookup-subtitle {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}

.lookup-contact a {
    color: #d42b2b;
    font-size: 14px;
    text-decoration: none;
}
.lookup-contact a:hover {
    text-decoration: underline;
}

/* Search form */
.order-lookup-form {
    max-width: 720px;
    margin: 0 auto;
}

.lookup-input-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lookup-label {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #d42b2b;
    white-space: nowrap;
}

.lookup-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    border: 2px solid #222;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.lookup-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 22px;
    font-size: 15px;
    background: transparent;
    color: #111;
}

.lookup-btn {
    flex-shrink: 0;
    background: #111;
    color: #fff;
    border: none;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    border-radius: 0 50px 50px 0;
}
.lookup-btn:hover {
    background: #d42b2b;
}

.lookup-hint {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 10px;
}

/* Divider */
.order-lookup-divider {
    height: 2px;
    background: #d42b2b;
    margin: 40px 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Results */
.order-results-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.order-result-block {
    margin-bottom: 40px;
}

.result-header-row {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.result-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    flex-shrink: 0;
}

.result-order-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 13px;
    color: #555;
}

.result-order-meta strong {
    color: #111;
}

/* Product preview row */
.result-product-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.result-product-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
}

.result-product-thumb img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    display: block;
}

.result-product-info {
    flex: 1;
    min-width: 0;
}

.result-product-name {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 4px;
}

.result-product-name a {
    color: inherit;
    text-decoration: none;
}

.result-product-name a:hover {
    text-decoration: underline;
}

.result-product-price {
    font-size: 14px;
    font-weight: 700;
    color: #d42b2b;
}

/* Table */
.result-table {
    width: 100%;
    border-collapse: collapse;
}

.result-table tr {
    border-bottom: 1px solid #e8e8e8;
}

.result-table tr:first-child {
    border-top: 1px solid #e8e8e8;
}

.result-col-label {
    padding: 14px 0;
    font-size: 14px;
    color: #555;
    width: 200px;
    vertical-align: middle;
}

.result-col-value {
    padding: 14px 0;
    font-size: 14px;
    color: #111;
    vertical-align: middle;
}

.result-col-value strong {
    font-weight: 600;
}

.warranty-status.status-active {
    color: #d42b2b;
}

.warranty-status.status-expired {
    color: #888;
}

.order-status.status-completed,
.order-status.status-processing {
    color: #d42b2b;
}

.order-status.status-cancelled,
.order-status.status-refunded,
.order-status.status-failed {
    color: #888;
}

/* Not found */
.order-not-found {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 32px;
    background: #fafafa;
    border-radius: 12px;
    font-size: 15px;
    color: #555;
}

.wc-block-components-checkout-order-summary__title .wc-block-formatted-money-amount{
    display: none !important;
}

.wp-block-woocommerce-checkout-actions-block .css-0{
    display: none !important
}

.wc-block-components-order-summary-item__description .wc-block-components-order-summary-item__individual-prices{
    display: none !important;
}

.item-review-order dt.variation-{
    display: none !important;
}

.item-review-order .wrap-price-right{
    display: none !important;
}

.popup{
    display: none;
}
/* Responsive */
@media (max-width: 640px) {
    .section-order-lookup {
        padding: 48px 0 60px;
    }

    .lookup-input-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .lookup-input-wrap {
        width: 100%;
    }

    .result-col-label {
        width: 140px;
        font-size: 13px;
    }

    .result-order-meta {
        gap: 8px 16px;
    }
}

/* Home video: background playback */
.section-home-video .home-video {
    position: relative;
    overflow: hidden;
}

.section-home-video .home-video-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.section-home-video .home-video-bg video.home-video-bg-video {
    position: absolute;
    left: 50%;
    top: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.section-home-video .home-video-bg iframe.home-video-bg-iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    border: 0;
}

.section-home-video .home-video .thumb {
    position: relative;
    z-index: 1;
    transition: opacity 0.35s ease;
}

.section-home-video .home-video.has-video-bg .thumb > :not(.btn-play-pause) {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.section-home-video .home-video .btn-play-pause {
    position: relative;
    z-index: 2;
}

/* Phone country prefix & dropdown (tour booking + CF7; was in tous.css) */
.block-form-contact,
.wrap-inp {
    overflow: visible !important;
}

.form-group--phone {
    display: block;
    position: relative;
    overflow: visible;
}

.phone-input-row {
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: visible;
}

.form-group--phone input[type="tel"] {
    flex: 1;
    min-width: 0;
    border-radius: 0 8px 8px 0;
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px 0 12px;
    background: #f9f9f9;
    border: 1px solid #d9d9d9;
    border-right: none;
    border-radius: 8px 0 0 8px;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    user-select: none;
    transition: background 0.15s;
}

.phone-prefix:hover {
    background: #f0ebe6;
}

.phone-prefix.is-open {
    background: #f0ebe6;
    border-color: #7a421e;
}

.phone-flag {
    width: 20px;
    height: auto;
    display: block;
    border-radius: 2px;
}

.phone-code {
    font-size: 0.875rem;
    font-weight: 600;
    color: #2b2b2b;
    line-height: 1;
}

.phone-prefix-arrow {
    font-size: 0.6rem;
    color: #7a421e;
    transition: transform 0.2s;
}

.phone-prefix.is-open .phone-prefix-arrow {
    transform: rotate(180deg);
}

.phone-divider {
    color: #d9d9d9;
    font-size: 1.1rem;
    line-height: 1;
    margin-left: 2px;
}

.phone-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 99999;
    width: 280px;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    overflow: hidden;
}

.phone-dropdown.is-open {
    display: block;
}

.phone-dropdown-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid #f0ebe6;
}

.phone-dropdown-search i {
    color: #b5a09a;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.phone-dropdown-search input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    font-size: 0.875rem;
    color: #2b2b2b;
    padding: 0 !important;
    height: auto !important;
    box-shadow: none !important;
}

.phone-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    max-height: 220px;
    overflow-y: auto;
}

.phone-dropdown-list::-webkit-scrollbar {
    width: 4px;
}

.phone-dropdown-list::-webkit-scrollbar-track {
    background: transparent;
}

.phone-dropdown-list::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 4px;
}

.phone-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    cursor: pointer;
    transition: background 0.12s;
}

.phone-dropdown-item:hover,
.phone-dropdown-item.is-selected {
    background: #f9f3ef;
}

.phone-dropdown-item img {
    width: 20px;
    height: auto;
    border-radius: 2px;
    flex-shrink: 0;
}

.phone-dropdown-item .item-code {
    font-size: 0.8rem;
    font-weight: 700;
    color: #7a421e;
    min-width: 38px;
    flex-shrink: 0;
}

.phone-dropdown-item .item-name {
    font-size: 0.8rem;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-dropdown-item.is-hidden {
    display: none;
}

/* Contact form validation (shared with tour booking + CF7 phone) */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea,
.form-group--phone.has-error input[type="tel"] {
    border-color: #e53e3e !important;
    background: #fff5f5 !important;
}

.form-group--phone.has-error .phone-prefix,
.form-group--phone.has-error .phone-input-row .phone-prefix {
    border-color: #e53e3e !important;
    background: #fff5f5 !important;
}

.form-error-msg {
    display: none;
    margin-top: 4px;
    font-size: 0.75rem;
    color: #e53e3e;
    line-height: 1.3;
}

.form-group.has-error .form-error-msg,
.form-group--phone.has-error .form-error-msg {
    display: block;
}

/* Checkout: country dropdown not clipped */
.woocommerce-checkout #billing_phone_field,
.woocommerce-checkout #billing_phone_field .woocommerce-input-wrapper {
    overflow: visible;
}