/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/**
 * Buy Now Button Styles
 */
.single-product form.cart {
    display: flex;
    gap: 10px;
    align-items: stretch;
    flex-wrap: wrap;
}

.single-product form.cart .single_add_to_cart_button {
    flex: 1 1 auto;
    min-width: 200px;
}

.single-product form.cart .ul-buy-now-button {
    flex: 0 0 180px;
    min-width: 150px;
}

/**
 * Variation Buttons Styles
 */
.single-product .variations .label.cell {
    display: none;
}

.single-product .ul-attr-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.single-product .ul-attr-button {
    min-width: 80px;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
    background-color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.single-product .ul-attr-button:hover {
    border-color: #333;
}

.single-product .ul-attr-button.is-selected {
    border-color: #333;
    background-color: #333;
    color: #fff;
}

.single-product .ul-attr-hidden {
    display: none !important;
}

/* Force Buy Now button to not be full width */
.woocommerce-variation-add-to-cart {
    display: flex !important;
    flex-wrap: wrap !important;
}
.woocommerce-variation-add-to-cart .single_add_to_cart_button {
    flex: 1 1 auto !important; 
    width: auto !important;
}
.woocommerce-variation-add-to-cart .ul-buy-now-button {
    flex: 0 0 auto !important;
    width: auto !important;
}

/* United Luxury Home Page Styles */
.ul-home-container {
    padding-bottom: 50px;
}

/* Hero Section */
.ul-hero-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 750px; /* Reduced from 700px for better fit */
    display: flex;
    align-items: flex-end;
    justify-content: center; /* Center horizontally */
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.ul-hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    padding: 40px;
    /* background: rgba(0, 0, 0, 0.5); */
    border-radius: 8px;
    text-align: center; /* Center text */
}

.ul-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.ul-hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #f1f1f1;
    line-height: 1.6;
}

.ul-hero-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #cda45e !important;
    color: #fff !important;
	border-radius: 4px !important;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.ul-hero-btn:hover {
    background-color: #b89354;
    color: #fff;
    text-decoration: none;
}

/* Common Section Styles */
.ul-section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.ul-section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Brand Grid */
.ul-brands-section {
    margin-bottom: 60px;
}

.ul-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ul-brand-item {
    display: block;
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ul-brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ul-brand-item img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

/* Guarantee Section */
.ul-guarantee-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-bottom: 60px;
}

.ul-guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ul-guarantee-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ul-g-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.ul-guarantee-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Why Choose Us */
.ul-why-us-section {
    margin-bottom: 60px;
}

.ul-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ul-why-item {
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.ul-why-icon svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Top Rated Products */
.ul-products-section {
    margin-bottom: 60px;
}

.ul-products-header {
    text-align: center;
    margin-bottom: 30px;
}

.ul-products-header span {
    display: block;
    color: #cda45e;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* Collections Tabs */
.ul-collections-section {
    margin-bottom: 60px;
    /* Ensure content is visible */
    width: 100%;
    position: relative;
    z-index: 1;
}

.ul-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.ul-tab-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.ul-tab-btn.active, .ul-tab-btn:hover {
    color: #000;
    border-bottom-color: #000;
}

.ul-tab-pane {
    display: none;
    animation: fadeIn 0.5s;
    width: 100%; /* Ensure full width */
}

.ul-tab-pane.active {
    display: block;
}

/* Woodmart Carousel Overrides if needed */
.ul-tab-pane .wd-carousel-container {
    opacity: 1 !important;
    visibility: visible !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Blog Section */
.ul-blog-section {
    margin-bottom: 60px;
}

.ul-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ul-blog-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ul-blog-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ul-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.ul-blog-item:hover .ul-blog-img img {
    transform: scale(1.1);
}

.ul-blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 5px 10px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ul-blog-date .day {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.ul-blog-date .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}

.ul-blog-content {
    padding: 20px;
    background: #fff;
}

.ul-blog-content h3 {
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
}

.ul-blog-content h3 a {
    color: #333;
    text-decoration: none;
}

.ul-blog-content h3 a:hover {
    color: #cda45e;
}

/* FAQ Section */
.ul-faq-section {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ul-accordion-item {
    border-bottom: 1px solid #eee;
}

.ul-accordion-header {
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ul-accordion-icon {
    font-weight: 400;
    font-size: 24px;
}

.ul-accordion-body {
    display: none;
    padding-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.ul-accordion-item.active .ul-accordion-body {
    display: block;
}

.ul-accordion-item.active .ul-accordion-icon {
    transform: rotate(45deg);
}

/* SEO Section */
.ul-seo-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-bottom: 0;
}

.ul-seo-content {
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}

.ul-seo-content h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .ul-brands-grid, .ul-guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ul-why-grid, .ul-blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .ul-brands-grid, .ul-guarantee-grid {
        grid-template-columns: 1fr;
    }
    .ul-hero-content h1 {
        font-size: 32px;
    }
}

/* Fix main content spacing */
body.ul-home .main-page-wrapper {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

body.ul-home .site-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Product Extra Info */
.ul-product-extra-info {
    margin-top: 24px;
}

.ul-product-extra-card {
    border: 1px solid #e4e4e7;
    border-radius: 14px;
    padding: 14px 20px;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    margin-bottom: 14px;
}

.ul-product-extra-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
}

.ul-product-extra-row + .ul-product-extra-row {
    border-top: 1px solid #f4f4f5;
    margin-top: 6px;
    padding-top: 10px;
}

.ul-product-extra-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ul-product-extra-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eff6ff;
}

.ul-product-extra-icon svg {
    width: 18px;
    height: 18px;
    stroke: #2563eb;
    fill: none;
    stroke-width: 1.8;
}

.ul-product-extra-icon svg rect,
.ul-product-extra-icon svg path,
.ul-product-extra-icon svg circle {
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ul-product-extra-text {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.ul-product-extra-right {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    text-align: right;
    margin-left: 12px;
}

.ul-product-extra-link {
    font-size: 14px;
    font-weight: 500;
    color: #2563eb;
    text-decoration: none;
    white-space: nowrap;
}

.ul-product-extra-link:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .ul-product-extra-row {
        align-items: flex-start;
    }

    .ul-product-extra-right {
        margin-left: 16px;
    }
}

.ul-static-section {
    padding: 60px 0;
}

.ul-static-section .ul-section-title {
    text-transform: none;
}

.ul-static-section .container {
    max-width: 900px;
}

.ul-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ul-review-card {
    border-radius: 12px;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.ul-review-rating {
    font-size: 16px;
    color: #f59e0b;
    margin-bottom: 8px;
}

.ul-review-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ul-review-text {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 10px;
}

.ul-review-meta {
    font-size: 12px;
    color: #9ca3af;
}

.ul-guide-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}

.ul-guide-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ul-guide-step-number {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.ul-guide-step-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.ul-guide-step-text {
    font-size: 14px;
    color: #4b5563;
}

.ul-bg-page {
    padding: 40px 0 60px;
}

.ul-bg-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.ul-bg-hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ul-bg-hero-subtitle {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 24px;
}

.ul-bg-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.ul-bg-step h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ul-bg-step p {
    font-size: 14px;
    color: #4b5563;
}

.ul-bg-banner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 24px;
}

.ul-bg-why {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.ul-bg-why h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.ul-bg-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ul-bg-why-item img {
    height: 60px;
    margin-bottom: 12px;
}

.ul-bg-why-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ul-bg-why-item p {
    font-size: 14px;
    color: #4b5563;
}

.ul-bg-text {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.ul-bg-label {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 6px;
}

.ul-bg-text h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.ul-bg-text p {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 8px;
}

.ul-bg-worldwide {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.ul-bg-worldwide h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ul-bg-worldwide p {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 20px;
}

.ul-bg-worldwide-map img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.ul-bg-contact {
    max-width: 900px;
    margin: 0 auto;
}

.ul-bg-contact h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.ul-bg-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.ul-bg-contact-item h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ul-bg-contact-item p {
    font-size: 14px;
    color: #4b5563;
}

.ul-bg-contact-link a {
    font-weight: 600;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .ul-bg-steps {
        grid-template-columns: 1fr;
    }

    .ul-bg-why-grid {
        grid-template-columns: 1fr;
    }

    .ul-bg-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .ul-bg-contact-grid {
        grid-template-columns: 1fr;
    }
}

.ul-policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.ul-policy-card {
    padding: 18px 20px;
    border-radius: 12px;
    background: #f9fafb;
}

.ul-policy-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.ul-policy-text {
    font-size: 14px;
    color: #4b5563;
}

.ul-terms-section {
    margin-top: 26px;
}

.ul-terms-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.ul-terms-text {
    font-size: 14px;
    color: #4b5563;
}

.ul-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.ul-contact-heading {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.ul-contact-text {
    font-size: 14px;
    color: #4b5563;
}

.ul-contact-text a {
    color: #2563eb;
    text-decoration: none;
}

.ul-contact-text a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .ul-reviews-grid,
    .ul-policy-grid,
    .ul-contact-grid {
        grid-template-columns: 1fr;
    }
}
#brands_5210{
	display: none;
}
.wd-page-title { display: none !important; }
.wd-content-layout {
    padding-block: 0px !important;
}

.ul-cr-hero {
    text-align: center;
    padding: 60px 0 40px;
}

.ul-cr-hero h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.ul-cr-hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ul-cr-hero-subtitle span {
    font-weight: 700;
}

.ul-cr-hero-stars img {
    display: inline-block;
    margin-bottom: 16px;
}

.ul-cr-hero-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
}

.ul-cr-forum {
    padding: 30px 0 20px;
}

.ul-cr-forum h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.ul-cr-forum-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.ul-cr-forum-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    padding: 18px 18px 20px;
}

.ul-cr-forum-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.ul-cr-forum-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}

.ul-cr-forum-icons img {
    height: 40px;
    width: auto;
}

.ul-cr-forum-text {
    margin-top: 12px;
    font-size: 14px;
    color: #111827;
}

.ul-cr-forum-link {
    text-decoration: underline;
    letter-spacing: 2px;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    color: #111827;
}

.ul-cr-text-reviews {
    padding: 30px 0;
}

.ul-cr-text-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.ul-cr-text-item {
    background: #f9fafb;
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

.ul-cr-cta {
    padding: 30px 0 60px;
}

.ul-cr-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ul-cr-cta-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

.ul-cr-cta-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ul-cr-cta-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.ul-cr-cta-button:hover {
    background: #000000;
    color: #ffffff;
}

.ul-cr-ensured {
    padding: 40px 0;
}

.ul-cr-ensured h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.ul-cr-ensured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.ul-cr-ensured-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.ul-cr-ensured-item p {
    margin-top: 8px;
    text-align: center;
}

.ul-cr-ensured-actions {
    text-align: center;
    margin: 24px 0 32px;
}

.ul-cr-ensured-button {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.ul-cr-ensured-button-secondary {
    background: #ffffff;
    color: #111827;
    border: 1px solid #111827;
}

.ul-cr-ensured-button:hover {
    background: #000000;
    color: #ffffff;
}

.ul-cr-ensured-button-secondary:hover {
    background: #111827;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .ul-cr-forum-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ul-cr-ensured-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .ul-cr-forum-grid,
    .ul-cr-text-grid,
    .ul-cr-cta-grid {
        grid-template-columns: 1fr;
    }

    .ul-cr-ensured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .ul-cr-ensured-grid {
        grid-template-columns: 1fr;
    }
}
.top-mid-text-center .wd-header-text{
	text-align: center;
}
.wd-prefooter{
	display: none;
}

/* United Luxury Shipping Policy Styles */
.ul-sp-top-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 50px;
}

.ul-sp-top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.ul-sp-main-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0;
    letter-spacing: 1px;
}

.ul-sp-content {
    padding-bottom: 80px;
}

.ul-sp-text-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.ul-sp-text-content h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #111827;
    text-align: center;
}

.ul-sp-text-content p {
    margin-bottom: 24px;
}

.ul-sp-text-content strong {
    color: #111827;
}

.ul-sp-list {
    margin-bottom: 30px;
    padding-left: 20px;
    background: #f9fafb;
    padding: 30px 40px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.ul-sp-list li {
    list-style: disc;
    margin-bottom: 12px;
    color: #4b5563;
}

.ul-sp-list li:last-child {
    margin-bottom: 0;
}

.ul-sp-trusted {
    background-color: #f9fafb;
    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
}

.ul-sp-trusted-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #111827;
    letter-spacing: 1px;
}

.ul-sp-trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.ul-sp-logo img {
    height: 32px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.ul-sp-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .ul-sp-top-banner {
        height: 200px;
    }
    
    .ul-sp-main-title {
        font-size: 32px;
    }
    
    .ul-sp-text-content h1 {
        font-size: 24px;
    }

    .ul-sp-trusted-logos {
        gap: 30px;
    }
    
    .ul-sp-logo img {
        height: 24px;
    }
}

/* United Luxury Terms & Conditions Styles */
.ul-tc-banner {
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 50px;
}

.ul-tc-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.ul-tc-banner h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0;
    letter-spacing: 1px;
}

.ul-tc-content {
    padding-bottom: 60px;
}

.ul-tc-text {
    max-width: 1000px;
    margin: 0 auto;
}

.ul-tc-item {
    margin-bottom: 30px;
}

.ul-tc-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.ul-tc-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 0;
}

/* Contact Us Section */
.ul-tc-contact {
    padding-bottom: 80px;
    text-align: center;
}

.ul-tc-contact-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px; /* Add some space since divider is gone */
    color: #000;
    text-align: center;
}

.ul-tc-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ul-tc-contact-item {
    text-align: center;
}

.ul-tc-icon {
    margin-bottom: 20px;
}

.ul-tc-icon img {
    height: 36px;
    width: auto;
    max-width: 45px;
}

.ul-tc-contact-item h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: normal;
}

.ul-tc-contact-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
}

.ul-tc-link {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ul-tc-link:hover {
    color: #dfa466;
}

@media (max-width: 1024px) {
    .ul-tc-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ul-tc-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   United Luxury Contact Us Page Styles
   ========================================= */

.ul-contact-wrapper {
    padding: 60px 0;
}

/* Header Section */
.ul-contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ul-contact-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
    text-transform: uppercase;
}

.ul-contact-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

/* Main Content (Form & Map) */
.ul-contact-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

.ul-contact-form-col {
    flex: 1;
    min-width: 300px;
}

.ul-contact-map-col {
    flex: 1;
    min-width: 300px;
}

.ul-contact-map-col img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.ul-contact-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.ul-contact-text {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* Custom Contact Form */
.ul-custom-contact-form .ul-form-row {
    margin-bottom: 20px;
}

.ul-custom-contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
}

.ul-custom-contact-form .required {
    color: #dc2626;
}

.ul-custom-contact-form input[type="text"],
.ul-custom-contact-form input[type="email"],
.ul-custom-contact-form input[type="tel"],
.ul-custom-contact-form select,
.ul-custom-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 15px;
    color: #1f2937;
    background-color: #fff;
    transition: border-color 0.3s;
}

.ul-custom-contact-form input:focus,
.ul-custom-contact-form select:focus,
.ul-custom-contact-form textarea:focus {
    border-color: #dfa466;
    outline: none;
}

.ul-name-inputs {
    display: flex;
    gap: 20px;
}

.ul-input-wrap {
    flex: 1;
}

.sub-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

.ul-form-submit button {
    background-color: #111827;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.ul-form-submit button:hover {
    background-color: #dfa466;
}

/* Contact Grid Override */
.ul-contact-page-grid {
    margin-bottom: 80px;
}

/* Follow Us Section */
.ul-follow-us-section {
    text-align: center;
    margin-bottom: 80px;
}

.ul-follow-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #111827;
}

.ul-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ul-social-icons a {
    display: inline-block;
    transition: transform 0.3s;
}

.ul-social-icons a:hover {
    transform: translateY(-5px);
}

.ul-social-icons img {
    height: 40px;
    width: auto;
}

/* Newsletter Section */
.ul-newsletter-section {
    background-color: #f9fafb;
    padding: 60px 0;
    text-align: center;
}

.ul-newsletter-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #111827;
}

.ul-newsletter-desc {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ul-newsletter-form {
    max-width: 500px;
    margin: 0 auto 20px;
}

.ul-newsletter-input-group {
    display: flex;
    gap: 10px;
}

.ul-newsletter-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
}

.ul-newsletter-input-group button {
    background-color: #111827;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ul-newsletter-input-group button:hover {
    background-color: #dfa466;
}

.ul-newsletter-note {
    font-size: 14px;
    color: #9ca3af;
}

.ul-newsletter-note a {
    color: #4b5563;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .ul-contact-main {
        flex-direction: column;
    }
    
    .ul-name-inputs {
        flex-direction: column;
        gap: 15px;
    }
    
    .ul-newsletter-input-group {
        flex-direction: column;
    }
    
    .ul-newsletter-input-group button {
        width: 100%;
    }
}

/* ------------------------------------------------------------------------- *
 *  Delivery Return Page Styles
 * ------------------------------------------------------------------------- */
.ul-delivery-return-page {
    padding-bottom: 60px;
}

.ul-page-banner img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 40px;
}

.ul-policy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    font-family: "Outfit", sans-serif;
    color: #333;
}

.ul-page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
    color: #000;
}

.ul-intro-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ul-policy-section {
    margin-bottom: 40px;
}

.ul-policy-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.ul-policy-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #000;
}

.ul-policy-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.ul-policy-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.ul-policy-section ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
}

.ul-disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .ul-page-title {
        font-size: 24px;
    }
    
    .ul-policy-section h2 {
        font-size: 20px;
    }
    
    .ul-policy-section h3 {
        font-size: 16px;
    }
}
.whb-top-bar .wd-header-text,.whb-top-bar .wd-header-text a{
	color: #fff !important;
}

@media (max-width: 768px) {
.ul-hero-content {
  
    padding: 15px;

}

.ul-hero-content h1 {
    font-size: 38px;
    margin-bottom: 0px;
    font-weight: 700;
}

.ul-hero-content p {
    font-size: 18px;
    margin-bottom: 0px;
    color: #f1f1f1;
    line-height: 1.6;
}

.ul-hero-btn {
    display: inline-block;
    padding: 15px 15px;

}
}
.ul-accordion-item{
	color: #000;
	font-weight: 700;
}

/* Customer Reviews Section */
.ul-reviews-section {
    padding: 60px 15px;
    display: none !important; /* Hidden on Desktop - Force override */
}

.ul-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.ul-reviews-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.ul-review-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 0 !important; /* Ensure no padding on the card itself */
}

.ul-review-card:hover {
    transform: translateY(-5px);
}

.ul-review-image {
    flex: 1;
}

.ul-review-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ul-review-link {
    padding: 15px;
    text-align: center;
    background: #f9f9f9;
}

.ul-link-underline {
    color: #333;
    text-decoration: underline;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Overlay Style for Quora/Reddit cards */
.ul-review-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 50%; /* Only cover bottom half */
}

.ul-review-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ul-review-icon {
    width: 24px !important;
    height: 24px !important;
    margin-right: 10px;
    border-radius: 50%;
}

.ul-review-platform {
    height: 20px !important;
    width: auto !important;
}

.ul-review-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-style: italic;
    color: #fff;
    font-weight: 600;
}

.ul-review-content-overlay .ul-link-underline {
    color: #fff;
    text-align: center;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .ul-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ul-reviews-section {
        display: block !important; /* Show on Mobile */
        padding: 40px 15px;
    }

    .ul-reviews-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Mobile */
        gap: 10px;
    }

    /* Reduce padding on mobile for better fit in 2 columns */
    .ul-review-link {
        padding: 8px 5px; 
    }
    
    .ul-review-content-overlay {
        padding: 10px;
    }
    
    .ul-link-underline {
        font-size: 12px;
    }
}