/* Default product page - Ganjeh Kala v1.9.9 */
.gk-default-product-page {
    --gk-dp-bg: var(--gk-background, #f5f7fb);
    --gk-dp-card: var(--gk-surface, #fff);
    --gk-dp-text: var(--gk-text, #0f172a);
    --gk-dp-muted: var(--gk-neutral-600, #64748b);
    --gk-dp-border: var(--gk-border-color, rgba(15, 23, 42, .08));
    --gk-dp-primary: var(--gk-primary, #ef4056);
    --gk-dp-radius: var(--gk-radius-lg, 22px);
    --gk-dp-shadow: 0 14px 42px rgba(15, 23, 42, .06);
    background: linear-gradient(180deg, rgba(248, 250, 252, .72), var(--gk-dp-bg));
    color: var(--gk-dp-text);
    padding: 18px 0 42px;
}

.gk-default-product-page * { box-sizing: border-box; }

.gk-default-product-page__container {
    width: min(100% - 28px, var(--gk-site-width, 1320px));
    margin-inline: auto;
}

.gk-default-product-page .gk-conv-card {
    background: var(--gk-dp-card);
    border: 1px solid var(--gk-dp-border);
    border-radius: var(--gk-dp-radius);
    box-shadow: var(--gk-dp-shadow);
}

.gk-default-product-breadcrumb-wrap { margin: 0 0 14px; }
.gk-default-product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    color: var(--gk-dp-muted);
    font-size: 12px;
    line-height: 1.9;
}
.gk-default-product-breadcrumb a { color: inherit; text-decoration: none; }
.gk-default-product-breadcrumb a:hover { color: var(--gk-dp-primary); }
.gk-default-product-breadcrumb__sep { opacity: .45; }

.gk-default-product-hero {
    display: grid;
    grid-template-columns: minmax(300px, 41%) minmax(320px, 1fr) minmax(292px, 27%);
    gap: 18px;
    align-items: start;
}

.gk-default-product-gallery {
    position: sticky;
    top: calc(var(--gk-sticky-header-height, 0px) + 18px);
    min-width: 0;
    padding: 16px;
}
.gk-default-product-gallery__badges {
    position: absolute;
    z-index: 2;
    inset-block-start: 16px;
    inset-inline-start: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    pointer-events: none;
}
.gk-default-product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.6;
    color: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .12);
}
.gk-default-product-badge--sale { background: var(--gk-dp-primary); }
.gk-default-product-badge--featured { background: #111827; }

.gk-default-product-gallery__main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: calc(var(--gk-dp-radius) - 6px);
    background:
        radial-gradient(circle at 20% 20%, rgba(239, 64, 86, .07), transparent 34%),
        linear-gradient(180deg, #fff, #f8fafc);
    overflow: hidden;
    text-decoration: none;
}
.gk-default-product-gallery__main-img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 92%;
    max-height: 92%;
    object-fit: contain;
    transition: transform .22s ease, opacity .18s ease;
}
.gk-default-product-gallery__main:hover .gk-default-product-gallery__main-img { transform: scale(1.025); }
.gk-default-product-gallery__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    padding-bottom: 2px;
    overflow-x: auto;
    scrollbar-width: thin;
    scroll-snap-type: x mandatory;
}
.gk-default-product-gallery__thumb {
    appearance: none;
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    padding: 6px;
    border: 1px solid var(--gk-dp-border);
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    scroll-snap-align: start;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.gk-default-product-gallery__thumb:hover,
.gk-default-product-gallery__thumb.is-active {
    border-color: color-mix(in srgb, var(--gk-dp-primary) 55%, transparent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--gk-dp-primary) 10%, transparent);
}
.gk-default-product-gallery__thumb:active { transform: scale(.96); }
.gk-default-product-gallery__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}
.gk-default-product-gallery__hidden-link { display: none; }

.gk-default-product-summary,
.gk-default-product-purchase { padding: 20px; }
.gk-default-product-summary { min-width: 0; }
.gk-default-product-summary__topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}
.gk-default-product-brand,
.gk-default-product-sku {
    min-height: 32px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #f8fafc;
    color: var(--gk-dp-muted);
    text-decoration: none;
    font-size: 12px;
}
.gk-default-product-brand:hover { color: var(--gk-dp-primary); }
.gk-default-product-title {
    margin: 0;
    color: var(--gk-dp-text);
    font-size: clamp(21px, 2vw, 30px);
    line-height: 1.8;
    font-weight: 950;
    letter-spacing: -.02em;
}
.gk-default-product-en-title {
    margin: 6px 0 0;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.7;
    direction: ltr;
    text-align: right;
}
.gk-default-product-rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--gk-dp-border);
}
.gk-default-product-rating { gap: 9px; font-size: 13px; }
.gk-default-product-rating__stars {
    position: relative;
    display: inline-block;
    width: 94px;
    height: 18px;
    line-height: 18px;
    color: #f59e0b;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
    direction: ltr;
}
.gk-default-product-rating__stars::before,
.gk-default-product-rating__stars span::before { content: "★★★★★"; }
.gk-default-product-rating__stars::before { color: #e2e8f0; }
.gk-default-product-rating__stars span {
    position: absolute;
    inset-inline-start: 0;
    inset-block-start: 0;
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
}
.gk-default-product-review-link {
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--gk-dp-primary) 9%, #fff);
    color: var(--gk-dp-primary);
    font-size: 12px;
    font-weight: 900;
}
.gk-default-product-short-desc {
    margin-top: 16px;
    color: #475569;
    font-size: 14px;
    line-height: 2.15;
}
.gk-default-product-short-desc > :first-child { margin-top: 0; }
.gk-default-product-short-desc > :last-child { margin-bottom: 0; }

.gk-default-product-highlights { margin-top: 18px; }
.gk-default-product-highlights h2 {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 950;
}
.gk-default-product-highlights__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.gk-default-product-highlight {
    min-height: 76px;
    padding: 11px 12px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid var(--gk-dp-border);
}
.gk-default-product-highlight__label {
    display: block;
    color: var(--gk-dp-muted);
    font-size: 11px;
    line-height: 1.8;
}
.gk-default-product-highlight__value {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--gk-dp-text);
    font-size: 13px;
    line-height: 1.8;
    font-weight: 900;
}

.gk-default-product-purchase {
    position: sticky;
    top: calc(var(--gk-sticky-header-height, 0px) + 18px);
    gap: 15px;
}
.gk-default-product-purchase__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gk-dp-border);
}
.gk-default-product-purchase__seller-label,
.gk-default-product-purchase__safe span {
    color: var(--gk-dp-muted);
    font-size: 12px;
    line-height: 1.8;
}
.gk-default-product-purchase__head strong { font-size: 14px; line-height: 1.8; }
.gk-default-product-purchase__meta { display: grid; gap: 8px; }
.gk-default-product-purchase__meta span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
}
.gk-default-product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding: 14px 0 4px;
    color: var(--gk-dp-text);
    font-size: 22px;
    line-height: 1.6;
    font-weight: 950;
    text-align: left;
}
.gk-default-product-price del {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
    opacity: 1;
}
.gk-default-product-price ins { text-decoration: none; }
.gk-default-product-price__empty { color: var(--gk-dp-primary); font-size: 15px; }
.gk-default-product-cart form.cart {
    display: grid;
    gap: 12px;
    margin: 0;
}
.gk-default-product-cart form.cart .quantity {
    width: 100%;
    max-width: none;
}
.gk-default-product-cart form.cart .qty {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--gk-dp-border);
    border-radius: 14px;
    text-align: center;
    font-weight: 900;
}
.gk-default-product-cart .single_add_to_cart_button,
.gk-default-product-cart .button,
.gk-default-product-page .single_add_to_cart_button {
    width: 100%;
    min-height: 50px;
    border: 0 !important;
    border-radius: 16px !important;
    background: var(--gk-dp-primary) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 950 !important;
    box-shadow: 0 14px 28px color-mix(in srgb, var(--gk-dp-primary) 23%, transparent);
}
.gk-default-product-cart .single_add_to_cart_button:hover,
.gk-default-product-cart .button:hover { filter: brightness(.98); transform: translateY(-1px); }
.gk-default-product-cart .variations {
    width: 100%;
    margin: 0 0 10px;
    border-collapse: separate;
    border-spacing: 0 10px;
}
.gk-default-product-cart .variations th,
.gk-default-product-cart .variations td {
    display: block;
    width: 100%;
    padding: 0;
    text-align: right;
}
.gk-default-product-cart .variations label {
    display: block;
    margin-bottom: 6px;
    color: var(--gk-dp-muted);
    font-size: 12px;
}
.gk-default-product-cart select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--gk-dp-border);
    border-radius: 14px;
    background: #fff;
    padding: 0 12px;
}
.gk-default-product-cart .reset_variations {
    display: inline-flex;
    margin-top: 6px;
    color: var(--gk-dp-primary);
    font-size: 12px;
    text-decoration: none;
}
.gk-default-product-cart .woocommerce-variation-price { margin: 10px 0; font-weight: 950; }
.gk-default-product-purchase__safe {
    display: grid;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px dashed var(--gk-dp-border);
}
.gk-default-product-purchase__safe span::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-inline-end: 7px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    font-size: 11px;
    font-weight: 900;
}

.gk-default-product-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
    padding: 14px;
}
.gk-default-product-service {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-areas: "icon title" "icon text";
    align-items: center;
    column-gap: 10px;
    min-width: 0;
    padding: 12px;
    border-radius: 18px;
    background: #f8fafc;
}
.gk-default-product-service span {
    grid-area: icon;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
}
.gk-default-product-service strong {
    grid-area: title;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 950;
}
.gk-default-product-service small {
    grid-area: text;
    color: var(--gk-dp-muted);
    font-size: 11px;
    line-height: 1.7;
}

.gk-default-product-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 304px;
    gap: 18px;
    align-items: start;
    margin-top: 18px;
}
.gk-default-product-main-content {
    display: grid;
    gap: 18px;
    min-width: 0;
}
.gk-default-product-section { padding: 22px; }
.gk-default-product-section__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gk-dp-border);
}
.gk-default-product-section__head span {
    order: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 3px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--gk-dp-primary) 8%, #fff);
    color: var(--gk-dp-primary);
    font-size: 11px;
    font-weight: 900;
}
.gk-default-product-section__head h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 950;
}
.gk-default-product-entry-content {
    color: #334155;
    font-size: 14px;
    line-height: 2.25;
}
.gk-default-product-entry-content img { max-width: 100%; height: auto; border-radius: 18px; }
.gk-default-product-entry-content > :first-child { margin-top: 0; }
.gk-default-product-entry-content > :last-child { margin-bottom: 0; }

.gk-default-product-specs .woocommerce-product-attributes {
    width: 100%;
    border: 0;
    border-collapse: separate;
    border-spacing: 0 8px;
}
.gk-default-product-specs .woocommerce-product-attributes-item {
    overflow: hidden;
    border-radius: 16px;
}
.gk-default-product-specs .woocommerce-product-attributes-item__label,
.gk-default-product-specs .woocommerce-product-attributes-item__value {
    padding: 13px 16px;
    border: 0;
    background: #f8fafc;
    text-align: right;
    vertical-align: top;
    line-height: 2;
}
.gk-default-product-specs .woocommerce-product-attributes-item__label {
    width: 32%;
    color: var(--gk-dp-muted);
    font-size: 12px;
    font-weight: 900;
}
.gk-default-product-specs .woocommerce-product-attributes-item__value {
    color: var(--gk-dp-text);
    font-size: 13px;
}
.gk-default-product-specs .woocommerce-product-attributes-item__value p { margin: 0; }

.gk-default-product-reviews #comments h2,
.gk-default-product-reviews #review_form_wrapper .comment-reply-title { font-size: 16px; }
.gk-default-product-reviews .commentlist { padding: 0; list-style: none; }
.gk-default-product-reviews .comment_container,
.gk-default-product-reviews .comment-text {
    border-radius: 18px;
}
.gk-default-product-reviews .comment-text {
    border: 1px solid var(--gk-dp-border) !important;
    padding: 14px !important;
}
.gk-default-product-reviews textarea,
.gk-default-product-reviews input[type="text"],
.gk-default-product-reviews input[type="email"] {
    width: 100%;
    border: 1px solid var(--gk-dp-border);
    border-radius: 14px;
    padding: 12px;
}
.gk-default-product-reviews .form-submit .submit {
    border: 0;
    border-radius: 14px;
    background: var(--gk-dp-primary);
    color: #fff;
    padding: 12px 18px;
    font-weight: 900;
}

.gk-default-product-side-content { min-width: 0; }
.gk-default-product-sticky-card {
    position: sticky;
    top: calc(var(--gk-sticky-header-height, 0px) + 18px);
    display: grid;
    gap: 10px;
    padding: 18px;
}
.gk-default-product-sticky-card > strong { font-size: 15px; }
.gk-default-product-sticky-card > span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--gk-dp-muted);
    font-size: 12px;
    line-height: 1.9;
}
.gk-default-product-sticky-card__price { font-size: 16px; font-weight: 950; }

.gk-default-product-related { margin-top: 18px; padding: 22px; }
.gk-default-product-related .related > h2 { display: none; }
.gk-default-product-related ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0 !important;
    padding: 0 !important;
}
.gk-default-product-related ul.products::before,
.gk-default-product-related ul.products::after { display: none !important; }
.gk-default-product-related ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

.gk-default-product-mobile-buybar {
    position: fixed;
    z-index: 998;
    inset-inline: 10px;
    inset-block-end: calc(10px + env(safe-area-inset-bottom));
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(15, 23, 42, .09);
    border-radius: 20px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 20px 50px rgba(15, 23, 42, .18);
    backdrop-filter: blur(14px);
}
.gk-default-product-mobile-buybar__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    color: var(--gk-dp-text);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 950;
}
.gk-default-product-mobile-buybar .gk-conv-btn {
    flex: 0 0 auto;
    min-height: 42px;
    border-radius: 15px;
    padding-inline: 16px;
    font-size: 13px;
}

@media (max-width: 1180px) {
    .gk-default-product-hero { grid-template-columns: minmax(280px, 40%) minmax(0, 1fr); }
    .gk-default-product-purchase { grid-column: 1 / -1; position: static; }
    .gk-default-product-purchase__meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gk-default-product-cart form.cart { grid-template-columns: minmax(140px, 180px) minmax(240px, 1fr); align-items: end; }
    .gk-default-product-cart form.variations_form.cart { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
    .gk-default-product-page { padding-top: 12px; }
    .gk-default-product-hero,
    .gk-default-product-content-grid { grid-template-columns: 1fr; }
    .gk-default-product-gallery { position: relative; top: auto; }
    .gk-default-product-side-content { display: none; }
    .gk-default-product-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gk-default-product-related ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .gk-default-product-page {
        padding: 10px 0 96px;
        background: #f6f7f9;
    }
    .gk-default-product-page__container { width: min(100% - 18px, 100%); }
    .gk-default-product-breadcrumb { font-size: 11px; overflow-x: auto; flex-wrap: nowrap; white-space: nowrap; padding-bottom: 2px; }
    .gk-default-product-hero { gap: 10px; }
    .gk-default-product-summary,
    .gk-default-product-purchase,
    .gk-default-product-gallery,
    .gk-default-product-section,
    .gk-default-product-related { padding: 14px; border-radius: 20px; }
    .gk-default-product-gallery__main { border-radius: 18px; }
    .gk-default-product-gallery__thumbs { gap: 8px; margin-top: 10px; }
    .gk-default-product-gallery__thumb { flex-basis: 62px; width: 62px; height: 62px; border-radius: 14px; }
    .gk-default-product-title { font-size: 20px; line-height: 1.75; }
    .gk-default-product-summary__topline { align-items: flex-start; justify-content: flex-start; }
    .gk-default-product-rating-row { align-items: flex-start; }
    .gk-default-product-short-desc { font-size: 13px; line-height: 2.05; }
    .gk-default-product-highlights__grid { grid-template-columns: 1fr; }
    .gk-default-product-purchase__meta { grid-template-columns: 1fr; }
    .gk-default-product-price { align-items: flex-start; text-align: right; font-size: 19px; }
    .gk-default-product-cart form.cart { grid-template-columns: 1fr; }
    .gk-default-product-services { grid-template-columns: 1fr; gap: 8px; padding: 10px; margin-top: 10px; }
    .gk-default-product-service { padding: 10px; }
    .gk-default-product-content-grid { margin-top: 10px; gap: 10px; }
    .gk-default-product-main-content { gap: 10px; }
    .gk-default-product-section__head { display: block; margin-bottom: 12px; padding-bottom: 10px; }
    .gk-default-product-section__head span { margin-bottom: 8px; }
    .gk-default-product-section__head h2 { font-size: 18px; }
    .gk-default-product-specs .woocommerce-product-attributes,
    .gk-default-product-specs .woocommerce-product-attributes tbody,
    .gk-default-product-specs .woocommerce-product-attributes tr,
    .gk-default-product-specs .woocommerce-product-attributes th,
    .gk-default-product-specs .woocommerce-product-attributes td { display: block; width: 100%; }
    .gk-default-product-specs .woocommerce-product-attributes-item__label { padding-bottom: 4px; border-radius: 16px 16px 0 0; }
    .gk-default-product-specs .woocommerce-product-attributes-item__value { padding-top: 4px; border-radius: 0 0 16px 16px; }
    .gk-default-product-related ul.products {
        display: flex !important;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 4px !important;
    }
    .gk-default-product-related ul.products li.product {
        flex: 0 0 72%;
        scroll-snap-align: start;
    }
    .gk-default-product-mobile-buybar { display: flex; }
}

@media (max-width: 420px) {
    .gk-default-product-related ul.products li.product { flex-basis: 82%; }
    .gk-default-product-mobile-buybar__price { font-size: 12px; }
    .gk-default-product-mobile-buybar .gk-conv-btn { padding-inline: 12px; }
}

/* v1.9.8 default product polish: wider middle section, gallery actions, feature grid and related carousel */
@media (min-width: 1181px) {
    .gk-default-product-hero {
        grid-template-columns: minmax(250px, 32%) minmax(390px, 1fr) minmax(238px, 21%);
        gap: 16px;
    }
    .gk-default-product-gallery { padding: 14px; }
    .gk-default-product-purchase { padding: 16px; }
}

.gk-default-product-gallery {
    --gk-gallery-actions-x: 14px;
    --gk-gallery-actions-y: 14px;
    --gk-gallery-actions-gap: 10px;
    --gk-gallery-action-size: 40px;
    --gk-gallery-action-icon: 21px;
    --gk-gallery-action-radius: 999px;
    --gk-gallery-action-bg: rgba(255,255,255,.95);
    --gk-gallery-action-color: #1f2937;
    --gk-gallery-action-bg-hover: var(--gk-dp-primary);
    --gk-gallery-action-color-hover: #fff;
}
.gk-default-product-gallery .gk-gallery-action-rail {
    position: absolute;
    z-index: 9;
    inset-block-start: var(--gk-gallery-actions-y);
    inset-inline-end: var(--gk-gallery-actions-x);
    display: flex;
    flex-direction: column;
    gap: var(--gk-gallery-actions-gap);
    pointer-events: auto;
}
.gk-default-product-gallery .gk-gallery-action-slot,
.gk-default-product-gallery .gk-share-wrapper,
.gk-default-product-gallery .gk-price-chart-wrapper,
.gk-default-product-gallery .gk-notify-widget-wrapper,
.gk-default-product-gallery .gk-wish-wrapper {
    width: var(--gk-gallery-action-size);
    height: var(--gk-gallery-action-size);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
}
.gk-default-product-gallery .gk-gallery-action-btn,
.gk-default-product-gallery .gk-gallery-integrated-widget-btn,
.gk-default-product-gallery .gk-wish-btn,
.gk-default-product-gallery .gk-share-trigger,
.gk-default-product-gallery .gk-chart-trigger-btn,
.gk-default-product-gallery .gk-notify-trigger-btn,
.gk-default-product-gallery .gk-compare-btn {
    width: var(--gk-gallery-action-size) !important;
    height: var(--gk-gallery-action-size) !important;
    min-width: var(--gk-gallery-action-size) !important;
    min-height: var(--gk-gallery-action-size) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: var(--gk-gallery-action-radius) !important;
    background: var(--gk-gallery-action-bg) !important;
    color: var(--gk-gallery-action-color) !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .10) !important;
    cursor: pointer;
    text-decoration: none !important;
    line-height: 1 !important;
    font-size: 0 !important;
    transform: none;
    transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.gk-default-product-gallery .gk-gallery-action-btn:hover,
.gk-default-product-gallery .gk-gallery-action-btn:focus-visible,
.gk-default-product-gallery .gk-gallery-action-btn.is-active,
.gk-default-product-gallery .gk-wish-btn:hover,
.gk-default-product-gallery .gk-wish-btn:focus-visible,
.gk-default-product-gallery .gk-wish-btn.is-active,
.gk-default-product-gallery .gk-gallery-integrated-widget-btn:hover,
.gk-default-product-gallery .gk-gallery-integrated-widget-btn:focus-visible {
    background: var(--gk-gallery-action-bg-hover) !important;
    color: var(--gk-gallery-action-color-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .16) !important;
}
.gk-default-product-gallery .gk-gallery-action-btn svg,
.gk-default-product-gallery .gk-gallery-integrated-widget-btn svg,
.gk-default-product-gallery .gk-wish-btn svg,
.gk-default-product-gallery .gk-share-trigger svg,
.gk-default-product-gallery .gk-chart-trigger-btn svg,
.gk-default-product-gallery .gk-notify-trigger-btn svg,
.gk-default-product-gallery .gk-compare-btn svg {
    width: var(--gk-gallery-action-icon) !important;
    height: var(--gk-gallery-action-icon) !important;
    display: block !important;
    fill: currentColor;
    color: currentColor;
    pointer-events: none;
}
.gk-default-product-gallery .gk-gallery-action-text,
.gk-default-product-gallery .gk-share-text,
.gk-default-product-gallery .gk-chart-btn-text,
.gk-default-product-gallery .gk-trigger-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px,1px,1px,1px) !important;
    white-space: nowrap !important;
}
.gk-default-product-gallery .gk-wish-icon { display: inline-flex; }
.gk-default-product-gallery .gk-wish-icon--active { display: none; }
.gk-default-product-gallery .gk-wish-btn.is-active .gk-wish-icon--normal { display: none; }
.gk-default-product-gallery .gk-wish-btn.is-active .gk-wish-icon--active { display: inline-flex; }
.gk-default-product-gallery .gk-tooltip-container[data-tooltip]::after,
.gk-default-product-gallery .gk-gallery-action-btn[data-tooltip]::after,
.gk-default-product-gallery .gk-wish-btn[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    z-index: 50;
    top: 50%;
    inset-inline-end: calc(100% + 9px);
    transform: translateY(-50%) translateX(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #111827;
    color: #fff;
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.7;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .18);
    transition: .18s ease;
}
.gk-default-product-gallery .gk-tooltip-container[data-tooltip]:hover::after,
.gk-default-product-gallery .gk-gallery-action-btn[data-tooltip]:hover::after,
.gk-default-product-gallery .gk-wish-btn[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.gk-default-product-highlights__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}
.gk-default-product-highlights__head h2 { margin: 0; }
.gk-default-product-highlights__head span {
    color: var(--gk-dp-muted);
    font-size: 11px;
    font-weight: 800;
}
.gk-default-product-feature-grid-widget .gk-default-product-highlights__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}
.gk-default-product-feature-grid-widget .gk-default-product-highlight {
    min-height: 82px;
    background: linear-gradient(180deg, #f8fafc, #fff);
}
.gk-default-product-feature-grid-widget .gk-default-product-highlight--all {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(135deg, color-mix(in srgb, var(--gk-dp-primary) 12%, #fff), #fff);
    border-color: color-mix(in srgb, var(--gk-dp-primary) 22%, transparent);
}
.gk-default-product-feature-grid-widget .gk-default-product-highlight--all .gk-default-product-highlight__value {
    color: var(--gk-dp-primary);
}

.gk-default-product-related { overflow: hidden; }
.gk-default-related-carousel { --spd-gap: 14px; min-width: 0; }
.gk-default-related-carousel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gk-dp-border);
}
.gk-default-related-carousel__header > div:first-child span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 3px 10px;
    margin-bottom: 6px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--gk-dp-primary) 8%, #fff);
    color: var(--gk-dp-primary);
    font-size: 11px;
    font-weight: 900;
}
.gk-default-related-carousel__header .spd-carousel-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 950;
}
.gk-default-related-carousel__nav {
    display: flex;
    gap: 8px;
}
.gk-default-related-carousel__nav .spd-carousel-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gk-dp-border);
    border-radius: 50%;
    background: #fff;
    color: var(--gk-dp-text);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.gk-default-related-carousel__nav .spd-carousel-nav-button:hover {
    transform: translateY(-1px);
    background: var(--gk-dp-primary);
    color: #fff;
}
.gk-default-related-carousel .spd-swiper-container {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    position: relative;
    padding: 2px 2px 26px;
}
.gk-default-related-carousel .spd-swiper-wrapper { align-items: stretch; }
.gk-default-related-carousel .spd-swiper-slide { height: auto; box-sizing: border-box; }
.gk-default-related-carousel .spd-swiper-container:not(.swiper-initialized) .spd-swiper-wrapper {
    display: flex;
    gap: var(--spd-gap);
}
.gk-default-related-carousel .spd-swiper-container:not(.swiper-initialized) .spd-swiper-slide {
    flex: 0 0 calc((100% - 56px) / 5);
}
.gk-default-product-related .swiper-pagination-bullet-active { background: var(--gk-dp-primary); }
.gk-default-related-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 12px;
    border: 1px solid var(--gk-dp-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .045);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.gk-default-related-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--gk-dp-primary) 20%, var(--gk-dp-border));
    box-shadow: 0 18px 38px rgba(15, 23, 42, .085);
}
.gk-default-related-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
}
.gk-default-related-card__image a,
.gk-default-related-card__image img {
    display: block;
    width: 100%;
    height: 100%;
}
.gk-default-related-card__image img { object-fit: contain; padding: 8px; }
.gk-default-related-card .product-card__badge--sale {
    position: absolute;
    inset-block-start: 8px;
    inset-inline-start: 8px;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--gk-dp-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}
.gk-default-related-card__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    padding-top: 12px;
}
.gk-default-related-card .product-card__title {
    margin: 0;
    min-height: 48px;
    color: var(--gk-dp-text);
    font-size: 13px;
    line-height: 1.85;
    font-weight: 900;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gk-default-related-card .product-card__title a { color: inherit; text-decoration: none; }
.gk-default-related-card .product-card__rating { min-height: 18px; color: #f59e0b; font-size: 12px; }
.gk-default-related-card .product-card__price {
    margin-top: auto;
    color: var(--gk-dp-text);
    font-size: 14px;
    font-weight: 950;
    line-height: 1.7;
}
.gk-default-related-card .product-card__price del { color: #94a3b8; font-size: 12px; font-weight: 700; }
.gk-default-related-card .product-card__price ins { text-decoration: none; }
.gk-default-related-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 2px;
    border-radius: 14px;
    background: #f8fafc;
    color: var(--gk-dp-text);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    transition: background .2s ease, color .2s ease;
}
.gk-default-related-card__link:hover { background: var(--gk-dp-primary); color: #fff; }

@media (max-width: 1180px) {
    .gk-default-product-hero { grid-template-columns: minmax(250px, 36%) minmax(0, 1fr); }
}
@media (max-width: 992px) {
    .gk-default-product-gallery .gk-gallery-action-rail {
        inset-block-start: 12px;
        inset-inline-end: 12px;
    }
    .gk-default-related-carousel .spd-swiper-container:not(.swiper-initialized) .spd-swiper-slide {
        flex-basis: calc((100% - 24px) / 3);
    }
}
@media (max-width: 767px) {
    .gk-default-product-gallery {
        --gk-gallery-action-size: 36px;
        --gk-gallery-action-icon: 19px;
        --gk-gallery-actions-gap: 8px;
    }
    .gk-default-product-gallery .gk-tooltip-container[data-tooltip]::after,
    .gk-default-product-gallery .gk-gallery-action-btn[data-tooltip]::after,
    .gk-default-product-gallery .gk-wish-btn[data-tooltip]::after { display: none !important; }
    .gk-default-product-feature-grid-widget .gk-default-product-highlights__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .gk-default-product-feature-grid-widget .gk-default-product-highlight {
        min-height: 76px;
        padding: 10px;
    }
    .gk-default-related-carousel__header { align-items: flex-start; }
    .gk-default-related-carousel__header .spd-carousel-title { font-size: 18px; }
    .gk-default-related-carousel__nav .spd-carousel-nav-button { width: 38px; height: 38px; }
    .gk-default-related-carousel .spd-swiper-container:not(.swiper-initialized) .spd-swiper-slide {
        flex-basis: 72%;
    }
}
@media (max-width: 420px) {
    .gk-default-product-feature-grid-widget .gk-default-product-highlights__grid { grid-template-columns: 1fr; }
    .gk-default-related-carousel .spd-swiper-container:not(.swiper-initialized) .spd-swiper-slide { flex-basis: 82%; }
}


/* v1.9.9 audited default product page fixes: RTL, UX, fallback carousel, duplicate breadcrumb */
body.single-product .woocommerce-breadcrumb:not(.gk-default-product-breadcrumb),
.gk-default-product-page .woocommerce-breadcrumb:not(.gk-default-product-breadcrumb) {
    display: none !important;
}

.gk-default-product-page a:focus-visible,
.gk-default-product-page button:focus-visible,
.gk-default-product-page input:focus-visible,
.gk-default-product-page select:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--gk-dp-primary) 28%, transparent);
    outline-offset: 3px;
}

.gk-default-product-gallery__main,
.gk-default-product-gallery__thumb,
.gk-default-product-gallery .gk-gallery-action-btn,
.gk-default-product-gallery .gk-gallery-integrated-widget-btn,
.gk-default-related-card__link,
.gk-default-product-mobile-buybar .gk-conv-btn {
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 1181px) {
    .gk-default-product-hero {
        grid-template-columns: minmax(250px, 30%) minmax(420px, 1fr) minmax(228px, 19.5%);
        gap: 18px;
    }
    .gk-default-product-summary { padding: 22px; }
    .gk-default-product-purchase { padding: 16px; }
}

@media (min-width: 1380px) {
    .gk-default-product-hero {
        grid-template-columns: minmax(275px, 29.5%) minmax(480px, 1fr) minmax(236px, 19%);
    }
}

.gk-default-product-summary,
.gk-default-product-purchase,
.gk-default-product-gallery,
.gk-default-product-section,
.gk-default-product-related {
    overflow-wrap: anywhere;
}

.gk-default-product-title,
.gk-default-product-en-title,
.gk-default-product-short-desc,
.gk-default-product-entry-content,
.gk-default-product-specs,
.gk-default-related-card .product-card__title {
    overflow-wrap: break-word;
    word-break: normal;
}

.gk-default-product-summary__topline {
    align-items: flex-start;
}

.gk-default-product-brand,
.gk-default-product-sku {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    max-width: 100%;
}

.gk-default-product-sku__value,
.gk-sku__value {
    direction: ltr;
    unicode-bidi: isolate;
}

.gk-default-product-short-desc ul,
.gk-default-product-entry-content ul,
.gk-default-product-short-desc ol,
.gk-default-product-entry-content ol {
    padding-inline-start: 1.25em;
    padding-inline-end: 0;
}

.gk-default-product-feature-grid-widget .gk-default-product-highlights__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gk-default-product-feature-grid-widget .gk-default-product-highlight {
    position: relative;
    overflow: hidden;
}

.gk-default-product-feature-grid-widget .gk-default-product-highlight::before {
    content: "";
    position: absolute;
    inset-block-start: 12px;
    inset-inline-start: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--gk-dp-primary) 48%, transparent);
}

.gk-default-product-feature-grid-widget .gk-default-product-highlight__label,
.gk-default-product-feature-grid-widget .gk-default-product-highlight__value {
    padding-inline-start: 14px;
}

.gk-default-product-feature-grid-widget .gk-default-product-highlight--all {
    align-items: flex-start;
}

.gk-default-product-gallery__main-img {
    user-select: none;
}

.gk-default-product-gallery .gk-gallery-action-rail {
    max-height: calc(100% - 28px);
}

.gk-default-product-gallery__badges {
    max-width: calc(100% - 72px);
}

.gk-default-product-price,
.gk-default-product-mobile-buybar__price,
.gk-default-related-card .product-card__price,
.gk-default-product-sticky-card__price {
    direction: rtl;
    unicode-bidi: plaintext;
}

.gk-default-product-cart form.cart .quantity {
    display: flex;
    align-items: stretch;
}

.gk-default-product-cart form.cart .qty {
    direction: ltr;
    unicode-bidi: isolate;
}

.gk-default-product-cart .stock,
.gk-default-product-cart .woocommerce-variation-availability {
    margin: 0;
    font-size: 12px;
    line-height: 1.9;
}

.gk-default-product-specs .woocommerce-product-attributes {
    direction: rtl;
}

.gk-default-product-specs .woocommerce-product-attributes p {
    margin: 0;
}

.gk-default-product-related ul.products {
    display: none !important;
}

.gk-default-related-carousel .spd-swiper-container:not(.swiper-initialized) {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.gk-default-related-carousel .spd-swiper-container:not(.swiper-initialized) .spd-swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--spd-gap);
    transform: none !important;
}

.gk-default-related-carousel .spd-swiper-container:not(.swiper-initialized) .spd-swiper-slide {
    flex: 0 0 calc((100% - 56px) / 5);
    scroll-snap-align: start;
}

.gk-default-related-carousel .swiper-initialized .spd-swiper-wrapper {
    gap: 0 !important;
}

.gk-default-related-carousel .swiper-button-disabled,
.gk-default-related-carousel .swiper-pagination-lock,
.gk-default-related-carousel .spd-carousel-nav-button.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}

.gk-default-product-related .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
}

.gk-default-product-related .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    opacity: .28;
    transition: width .2s ease, opacity .2s ease;
}

.gk-default-product-related .swiper-pagination-bullet-active {
    width: 18px;
    border-radius: 999px;
    opacity: 1;
}

.gk-default-related-card .star-rating {
    float: none;
    margin: 0;
}

.gk-default-related-card .product-card__price .amount {
    white-space: nowrap;
}

@media (max-width: 1180px) {
    .gk-default-product-hero {
        grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
    }
}

@media (max-width: 992px) {
    .gk-default-product-hero {
        grid-template-columns: 1fr;
    }
    .gk-default-product-gallery,
    .gk-default-product-purchase {
        position: relative;
        top: auto;
    }
    .gk-default-related-carousel .spd-swiper-container:not(.swiper-initialized) .spd-swiper-slide {
        flex-basis: calc((100% - 24px) / 3);
    }
}

@media (max-width: 767px) {
    .gk-default-product-page__container {
        width: min(100% - 16px, 100%);
    }
    .gk-default-product-breadcrumb-wrap {
        margin-bottom: 10px;
    }
    .gk-default-product-gallery .gk-gallery-action-rail {
        inset-block-start: 10px;
        inset-inline-end: 10px;
    }
    .gk-default-product-gallery__badges {
        inset-block-start: 10px;
        inset-inline-start: 10px;
        max-width: calc(100% - 58px);
    }
    .gk-default-product-gallery__main {
        min-height: 280px;
        aspect-ratio: 1 / .92;
    }
    .gk-default-product-feature-grid-widget .gk-default-product-highlights__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .gk-default-product-feature-grid-widget .gk-default-product-highlight__value {
        -webkit-line-clamp: 2;
    }
    .gk-default-product-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .gk-default-product-service {
        grid-template-columns: 38px minmax(0, 1fr);
        column-gap: 8px;
    }
    .gk-default-product-service span {
        width: 38px;
        height: 38px;
        border-radius: 14px;
    }
    .gk-default-related-carousel .spd-swiper-container:not(.swiper-initialized) .spd-swiper-slide {
        flex-basis: 74%;
    }
    .gk-default-product-mobile-buybar {
        inset-block-end: calc(var(--gk-bottom-nav-height, 0px) + 10px + env(safe-area-inset-bottom, 0px));
        z-index: 9999;
    }
    body:has(#gk-bottom-nav) .gk-default-product-mobile-buybar,
    body:has(.gk-bnav) .gk-default-product-mobile-buybar,
    body:has(.gk-mobile-bottom-nav) .gk-default-product-mobile-buybar,
    body:has(.mobile-bottom-nav) .gk-default-product-mobile-buybar {
        inset-block-end: calc(var(--gk-bottom-nav-height, 72px) + 10px + env(safe-area-inset-bottom, 0px));
    }
}

@media (max-width: 480px) {
    .gk-default-product-gallery__main {
        min-height: 250px;
    }
    .gk-default-product-feature-grid-widget .gk-default-product-highlights__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
    .gk-default-product-feature-grid-widget .gk-default-product-highlight {
        min-height: 72px;
    }
    .gk-default-product-services {
        grid-template-columns: 1fr;
    }
    .gk-default-related-carousel .spd-swiper-container:not(.swiper-initialized) .spd-swiper-slide {
        flex-basis: 82%;
    }
}

@media (max-width: 360px) {
    .gk-default-product-feature-grid-widget .gk-default-product-highlights__grid {
        grid-template-columns: 1fr;
    }
}
