/* ═══════════════════════════════════════════════
   Product Details - PAGE
═══════════════════════════════════════════════ */

/* ===== DESIGN VARIABLES ===== */
:root {
    --color-secondary: #09c6ff;
    --color-secondary-dark: #1e3b49;
    --font-weight-extra-bold: 900;

    --amz-white: #FFFFFF;
    --amz-border: #D5D9D9;
    --radius: 8px;
    --shadow: 0 2px 5px rgba(15, 17, 17, .13);
    --t: all .22s ease;
    --amz-navy: #010F1C;
    --amz-navy-light: #37475A;
    --amz-orange: #FF9900;
    --amz-sale-red: #CC0C39;
    --amz-teal: #007185;
    --amz-text: #0F1111;
    --amz-text-mid: #565959;
    --amz-text-light: #767676;
    --amz-bg-soft: #F3F3F3;
    --amz-star: #FF9900;
    --amz-yellow: #FFD814;
    --amz-yellow-dark: #F0C14B;
    --amz-cart-bg: #FFA41C;
    --amz-cart-border: #FF8F00;
    --amz-green: #007600;
    --amz-red: #B12704;
    --amz-border-dark: #AAB7B8;
    --radius-sm: 4px;
}

/* ===== FONT AWESOME ===== */
@font-face {
    font-family: "Font Awesome 6 Free";
    src: url("../webfonts/fa-solid-900.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    ascent-override: 90%;
    descent-override: 10%;
    line-gap-override: 0%;
}

@font-face {
    font-family: "Font Awesome 6 Free";
    src: url("../webfonts/fa-regular-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    ascent-override: 90%;
    descent-override: 10%;
    line-gap-override: 0%;
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    src: url("../webfonts/fa-brands-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    ascent-override: 90%;
    descent-override: 10%;
    line-gap-override: 0%;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

button:focus {
    outline: none;
    box-shadow: none;
}

.hide {
    display: none;
}

/* ===== RTL SUPPORT ===== */

html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .amz-slider-wrap,
html[dir="rtl"] .amz-slides-track,
html[dir="rtl"] .amz-thumbs {
    direction: ltr;
    unicode-bidi: plaintext;
}

html[dir="rtl"] .amz-slide img,
html[dir="rtl"] .amz-thumb img {
    direction: ltr;
}

html[dir="rtl"] .amz-dots {
    direction: ltr;
}

html[dir="rtl"] .amz-arr-prev {
    right: 8px;
    left: auto;
}

html[dir="rtl"] .amz-arr-next {
    left: 8px;
    right: auto;
}

html[dir="rtl"] .amz-badges {
    left: auto;
    right: 10px;
}

.fa {
    font-weight: var(--font-weight-extra-bold);
}

/* ===== PRODUCT DETAILS PAGE ===== */
#product {
    width: auto;
    padding: 10px;
}

.main-card {
    display: grid;
    grid-template-columns: minmax(280px, 400px) 1fr minmax(220px, 280px);
    background: var(--amz-white);
    border: 1px solid var(--amz-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: fadeUp .4s ease both;
}

.amz-col-gallery {
    border-right: 1px solid var(--amz-border);
    background: var(--amz-white);
    display: flex;
    flex-direction: column;
    position: relative;
}

html[dir="rtl"] .amz-col-gallery {
    border-right: none;
    border-left: 1px solid var(--amz-border);
}

html[dir="rtl"] .amz-col-info {
    border-right: none;
    border-left: 1px solid var(--amz-border);
}

.amz-deal-bar {
    background: linear-gradient(90deg, var(--amz-navy) 0%, var(--amz-navy-light) 100%);
    padding: 9px 14px;
    flex-shrink: 0;
}

.best_deals {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--amz-orange);
    margin-bottom: 5px;
}

.amz-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-oos {
    background: var(--amz-sale-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 3px 8px;
    border-radius: 3px;
}

.badge-best {
    background: var(--amz-navy);
    color: var(--amz-orange);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 3px 8px;
    border-radius: 3px;
}

/* ===== SLIDER ===== */
.amz-slider-wrap {
    overflow: hidden;
    position: relative;
    direction: ltr;
}

.amz-slides-track {
    display: flex;
    width: 100%;
    direction: ltr;
}

.amz-slide {
    min-width: 100%;
    overflow: hidden;
    position: relative;
    cursor: none !important;
    direction: ltr;
}

.amz-slide img {
    width: 100%;
    display: block;
    transition: .3s ease;
}

.amz-slide:hover img {
    transform: scale(1.04);
}

.amz-cursor-zoom {
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    top: -9999px;
    left: -9999px;
    will-change: left, top;
}

.amz-cursor-zoom i {
    font-size: 18px;
    color: #333;
}

.amz-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--amz-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    color: var(--amz-navy);
    box-shadow: 0 1px 5px rgba(0, 0, 0, .18);
    transition: var(--t);
    user-select: none;
    padding: 0;
    line-height: 1;
}

.amz-arr:hover {
    background: var(--amz-orange);
    color: #fff;
    border-color: var(--amz-orange);
}

.amz-arr-prev {
    left: 8px;
}

.amz-arr-next {
    right: 8px;
}

.amz-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 8px 0 4px;
    flex-shrink: 0;
    direction: ltr;
}

.amz-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amz-border);
    cursor: pointer;
    transition: var(--t);
    border: none;
    padding: 0;
}

.amz-dot.active {
    background: var(--amz-orange);
    transform: scale(1.3);
}

.amz-thumbs {
    margin: auto;
    display: flex;
    gap: 7px;
    padding: 6px 14px 14px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--amz-border) transparent;
    flex-shrink: 0;
    direction: ltr;
}

.amz-thumb {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border: 2px solid var(--amz-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--t);
    background: var(--amz-bg-soft);
}

.amz-thumb:hover,
.amz-thumb.active {
    border-color: var(--amz-orange);
    box-shadow: 0 0 0 2px rgba(255, 153, 0, .3);
}

.amz-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
    direction: ltr;
}

.amz-col-info {
    padding: 18px 22px;
    border-right: 1px solid var(--amz-border);
    min-width: 0;
}

.amz-cat-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--amz-teal);
    text-decoration: none;
    margin-bottom: 8px;
    transition: var(--t);
}

.amz-cat-link:hover {
    color: var(--amz-orange);
    text-decoration: underline;
}

.amz-cat-link i {
    font-size: 11px;
}

.amz-prod-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--amz-text);
    line-height: 1.4;
    margin: 0 0 10px;
}

.amz-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--amz-border);
}

.amz-stars-wrap {
    display: flex;
    gap: 1px;
}

.amz-stars-wrap .fa-stack {
    width: 1.15em;
    height: 1.15em;
    line-height: 1.15em;
}

.amz-stars-wrap .fa-star.blk {
    color: #ddd;
}

.amz-stars-wrap .fa-star:not(.blk),
.amz-stars-wrap .fa-star-half {
    color: var(--amz-star);
}

.amz-rating-count {
    font-size: 12px;
    color: var(--amz-teal);
    cursor: pointer;
}

.amz-rating-count:hover {
    text-decoration: underline;
    color: var(--amz-orange);
}

.amz-price-block {
    background: #FFFBF0;
    border: 1px solid #F0C14B44;
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-bottom: 14px;
}

.amz-price-lbl {
    font-size: 11px;
    color: var(--amz-text-mid);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px;
}

.amz-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.amz-price-orig {
    font-size: 13px;
    color: var(--amz-text-light);
    text-decoration: line-through;
}

.amz-price-disc {
    font-size: 26px;
    font-weight: 700;
    color: var(--amz-red);
    line-height: 1;
}

.amz-price-reg {
    font-size: 26px;
    font-weight: 700;
    color: var(--amz-text);
    line-height: 1;
}

.amz-price-cur {
    font-size: 12px;
    color: var(--amz-text-mid);
    align-self: flex-end;
    padding-bottom: 2px;
}

.amz-save-badge {
    display: inline-block;
    background: var(--amz-sale-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
    margin-top: 5px;
}

.amz-lbl {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--amz-navy);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin: 14px 0 6px;
}

.amz-lbl i {
    color: var(--amz-orange);
    font-size: 11px;
}

.amz-short-desc {
    font-size: 13px;
    color: var(--amz-text-mid);
    line-height: 1.75;
    border-left: 3px solid var(--amz-orange);
    padding: 9px 10px 9px 13px;
    background: #FFFBF5;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 12px;
}

html[dir="rtl"] .amz-short-desc {
    border-left: none;
    border-right: 3px solid var(--amz-orange);
    padding: 9px 13px 9px 10px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.amz-featured {
    font-size: 13px;
    color: var(--amz-text-mid);
    line-height: 1.8;
}

.amz-featured ul {
    padding-left: 18px;
    margin: 5px 0;
}

html[dir="rtl"] .amz-featured ul {
    padding-left: 0;
    padding-right: 18px;
}

.amz-featured li {
    margin-bottom: 3px;
}

.amz-featured li::marker {
    color: var(--amz-orange);
}

.amz-attr-wrap {
    margin-top: 12px;
    border: 1px solid var(--amz-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.amz-attr-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
}

.amz-attr-wrap thead th {
    background: var(--amz-navy);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 7px 10px;
    text-align: start;
}

.amz-attr-wrap tbody tr:nth-child(even) {
    background: var(--amz-bg-soft);
}

.amz-attr-wrap tbody tr {
    transition: var(--t);
}

.amz-attr-wrap tbody tr:hover {
    background: #FFF8EE;
}

.amz-attr-wrap tbody td {
    padding: 7px 10px;
    border-top: 1px solid var(--amz-border);
    vertical-align: middle;
}

.amz-attr-wrap tbody td:first-child {
    font-weight: 600;
    color: var(--amz-navy);
    width: 35%;
}

.attr-color-swatch {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    vertical-align: middle;
}

.amz-attr-price {
    font-weight: 700;
    color: var(--amz-red);
}

.attribute-radio {
    accent-color: var(--amz-navy-light);
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.amz-col-buy {
    padding: 14px;
}

.amz-buybox {
    border: 1px solid var(--amz-border);
    border-radius: var(--radius);
    padding: 14px;
    position: sticky;
    top: 70px;
}

.amz-bb-price {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--amz-border);
}

.amz-bb-price .amz-price-disc,
.amz-bb-price .amz-price-reg {
    font-size: 22px;
}

.amz-stock {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.in-stock {
    color: var(--amz-green);
}

.out-stock {
    color: var(--amz-red);
}

.amz-qty-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.amz-qty-lbl {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.amz-qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid var(--amz-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    direction: ltr;
}

.amz-qty-btn {
    width: 30px;
    height: 32px;
    background: var(--amz-bg-soft);
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: var(--amz-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
    user-select: none;
    line-height: 1;
}

.amz-qty-btn:hover {
    background: var(--amz-border-dark);
    color: #fff;
}

.number {
    width: 40px;
    height: 32px;
    border: none;
    border-radius: 0;
    border-left: 1px solid var(--amz-border);
    border-right: 1px solid var(--amz-border);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--amz-text);
    background: var(--amz-white);
    outline: none;
    -moz-appearance: textfield;
}

.number::-webkit-inner-spin-button,
.number::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.amz-btn-cart {
    width: 100%;
    padding: 9px 10px;
    background: linear-gradient(to bottom, #FFD070, var(--amz-cart-bg));
    border: 1px solid var(--amz-cart-border);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--amz-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 8px;
    transition: var(--t);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .35) inset, 0 2px 6px rgba(213, 113, 0, .2);
}

.amz-btn-cart:hover {
    background: linear-gradient(to bottom, #FFBA00, #E07800);
    box-shadow: 0 2px 10px rgba(213, 113, 0, .4);
}

.amz-btn-cart:active {
    transform: scale(.98);
}

.amz-btn-cart .cart-svg {
    width: 19px;
    height: 14px;
    fill: none;
    stroke: var(--amz-text);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.amz-sec-btns {
    gap: 6px;
}

.amz-sec-btns form {
    width: 100%;
    margin-bottom: 5px;
}

.amz-btn-sec {
    position: relative;
    padding: 7px 4px;
    background: linear-gradient(to bottom, var(--amz-white), var(--amz-bg-soft));
    border: 1px solid var(--amz-border);
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--amz-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: var(--t);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .6) inset;
    width: 100%;
}

.amz-btn-sec:hover {
    background: linear-gradient(to bottom, var(--amz-bg-soft), #ccc);
    border-color: var(--amz-border-dark);
}

.amz-btn-sec i {
    font-size: 12px;
}

.amz-btn-sec.wish i {
    color: var(--amz-sale-red);
}

.amz-btn-sec.comp i {
    color: var(--amz-teal);
}

.amz-tip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    white-space: nowrap;
    background: var(--amz-navy);
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: var(--t);
    z-index: 200;
}

.amz-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--amz-navy);
}

.amz-btn-sec:hover .amz-tip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.amz-bb-div {
    height: 1px;
    background: var(--amz-border);
    margin: 12px 0;
}

.amz-info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amz-info-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 7px;
    border-radius: var(--radius-sm);
    transition: var(--t);
}

.amz-info-row:hover {
    background: var(--amz-bg-soft);
}

.amz-info-row>i {
    font-size: 17px;
    color: var(--amz-orange);
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    margin-top: 1px;
}

.amz-info-row-txt strong {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--amz-navy);
    line-height: 1.3;
}

.amz-info-row-txt span {
    font-size: 10.5px;
    color: var(--amz-text-light);
}

/* ===== TABS SECTION ===== */
.amz-tabs-section {
    margin-top: 16px;
    background: var(--amz-white);
    border: 1px solid var(--amz-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: fadeUp .45s ease both;
    animation-delay: .12s;
}

.ignielMultiTab {
    border: none;
    padding: 0;
    margin: 0;
}

.ignielMultiTab input[type="radio"] {
    display: none;
}

.ignielMultiTab>label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    cursor: pointer;
    white-space: nowrap;
    background: var(--amz-navy);
    border-bottom: 3px solid transparent;
    transition: var(--t);
    position: relative;
    user-select: none;
}

.ignielMultiTab>label i {
    font-size: 13px;
    opacity: .8;
}

.ignielMultiTab>label:first-of-type {
    border-radius: var(--radius) 0 0 0;
}

html[dir="rtl"] .ignielMultiTab>label:first-of-type {
    border-radius: 0 var(--radius) 0 0;
}

.ignielMultiTab>label:hover {
    color: var(--amz-orange);
    background: rgba(255, 153, 0, .08);
}

.ignielMultiTab #tab1:checked~label[for="tab1"],
.ignielMultiTab #tab2:checked~label[for="tab2"],
.ignielMultiTab #tab3:checked~label[for="tab3"] {
    color: var(--amz-orange);
    background: rgba(255, 153, 0, .1);
    font-weight: 700;
}

.ignielMultiTab .content {
    padding: 28px;
    border-top: 3px solid var(--amz-orange);
}

.ignielMultiTab .content>div {
    display: none;
}

.ignielMultiTab #tab1:checked~.content .tab1 {
    display: grid;
}

.ignielMultiTab #tab2:checked~.content .tab2 {
    display: grid;
}

.ignielMultiTab #tab3:checked~.content .tab3 {
    display: grid;
}

.tab1 {
    font-size: 14px;
    color: var(--amz-text-mid);
    line-height: 1.85;
}

.tab1 h1,
.tab1 h2,
.tab1 h3,
.tab1 h4,
.tab1 h5 {
    font-weight: 700;
    color: var(--amz-navy);
    margin: 18px 0 8px;
    line-height: 1.3;
}

.tab1 h3 {
    font-size: 17px;
}

.tab1 h4 {
    font-size: 15px;
}

.tab1 p {
    margin: 0 0 12px;
}

.tab1 hr {
    border: none;
    border-top: 1px solid var(--amz-border);
    margin: 18px 0;
}

.tab1 ul,
.tab1 ol {
    padding-left: 20px;
    margin: 8px 0 14px;
}

html[dir="rtl"] .tab1 ul,
html[dir="rtl"] .tab1 ol {
    padding-left: 0;
    padding-right: 20px;
}

.tab1 li {
    margin-bottom: 5px;
    line-height: 1.7;
}

.tab1 li::marker {
    color: var(--amz-orange);
}

.tab1 table,
.amz-tab-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background: #fafafa;
    border-radius: var(--radius);
    border: 1px solid var(--amz-border);
    margin: 10px 0 16px;
}

.tab1 thead tr,
.amz-tab-table thead tr {
    background: #f0f0f0 !important;
}

.tab1 th,
.amz-tab-table th {
    padding: 10px 12px !important;
    border: 1px solid var(--amz-border) !important;
    font-weight: 700;
    color: var(--amz-navy);
    text-align: start !important;
    font-size: 12.5px;
    background: var(--amz-bg-soft) !important;
}

.tab1 td,
.amz-tab-table td {
    padding: 9px 12px !important;
    border: 1px solid var(--amz-border) !important;
    vertical-align: middle;
    font-size: 13px;
}

.tab1 tr:nth-child(even) td {
    background: #fff !important;
}

.tab1 tr:nth-child(odd) td {
    background: #fafafa !important;
}

.tab1 tr:hover td {
    background: #FFF8EE !important;
    transition: var(--t);
}

.tab1 img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: var(--radius-sm);
    display: block;
    margin: 10px auto;
}

.amz-tbl-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.amz-tbl-scroll table {
    min-width: 460px;
    margin-bottom: 0;
}

.amz-review-form {
    background: var(--amz-bg-soft);
    border: 1px solid var(--amz-border);
    border-radius: var(--radius);
    padding: 18px;
    max-width: 560px;
    margin-bottom: 24px;
}

.amz-review-form h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--amz-navy);
    margin: 0 0 12px;
}

.amz-review-form textarea {
    width: 100%;
    min-height: 88px;
    padding: 9px 11px;
    font-size: 13px;
    color: var(--amz-text);
    border: 1px solid var(--amz-border);
    border-radius: var(--radius-sm);
    background: var(--amz-white);
    resize: vertical;
    outline: none;
    transition: var(--t);
    margin-bottom: 9px;
    display: block;
}

.amz-review-form textarea:focus {
    border-color: var(--amz-orange);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, .18);
}

.amz-review-form .form-select {
    padding: 7px 10px;
    font-size: 13px;
    border: 1px solid var(--amz-border);
    border-radius: var(--radius-sm);
    background: var(--amz-white);
    outline: none;
    cursor: pointer;
    margin-bottom: 11px;
    display: block;
    max-width: 180px;
    transition: var(--t);
}

.amz-review-form .form-select:focus {
    border-color: var(--amz-orange);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, .18);
}

.amz-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(to bottom, var(--amz-yellow), var(--amz-yellow-dark));
    border: 1px solid #C7A600;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--amz-text);
    cursor: pointer;
    transition: var(--t);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .45) inset;
}

.amz-submit-btn:hover {
    background: linear-gradient(to bottom, #F0C000, #A88000);
}

.amz-review-card {
    border-bottom: 1px solid var(--amz-border);
    padding: 14px 0;
    transition: var(--t);
}

.amz-review-card:last-child {
    border-bottom: none;
}

.amz-review-card:hover {
    background: #FFFBF5;
    border-radius: var(--radius-sm);
    padding-left: 8px;
}

html[dir="rtl"] .amz-review-card:hover {
    padding-left: 0;
    padding-right: 8px;
}

.amz-review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.amz-reviewer {
    font-size: 13px;
    font-weight: 700;
    color: var(--amz-teal);
    display: flex;
    align-items: center;
    gap: 5px;
}

.amz-rev-stars {
    display: flex;
    gap: 1px;
}

.amz-rev-stars .fa-stack {
    width: 1em;
    height: 1em;
    line-height: 1em;
}

.amz-rev-stars .fa-star.blk {
    color: #ddd;
}

.amz-rev-stars .fa-star:not(.blk),
.amz-rev-stars .fa-star-half {
    color: var(--amz-star);
}

.amz-review-text {
    font-size: 13px;
    color: var(--amz-text-mid);
    line-height: 1.7;
    margin: 0;
}

#empty {
    text-align: center;
    padding: 30px;
    color: var(--amz-text-light);
    font-size: 14px;
}

#empty i {
    font-size: 2.2rem;
    display: block;
    margin-top: 12px;
    color: var(--amz-border);
}

.amz-seller-wrap {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

#user_img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--amz-orange);
    flex-shrink: 0;
}

i#user_img {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amz-bg-soft);
    color: var(--amz-navy);
}

.amz-seller-info {
    font-size: 13.5px;
    color: var(--amz-text-mid);
    line-height: 2;
}

.amz-seller-info strong {
    color: var(--amz-text);
    font-weight: 700;
}

/* ══════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════ */
.sec-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    position: relative;
}

.sec-hdr::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--cta), transparent);
    border-radius: 2px;
}

.sec-hdr h2 {

    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-inline-start: 12px;
}

.sec-hdr h2::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--cta);
    border-radius: 4px;
}


html[dir="rtl"] .sec-hdr::after {
    background: linear-gradient(to left, var(--cta), transparent);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media screen and (max-width: 1024px) {
    .main-card {
        grid-template-columns: minmax(260px, 340px) 1fr 240px;
    }

    .amz-col-info {
        padding: 14px 16px;
    }

    .amz-prod-title {
        font-size: 18px;
    }
}

@media screen and (max-width: 880px) {
    .main-card {
        grid-template-columns: 1fr 280px;
    }

    .amz-col-gallery {
        grid-row: span 2;
        border-right: none;
        border-bottom: 1px solid var(--amz-border);
    }

    html[dir="rtl"] .amz-col-gallery {
        border-left: none;
        border-bottom: 1px solid var(--amz-border);
    }

    .amz-col-buy {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        border-left: 1px solid var(--amz-border);
    }

    html[dir="rtl"] .amz-col-buy {
        border-left: none;
        border-right: 1px solid var(--amz-border);
    }
}

@media screen and (max-width: 680px) {
    .main-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .amz-col-gallery {
        grid-row: auto;
        border-bottom: 1px solid var(--amz-border);
    }

    .amz-col-info {
        grid-row: auto;
        border-right: none;
        border-bottom: 1px solid var(--amz-border);
    }

    html[dir="rtl"] .amz-col-info {
        border-left: none;
    }

    .amz-col-buy {
        grid-column: auto;
        grid-row: auto;
        border-left: none;
        padding: 14px 10px;
    }

    html[dir="rtl"] .amz-col-buy {
        border-right: none;
    }

    .amz-buybox {
        position: static;
        top: auto;
    }

    .ignielMultiTab>label {
        padding: 12px 16px;
        font-size: 13px;
        white-space: normal;
        word-break: keep-all;
    }

    .ignielMultiTab .content {
        padding: 18px;
    }

    .amz-review-form {
        max-width: 100%;
    }

    .amz-thumbs {
        padding: 6px 10px 10px;
    }

    .amz-thumb {
        width: 46px;
        height: 46px;
    }
}

@media screen and (max-width: 480px) {
    #product {
        padding: 5px;
    }

    .main-card {
        border-radius: 6px;
    }

    .amz-prod-title {
        font-size: 16px;
    }

    .amz-price-disc,
    .amz-price-reg {
        font-size: 22px;
    }

    .amz-stars-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .amz-lbl {
        font-size: 11px;
    }

    .amz-short-desc {
        font-size: 12px;
        padding: 8px 8px 8px 12px;
    }

    html[dir="rtl"] .amz-short-desc {
        padding: 8px 12px 8px 8px;
    }

    .amz-featured {
        font-size: 12px;
    }

    .amz-attr-wrap table,
    .amz-attr-wrap thead,
    .amz-attr-wrap tbody,
    .amz-attr-wrap th,
    .amz-attr-wrap td,
    .amz-attr-wrap tr {
        display: block;
    }

    .amz-attr-wrap thead {
        display: none;
    }

    .amz-attr-wrap tbody tr {
        border: 1px solid var(--amz-border);
        margin-bottom: 8px;
        border-radius: var(--radius-sm);
    }

    .amz-attr-wrap tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 10px;
        border: none;
        border-bottom: 1px solid var(--amz-border);
    }

    .amz-attr-wrap tbody td:last-child {
        border-bottom: none;
    }

    .amz-attr-wrap tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--amz-navy);
        width: 40%;
        flex-shrink: 0;
    }

    .ignielMultiTab>label {
        flex: 1 1 auto;
        justify-content: center;
        padding: 10px 8px;
        font-size: 12px;
        gap: 4px;
    }

    .ignielMultiTab>label i {
        font-size: 12px;
    }

    .ignielMultiTab .content {
        padding: 14px;
    }

    .tab1 {
        font-size: 13px;
    }

    .amz-tbl-scroll table {
        min-width: 400px;
    }

    .amz-review-card {
        padding: 12px 0;
    }

    .amz-review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .amz-seller-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #user_img {
        width: 60px;
        height: 60px;
    }

    .amz-arr {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

@media screen and (max-width: 360px) {
    .amz-qty-row {
        flex-wrap: wrap;
    }

    .amz-sec-btns {
        flex-direction: column;
        gap: 4px;
    }

    .amz-btn-sec {
        padding: 6px 4px;
        font-size: 11px;
    }
}