/**
 * Zorketing Single Product Page — Premium Styling
 */

/* ── Global Overflow Fix — Based on Live Site HTML Analysis ── */
/* Targets: html, body, Elementor containers, Weiboo theme wrappers, Bootstrap */
html,
body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

/* Elementor stretched sections cause overflow on mobile */
.elementor-section-stretched {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

/* Elementor containers & inner wrappers */
.elementor,
.elementor-inner,
.elementor-section-wrap,
.elementor-widget-container,
.e-con,
.e-con-inner,
.e-con-boxed,
.elementor-container {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Weiboo theme specific wrappers */
.site,
.site-content,
.content-area,
.site-main,
#content,
#primary,
#main {
    overflow-x: hidden !important;
}

/* Bootstrap container override for mobile */
@media (max-width: 767px) {

    .container,
    .container-fluid {
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden !important;
    }
}

/* Force all images to stay within bounds */
body.zorketing-single-product img {
    max-width: 100% !important;
    height: auto;
}


.zk-single-product *,
.zk-single-product *::before,
.zk-single-product *::after {
    box-sizing: border-box;
}

.zk-single-product {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 60px;
    color: #1a1a2e;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* ── Breadcrumbs ── */
.zk-breadcrumbs {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.zk-breadcrumbs a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.zk-breadcrumbs a:hover {
    color: #6225C5;
}

.zk-breadcrumbs .zk-sep {
    color: #d1d5db;
    margin: 0 2px;
}

.zk-breadcrumbs .zk-current {
    color: #1a1a2e;
    font-weight: 500;
}

/* ── Main Layout ── */
.zk-product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* ── Image Gallery ── */
.zk-gallery {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    position: sticky;
    top: 30px;
    align-self: start;
}

.zk-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e5e7eb transparent;
}

.zk-thumbs::-webkit-scrollbar {
    width: 4px;
}

.zk-thumbs::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.zk-thumb {
    width: 72px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.zk-thumb:hover {
    border-color: #c4b5fd;
}

.zk-thumb.active {
    border-color: #6225C5;
    box-shadow: 0 0 0 2px rgba(98, 37, 197, 0.15);
}

.zk-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #f8f8fa;
}

.zk-main-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f8fa;
    aspect-ratio: 3 / 4;
}

.zk-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
    background: #f8f8fa;
}

.zk-sale-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ef4444;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 0.3px;
}

/* ── Product Info ── */
.zk-product-info {
    padding-top: 10px;
    max-width: 100%;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.zk-product-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.3 !important;
}

.zk-stock {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.zk-in-stock {
    background: #ecfdf5;
    color: #059669;
}

.zk-out-of-stock {
    background: #fef2f2;
    color: #dc2626;
}

/* Rating */
.zk-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.zk-rating-row .star-rating {
    font-size: 14px;
    color: #f59e0b;
}

.zk-review-count {
    font-size: 13px;
    color: #6b7280;
}

/* Price */
.zk-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}

.zk-sale-price {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #6225C5 !important;
}

.zk-regular-price {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
}

/* Short Description */
.zk-short-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f3f4f6;
}

.zk-short-desc p {
    margin: 0 0 8px;
}

/* ── Variation Selectors ── */
.zk-variation-group {
    margin-bottom: 22px;
}

.zk-var-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #374151;
    margin-bottom: 10px;
}

.zk-var-selected {
    font-weight: 400;
    text-transform: none;
    color: #6b7280;
    margin-left: 6px;
    font-style: italic;
}

/* Color Swatches */
.zk-color-swatches {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.zk-color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    transition: all 0.25s ease;
    position: relative;
}

.zk-color-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.zk-color-swatch.active {
    border-color: #1a1a2e;
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.15);
}

/* Size Boxes */
.zk-size-boxes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.zk-size-box {
    min-width: 48px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.zk-size-box:hover {
    border-color: #6225C5;
    color: #6225C5;
}

.zk-size-box.active {
    background: #1a1a2e;
    color: #fff;
    border-color: #1a1a2e;
}

.zk-size-box.disabled {
    opacity: 0.35;
    text-decoration: line-through;
    cursor: not-allowed;
    pointer-events: none;
}

/* Default Dropdown */
.zk-var-select {
    width: 100%;
    max-width: 280px;
    padding: 12px 16px;
    font-size: 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    color: #374151;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    cursor: pointer;
}

.zk-var-select:focus {
    border-color: #6225C5;
}

/* Quantity */
.zk-qty-section {
    margin-bottom: 24px;
}

.zk-qty-wrap {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    height: 44px;
    width: auto !important;
    max-width: fit-content;
}

.zk-qty-btn {
    width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.zk-qty-btn:hover {
    background: #6225C5;
    color: #fff;
}

.zk-qty-input {
    width: 56px;
    height: 100%;
    text-align: center;
    border: none;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    outline: none;
    margin: 0 !important;
    padding: 0 !important;
    -moz-appearance: textfield;
    appearance: textfield;
    background: #fff;
    box-sizing: border-box;
}

.zk-qty-input::-webkit-outer-spin-button,
.zk-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ── 3 Action Buttons ── */
.zk-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.zk-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.zk-btn-cart {
    background: #6D28D9;
    color: #fff !important;
}

.zk-btn-cart:hover {
    background: #5820b5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.3);
}

.zk-btn-cart svg {
    stroke: #fff;
}

.zk-btn-buynow {
    background: #ef4444;
    color: #fff !important;
}

.zk-btn-buynow:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

.zk-btn-whatsapp {
    background: #25D366;
    color: #fff !important;
}

.zk-btn-whatsapp:hover {
    background: #1ebe5c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ── Minimalist Product Accordions ── */
.zk-product-accordions {
    margin-top: 25px !important;
    border-top: 1px solid #eee !important;
}

.zk-accordion-item {
    border-bottom: 1px solid #eee !important;
}

/* High specificity overrides to fix live site theme conflicts */
body.single-product .zk-product-accordions .zk-accordion-item .zk-accordion-toggle,
.zk-product-accordions .zk-accordion-item .zk-accordion-toggle,
.zk-accordion-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 16px 0 !important;
    background: transparent none !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    border-bottom: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    cursor: pointer !important;
    text-align: left !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
    min-height: auto !important;
    line-height: normal !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    text-transform: none !important;
    outline: none !important;
}

.zk-accordion-toggle:hover,
.zk-accordion-toggle:focus,
.zk-accordion-toggle:active {
    background: transparent none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.zk-accordion-toggle::before,
.zk-accordion-toggle::after {
    content: none !important;
    display: none !important;
}

.zk-accordion-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.zk-accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #374151 !important;
    flex-shrink: 0 !important;
}

.zk-accordion-title {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1a1a2e !important;
    margin: 0 !important;
}

.zk-accordion-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af !important;
    transition: transform 0.3s ease !important;
}

.zk-accordion-item.is-active .zk-accordion-chevron {
    transform: rotate(180deg);
}

.zk-accordion-panel {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease-out !important;
}

.zk-accordion-item.is-active .zk-accordion-panel {
    max-height: 1000px !important;
}

.zk-accordion-item.is-active .zk-accordion-chevron {
    transform: rotate(180deg) !important;
}

.zk-accordion-content {
    padding: 0 0 20px 32px;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

.zk-accordion-content p {
    margin-bottom: 12px;
}

.zk-accordion-content p:last-child {
    margin-bottom: 0;
}

.zk-feature-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.zk-feature-list li {
    margin-bottom: 8px;
    position: relative;
}



/* Feature List */
.zk-feature-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.zk-feature-list li {
    font-size: 14px;
    color: #374151;
    padding: 5px 0;
    line-height: 1.6;
}

/* ── Product Meta ── */
.zk-product-meta {
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
}

.zk-meta-row {
    font-size: 14px;
    margin-bottom: 8px;
    color: #4b5563;
}

.zk-meta-row strong {
    color: #374151;
    font-weight: 600;
    margin-right: 6px;
}

.zk-meta-row a {
    color: #6225C5;
    text-decoration: none;
}

.zk-meta-row a:hover {
    text-decoration: underline;
}

/* Share */
.zk-share-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 14px;
    color: #374151;
}

.zk-share-row strong {
    font-weight: 600;
}

.zk-share-icons {
    display: flex;
    gap: 12px;
}

.zk-share-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #4b5563;
    transition: all 0.2s;
}

.zk-share-icons a:hover {
    background: #6225C5;
    color: #fff;
    transform: translateY(-2px);
}

/* ── Product Tabs ── */
.zk-product-tabs {
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
}

.zk-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 30px;
}

.zk-tab-btn {
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all 0.2s;
}

.zk-tab-btn:hover {
    color: #1a1a2e;
}

.zk-tab-btn.active {
    color: #1a1a2e;
    border-bottom-color: #6225C5;
}

.zk-tab-content {
    display: none;
}

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

.zk-desc-content {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    max-width: 800px;
}

.zk-desc-content h2,
.zk-desc-content h3 {
    font-weight: 700 !important;
    margin: 24px 0 12px !important;
    color: #1a1a2e !important;
}

.zk-desc-content ul,
.zk-desc-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.zk-desc-content li {
    margin-bottom: 6px;
}

/* ── Responsive — Tablet ── */
@media (max-width: 900px) {
    .zk-product-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .zk-gallery {
        grid-template-columns: 1fr;
        position: static;
        gap: 10px;
    }

    .zk-main-image {
        order: 1;
        aspect-ratio: 3 / 4;
        border-radius: 12px;
        max-height: 500px;
    }

    .zk-main-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #f8f8fa;
    }

    .zk-thumbs {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        order: 2;
        gap: 8px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .zk-thumb {
        width: 68px;
        height: 68px;
        min-width: 68px;
        border-radius: 8px;
    }

    .zk-product-info {
        padding-top: 0;
    }
}

/* ── Responsive — Mobile ── */
@media (max-width: 600px) {
    .zk-single-product {
        padding: 10px 14px 40px;
    }

    /* Breadcrumbs */
    .zk-breadcrumbs {
        font-size: 12px;
        margin-bottom: 14px;
        gap: 3px;
    }

    /* Gallery — Full Width */
    .zk-gallery {
        gap: 8px;
    }

    .zk-main-image {
        border-radius: 10px;
        aspect-ratio: 1 / 1;
        max-height: 400px;
    }

    .zk-thumbs {
        gap: 6px;
    }

    .zk-thumb {
        width: 60px;
        height: 60px;
        min-width: 60px;
        border-radius: 6px;
        border-width: 1.5px;
    }

    .zk-thumb.active {
        box-shadow: 0 0 0 1.5px rgba(98, 37, 197, 0.2);
    }

    /* Product Title */
    .zk-product-title {
        font-size: 20px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

    /* Stock Badge */
    .zk-stock {
        font-size: 11px;
        padding: 3px 10px;
        margin-bottom: 10px;
    }

    /* Rating */
    .zk-rating-row {
        margin-bottom: 10px;
        gap: 6px;
    }

    .zk-review-count {
        font-size: 12px;
    }

    /* Price */
    .zk-price-block {
        margin-bottom: 14px;
        gap: 8px;
    }

    .zk-sale-price {
        font-size: 24px !important;
    }

    .zk-regular-price {
        font-size: 15px;
    }

    /* Short Description */
    .zk-short-desc {
        font-size: 13px;
        margin-bottom: 16px;
        padding-bottom: 14px;
        line-height: 1.6;
    }

    /* Variation Selectors */
    .zk-variation-group {
        margin-bottom: 16px;
    }

    .zk-var-label {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .zk-color-swatches {
        gap: 8px;
    }

    .zk-color-swatch {
        width: 32px;
        height: 32px;
    }

    .zk-size-boxes {
        gap: 6px;
    }

    .zk-size-box {
        min-width: 44px;
        height: 40px;
        padding: 0 10px;
        font-size: 12px;
        border-radius: 6px;
    }

    /* Quantity — same compact style on mobile */
    .zk-qty-section {
        margin-bottom: 18px;
    }

    .zk-qty-wrap {
        height: 40px;
    }

    .zk-qty-btn {
        width: 40px;
        font-size: 16px;
    }

    .zk-qty-input {
        width: 50px;
        font-size: 14px;
    }

    /* Action Buttons — Full Width */
    .zk-action-buttons {
        gap: 10px;
        margin-bottom: 20px;
    }

    .zk-btn {
        padding: 14px 16px;
        font-size: 13px;
        letter-spacing: 0.5px;
        border-radius: 8px;
        gap: 8px;
    }

    .zk-btn svg {
        width: 18px;
        height: 18px;
    }

    /* Info Widgets — Mobile */
    .zk-info-widgets {
        gap: 12px;
        margin-top: 24px;
    }

    .zk-widget-header {
        padding: 12px 14px;
    }

    .zk-widget-body {
        padding: 14px;
    }

    .zk-widget-title {
        font-size: 14px !important;
    }

    /* Feature List — Mobile */
    .zk-feature-list li {
        font-size: 13px;
        padding: 4px 0;
    }

    /* Product Meta */
    .zk-product-meta {
        padding-top: 16px;
    }

    .zk-meta-row {
        font-size: 13px;
        margin-bottom: 6px;
    }

    /* Share */
    .zk-share-row {
        margin-top: 12px;
        font-size: 13px;
    }

    .zk-share-icons {
        gap: 8px;
    }

    .zk-share-icons a {
        width: 32px;
        height: 32px;
    }

    .zk-share-icons a svg {
        width: 14px;
        height: 14px;
    }

    /* Product Tabs — Mobile */
    .zk-product-tabs {
        padding-top: 8px;
    }

    .zk-tab-nav {
        margin-bottom: 20px;
    }

    .zk-tab-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .zk-desc-content {
        font-size: 13px;
        line-height: 1.7;
    }
}

/* ── Small Mobile (iPhone SE etc) ── */
@media (max-width: 380px) {
    .zk-single-product {
        padding: 8px 10px 30px;
    }

    .zk-product-title {
        font-size: 18px !important;
    }

    .zk-sale-price {
        font-size: 22px !important;
    }

    .zk-thumb {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .zk-btn {
        padding: 12px 14px;
        font-size: 12px;
    }

    .zk-size-box {
        min-width: 40px;
        height: 36px;
        font-size: 11px;
    }

    .zk-color-swatch {
        width: 28px;
        height: 28px;
    }
}

/* ── Theme Overrides — Force Our Styles ── */
/* These rules use high specificity to prevent live themes from breaking our layout */

body .zk-single-product .woocommerce-product-rating {
    margin: 0 !important;
}

body .zk-single-product .woocommerce-Reviews #comments {
    max-width: 800px !important;
}

body .zk-single-product .variations_form,
body .zk-single-product .cart {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

/* Hide default WooCommerce elements when our template is active */
body.zorketing-single-product .woocommerce-breadcrumb,
body.zorketing-single-product .product .summary,
body.zorketing-single-product .product .woocommerce-product-gallery,
body.zorketing-single-product .product .woocommerce-tabs {
    display: none !important;
}

/* ── Force Gallery Styles ── */
body .zk-single-product .zk-gallery {
    display: grid !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
}

body .zk-single-product .zk-main-image {
    position: relative !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #f8f8fa !important;
    width: 100% !important;
    max-width: 100% !important;
}

body .zk-single-product .zk-main-image img,
body .zk-single-product .zk-main-image img#zk-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    max-width: 100% !important;
    max-height: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #f8f8fa !important;
}

body .zk-single-product .zk-thumb {
    overflow: hidden !important;
    border-radius: 8px !important;
    cursor: pointer !important;
}

body .zk-single-product .zk-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #f8f8fa !important;
}

/* ── Force Button Styles ── */
body .zk-single-product .zk-btn,
body .zk-single-product button.zk-btn,
body .zk-single-product a.zk-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 16px 24px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    text-align: center !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
    outline: none !important;
    min-height: 52px !important;
}

body .zk-single-product .zk-btn-cart,
body .zk-single-product button.zk-btn-cart {
    background: #6D28D9 !important;
    color: #fff !important;
}

body .zk-single-product .zk-btn-cart:hover {
    background: #5820b5 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.3) !important;
}

body .zk-single-product .zk-btn-buynow,
body .zk-single-product button.zk-btn-buynow {
    background: #ef4444 !important;
    color: #fff !important;
}

body .zk-single-product .zk-btn-buynow:hover {
    background: #dc2626 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3) !important;
}

body .zk-single-product .zk-btn-whatsapp,
body .zk-single-product a.zk-btn-whatsapp {
    background: #25D366 !important;
    color: #fff !important;
}

body .zk-single-product .zk-btn-whatsapp:hover {
    background: #1ebe5c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3) !important;
}

body .zk-single-product .zk-action-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 30px !important;
}

/* ── Force Typography ── */
body .zk-single-product .zk-product-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.3 !important;
    padding: 0 !important;
    text-transform: none !important;
}

body .zk-single-product .zk-sale-price {
    font-size: 30px !important;
    font-weight: 700 !important;
}

body .zk-single-product .zk-regular-price {
    font-size: 18px !important;
    color: #9ca3af !important;
    text-decoration: line-through !important;
}

/* ── Force Variation Selectors ── */
body .zk-single-product .zk-color-swatch {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: inline-block !important;
}

body .zk-single-product .zk-size-box {
    min-width: 48px !important;
    height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 14px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    background: #fff !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 8px !important;
    cursor: pointer !important;
}

body .zk-single-product .zk-size-box.active {
    background: #1a1a2e !important;
    color: #fff !important;
    border-color: #1a1a2e !important;
}

/* ── Force Quantity ── */
body .zk-single-product .zk-qty-wrap {
    display: inline-flex !important;
    align-items: center !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #fff !important;
    height: 44px !important;
    width: auto !important;
    max-width: fit-content !important;
}

/* Prevent theme from stretching QTY input */
body .zk-single-product .cart .zk-qty-wrap input,
body .zk-single-product form.cart input.zk-qty-input {
    width: 56px !important;
    max-width: 56px !important;
}

body .zk-single-product .zk-qty-input {
    width: 56px !important;
    height: 100% !important;
    text-align: center !important;
    border: none !important;
    border-left: 1px solid #e5e7eb !important;
    border-right: 1px solid #e5e7eb !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    outline: none !important;
    margin: 0 !important;
    padding: 0 !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
    background: #fff !important;
    box-sizing: border-box !important;
}

body .zk-single-product .zk-qty-btn {
    width: 44px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f9fafb !important;
    border: none !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
}

/* ── Force Meta & Share ── */
body .zk-single-product .zk-meta-row a {
    color: #6225C5 !important;
    text-decoration: none !important;
}

body .zk-single-product .zk-share-icons a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #f3f4f6 !important;
    color: #4b5563 !important;
}

body .zk-single-product .zk-share-icons a:hover {
    background: #6225C5 !important;
    color: #fff !important;
}

/* ── Force Info Widgets ── */
body .zk-single-product .zk-info-widget {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
}

body .zk-single-product .zk-widget-header {
    background: #f9fafb !important;
    border-bottom: 1px solid #e5e7eb !important;
}

/* ── Force Tabs ── */
body .zk-single-product .zk-tab-btn {
    background: none !important;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

body .zk-single-product .zk-tab-btn.active {
    border-bottom-color: #6225C5 !important;
    color: #1a1a2e !important;
}

/* ── Mobile Force Overrides ── */
@media (max-width: 600px) {
    body .zk-single-product .zk-main-image {
        aspect-ratio: 1 / 1 !important;
        max-height: 400px !important;
        border-radius: 10px !important;
    }

    body .zk-single-product .zk-product-title {
        font-size: 20px !important;
    }

    body .zk-single-product .zk-sale-price {
        font-size: 24px !important;
    }

    body .zk-single-product .zk-btn,
    body .zk-single-product button.zk-btn,
    body .zk-single-product a.zk-btn {
        padding: 14px 16px !important;
        font-size: 13px !important;
        min-height: 48px !important;
    }

    body .zk-single-product .zk-thumb {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
    }

    body .zk-single-product .zk-color-swatch {
        width: 32px !important;
        height: 32px !important;
    }

    body .zk-single-product .zk-size-box {
        min-width: 44px !important;
        height: 40px !important;
        font-size: 12px !important;
    }
}