/* [صفحة المنتج] - تنسيقات عرض تفاصيل المنتج، الصور، والخيارات */
/* [لماذا هنا] - لمنع تضخم ملف الـ CSS الرئيسي وتخصيص تنسيق صفحة المنتج */

/* ============================================================
   ROOT CARD
   ============================================================ */
.product-container {
    background: #ffffff;
    border-radius: 20px;
    overflow: visible; /* Standardized to allow lifted buttons */
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

body.dark_mode .wsp-style-synced {
    background: var(--cart-bg) !important;
    border: 1px solid var(--cart-border) !important;
    box-shadow: var(--cart-shadow) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-radius: var(--cart-radius) !important;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

body.dark_mode .wsp-style-synced-hover:hover {
    border-color: var(--cart-border-hover) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px var(--cart-border-hover) !important;
    transform: translateY(-2px);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.product-layout {
    display: flex;
    gap: 28px;
    padding: 28px;
}

/* ============================================================
   IMAGE COLUMN
   ============================================================ */
.product-image {
    flex: 0 0 460px;
    height: 460px;
    border-radius: 18px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

body.dark_mode .product-image {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-image:hover img {
    transform: scale(1.02);
}

/* Premium Badge on Image */
.wsp-image-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    direction: rtl;
    z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wsp-image-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}

.wsp-image-badge i {
    color: #f97316;
    font-size: 12px;
}

.wsp-image-badge b {
    color: #d4af37;
    font-weight: 800;
}

@media (max-width: 768px) {
    .wsp-image-badge {
        font-size: 11px;
        padding: 6px 10px;
        top: 10px;
        right: 10px;
        gap: 4px;
    }
    .wsp-image-badge i {
        font-size: 10px;
    }
}

/* Thumbnails */
.product-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 62px;
    height: 62px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.65;
}

.thumbnail:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    opacity: 1;
}

.thumbnail.active {
    border-color: #d4af37;
    opacity: 1;
    box-shadow: 0 0 12px rgba(212,175,55,0.3);
}

body.dark_mode .thumbnail {
    background: rgba(255,255,255,0.03);
}

/* Compact Container Logic */
@media (min-width: 1200px) {
    .wsp-compact-container {
        max-width: 1200px !important;
    }
}

@media (min-width: 1400px) {
    .wsp-compact-container {
        max-width: 1280px !important;
    }
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   DETAILS COLUMN
   ============================================================ */
.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* ============================================================
   TABS — PILL STYLE
   ============================================================ */
.product-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    border-bottom: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
}

body.dark_mode .product-tabs {
    background: rgba(0,0,0,0.3);
    border-color: rgba(212,175,55,0.1);
}

.product-tab {
    padding: 9px 22px;
    background: transparent;
    border: none;
    border-bottom: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    transition: all 180ms ease;
    white-space: nowrap;
}

body.dark_mode .product-tab {
    color: rgba(255,255,255,0.4);
}

.product-tab:hover {
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.05);
}

.product-tab.active {
    background: rgba(212,175,55,0.12);
    color: #d4af37;
    border-bottom: none;
    box-shadow: inset 0 0 0 1px rgba(212,175,55,0.3);
}

body.dark_mode .product-tab.active {
    background: rgba(212,175,55,0.1);
    color: #d4af37 !important;
    box-shadow: inset 0 0 0 1px rgba(212,175,55,0.25);
}

.product-tab-content {
    display: none;
    flex: 1;
    overflow-y: auto;
}

.product-tab-content.active {
    display: block;
}

/* ============================================================
   PRODUCT HEADER
   ============================================================ */
.product-name {
    font-size: 24px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 14px;
    line-height: 1.35;
    letter-spacing: -0.3px;
}

body.dark_mode .product-name {
    color: rgba(255,255,255,0.92);
}

/* Sales badge (inline pill) */
body.dark_mode .sales-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #FFA500;
    background: rgba(255, 165, 0, 0.08);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 50px;
    padding: 4px 12px;
    margin-bottom: 16px;
}

/* ============================================================
   PRICE DISPLAY
   ============================================================ */
.product-price-display {
    font-size: 28px;
    font-weight: 700;
    color: var(--btnColor);
    margin-bottom: 20px;
}

body.dark_mode .current-price {
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212,175,55,0.25);
    font-size: 28px;
    font-weight: 900;
    font-family: 'Fredoka', sans-serif;
}

/* ============================================================
   OPTIONS / CHIPS
   ============================================================ */
.options-section {
    margin-bottom: 20px;
}

.option-group {
    margin-bottom: 18px;
}

/* Section mini-card wrapper */
.wsp-section-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 14px;
}

.option-label {
    font-size: 14px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.dark_mode .option-label {
    color: rgba(255,255,255,0.85);
}

.option-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-checkbox-item {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.option-checkbox-input {
    position: absolute;
    opacity: 0;
}

/* Chips (pill style) */
.option-checkbox-label,
.operator-btn,
.cart-operator-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 18px;
    height: 36px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    cursor: pointer;
    transition: all 180ms ease;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    line-height: 1;
}

body.dark_mode .option-checkbox-label,
body.dark_mode .operator-btn,
body.dark_mode .cart-operator-btn {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.09);
    color: rgba(255,255,255,0.55);
}

.option-checkbox-label:hover,
.operator-btn:hover,
.cart-operator-btn:hover {
    border-color: rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.06);
    color: rgba(255,255,255,0.85);
    transform: translateY(-1px);
}

/* Active / selected chip */
.option-checkbox-input:checked + .option-checkbox-label,
.operator-btn.active,
.cart-operator-btn.active {
    background: rgba(212,175,55,0.12) !important;
    border-color: #d4af37 !important;
    color: #d4af37 !important;
    font-weight: 800 !important;
    box-shadow: 0 0 0 1px rgba(212,175,55,0.2), 0 4px 14px rgba(212,175,55,0.15);
    transform: translateY(-1px);
}

body.dark_mode .option-checkbox-input:checked + .option-checkbox-label,
body.dark_mode .operator-btn.active,
body.dark_mode .cart-operator-btn.active {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: #d4af37 !important;
    color: #d4af37 !important;
}

/* Price under chip */
.option-price-below {
    font-size: 11px;
    color: rgba(212,175,55,0.75);
    font-weight: 600;
    text-align: center;
    margin-top: 5px;
    direction: ltr;
    unicode-bidi: isolate;
}

/* ============================================================
   FORM INPUTS (email, text)
   ============================================================ */
.form-input {
    width: 100%;
    padding: 10px 18px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 13px;
    transition: all 0.25s ease;
    background: rgba(255,255,255,0.04);
    color: #fff;
}

body.dark_mode .form-input {
    background: rgba(0,0,0,0.35);
    border-color: rgba(255,255,255,0.08);
    color: #e2e8f0;
}

.form-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-input:focus {
    outline: none;
    border-color: rgba(212,175,55,0.6);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
    background: rgba(0,0,0,0.4);
}

/* ============================================================
   PRICE SUMMARY BOX
   ============================================================ */
.price-summary-box {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.75), rgba(30, 30, 30, 0.6));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.dark_mode .price-summary-box {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.18);
}

/* Price summary ROW (inline in details tab) */
.price-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding: 16px 20px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 14px;
    gap: 12px;
}

.price-summary-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    margin: 0;
}

body.dark_mode .price-summary-label {
    color: rgba(255,255,255,0.55);
}

.price-summary-amount,
.price-summary-amount-luxury {
    font-size: 26px;
    font-weight: 900;
    color: #d4af37;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.3);
    font-family: 'Fredoka', sans-serif;
    letter-spacing: -0.5px;
    direction: ltr;
    display: inline-block;
}

/* ============================================================
   DIVIDERS
   ============================================================ */
body.dark_mode .border-top {
    border-color: rgba(212,175,55,0.12) !important;
}

/* ============================================================
   RESERVE / ADD TO CART BUTTONS
   ============================================================ */
.reserve-button {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #d4af37, #aa8318);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 18px;
    box-shadow: 0 6px 20px rgba(212,175,55,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.reserve-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212,175,55,0.4);
    background: linear-gradient(135deg, #e0bc45, #c09820);
}

.reserve-button:active:not(:disabled) {
    transform: translateY(0);
}

.reserve-button:disabled {
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.3);
    cursor: not-allowed;
    box-shadow: none;
}

body.dark_mode .reserve-button {
    background: linear-gradient(135deg, #d4af37, #aa8318) !important;
    color: #000 !important;
    border: none !important;
}

/* Add-to-cart (top button) */
.add-to-cart-btn {
    background: rgba(212,175,55,0.1);
    color: #d4af37;
    border: 1px solid rgba(212,175,55,0.25);
    padding: 9px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transform: translateY(-10px); /* Lifted for premium look */
}

@media (max-width: 768px) {
    .add-to-cart-btn {
        transform: translateY(-6px) !important;
    }
}

.add-to-cart-btn:hover {
    background: rgba(212,175,55,0.18);
    border-color: rgba(212,175,55,0.5);
    transform: translateY(-12px); /* Higher lift on hover */
    box-shadow: 0 4px 16px rgba(212,175,55,0.2);
    color: #e5c158;
}

/* ============================================================
   UNAVAILABLE MESSAGE
   ============================================================ */
.unavailable-message {
    text-align: center;
    padding: 24px;
    background: rgba(255, 0, 0, 0.06);
    border: 1px solid rgba(255, 100, 100, 0.2);
    border-radius: 14px;
    color: #fc8181;
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
}

body.dark_mode .unavailable-message {
    background: rgba(120, 0, 0, 0.15);
    border-color: rgba(255, 100, 100, 0.15);
    color: #fc8181;
}

/* ============================================================
   DESCRIPTION
   ============================================================ */
.description-content {
    padding: 20px 4px;
    line-height: 1.8;
    color: #2d3748;
    font-size: 15px;
}

body.dark_mode .description-content {
    color: rgba(255,255,255,0.75);
}

/* ============================================================
   SECTION CARD (mini-cards wrapping each option section)
   ============================================================ */
.wsp-section-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.1);
    border-radius: 16px;
    padding: 16px 18px;
    margin-bottom: 12px;
}

body.dark_mode .wsp-section-card {
    background: rgba(0,0,0,0.2);
    border-color: rgba(212,175,55,0.1);
}

/* Unified Options Container — single dynamic card for all sections */
.wsp-options-unified {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 22px;
}

.wsp-options-unified > .wsp-option-block,
.wsp-options-unified > .option-group,
.wsp-options-unified > .operator-options-container > .option-group {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: none !important; /* Dividers removed as requested */
}

/* Remove border from last child */
.wsp-options-unified > *:last-child,
.wsp-options-unified > *:last-child > .option-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.wsp-option-block {
    /* inherits divider from parent */
}

/* Override old options-section margins */
.wsp-options-unified .options-section {
    margin-bottom: 0;
}

/* ============================================================
   STANDALONE CTA BAR (outside main card)
   ============================================================ */
.wsp-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 28px;
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
    direction: rtl;
    animation: wsp-slide-up 0.35s ease forwards;
}

.wsp-cta-total {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.wsp-cta-total-label {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    white-space: nowrap;
    line-height: 1;
}

@keyframes wsp-slide-up {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.wsp-cta-total-amount {
    font-size: 28px;
    font-weight: 900;
    color: #d4af37;
    font-family: 'Fredoka', sans-serif;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(212,175,55,0.3);
    direction: ltr;
    display: inline-block;
}

.wsp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: linear-gradient(135deg, #d4af37, #aa8318);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(212,175,55,0.25);
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
}

.wsp-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
    color: #000;
    background: linear-gradient(135deg, #e0bc45, #c09820);
}

.wsp-cta-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .wsp-cta-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 18px;
        gap: 12px;
        border-radius: 16px;
    }
    .wsp-cta-total {
        justify-content: space-between;
    }
    .wsp-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
}

/* ============================================================
   BOTTOM BAR (INSIDE DETAILS COLUMN)
   ============================================================ */
.product-bottom-bar {
    position: relative;
    z-index: 10;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 14px;
    direction: rtl;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 14px;
    width: 100%;
}

body.dark_mode .product-bottom-bar {
    background: rgba(10, 10, 10, 0.95);
}

.product-bottom-bar .wsp-cta-total {
    gap: 10px;
}

.product-bottom-bar .wsp-cta-total-label {
    font-size: 13px;
}

.product-bottom-bar .wsp-cta-total-amount {
    font-size: 22px;
}

.product-bottom-bar .wsp-cta-btn {
    padding: 10px 24px;
    font-size: 13px;
}

@media (max-width: 992px) {
    .product-bottom-bar {
        width: 100%;
        margin: 0;
        border-radius: 0 0 16px 16px;
    }
}

@media (max-width: 768px) {
    .product-bottom-bar {
        padding: 10px 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        width: 100%;
        margin: 0;
    }
    .product-bottom-bar .wsp-cta-total {
        justify-content: space-between;
        width: 100%;
    }
    .product-bottom-bar .wsp-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }
    .product-bottom-bar .wsp-cta-total-amount {
        font-size: 18px;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .product-image {
        flex: 0 0 380px;
        height: 420px;
    }
}

@media (max-width: 992px) {
    .product-layout {
        flex-direction: column;
        padding: 20px;
    }

    .product-image {
        flex: 0 0 auto;
        width: 100%;
        height: 380px;
    }

    .product-tabs {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-layout {
        padding: 16px;
        gap: 20px;
    }

    .product-image {
        height: 300px;
        border-radius: 14px;
    }

    .product-name {
        font-size: 20px;
    }

    .current-price, .product-price-display {
        font-size: 22px !important;
    }

    .thumbnail {
        width: 52px;
        height: 52px;
    }

    .product-tabs {
        gap: 4px;
        padding: 4px;
    }

    .product-tab {
        padding: 8px 14px;
        font-size: 12px;
    }

    .reserve-button {
        padding: 13px 20px;
        font-size: 14px;
    }

    .wsp-section-card {
        padding: 14px 14px;
    }
}

/* ============================================================
   COMPACT PREMIUM REFINEMENTS
   ============================================================ */
.ws-product-card-premium.compact {
    padding: 18px 22px !important;
    border-radius: 18px !important;
}

.ws-product-card-premium.compact .product-layout {
    padding: 0 !important;
    gap: 24px !important;
}

.ws-product-card-premium.compact .product-image {
    max-height: 420px !important;
    height: auto !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0,0,0,0.15) !important;
}

.ws-product-card-premium.compact .product-image img {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 420px !important;
}

.ws-product-card-premium.compact .product-thumbnails {
    margin-top: 8px !important;
    gap: 6px !important;
}

.ws-product-card-premium.compact .thumbnail {
    width: 52px !important;
    height: 52px !important;
    border-radius: 10px !important;
}

.ws-product-card-premium.compact .product-name {
    font-size: 20px !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.ws-product-card-premium.compact .sales-badge-inline {
    margin-bottom: 10px !important;
    padding: 3px 10px !important;
    font-size: 11px !important;
}

.ws-product-card-premium.compact .product-tabs {
    margin-bottom: 14px !important;
    padding: 3px !important;
    height: 38px !important;
}

.ws-product-card-premium.compact .product-tab {
    padding: 0 16px !important;
    font-size: 12.5px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
}

.ws-product-card-premium.compact .wsp-options-unified {
    padding: 12px 16px !important;
    gap: 0 !important;
}

.ws-product-card-premium.compact .wsp-option-block,
.ws-product-card-premium.compact .option-group,
.ws-product-card-premium.compact .operator-options-container > .option-group {
    padding-bottom: 10px !important;
    margin-bottom: 10px !important;
}

.ws-product-card-premium.compact .option-label {
    font-size: 13px !important;
    margin-bottom: 6px !important;
}

.ws-product-card-premium.compact .option-checkbox-label,
.ws-product-card-premium.compact .operator-btn {
    height: 30px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
}

.ws-product-card-premium.compact .option-price-below {
    font-size: 10px !important;
    margin-top: 2px !important;
}

.ws-product-card-premium.compact .form-input {
    height: 38px !important;
    max-width: 60% !important;
    padding: 0 16px !important;
    font-size: 12px !important;
    margin-bottom: 0 !important;
    border-radius: 50px !important;
    transition: all 0.25s ease !important;
}

.ws-product-card-premium.compact .form-input:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25) !important;
    background: rgba(0,0,0,0.3) !important;
    outline: none !important;
}

.ws-product-card-premium.compact .price-summary-row {
    padding: 10px 14px !important;
    margin-top: 10px !important;
}

/* Update Standalone CTA Bar for Compact feel */
.ws-product-card-premium.compact ~ section .wsp-cta-bar {
    padding: 14px 22px !important;
}

.ws-product-card-premium.compact ~ section .wsp-cta-btn {
    height: 44px !important;
    padding: 0 28px !important;
    font-size: 14px !important;
}

.ws-product-card-premium.compact ~ section .wsp-cta-total-amount {
    font-size: 24px !important;
}
