/* ===== Single Product Page ===== */
.y-l-single-product {
    padding: var(--y-spacing-2xl) 0;
}

.y-l-single-product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--y-spacing-3xl);
    align-items: start;
}

/* Product Image Section */
.y-l-single-product-image {
    position: sticky;
    top: var(--y-spacing-xl);
}

.y-c-single-product-image-wrapper {
    background-color: var(--y-color-background-light);
    border-radius: var(--y-border-radius-lg);
    padding: var(--y-spacing-lg);
    overflow: hidden;
}

.y-c-single-product-image {
    width: var(--y-width-percentage-full);
    height: auto;
    aspect-ratio: var(--y-aspect-ratio-16-10);
    object-fit: contain;
    display: block;
    border-radius: var(--y-border-radius-md);
}

/* Product Details Section */
.y-l-single-product-details {
    display: flex;
    flex-direction: column;
    gap: var(--y-spacing-2xl);
}

.y-l-single-product-info {
    display: flex;
    flex-direction: column;
    gap: var(--y-spacing-lg);
}

.y-c-single-product-title {
    font-size: var(--y-font-size-3xl);
    font-weight: var(--y-font-weight-bold);
    color: var(--y-color-primary);
    margin: 0;
}

.y-c-single-product-features {
    margin-top: var(--y-spacing-md);
    padding-top: var(--y-spacing-md);
    border-top: var(--y-border-width-xs) solid var(--y-color-border);
}

/* Product Description */
.y-c-single-product-description {
    margin-top: var(--y-spacing-xl);
    padding-top: var(--y-spacing-xl);
    border-top: var(--y-border-width-xs) solid var(--y-color-border);
}

.y-c-description-title {
    font-size: var(--y-font-size-xl);
    font-weight: var(--y-font-weight-bold);
    color: var(--y-color-primary-text);
    margin-bottom: var(--y-spacing-md);
}

.y-c-description-content {
    font-size: var(--y-font-size-md);
    color: var(--y-color-third-text);
    line-height: var(--y-line-height-lg);
}

.y-c-description-content p {
    margin-bottom: var(--y-spacing-md);
}

.y-c-description-content p:last-child {
    margin-bottom: 0;
}

/* Product Pricing Section */
.y-l-single-product-pricing {
    position: sticky;
    top: var(--y-spacing-xl);
    display: flex;
    justify-content: center;
    width: 100%;
}

.y-c-single-product-price-box {
    background-color: var(--y-color-background-light);
    border: var(--y-border-width-xs) solid var(--y-color-border);
    border-radius: var(--y-border-radius-lg);
    padding: var(--y-spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--y-spacing-sm);
    box-shadow: var(--y-shadow-md);
    max-width: 280px;
    width: 100%;
}

.y-c-single-product-price-box .y-c-card-price-label {
    font-size: var(--y-font-size-sm);
    color: var(--y-color-third-text);
}

.y-c-single-product-price {
    font-size: var(--y-font-size-xl);
}

.y-c-single-product-book-btn {
    width: var(--y-width-percentage-full);
    margin-top: var(--y-spacing-sm);
    font-size: var(--y-font-size-md);
    padding: var(--y-spacing-sm) var(--y-spacing-lg);
    text-align: center;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .y-l-single-product-wrapper {
        gap: var(--y-spacing-2xl);
    }
}

@media (max-width: 1024px) {
    .y-l-single-product-wrapper {
        grid-template-columns: 1fr;
        gap: var(--y-spacing-2xl);
    }

    .y-l-single-product-image,
    .y-l-single-product-pricing {
        position: relative;
        top: 0;
    }

    .y-l-single-product-image {
        order: 1;
    }

    .y-l-single-product-details {
        order: 2;
    }

    .y-l-single-product-pricing {
        order: 3;
    }
}

@media (max-width: 768px) {
    .y-l-single-product {
        padding: var(--y-spacing-xl) 0;
        overflow-x: hidden;
    }

    .y-l-single-product-wrapper {
        gap: var(--y-spacing-xl);
        overflow-x: hidden;
    }

    .y-c-single-product-title {
        font-size: var(--y-font-size-2xl);
    }

    .y-l-single-product-pricing {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 9999;
        background: var(--y-color-background-light);
        padding: var(--y-spacing-md) var(--y-spacing-lg);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        border-top: 1px solid var(--y-color-border);
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .y-c-single-product-price-box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        max-width: 100%;
        border: none;
        box-shadow: none;
        gap: var(--y-spacing-md);
        width: 100%;
    }

    .y-c-single-product-price-box .y-c-card-price-label {
        font-size: var(--y-font-size-xs);
        color: var(--y-color-third-text);
        display: block;
    }

    .y-c-single-product-price {
        font-size: var(--y-font-size-lg);
    }

    .y-c-single-product-book-btn {
        width: auto;
        flex-shrink: 0;
        margin-top: 0;
        padding: var(--y-spacing-sm) var(--y-spacing-xl);
    }

    /* Add padding at bottom to prevent content from being hidden behind fixed price box */
    .y-l-single-product-details {
        padding-bottom: 100px;
    }

    /* Rental summary responsive */
    .y-c-rental-summary {
        padding: var(--y-spacing-sm) var(--y-spacing-md);
    }

    .y-c-rental-summary-row {
        font-size: var(--y-font-size-sm);
    }

    .y-c-rental-total strong {
        font-size: var(--y-font-size-md);
    }

    /* Booking Form Responsive */
    #y-l-page-hero {
        margin-bottom: var(--y-spacing-lg);
    }

    #y-l-page-hero .y-c-hero-form-container {
        margin-bottom: var(--y-spacing-md);
    }

    #y-l-page-hero .y-c-hero-tabs {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
    }

    #y-l-page-hero .y-c-hero-tab-btn {
        flex: 1;
        flex-basis: auto;
        padding: var(--y-spacing-sm) var(--y-spacing-md);
        font-size: var(--y-font-size-sm);
        border-radius: 0;
    }

    #y-l-page-hero .y-c-hero-tab-btn:first-child {
        border-top-right-radius: var(--y-border-radius-md);
    }

    #y-l-page-hero .y-c-hero-tab-btn:last-child {
        border-top-left-radius: var(--y-border-radius-md);
    }

    #y-l-page-hero .y-c-hero-tab-btn i {
        display: none;
    }

    #y-l-page-hero .y-c-hero-form-content {
        padding: var(--y-spacing-md);
    }

    #y-l-page-hero .y-l-form-row {
        flex-direction: column;
        gap: var(--y-spacing-md);
    }

    #y-l-page-hero .y-l-form-field-datetime {
        width: 100%;
    }

    #y-l-page-hero .y-l-form-field {
        display: flex;
        flex-direction: column;
        gap: var(--y-spacing-xs);
    }

    #y-l-page-hero .y-l-form-field label {
        font-size: var(--y-font-size-sm);
        margin-bottom: var(--y-spacing-xs);
        display: block;
    }

    #y-l-page-hero .y-l-datetime-inputs {
        display: flex !important;
        flex-direction: row !important;
        gap: var(--y-spacing-sm);
        width: 100%;
    }

    #y-l-page-hero .y-c-date-picker,
    #y-l-page-hero .y-c-time-picker {
        flex: 1;
        min-width: 0;
    }

    #y-l-page-hero .y-c-picker-trigger {
        padding: var(--y-spacing-sm);
        font-size: var(--y-font-size-sm);
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: var(--y-spacing-xs);
    }

    #y-l-page-hero .y-c-picker-trigger i {
        font-size: var(--y-font-size-sm);
    }

    #y-l-page-hero .y-c-picker-value {
        font-size: var(--y-font-size-sm);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Product Image */
    .y-c-single-product-image-wrapper {
        padding: var(--y-spacing-sm);
        border-radius: var(--y-border-radius-md);
    }

    .y-c-single-product-image {
        border-radius: var(--y-border-radius-sm);
    }

    /* Product Info */
    .y-l-single-product-info {
        gap: var(--y-spacing-md);
    }

    .y-c-card-category {
        font-size: var(--y-font-size-sm);
    }

    .y-c-card-similar {
        font-size: var(--y-font-size-sm);
    }

    /* Features */
    .y-c-single-product-features {
        flex-wrap: wrap;
        gap: var(--y-spacing-sm);
    }

    .y-c-card-feature-item {
        font-size: var(--y-font-size-xs);
        padding: var(--y-spacing-xs) var(--y-spacing-sm);
    }

    /* Description */
    .y-c-single-product-description {
        margin-top: var(--y-spacing-md);
        padding-top: var(--y-spacing-md);
    }

    .y-c-description-title {
        font-size: var(--y-font-size-lg);
        margin-bottom: var(--y-spacing-sm);
    }

    .y-c-description-content {
        font-size: var(--y-font-size-sm);
    }
}

@media (max-width: 480px) {
    .y-l-single-product {
        padding: var(--y-spacing-md) 0;
        overflow-x: hidden;
    }

    .y-l-single-product-wrapper {
        gap: var(--y-spacing-md);
        overflow-x: hidden;
    }

    .y-c-single-product-image-wrapper {
        padding: var(--y-spacing-xs);
    }

    .y-c-single-product-title {
        font-size: var(--y-font-size-lg);
    }

    .y-l-single-product-pricing {
        padding: var(--y-spacing-sm) var(--y-spacing-md);
        display: flex !important;
    }

    .y-c-single-product-price-box {
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: var(--y-spacing-sm);
    }

    .y-c-single-product-price-box .y-c-card-price-label {
        font-size: var(--y-font-size-2xs, 0.65rem);
    }

    .y-c-single-product-book-btn {
        font-size: var(--y-font-size-sm);
        padding: var(--y-spacing-sm) var(--y-spacing-md);
    }

    .y-c-single-product-price {
        font-size: var(--y-font-size-md);
    }

    /* Booking Form */
    #y-l-page-hero .y-c-hero-tabs {
        gap: 0;
    }

    #y-l-page-hero .y-c-hero-tab-btn {
        padding: var(--y-spacing-xs) var(--y-spacing-sm);
        font-size: var(--y-font-size-xs);
        flex-basis: auto;
    }

    #y-l-page-hero .y-c-hero-form-content {
        padding: var(--y-spacing-sm);
    }

    #y-l-page-hero .y-l-form-row {
        gap: var(--y-spacing-sm);
    }

    #y-l-page-hero .y-l-form-field label {
        font-size: var(--y-font-size-xs);
    }

    #y-l-page-hero .y-c-picker-trigger {
        padding: var(--y-spacing-xs) var(--y-spacing-sm);
    }

    #y-l-page-hero .y-c-picker-value {
        font-size: var(--y-font-size-xs);
    }

    /* Product Details */
    .y-l-single-product-details {
        padding-bottom: 80px;
    }

    .y-l-single-product-info {
        gap: var(--y-spacing-sm);
    }

    .y-c-single-product-features {
        gap: var(--y-spacing-xs);
    }

    .y-c-card-feature-item {
        font-size: var(--y-font-size-xxs);
        padding: var(--y-spacing-xxs) var(--y-spacing-xs);
    }

    .y-c-card-feature-item i {
        font-size: var(--y-font-size-xs);
    }
}

/* ===== Rental Summary ===== */
#rental-summary.y-c-rental-summary {
    background: #ffffff !important;
    border: 2px solid #520a76 !important;
    border-radius: var(--y-border-radius-md);
    padding: var(--y-spacing-md) var(--y-spacing-lg);
    margin-top: var(--y-spacing-md);
    color: #1a1a2e !important;
}

#rental-summary .y-c-rental-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--y-spacing-xs) 0;
    font-size: 1rem;
    color: #1a1a2e !important;
}

#rental-summary .y-c-rental-summary-row span {
    color: #333333 !important;
    font-weight: 600;
}

#rental-summary .y-c-rental-summary-row strong {
    color: #520a76 !important;
    font-weight: 700;
    font-size: 1rem;
}

#rental-summary .y-c-rental-total {
    border-top: 2px solid #520a76;
    margin-top: var(--y-spacing-xs);
    padding-top: var(--y-spacing-sm);
}

#rental-summary .y-c-rental-total span {
    font-weight: 700;
    color: #1a1a2e !important;
    font-size: 1.05rem;
}

#rental-summary .y-c-rental-total strong {
    font-size: 1.15rem;
    color: #520a76 !important;
    font-weight: 800;
}

/* ===== Deposit Section ===== */
#deposit-section.y-c-rental-deposit-section {
    border-top: 1px dashed #520a76;
    margin-top: var(--y-spacing-sm);
    padding-top: var(--y-spacing-sm);
}

#deposit-section .y-c-deposit-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--y-spacing-xs) 0;
    font-size: 1rem;
    color: #1a1a2e !important;
}

#deposit-section .y-c-deposit-info span {
    color: #333333 !important;
    font-weight: 600;
}

#deposit-section .y-c-deposit-info strong {
    color: #520a76 !important;
    font-weight: 700;
}

.y-c-deposit-choice {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: var(--y-spacing-sm);
}

.y-c-deposit-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--y-border-radius-sm, 8px);
    transition: border-color 0.2s, background 0.2s;
    color: #1a1a2e !important;
    font-weight: 500;
    font-size: 0.9rem;
}

.y-c-deposit-option:hover {
    border-color: #520a76;
}

.y-c-deposit-option input[type="radio"] {
    accent-color: #520a76;
    width: 18px;
    height: 18px;
}

.y-c-deposit-option input[type="radio"]:checked + .y-c-deposit-radio-mark + span {
    color: #520a76 !important;
    font-weight: 700;
}

.y-c-deposit-option:has(input[type="radio"]:checked) {
    border-color: #520a76;
    background: rgba(82, 10, 118, 0.04);
}

.y-c-deposit-note {
    margin-top: 0.4rem;
    color: #666 !important;
}

.y-c-deposit-note small {
    font-size: 0.78rem;
    color: #666 !important;
}

/* ===== Calendar Day States ===== */
.y-c-calendar-day.booked {
    background: #fee2e2 !important;
    color: #dc2626 !important;
    text-decoration: line-through;
    cursor: not-allowed !important;
    position: relative;
}

.y-c-calendar-day.booked::after {
    content: 'محجوز';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    color: #dc2626;
    white-space: nowrap;
}

.y-c-calendar-day.closed-day {
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    position: relative;
}

.y-c-calendar-day.closed-day::after {
    content: 'مغلق';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    color: #9ca3af;
    white-space: nowrap;
}

/* ===== Booking Form Section in Single Product ===== */
.y-l-single-product #y-l-page-hero {
    margin-bottom: var(--y-spacing-2xl);
    min-height: 250px;
}

#y-l-page-hero .y-c-hero-form-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--y-max-width-default);
    background-color: transparent;
    border-radius: var(--y-border-radius-lg);
    overflow: hidden;
    margin-bottom: var(--y-spacing-xl);
}

#y-l-page-hero .y-c-hero-tabs {
    display: flex;
    flex-direction: row-reverse;
    background-color: transparent;
}

#y-l-page-hero .y-c-hero-form-content {
    background-color: var(--y-color-hero-form);
    padding: var(--y-spacing-xl);
    border-bottom-left-radius: var(--y-border-radius-md);
    border-bottom-right-radius: var(--y-border-radius-md);
    display: flex;
    flex-direction: column;
}

#y-l-page-hero .y-l-form-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: var(--y-spacing-lg);
    align-items: flex-end;
}

#y-l-page-hero .y-l-form-field {
    display: flex;
    flex-direction: column;
    gap: var(--y-spacing-xs);
}

#y-l-page-hero .y-l-form-field label {
    font-size: var(--y-font-size-md);
    color: var(--y-color-primary-text);
    font-weight: var(--y-font-weight-semibold);
}

#y-l-page-hero .y-l-form-field input[type="text"] {
    background-color: transparent;
    border: 1px solid var(--y-color-border);
    border-radius: var(--y-border-radius-md);
    padding: var(--y-spacing-md);
    font-size: var(--y-font-size-md);
    width: 100%;
    box-sizing: border-box;
    font-family: var(--y-font-family-primary);
}

#y-l-page-hero .y-l-form-field-location {
    flex: 3;
}

#y-l-page-hero .y-l-form-field-location input[type="text"]::placeholder {
    color: var(--y-color-primary-text);
}

#y-l-page-hero .y-l-form-field-checkbox {
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: var(--y-spacing-xs);
    padding-bottom: var(--y-spacing-md);
}

#y-l-page-hero .y-l-form-field-checkbox label {
    color: var(--y-color-primary-text);
    white-space: nowrap;
}

#y-l-page-hero .y-l-form-field-checkbox input[type="checkbox"] {
    width: var(--y-size-20);
    height: var(--y-size-20);
    accent-color: var(--y-color-primary);
    cursor: pointer;
}

#y-l-page-hero .y-l-form-field-datetime {
    flex: 2;
}

#y-l-page-hero .y-l-datetime-inputs {
    display: flex;
    gap: var(--y-spacing-sm);
}

#y-l-page-hero .y-l-datetime-inputs input[type="text"]:first-child {
    flex: 2;
}

#y-l-page-hero .y-l-datetime-inputs input[type="text"]:last-child {
    flex: 1;
}

#y-l-page-hero .y-l-form-field-submit {
    flex: 1;
}

.y-l-single-product-datetime .y-l-form-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: var(--y-spacing-lg);
    align-items: flex-end;
}

.y-l-single-product-datetime .y-l-form-field {
    display: flex;
    flex-direction: column;
    gap: var(--y-spacing-xs);
    flex: 1;
}

.y-l-single-product-datetime .y-l-form-field label {
    font-size: var(--y-font-size-md);
    color: var(--y-color-primary-text);
    font-weight: var(--y-font-weight-semibold);
}

.y-l-single-product-datetime .y-l-datetime-inputs {
    display: flex;
    gap: var(--y-spacing-sm);
}

.y-l-single-product-datetime .y-l-datetime-inputs input[type="text"] {
    background-color: var(--y-color-background);
    border: 1px solid var(--y-color-border);
    border-radius: var(--y-border-radius-md);
    padding: var(--y-spacing-md);
    font-size: var(--y-font-size-md);
    width: 100%;
    box-sizing: border-box;
    font-family: var(--y-font-family-primary);
    color: var(--y-color-primary-text);
}

.y-l-single-product-datetime .y-l-datetime-inputs input[type="text"]:focus {
    outline: none;
    border-color: var(--y-color-primary);
    box-shadow: 0 0 0 3px rgba(var(--y-color-primary-rgb), 0.1);
}

.y-l-single-product-datetime .y-l-datetime-inputs input[type="text"]:first-child {
    flex: 2;
}

.y-l-single-product-datetime .y-l-datetime-inputs input[type="text"]:last-child {
    flex: 1;
}

@media (max-width: 768px) {
    .y-l-single-product-datetime .y-l-form-row {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ===== Single Product Booking Form - Custom Design ===== */
/* This is a dedicated design for the booking form in single product page */
/* It mimics the mobile design of the home page form on all screen sizes */

/* Prevent horizontal overflow - Global fix for single product page */
.single-product {
    overflow-x: hidden !important;
}

.single-product body,
body.single-product {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

.y-l-single-product,
.y-l-single-product-wrapper,
.y-l-single-product-details,
.y-l-single-product-info {
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.y-l-single-product * {
    max-width: 100%;
    box-sizing: border-box;
}

.y-l-single-product img {
    max-width: 100%;
    height: auto;
}

/* Single Product Booking Form Container */
.y-l-single-product #y-l-page-hero {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    margin-bottom: var(--y-spacing-lg);
    height: fit-content;
}

.y-l-single-product #y-l-page-hero .y-c-hero-form-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    border-radius: var(--y-border-radius-md);
    overflow: hidden;
}

/* Tabs - Horizontal layout like mobile home page */
.y-l-single-product #y-l-page-hero .y-c-hero-tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0;
}

.y-l-single-product #y-l-page-hero .y-c-hero-tab-btn {
    flex: 1;
    padding: var(--y-spacing-sm) var(--y-spacing-md);
    font-size: var(--y-font-size-sm);
    border-radius: 0;
    white-space: nowrap;
}

.y-l-single-product #y-l-page-hero .y-c-hero-tab-btn:first-child {
    border-top-right-radius: var(--y-border-radius-md);
}

.y-l-single-product #y-l-page-hero .y-c-hero-tab-btn:last-child {
    border-top-left-radius: var(--y-border-radius-md);
}

/* Hide icons in tabs */
.y-l-single-product #y-l-page-hero .y-c-hero-tab-btn i {
    display: none;
}

/* Form Content - Match mobile home page style */
.y-l-single-product #y-l-page-hero .y-c-hero-form-content {
    padding: var(--y-spacing-lg);
    width: 100%;
    box-sizing: border-box;
    background-color: var(--y-color-hero-form);
    border-bottom-left-radius: var(--y-border-radius-md);
    border-bottom-right-radius: var(--y-border-radius-md);
}

/* Form Row - Stack vertically for datetime fields */
.y-l-single-product #y-l-page-hero .y-l-form-row {
    display: flex;
    flex-direction: column;
    gap: var(--y-spacing-lg);
    width: 100%;
    align-items: stretch;
}

/* Form Fields - Full width */
.y-l-single-product #y-l-page-hero .y-l-form-field {
    width: 100%;
}

.y-l-single-product #y-l-page-hero .y-l-form-field-datetime {
    width: 100%;
    flex: none;
}

/* Label styling - centered like mobile home page */
.y-l-single-product #y-l-page-hero .y-l-form-field label {
    font-size: var(--y-font-size-md);
    font-weight: var(--y-font-weight-semibold);
    margin-bottom: var(--y-spacing-sm);
    display: block;
    text-align: center;
    color: var(--y-color-primary-text);
}

/* Date/Time Inputs Row - horizontal like mobile home page */
.y-l-single-product #y-l-page-hero .y-l-datetime-inputs {
    display: flex;
    flex-direction: row;
    gap: var(--y-spacing-sm);
    width: 100%;
}

/* Date picker takes more space, time picker less */
.y-l-single-product #y-l-page-hero .y-c-date-picker {
    flex: 2;
    min-width: 0;
}

.y-l-single-product #y-l-page-hero .y-c-time-picker {
    flex: 1;
    min-width: 100px;
}

/* Picker Trigger Styling - match mobile home page */
.y-l-single-product #y-l-page-hero .y-c-picker-trigger {
    padding: var(--y-spacing-sm) var(--y-spacing-md);
    font-size: var(--y-font-size-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--y-spacing-xs);
    background-color: var(--y-color-background);
    border: 1px solid var(--y-color-border);
    border-radius: var(--y-border-radius-md);
    cursor: pointer;
    min-height: 44px;
    width: 100%;
}

.y-l-single-product #y-l-page-hero .y-c-picker-trigger i {
    font-size: var(--y-font-size-sm);
    flex-shrink: 0;
    color: var(--y-color-primary);
}

.y-l-single-product #y-l-page-hero .y-c-picker-value {
    font-size: var(--y-font-size-sm);
    white-space: nowrap;
    overflow: visible;
}

/* Hide submit button (search) - not needed in single product */
.y-l-single-product #y-l-page-hero .y-l-form-field-submit {
    display: none !important;
}

/* ===== Responsive Adjustments for Single Product Form ===== */
@media (max-width: 768px) {
    /* Prevent horizontal scroll on product page */
    .y-l-single-product {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .y-l-single-product-wrapper {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    /* Smaller screens - adjust sizes */
    .y-l-single-product #y-l-page-hero .y-c-hero-tab-btn {
        padding: var(--y-spacing-xs) var(--y-spacing-sm);
        font-size: var(--y-font-size-xs);
    }
    
    .y-l-single-product #y-l-page-hero .y-c-hero-form-content {
        padding: var(--y-spacing-md);
    }
    
    .y-l-single-product #y-l-page-hero .y-l-form-row {
        gap: var(--y-spacing-md);
    }
    
    .y-l-single-product #y-l-page-hero .y-l-form-field label {
        font-size: var(--y-font-size-sm);
    }
    
    .y-l-single-product #y-l-page-hero .y-c-picker-trigger {
        padding: var(--y-spacing-sm);
        min-height: 42px;
    }
    
    .y-l-single-product #y-l-page-hero .y-c-picker-value {
        font-size: var(--y-font-size-xs);
    }
    
    .y-l-single-product #y-l-page-hero .y-l-datetime-inputs {
        gap: var(--y-spacing-xs);
    }
    
    /* Features wrap properly */
    .y-c-single-product-features {
        display: flex;
        flex-wrap: wrap;
        gap: var(--y-spacing-xs);
    }
    
    .y-c-card-feature-item {
        flex: 0 0 auto;
    }
}
