@charset "UTF-8";

/* ======================
   BASE PRODUCT STYLES
   ====================== */
.product {
    margin-bottom: 40px;
}

.product .product__main {
    display: block;
    gap: 5px;
    margin: 2px 0;
    width: 100%;
    box-sizing: border-box;
}

.product .product__image-box {
    width: 100%;
    padding: 0;
    margin: 0 auto 1px auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: static;
    border-radius: var(--radius);
    background-color: white;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.product .product__image-container {
    display: none;
}

.product #design-product-image {
    display: none;
}

.product .product__thumbnails {
    display: none;
}

/* ======================
   MOBILE IMAGE SLIDER
   ====================== */
.mobile-image-slider {
    display: none;
    position: relative;
    margin: 20px 0;
    width: 100%;
    z-index: 5;
}

.mobile-image-slider .splide__track {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.mobile-image-slider .splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 240px;
    padding: 10px;
    background: white;
    transition: opacity 0.4s ease, transform 0.4s ease;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.mobile-image-slider .splide__slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.mobile-image-slider .splide__slide img:active {
    transform: scale(1.05);
}

.mobile-image-slider .splide__slide.is-clone {
    display: none;
}

.mobile-image-slider .splide__arrows,
.mobile-image-slider .splide__arrow {
    display: none;
}

.mobile-image-slider .splide__pagination {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    max-width: 200px;
    overflow: hidden;
}

.mobile-image-slider .splide__pagination__page {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(1, 124, 212, 0.4);
    width: 6px;
    height: 6px;
    margin: 0;
    transition: all 0.3s ease;
    opacity: 0.7;
    border-radius: 50%;
}

.mobile-image-slider .splide__pagination__page.is-active {
    background: #017cd4;
    border-color: #017cd4;
    transform: scale(1.8);
    opacity: 1;
}

.image-counter {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
}

/* ======================
   SOCIAL & WISHLIST
   ====================== */
.product .social-wishlist-container {
    position: static;
    margin-top: 1px;
    width: 100%;
    justify-content: space-between;
    padding: 1px 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    z-index: 2;
}

.product__share {
    position: relative;
    display: inline-block;
}

.share-button {
    background: linear-gradient(135deg, rgba(1, 124, 212, 0.9), rgba(0, 79, 135, 0.9));
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.share-button svg {
    stroke: white;
    transition: transform 0.3s;
    width: 24px;
    height: 24px;
}

.share-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.share-button:hover svg {
    transform: rotate(20deg);
}

.share-dropdown-content {
    position: absolute;
    left: 45px;
    top: 0;
    width: auto;
    height: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 10;
}

.share-dropdown-content.show {
    opacity: 1;
    pointer-events: all;
}

.product__share-list {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    margin: 0 5px;
}

.social-link a {
    display: block;
    opacity: 0;
    transform: translateY(10px);
    transition: transform 0.3s, opacity 0.3s;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.share-dropdown-content.show .social-link a {
    opacity: 1;
    transform: translateY(0);
}

.share-dropdown-content.show .social-link:nth-child(1) a { transition-delay: 0s; }
.share-dropdown-content.show .social-link:nth-child(2) a { transition-delay: 0.1s; }
.share-dropdown-content.show .social-link:nth-child(3) a { transition-delay: 0.2s; }
.share-dropdown-content.show .social-link:nth-child(4) a { transition-delay: 0.3s; }

.product__share-list svg {
    width: 24px;
    height: 24px;
}

.social-link a:hover {
    transform: scale(1.2);
}

.social-wishlist-container .products__product-add-to-wishlist {
    position: relative;
    cursor: pointer;
}

.social-wishlist-container .products__product-add-to-wishlist-wrapper {
    width: 40px;
    height: 40px;
    position: relative;
}

.social-wishlist-container .products__product-add-to-wishlist-wrapper span {
    font-variation-settings: "wght" 300;
    background: none;
    color: var(--color-wishlist);
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: relative;
    transition: all 0.3s;
}

.social-wishlist-container .products__product-add-to-wishlist-wrapper form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.social-wishlist-container .products__product-add-to-wishlist-wrapper input[type="submit"] {
    font-size: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 100%;
    border: none;
    pointer-events: all;
}

/* ======================
   PRODUCT INFO
   ====================== */
.product .product__info {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product .product__title {
    margin-bottom: 16px;
}

.product .product__name {
    font-size: 20px;
    font-weight: 900;
    margin: 20px 0 8px 0;
    line-height: 1.3;
    color: var(--color-text-dark);
}

.product .product__codes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 5px 0;
}

.product .sku,
.product .barcode {
    font-size: 11px;
    color: var(--color-neutral);
}

.product .producer {
    font-size: 11px;
    margin: 5px 0;
    color: var(--color-neutral);
}

.product .producer a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.product .producer a:hover {
    color: var(--color-primary-hover);
}

.product .product__short-description {
    margin: 5px 0;
    line-height: 1;
    color: var(--color-text-dark);
    font-size: 14px;
}

/* ======================
   FEEDATY WIDGET
   ====================== */
.feedaty_widget[data-variant="Striscia-full-nologowrap"] {
    width: fit-content !important;
    min-width: 80px !important;
    max-width: 120px !important;
    margin: 2px 0 !important;
    margin-left: 0px !important;
    flex-shrink: 0;
    transform: scale(0.9) !important;
    transform-origin: top right !important;
}

.fdt_productStriscia-full-nologowrap_widget_product {
    background: transparent !important;
}

.feedaty_widget[data-variant="Striscia-full-nologowrap"] img.fdt_productStriscia-full-nologowrap_stars {
    max-width: 70px !important;
    min-width: 70px !important;
    width: 70px !important;
    height: auto !important;
}

.feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_ratx,
.feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_sum {
    font-size: 12px !important;
    font-weight: 600 !important;
    white-space: nowrap;
}

.feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_widget_wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    transform: scale(1) !important;
    transform-origin: top left;
    padding: 1px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
    width: fit-content !important;
    max-width: 100% !important;
}

.feedaty_widget[data-variant="Striscia-full-nologowrap"]:hover .fdt_productStriscia-full-nologowrap_widget_wrapper {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transform: scale(1) !important;
}

.feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_widget_wrapper a {
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
}

.feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_sum {
    margin-left: 3px !important;
    margin-right: 3px !important;
}

.feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_widget_row {
    display: none;
}

.feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_txt_opinions::before {
    content: "(" !important;
    margin-right: 1px !important;
}

.feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_txt_reviews::after {
    content: ")" !important;
    margin-left: 1px !important;
}

.feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_txt_opinions,
.feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_txt_reviews {
    font-size: 12px !important;
    font-weight: 500 !important;
}

.feedaty_widget {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.feedaty_widget:empty {
    opacity: 0;
}

.feedaty_widget[data-feedaty-status="no-reviews"] {
    display: none !important;
}

.feedaty_widget[data-feedaty-status="loaded"] {
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
}

.feedaty_widget[data-feedaty-status="no-reviews"],
.feedaty_widget[data-feedaty-status="timeout"] {
    visibility: hidden !important;
}

.feedaty-loading {
    opacity: 0.5;
}

/* ======================
   SIDEBAR & PRICING
   ====================== */
.product__sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product__info-boxes {
    border: 1px solid var(--border-primary);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
    height: 100%;
}

.product .product__prices {
    font-size: 15px;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.product .product__price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.product .product__sell-price {
    color: #037dd3;
    font-size: 30px!important;
    font-weight: 700;
    line-height: 1.2;
}

.product .product__list-price {
    color: #888;
    font-size: 15px;
    text-decoration: line-through;
}

.product .tax {
    font-size: 12px;
    color: #565959;
    margin-top: 5px;
    font-weight: normal;
}

.product .product__discount {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}

.product .product__price.has-promotion {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.product .product__price.has-promotion .product__list-price {
    order: 1;
    margin-right: auto;
}

.product .product__price.has-promotion .product__sell-price {
    order: 2;
    margin-left: auto;
}

.product .design-unit-of-measure {
    font-size: 12px;
    margin-left: 6px;
}

.product .discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    animation: badge-fadeIn 0.6s ease-out both;
    width: fit-content;
    justify-self: start;
}

.product .discount-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-20deg);
    animation: badge-shine 2s infinite;
}

@keyframes badge-shine {
    0% { left: -60%; }
    50% { left: 110%; }
    100% { left: 110%; }
}

@keyframes badge-fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.product .discount-text {
    display: none;
}

.product .discount-text.discount-visible {
    display: block;
    background: linear-gradient(90deg, #f43f5e, #f97316);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 14px;
    font-weight: 700;
    justify-self: start;
}

.checkout-vat-note {
    margin-bottom: 1px;
    font-style: italic;
    font-size: 14px;
    color: #444;
}

.product .availability {
    font-size: 13px;
}

.paypal-messaging {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
}

/* ======================
   STATUS & STOCK
   ====================== */
.product__status-badges {
    order: 3;
    margin: -20px 0;
    padding-bottom: 1px;
}

.product__sidebar .product__status-message {
    margin: 0 0 12px 0;
    padding: 10px 12px;
    border-radius: var(--radius);
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    background-color: var(--bg-accent);
    color: var(--color-text-dark);
    border-left: 3px solid var(--color-primary);
}

.product__sidebar .product__stock {
    margin: 20px 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #007600;
    gap: 8px;
    text-align: center;
    padding: 10px 0;
}

.product__sidebar .product__stock.out-of-stock {
    color: #d13212;
}

.product__delivery {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
}

.delivery-available,
.delivery-unavailable {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
    border-radius: 6px;
    animation: badge-fadeIn 0.5s ease;
    font-size: 14px;
}

.delivery-unavailable {
    border-left: 4px solid #e53935;
    background-color: #f8f9fa;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.product__delivery .material-symbols-outlined {
    font-size: 24px;
    color: #757575;
}

.delivery-available .material-symbols-outlined {
    color: #43a047;
}

.delivery-unavailable .material-symbols-outlined {
    color: #e53935;
}

.product__preorder-message {
    color: #856404 !important;
    padding: 10px 12px !important;
    margin: 20px 0 12px 0 !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.product__preorder-message > span {
    font-size: 18px !important;
    color: #856404 !important;
}

/* ======================
   ACTIONS & QUANTITY
   ====================== */
.product .product__actions {
    margin: 0;
}

.product .product__add {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    margin: 0 0 15px 0;
}

.product .product__quantity,
.product .product__add-to-cart {
    width: calc(50% - 4px);
    flex: 1;
}

.product .product__quantity-wrapper,
.cart__item-quantity .product__quantity-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #D5D9D9;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.2s;
}

.product .product__quantity-wrapper:focus-within {
    border-color: #007185;
    box-shadow: 0 0 0 2px rgba(0, 113, 133, 0.2);
}

.product .product__quantity-btn,
.cart__item-quantity .product__quantity-btn {
    background: #fff;
    border: none;
    width: 30px;
    height: 32px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s;
    user-select: none;
}

.product .product__quantity-btn:hover {
    background-color: #e7f3ff;
    color: #007185;
}

.product .product__quantity-btn.minus {
    border-right: 1px solid #D5D9D9;
}

.product .product__quantity-btn.plus {
    border-left: 1px solid #D5D9D9;
}

.product .product__quantity input[type="number"] {
    width: 100%;
    padding: 4px 6px;
    height: 32px;
    border: none;
    text-align: center;
    font-size: 13px;
    background-color: transparent;
    transition: all 0.2s;
    -moz-appearance: textfield;
}

.product .product__quantity input[type="number"]::-webkit-outer-spin-button,
.product .product__quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product .product__quantity input[type="number"]:focus {
    outline: none;
}

.product .product__quantity input[type="number"][name="quantity"]::placeholder,
.product .product__quantity input[type="number"][name="quantity"]::-moz-placeholder {
    color: #333;
    opacity: 1;
}

.product .product__add-to-cart input[type="submit"] {
    width: 100%;
    height: 36px;
    background-color: var(--color-primary);
    color: var(--bg-primary);
    border: 1px solid;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-image: linear-gradient(120deg, var(--color-primary) 0%, rgba(255, 255, 255, 0.25) 30%, var(--color-primary) 60%);
    background-size: 300% 100%;
    background-position: 0% 0%;
    transition: background-position 0.5s ease;
}

.product .product__add-to-cart input[type="submit"]:hover {
    background-position: 100% 0%;
}

.product .product__add-to-cart input[type="submit"]:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ======================
   ADVANTAGES & PAYMENTS
   ====================== */
.product__advantages {
    order: 5;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.advantage {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 5px;
    padding: 2px 0;
    text-decoration: none;
    color: #007185;
    font-size: 11px;
    transition: all 0.2s;
}

.advantage:last-child {
    margin-bottom: 0;
}

.advantage span.material-symbols-outlined {
    color: #007185;
    font-size: 18px;
}

.advantage:hover {
    color: #C7511F;
    transform: translateX(2px);
}

.advantage:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

.product .product__payments {
    margin-top: auto !important;
    padding: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    order: 999;
}

.product .product__payments_cards {
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.product .product__payments-logos {
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    display: flex;
}

.product .product__payments-logos img {
    max-width: 40px;
    max-height: 30px;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: transform 0.3s, filter 0.3s;
}

.product .product__payments-logos img:hover {
    transform: scale(1.15);
    filter: grayscale(0%);
}

.product .product__payments-title {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* ======================
   SECTIONS NAVIGATION
   ====================== */
.product__sections-nav {
    margin: 10px 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.product__sections-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.product__sections-nav li {
    flex: 1;
    min-width: 150px;
}

.product__sections-nav li a {
    display: block;
    padding: 16px 20px;
    color: var(--color-neutral);
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.product__sections-nav li:last-child a {
    border-bottom: none;
}

.product__sections-nav li a:hover,
.product__sections-nav li a.active {
    color: var(--color-primary);
    background: var(--bg-accent);
    transform: translateY(-2px);
}

.product__sections-nav li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
}

/* ======================
   CONTENT SECTIONS
   ====================== */
.product__section,
.product-section {
    padding: 12px;
    margin-bottom: 24px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-section {
    margin: 10px 0;
}

.product__section:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.product__section-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 14px;
    color: var(--color-text-dark);
    position: relative;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-gray);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--color-text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 2px;
}

.product__long-description-text,
.product__datasheet-text {
    line-height: 1.6;
    color: var(--color-text-dark);
    font-size: 14px;
}

.product__long-description-text h2,
.product__datasheet-text h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--color-text-dark);
    padding: 10px 15px;
    background: var(--bg-gray);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.product__long-description-text h3,
.product__datasheet-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.product__long-description-text p,
.product__datasheet-text p {
    margin-bottom: 12px;
    text-align: justify;
}

.product__files {
    margin-top: 24px;
    padding: 16px;
    background: var(--bg-gray);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.files-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.files-title::before {
    content: '📎';
    font-size: 24px;
}

.files-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.file-item:hover {
    background: var(--bg-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent);
}

.file-item::before {
    content: '📄';
    font-size: 20px;
    filter: grayscale(0.5);
}

.file-item:hover::before {
    filter: grayscale(0);
}

.file-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--color-text-dark);
}

.file-size {
    font-size: 12px;
    color: var(--color-neutral);
    background: var(--bg-gray);
    padding: 2px 6px;
    border-radius: 12px;
    display: inline-block;
}

.product__attributes-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}

.product__attribute {
    padding: 16px;
    background: var(--bg-gray);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.product__attribute:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product__attribute-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--color-text-dark);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.product__attribute-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product__attribute-value {
    padding: 6px 10px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--color-text-dark);
}

.product__attribute-value:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

/* ======================
   ACCESSORIES SLIDER
   ====================== */
#slider-accessories {
    padding: 0 10px;
}

#slider-accessories .splide__slide {
    width: 250px;
    margin-right: 16px;
    height: auto;
    display: flex;
    flex-direction: column;
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#slider-accessories .splide__slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ======================
   STICKY BAR
   ====================== */
.product__sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    background-color: #f6f6f6;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.3s;
    border-top: 1px solid var(--border-primary);
}

.product__sticky-bar.visible {
    transform: translateY(0);
}

.product__sticky-bar-image {
    display: none;
}

.product__sticky-bar-title {
    display: none;
}

.product__sticky-bar-info {
    display: block;
    flex: 1;
    min-width: 0;
    margin-right: 15px;
}

.product__sticky-bar-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin: 0 80px;
    text-align: center;
    order: 1;
}

.product__sticky-bar-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
    width: auto;
    justify-content: center;
    gap: 15px;
    order: 2;
    margin-top: 8px;
}

.product__sticky-bar-quantity {
    position: relative;
    width: 60px;
    border: 1px solid var(--border-primary);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.product__sticky-bar-quantity input[type="number"] {
    width: 100%;
    height: 32px;
    padding: 0 18px 0 2px;
    text-align: center;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: transparent;
    -moz-appearance: textfield;
}

.product__sticky-bar-quantity input[type="number"]::-webkit-inner-spin-button,
.product__sticky-bar-quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: inner-spin-button;
    opacity: 1;
    display: block;
    height: 32px;
    width: 18px;
    cursor: pointer;
    background-color: var(--color-primary);
    border-left: 1px solid var(--border-primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
}

.product__sticky-bar-add {
    width: auto;
    flex-shrink: 0;
}

.product__sticky-bar-add input {
    width: auto;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    background-color: var(--color-accent);
    color: var(--text-input-submit);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.product__sticky-bar-add input:hover {
    filter: brightness(1.05);
}

/* ======================
   REVIEWS SECTION
   ====================== */
.product #section-reviews,
.product section#section-reviews,
div.product section#section-reviews,
body .product section#section-reviews,
html body .product section#section-reviews {
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 16px !important;
}

#section-reviews .feedaty-section,
.product #section-reviews .feedaty-section,
section#section-reviews .feedaty-section,
div.product section#section-reviews div.feedaty-section {
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.feedaty_widget,
.feedaty_widget[data-variant="Recensioni-Verticale-40-60"],
div.feedaty_widget[data-variant="Recensioni-Verticale-40-60"],
#section-reviews .feedaty_widget,
.feedaty-section .feedaty_widget {
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    transform: none !important;
}

#fdt_product_tabRecensioni-Verticale-40-60_widget_product_tab,
div#fdt_product_tabRecensioni-Verticale-40-60_widget_product_tab,
.feedaty_widget div#fdt_product_tabRecensioni-Verticale-40-60_widget_product_tab {
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.fdt_product_tabRecensioni-Verticale-40-60_widget_wrapper,
div.fdt_product_tabRecensioni-Verticale-40-60_widget_wrapper,
#fdt_product_tabRecensioni-Verticale-40-60_widget_product_tab .fdt_product_tabRecensioni-Verticale-40-60_widget_wrapper {
    margin: 0 !important;
    padding: 16px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    gap: 6px !important;
    flex-direction: column !important;
}

#section-reviews *,
.feedaty-section *,
.feedaty_widget *,
#fdt_product_tabRecensioni-Verticale-40-60_widget_product_tab * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.widget_summary,
.rev_block,
.feedaty_logo,
.tab-title,
h4.tab-title,
.rev,
.lnk_reviews {
    margin: 0 !important;
    padding: 2px 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.container #section-reviews,
.product.container #section-reviews {
    margin: 0 !important;
    padding: 16px !important;
}

.product__section {
    margin-bottom: 20px !important;
}

.product__section#section-reviews {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

#section-reviews {
    display: block !important;
    overflow: hidden !important;
}

.feedaty-section {
    margin-top: -10px !important;
}

#fdt_product_tabRecensioni-Verticale-40-60_widget_product_tab {
    max-width: none !important;
    width: 100% !important;
}

#fdt_product_tabRecensioni-Verticale-40-60_widget_product_tab .rev_block .rev_stars {
    width: 80px !important;
}

.widget_summary,
.rev_block {
    padding: 12px !important;
    margin: 0 0 12px 0 !important;
    width: 100% !important;
}

.feedaty_widget[data-variant="Recensioni-Verticale-40-60"] {
    padding: 10px !important;
    margin: 0 !important;
}

/* ======================
   ZOOM MODAL
   ====================== */
#design-zoom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: #fff !important;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    width: 90% !important;
    max-width: 1200px !important;
    max-height: 90vh !important;
    overflow: hidden;
    z-index: 10002;
    padding: 20px;
}

#design-zoom-header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

#design-zoom-close {
    position: relative !important;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    color: #666;
    font-size: 0;
    transition: color 0.3s, transform 0.3s;
}

#design-zoom-close::before {
    content: "×";
    font-size: 28px;
    line-height: 1;
    color: #666;
    display: block;
}

#design-zoom-close:hover::before {
    color: #000;
    transform: scale(1.2);
}

#design-zoom-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#design-zoom-image {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-right: 20px;
}

#design-zoom-image img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

#design-zoom-thumbnails {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    padding: 5px;
    margin: 20px;
}

#design-zoom-thumbnails ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#design-zoom-thumbnails li {
    width: 64px;
    height: 64px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

#design-zoom-thumbnails li:hover {
    border-color: var(--color-primary, #0074cc);
}

#design-zoom-thumbnails li.design-selected {
    border-color: #e77600;
    box-shadow: 0 0 3px 2px rgba(228, 121, 17, 0.5);
}

#design-zoom-thumbnails li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ======================
   WISHLIST POPUP
   ====================== */
.wishlist-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 0;
    background: transparent;
    pointer-events: none;
}

.wishlist-popup-content {
    background: #27ae60;
    color: white;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideUpFadeIn 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wishlist-popup-icon {
    font-size: 18px;
    margin: 0;
}

.wishlist-popup-content h3,
.wishlist-popup-content p,
.wishlist-popup-actions {
    display: none;
}

.wishlist-popup-message {
    margin: 0;
    font-size: 14px;
}

.wishlist-popup-overlay {
    display: none;
}

/* ======================
   STATUS MESSAGES
   ====================== */
.product .product__status-message,
.product .product__select-item {
    margin: 10px 0;
    padding: 12px 15px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.product .product__status-message {
    background-color: var(--bg-accent);
    color: var(--color-text-dark);
}

.product .product__select-item {
    background-color: var(--bg-warning);
    color: var(--color-warning);
    font-size: 14px;
}

.product .product__select-item .material-symbols-outlined {
    font-size: 20px;
}

.product .product__variant-name {
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 15px;
    font-size: 15px;
    color: var(--color-text-dark);
    border-top: 1px solid var(--border-primary);
    padding-top: 15px;
}

/* ======================
   UTILITY CLASSES
   ====================== */
.min, .max {
    font-weight: 500;
    color: #007600;
    padding: 1px 3px;
    border-radius: 3px;
    white-space: nowrap;
}

.date-highlight {
    color: #037DD3;
    font-weight: 600;
}

.product__delivery strong {
    font-weight: 500;
    display: block;
    color: #333;
}

.product__delivery a {
    color: #037DD3;
    text-decoration: none;
    font-weight: 500;
}

.product__delivery a:hover {
    text-decoration: underline;
}

#estimated-delivery {
    margin: 5px 0;
    font-size: 16px;
    line-height: 1.2;
    padding-top: 8px;
    padding-bottom: 8px;
}

#estimated-delivery .delivery-available,
#estimated-delivery .delivery-available > div,
#estimated-delivery .delivery-available div,
#estimated-delivery .delivery-available * {
    display: inline;
    overflow: visible;
}

#estimated-delivery .delivery-available {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product .product__promotion-message {
    grid-column: 1 / -1;
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 14px;
    font-weight: 700;
    margin: 15px 0;
}

.discount-badge .material-symbols-outlined {
    display: none;
}

.product .product__rating-count {
    color: var(--color-primary);
}

/* ======================
   SOCIAL LINK COLORS
   ====================== */
.product__share .product__share-list .footer-social-link.facebook svg {
    fill: var(--color-facebook);
}

.product__share .product__share-list .footer-social-link.instagram svg g {
    fill: var(--color-instagram);
}

.product__share .product__share-list .footer-social-link svg[viewBox="0 0 504 504"],
.product__share .product__share-list .footer-social-link svg[viewBox="0 0 504 504"] g,
.product__share .product__share-list .footer-social-link svg[viewBox="0 0 504 504"] polygon,
.product__share .product__share-list .footer-social-link svg[viewBox="0 0 504 504"] path {
    fill: var(--color-youtube);
}

.social-link.copy-link a svg {
    stroke: #555;
}

.social-link.copy-link a:hover svg {
    stroke: var(--color-primary);
}

.social-link.whatsapp-share a svg {
    fill: #25d366;
}

.social-link.whatsapp-share a:hover svg {
    fill: #128c7e;
}

.social-link.email-share a svg {
    stroke: #ea4335;
}

.social-link.email-share a:hover svg {
    stroke: #d33b2c;
}

.social-link.email-share a.design-share-email {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ea4335' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
    background-position: center calc(50% - 3px);
    background-repeat: no-repeat;
    background-size: 28px 28px;
    width: 32px;
    height: 32px;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
}

.social-link.email-share a.design-share-email:hover {
    background-color: transparent;
    transform: scale(1.2);
}

/* ======================
   MEDIA QUERIES - 480px
   ====================== */
@media (min-width: 480px) {
    .mobile-image-slider .splide__slide {
        min-height: 280px;
        padding: 15px;
    }

    .image-counter {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 20px;
    }

    .mobile-image-slider .splide__pagination__page {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }

    .mobile-image-slider .splide__pagination__page.is-active {
        transform: scale(1.6);
    }

    .mobile-image-slider .splide__pagination {
        bottom: 15px;
    }

    .product .product__add {
        flex-direction: row;
        gap: 12px;
    }

    .product .product__quantity,
    .product .product__add-to-cart {
        width: calc(50% - 6px);
    }

    .product .product__quantity-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .product .product__quantity input[type="number"] {
        height: 36px;
        font-size: 14px;
        padding: 6px 8px;
    }

    .product .product__add-to-cart input[type="submit"] {
        height: 40px;
        font-size: 14px;
    }

    .advantage {
        font-size: 16px;
        gap: 10px;
        margin-bottom: 12px;
        padding: 6px 0;
    }

    .product .product__payments {
        margin-top: 30px;
        padding: 20px;
    }

    .product .product__payments_cards {
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
    }

    .product .product__payments-logos {
        gap: 12px;
    }

    .product .product__payments-logos img {
        max-width: 40px;
        max-height: 35px;
    }

    .product__sticky-bar-price {
        margin: 0 100px;
        order: unset;
    }

    .product__sticky-bar-actions {
        order: unset;
        margin-top: 0;
    }

    .product__sticky-bar-quantity {
        width: 65px;
    }

    .product__sticky-bar-quantity input[type="number"] {
        height: 36px;
        padding: 0 25px 0 5px;
    }

    .product__sticky-bar-quantity input[type="number"]::-webkit-inner-spin-button,
    .product__sticky-bar-quantity input[type="number"]::-webkit-outer-spin-button {
        width: 22px;
        height: 36px;
    }

    .product__sticky-bar-add input {
        padding: 12px 20px;
        font-size: 14px;
    }

    #slider-accessories .splide__slide {
        width: 300px;
        margin-right: 20px;
    }
}

/* ======================
   MEDIA QUERIES - 768px
   ====================== */
@media (min-width: 768px) {
    .mobile-image-slider {
        display: none;
    }

    .product__sticky-bar-content {
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 8px;
        padding: 8px 60px;
    }

    .product .product__image-box #design-product-image,
    .product .product__image-box .product__thumbnails {
        display: flex;
    }

    .product .product__image-container {
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .product .product__main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 10px;
        gap: 3px;
    }

    .product .product__image-box {
        grid-column: 1;
        position: static;
        padding: 2px;
    }

    .product .product__info {
        grid-column: 2;
    }

    .product .product__sidebar {
        grid-column: 1 / span 2;
        margin-top: 30px;
    }

    .product .product__thumbnails {
        width: 65px;
        flex-shrink: 0;
        order: 1;
        position: static;
        background: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }

    .product .product__thumbnails #design-product-thumbnails > ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .product .product__thumbnails #design-product-thumbnails > ul li {
        width: 50px;
        height: 50px;
        border-radius: 6px;
        border: 1px solid var(--border-primary);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2px;
        background-color: #fff;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .product .product__thumbnails #design-product-thumbnails > ul li:hover {
        border-color: var(--color-primary);
        transform: translateY(-2px);
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    }

    .product .product__thumbnails #design-product-thumbnails > ul li a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .product .product__thumbnails #design-product-thumbnails > ul li a img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        mix-blend-mode: multiply;
    }

    .product #design-product-image {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        min-height: 450px;
        padding: 8px;
        position: relative;
    }

    .product #design-product-image img {
        max-width: 100%;
        height: auto;
        max-height: 980px;
        object-fit: cover;
        mix-blend-mode: multiply;
        display: block;
        transition: all 0.3s ease;
    }

    .feedaty_widget[data-variant="Striscia-full-nologowrap"] {
        min-width: 80px !important;
        max-width: 120px !important;
        transform: scale(0.9) !important;
        transform-origin: top right !important;
    }

    .feedaty_widget[data-variant="Striscia-full-nologowrap"] img.fdt_productStriscia-full-nologowrap_stars {
        max-width: 70px !important;
        min-width: 70px !important;
        width: 70px !important;
    }

    .feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_ratx,
    .feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_sum,
    .feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_txt_opinions,
    .feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_txt_reviews {
        font-size: 12px !important;
    }

    .product .social-wishlist-container {
        position: absolute;
        bottom: 12px;
        left: auto;
        right: 12px;
        padding: 30px;
        margin-top: 0;
        width: auto;
        background: rgba(255, 255, 255, 0.9);
        border-radius: var(--radius);
        z-index: 2;
        order: 3;
    }

    .product .product__name {
        font-size: 24px;
    }

    .product .product__sell-price {
        font-size: 22px;
        margin: auto;
    }

    .product .product__short-description {
        margin: 16px 0;
        line-height: 1.6;
        font-size: 16px;
    }

    .product__sections-nav ul {
        flex-direction: row;
    }

    .product__sections-nav li a {
        border-right: 1px solid var(--color-border);
        border-bottom: none;
    }

    .product__sections-nav li:last-child a {
        border-right: none;
    }

    .product__sections-nav {
        margin: 20px 0;
    }

    .product__section,
    .product-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .product-section {
        margin: 20px 0;
        border-radius: 20px;
    }

    .product__section-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .product__attributes-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        margin-top: 24px;
    }

    .product__attribute {
        padding: 20px;
    }

    .product__attribute-name {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .product__attribute-value {
        font-size: 14px;
        padding: 8px 14px;
    }

    .files-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 16px;
    }

    .files-title {
        font-size: 20px;
        margin-bottom: 20px;
        gap: 8px;
    }

    .files-title::before {
        font-size: 32px;
    }

    .file-item {
        padding: 16px 20px;
        gap: 16px;
    }

    .file-item::before {
        font-size: 24px;
    }

    .file-name {
        font-size: 15px;
    }

    .file-size {
        font-size: 13px;
        padding: 2px 8px;
    }

    .product__files {
        margin-top: 22px;
        padding: 0 24px;
    }

    .product__long-description-text,
    .product__datasheet-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .product__long-description-text h2,
    .product__datasheet-text h2 {
        font-size: 24px;
        margin-top: 32px;
        margin-bottom: 16px;
        padding: 12px 20px;
    }

    .product__long-description-text h3,
    .product__datasheet-text h3 {
        font-size: 20px;
        margin-top: 28px;
        margin-bottom: 12px;
    }

    .product__long-description-text p,
    .product__datasheet-text p {
        margin-bottom: 16px;
    }

    .product__long-description-text ul,
    .product__datasheet-text ul {
        padding-left: 24px;
        margin-bottom: 20px;
        list-style-type: none;
    }

    .product__long-description-text ul li,
    .product__datasheet-text ul li {
        position: relative;
        margin-bottom: 8px;
        padding-left: 12px;
    }

    .product__long-description-text ol,
    .product__datasheet-text ol {
        padding-left: 24px;
        margin-bottom: 20px;
        counter-reset: item;
    }

    .product__long-description-text ol li,
    .product__datasheet-text ol li {
        display: block;
        margin-bottom: 8px;
        counter-increment: item;
    }

    .product__long-description-text ol li::before,
    .product__datasheet-text ol li::before {
        content: counter(item) ". ";
        color: var(--color-primary);
        font-weight: bold;
    }

    #slider-accessories {
        padding: 0 20px;
    }

    #slider-accessories .splide__slide {
        width: 370px;
        margin-right: 30px;
    }

    .product__sticky-bar-image {
        width: 60px;
        height: 60px;
        border-radius: var(--radius-small);
        overflow: hidden;
        flex-shrink: 0;
        border: 1px solid var(--border-primary);
        padding: 5px;
        background-color: white;
        display: flex;
    }

    .product__sticky-bar-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        mix-blend-mode: multiply;
    }

    .product__sticky-bar-title {
        font-size: 16px;
        font-weight: 500;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: var(--color-text-dark);
        display: block;
    }

    .product__sticky-bar-info {
        flex: 1;
        min-width: 0;
    }

    .product__sticky-bar-price {
        font-weight: 500;
        color: var(--color-primary);
    }

    .product__sticky-bar-actions {
        gap: 10px;
    }

    .fdt_product_tabRecensioni-Verticale-40-60_widget_wrapper {
        padding: 20px !important;
        gap: 40px !important;
        display: flex !important;
        align-items: flex-start !important;
        flex-direction: row !important;
    }

    .widget_summary {
        margin: 10px !important;
        padding: 10px !important;
    }

    .rev_block {
        flex: 1 !important;
        margin: auto !important;
        padding: 20px !important;
        max-width: none !important;
    }

    #section-reviews.product__section {
        padding: 24px !important;
    }

    .feedaty_widget[data-variant="Recensioni-Verticale-40-60"] {
        padding: 12px !important;
    }

    .delivery-available,
    .delivery-unavailable {
        font-size: 14px;
    }

    .product__delivery {
        margin: 5px 0;
    }
}

/* ======================
   MEDIA QUERIES - 1024px
   ====================== */
@media (min-width: 1024px) {
    .product .product__main {
        grid-template-columns: calc(38% - 6px) calc(37%) calc(25%);
    }

    .product .product__image-box {
        grid-column: 1;
        position: sticky;
        top: 0;
        min-height: max-content;
    }

    .product .product__info {
        grid-column: 2;
    }

    .product .product__sidebar {
        grid-column: 3;
        margin-top: 0;
    }

    .product .product__thumbnails {
        width: 80px;
    }

    .product .product__thumbnails #design-product-thumbnails > ul li {
        width: 65px;
        height: 65px;
    }

    .product #design-product-image {
        min-height: 500px;
    }

    .product .social-wishlist-container {
        left: 10px;
    }

    .fdt_product_tabRecensioni-Verticale-40-60_widget_wrapper {
        padding: 32px !important;
        gap: 60px !important;
    }

    .widget_summary {
        margin-right: 60px !important;
    }

    .rev_block {
        padding: 40px !important;
    }

    #section-reviews.product__section {
        padding: 32px !important;
    }

    .product__section-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .product .sku,
    .product .barcode,
    .product .producer {
        font-size: 16px;
    }

    .product .product__price {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
    }

    .product .product__price.has-promotion {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .product .product__list-price {
        order: 1;
        margin-right: auto;
    }

    .product .product__sell-price {
        order: 2;
        margin-left: auto;
    }

    .feedaty_widget[data-variant="Striscia-full-nologowrap"] {
        min-width: 120px !important;
        max-width: 180px !important;
        transform: scale(1) !important;
        transform-origin: top left !important;
    }

    .feedaty_widget[data-variant="Striscia-full-nologowrap"] img.fdt_productStriscia-full-nologowrap_stars {
        max-width: 90px !important;
        min-width: 90px !important;
        width: 90px !important;
    }

    .feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_ratx,
    .feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_sum,
    .feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_txt_opinions,
    .feedaty_widget[data-variant="Striscia-full-nologowrap"] .fdt_productStriscia-full-nologowrap_txt_reviews {
        font-size: 14px !important;
    }
}

/* ======================
   MEDIA QUERIES - 1400px
   ====================== */
@media (min-width: 1400px) {
    .product .product__thumbnails {
        width: 85px;
    }

    .product .product__thumbnails #design-product-thumbnails > ul li {
        width: 70px;
        height: 70px;
    }

    .product #design-product-image {
        min-height: 500px;
    }

    .product .product__main {
        max-width: 1500px;
        margin: 0 auto;
    }

    .product__section,
    .product-section {
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ======================
   UTILITY STYLES
   ====================== */
html {
    scroll-padding-top: 160px;
}

.product .product__thumbnails #design-product-thumbnails > ul::-webkit-scrollbar {
    width: 4px;
}

.product .product__thumbnails #design-product-thumbnails > ul::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.product .product__thumbnails #design-product-thumbnails > ul::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

/* ======================
   MOBILE OVERRIDES
   ====================== */
@media (max-width: 767px) {
    .product__image-box #design-product-image,
    .product__image-box .product__thumbnails {
        display: none !important;
    }

    .mobile-image-slider {
        display: block !important;
    }

    .product__image-box {
        padding: 0 !important;
    }

    .mobile-image-slider .splide__arrows {
        display: none !important;
    }

    .mobile-image-slider .splide__arrow {
        display: none !important;
    }

    .mobile-image-slider .splide__slide img:active {
        transform: scale(1.05);
    }

    .mobile-image-slider .splide__pagination {
        bottom: -10px !important;
    }

    .mobile-image-slider .splide__pagination__page {
        width: 8px !important;
        height: 8px !important;
        border-width: 1px !important;
    }

    .mobile-image-slider .splide__pagination__page.is-active {
        transform: scale(1.6) !important;
    }
}

@media (max-width: 480px) {
    .mobile-image-slider .splide__slide {
        min-height: 240px;
        padding: 10px;
    }

    .image-counter {
        top: 10px;
        right: 10px;
        padding: 4px 8px;
        font-size: 11px;
        border-radius: 15px;
    }

    .mobile-image-slider .splide__pagination__page {
        width: 6px !important;
        height: 6px !important;
    }

    .mobile-image-slider .splide__pagination__page.is-active {
        transform: scale(1.8) !important;
    }
}

/* ======================
   PRINT STYLES
   ====================== */
@media print {
    .product__sticky-bar,
    .mobile-image-slider .splide__pagination,
    .mobile-image-slider .splide__arrows,
    .share-button,
    .social-wishlist-container,
    .product__actions {
        display: none;
    }

    .product .product__main {
        display: block;
    }

    .product__section,
    .product-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ======================
   REDUCED MOTION SUPPORT
   ====================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .mobile-image-slider .splide__slide {
        transition: none;
    }

    .product .product__thumbnails #design-product-thumbnails > ul li:hover {
        transform: none;
    }

    .advantage:hover {
        transform: none;
    }
}