/* Přepsání Tailwind CSS pro h3 */
.h3, h3 {
    padding-bottom: 0 !important;
}

/* Modern Product Page Styles - Technical Design */
.single-product-container {
    width: 1370px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    padding-top: 80px;
    background: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
}

/* Page scale on smaller desktop screens (e.g., MacBook) */
@media (max-width: 1600px) and (min-width: 1024px) {
    .single-product-container {
        zoom: 0.75;
        margin-top: 1.5rem; /* kompenzace pro fixní menu při zmenšení */
    }
}

/* Fallback for browsers without zoom support */
@supports not (zoom: 1) {
    @media (max-width: 1600px) and (min-width: 1024px) {
        .single-product-container {
            transform: scale(0.75);
            transform-origin: top center;
            width: calc(100% / 0.75);
            margin-top: 1.5rem; /* kompenzace pro fixní menu při zmenšení */
        }
    }
}

/* Breadcrumb Navigation */
.breadcrumb-navigation {
    padding: 1.5rem 32px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    color: #cbd5e1;
    font-weight: 300;
}

.breadcrumb-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-link:hover {
    color: #33d5f3;
}

.breadcrumb-current {
    color: #0f172a;
    font-weight: 600;
}

.single-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 50vh;
}

.single-product-images {
    position: sticky;
    top: 0;
    height: auto;
    min-height: 50vh;
    background: #fafbfc;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
}

.single-product-details {
    background: #ffffff;
    padding: 2rem 3rem;
    position: relative;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-gallery {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Main Display Container */
.main-display-container {
    flex: 1;
    width: 100%;
    position: relative;
    margin-bottom: 1rem;
}

.image-gallery,
.model-viewer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-gallery.active,
.model-viewer.active {
    opacity: 1;
    visibility: visible;
}

.main-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #fafbfc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.main-image:hover {
    transform: translateY(-8px);
}

.main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    border-radius: 10px;
}

.main-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.main-image:hover::before {
    opacity: 1;
}

.main-image:hover::after {
    opacity: 1;
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    position: relative;
}

.main-image:hover img {
    transform: scale(1.08);
}

/* Lightbox Gallery */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* 3D Model Viewer */
.model-viewer {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: #fafbfc;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.model-viewer-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
}

.model-loading {
    text-align: center;
    color: #64748b;
}

.model-loading .loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #33d5f3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.model-loading p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Full Width View Toggle Buttons */
.view-toggle-full-width {
    display: flex;
    gap: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
}

.view-toggle-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.view-toggle-btn:hover {
    background: rgba(51, 213, 243, 0.1);
    color: #33d5f3;
}

.view-toggle-btn.active {
    background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(51, 213, 243, 0.3);
}

.view-toggle-btn svg {
    width: 20px;
    height: 20px;
}

.view-toggle-btn:first-child {
    border-radius: 4px 0 0 4px;
}

.view-toggle-btn:last-child {
    border-radius: 0 4px 4px 0;
}

/* Remove old thumbnail gallery styles */
.thumbnail-gallery {
    display: none;
}

.thumbnail {
    display: none;
}

.thumbnail:hover {
    border-color: #33d5f3;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(51, 213, 243, 0.2);
}

.thumbnail.active {
    border-color: #33d5f3;
    box-shadow: 0 8px 24px rgba(51, 213, 243, 0.3);
    transform: translateY(-4px);
}

.thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-info {
    margin-bottom: 2rem;
}

.product-title {
    font-family: 'Nippo', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 50px;
    width: fit-content;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #f59e0b;
    font-size: 1.1rem;
}

.review-count {
    color: #92400e;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-price {
    font-family: 'Nippo', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-price .amount {
    background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-meta {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.product-description {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-left: 4px solid #33d5f3;
}

.option-group {
    margin-bottom: 2rem;
}

.option-label {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
    display: block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.color-options {
    display: flex;
    gap: 1rem;
}

.color-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.color-option.active {
    border-color: #33d5f3;
    box-shadow: 0 0 0 4px #ffffff, 0 0 0 8px #33d5f3, 0 8px 24px rgba(51, 213, 243, 0.3);
    transform: scale(1.1);
}

.color-black { background: linear-gradient(135deg, #1e293b 0%, #334155 100%); }
.color-silver { background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%); }
.color-gold { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); }

.size-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.size-option {
    padding: 1rem 2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.size-option:hover {
    border-color: #33d5f3;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(51, 213, 243, 0.2);
}

.size-option.active {
    border-color: #33d5f3;
    background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(51, 213, 243, 0.3);
    transform: translateY(-2px);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    max-width: 180px;
    background: #ffffff;
}

.quantity-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
}

.quantity-btn:hover {
    background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
    color: #ffffff;
}

.quantity-input {
    flex: 1;
    text-align: center;
    border: none !important;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #ffffff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(51, 213, 243, 0.4);
}

.cart-icon {
    width: 24px;
    height: 24px;
}

/* Full Width Product Tabs */
.product-tabs-full-width {
    width: 100%;
    background: #f8fafc;
    margin-top: 0;
    padding: 4rem 0;
    position: relative;
}

.product-tabs-full-width::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.product-tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tab-navigation {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e2e8f0;
    justify-content: center;
    background: #ffffff;
    border-radius: 6px 6px 0 0;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tab-button {
    flex: 1;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #64748b;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-button:hover {
    color: #33d5f3;
    background: rgba(51, 213, 243, 0.1);
}

.tab-button.active {
    color: #ffffff;
    background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
    border-radius: 6px 6px 0 0;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
    border-radius: 2px 2px 0 0;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    padding: 3rem;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tab-content.active {
    display: block !important;
}

/* Ensure first tab is visible by default */
.tab-content[data-tab="description"] {
    display: block;
}

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

.tab-content h3 {
    font-family: 'Nippo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tab-content h3:first-child {
    margin-top: 0;
}

.tab-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.product-full-description {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-full-description p {
    margin-bottom: 1.5rem;
}

.product-full-description h1,
.product-full-description h2,
.product-full-description h3,
.product-full-description h4,
.product-full-description h5,
.product-full-description h6 {
    font-family: 'Nippo', sans-serif;
    font-weight: 700;
    color: #0f172a;
    margin: 2rem 0 1rem 0;
}

.product-full-description h1 { font-size: 1.8rem; }
.product-full-description h2 { font-size: 1.6rem; }
.product-full-description h3 { font-size: 1.4rem; }
.product-full-description h4 { font-size: 1.2rem; }
.product-full-description h5 { font-size: 1.1rem; }
.product-full-description h6 { font-size: 1rem; }

.product-full-description ul,
.product-full-description ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.product-full-description li {
    margin-bottom: 0.75rem;
    color: #64748b;
}

.product-full-description strong,
.product-full-description b {
    font-weight: 700;
    color: #0f172a;
}

.product-full-description em,
.product-full-description i {
    font-style: italic;
}

.product-full-description a {
    color: #33d5f3;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.product-full-description a:hover {
    color: #2bc4e0;
    text-decoration: underline;
}

.product-full-description blockquote {
    border-left: 4px solid #33d5f3;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #64748b;
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
}

.product-full-description table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-full-description th,
.product-full-description td {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.product-full-description th {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    font-weight: 600;
    color: #0f172a;
}

/* WooCommerce Integration Styles */
.woocommerce-product-gallery {
    margin: 0 !important;
}

.woocommerce-product-gallery__image {
    margin: 0 !important;
}

.woocommerce-product-gallery__image img {
    border-radius: 24px !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.woocommerce-product-gallery__image:hover img {
    transform: scale(1.08) !important;
}

.woocommerce-product-gallery__trigger {
    display: none !important;
}

.woocommerce-product-gallery__wrapper {
    margin: 0 !important;
}

/* Hide default WooCommerce elements */
.woocommerce-product-gallery__image--placeholder {
    display: none !important;
}

.woocommerce-product-gallery__image--placeholder img {
    display: none !important;
}

/* Custom WooCommerce form styles */
.woocommerce-variation-add-to-cart {
    display: none !important;
}

.woocommerce-variation-price {
    display: none !important;
}

.woocommerce-variation-description {
    display: none !important;
}

.woocommerce-variation-availability {
    display: none !important;
}

.woocommerce-variation {
    display: none !important;
}

.woocommerce-variations {
    display: none !important;
}

.woocommerce-variations-table {
    display: none !important;
}

.woocommerce-variations-add-to-cart {
    display: none !important;
}

.woocommerce-variations-add-to-cart .variations_button {
    display: none !important;
}

.woocommerce-variations-add-to-cart .single_add_to_cart_button {
    display: none !important;
}

.woocommerce-variations-add-to-cart .reset_variations {
    display: none !important;
}

/* Hide default WooCommerce summary */
.summary.entry-summary {
    display: none !important;
}

/* Hide default WooCommerce tabs */
.woocommerce-tabs {
    display: none !important;
}

.woocommerce-Tabs-panel {
    display: none !important;
}

.woocommerce-Tabs-panel--description {
    display: none !important;
}

.woocommerce-Tabs-panel--additional_information {
    display: none !important;
}

.woocommerce-Tabs-panel--reviews {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .single-product-container {
        padding-top: 72px;
    }
    
    .breadcrumb-navigation {
        padding: 1.5rem 32px;
    }
    
    .single-product-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .single-product-images {
        position: static;
        height: auto;
        padding: 1.5rem;
    }
    
    .single-product-details {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .product-title {
        font-size: 2.2rem;
    }
    
    .product-tabs-container {
        padding: 0 1rem;
    }
    
    .tab-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .single-product-container {
        padding: 0;
        padding-top: 64px;
    }
    
    .breadcrumb-navigation {
        padding: 1.5rem 32px;
        font-size: 0.9rem;
    }
    
    .breadcrumb-list {
        flex-wrap: wrap;
    }
    
    .single-product-grid {
        gap: 0;
    }
    
    .single-product-images,
    .single-product-details {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-price {
        font-size: 1.8rem;
    }
    
    .tab-navigation {
        flex-direction: column;
        gap: 0;
    }
    
    .tab-button {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .tab-button:last-child {
        border-bottom: none;
    }
    
    .product-tabs-full-width {
        margin-top: 0;
        padding: 1.5rem 0;
    }
    
    .tab-content h3 {
        font-size: 1.3rem;
    }
    
    .main-image {
        min-height: 350px;
    }
    
    .model-viewer {
        min-height: 350px;
    }
    
    .color-options,
    .size-options {
        flex-wrap: wrap;
    }
    
    .view-toggle-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-navigation {
        padding: 1.5rem 16px;
        font-size: 0.9rem;
    }
    
    .single-product-images,
    .single-product-details {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .color-options,
    .size-options {
        flex-wrap: wrap;
    }
    
    .product-tabs-container {
        padding: 0 0.5rem;
    }
    
    .tab-content {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid #33d5f3;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loading spinner for 3D model */
.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #33d5f3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

/* Additional WooCommerce overrides */
.woocommerce div.product div.summary {
    margin-bottom: 0 !important;
}

.woocommerce div.product div.images {
    margin-bottom: 0 !important;
}

.woocommerce div.product div.images img {
    margin: 0 !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image {
    margin: 0 !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img {
    margin: 0 !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder {
    margin: 0 !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder img {
    margin: 0 !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    margin: 0 !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    margin: 0 !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper img {
    margin: 0 !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
    margin: 0 !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img {
    margin: 0 !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image--placeholder {
    margin: 0 !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image--placeholder img {
    margin: 0 !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__trigger {
    margin: 0 !important;
}

/* Hide sidebar on product pages */
.single-product .widget-area,
.single-product .sidebar,
.single-product aside,
.single-product .widget,
.single-product .widgets,
.single-product .widget_pages,
.single-product .widget_nav_menu,
.single-product .widget_archive,
.single-product .widget_categories,
.single-product .widget_meta,
.single-product .widget_search,
.single-product .widget_recent_entries,
.single-product .widget_recent_comments,
.single-product .widget_rss,
.single-product .widget_text,
.single-product .widget_calendar,
.single-product .widget_tag_cloud {
    display: none !important;
}

/* Hide any WordPress widgets on product pages */
.single-product .wp-block-widget-area,
.single-product .wp-block-template-part,
.single-product .wp-block-group {
    display: none !important;
}

/* Ensure main content takes full width */
.single-product .content-area,
.single-product .main-content,
.single-product .site-main {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide any navigation menus that might appear */
.single-product .navigation,
.single-product .nav-links,
.single-product .post-navigation {
    display: none !important;
}

/* 3D Model Viewer CSS removed - viewer now created dynamically */

/* Hide default WooCommerce breadcrumb */
.woocommerce-breadcrumb,
nav.woocommerce-breadcrumb,
.breadcrumb {
    display: none !important;
}

/* Inline responsive styles for immediate effect - HIGHEST PRIORITY */

        /* Single Product Container */
        .single-product-container {
            width: 1370px;
            max-width: 100%;
            margin: 0 auto;
            padding: 0;
            background: #ffffff;
            font-family: 'Space Grotesk', sans-serif;
        }

        /* Breadcrumb Navigation */
        .breadcrumb-navigation {
            padding: 1.5rem 32px !important;
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 2rem;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            color: #cbd5e1;
            font-weight: 300;
        }

        .breadcrumb-link {
            color: #64748b;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .breadcrumb-link:hover {
            color: #33d5f3;
        }

        .breadcrumb-current {
            color: #0f172a;
            font-weight: 600;
        }

        /* Product Title Section */
        .product-title-section {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .title-and-price {
            flex: 1;
            min-width: 280px;
        }

        /* Product Title */
        .product-title {
            font-family: 'Nippo', sans-serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        /* Certification Image */
        .certification-image {
            flex-shrink: 0;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            margin-top: 0.5rem;
        }

        .certification-img {
            max-width: 150px;
            height: auto;
        }

        /* Lightbox Gallery Styles */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-container {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 6px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        body .breadcrumb-navigation:first-of-type {
            margin-top: 80px !important;
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: -70px;
        }

        .lightbox-next {
            right: -70px;
        }

        .lightbox-counter {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1rem;
            background: rgba(0, 0, 0, 0.5);
            padding: 0.5rem 1rem;
            border-radius: 6px;
            backdrop-filter: blur(10px);
        }

        /* Image gallery container - full available space including thumbnails */
        .image-gallery {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .main-display-container {
            margin-bottom: 0.5rem;
            flex: 1 1 auto;
            min-height: clamp(280px, 50vw, 560px);
        }

        /* View toggle buttons - positioned right after gallery */
        .view-toggle-full-width {
            margin-top: 0;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .main-image {
            position: relative;
            cursor: pointer;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8fafc;
            border-radius: 6px;
            min-height: inherit;
        }

        .main-product-image {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        /* Sale flash styling */
        .main-image .onsale {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: #ffffff;
            padding: 0.75rem;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            text-align: center;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
            min-width: 60px;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1.2;
        }

        .no-image-placeholder {
            width: 100%;
            height: 300px;
            background: #f8fafc;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            font-size: 1.2rem;
            border-radius: 6px;
            border: 2px dashed #e2e8f0;
        }

        /* Thumbnail Gallery Styles */
        .thumbnail-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 0.75rem;
            padding: 0;
            height: auto;
            max-height: none;
            justify-content: flex-start;
        }

        .thumbnail-item {
            position: relative;
            cursor: pointer;
            border-radius: 6px;
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            background: #f8fafc;
            width: 96px;
            height: 96px;
        }

        .thumbnail-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .thumbnail-item:hover {
            border-color: #33d5f3;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(51, 213, 243, 0.2);
        }

        .thumbnail-item:hover img {
            transform: scale(1.05);
        }

        .thumbnail-item.active {
            border-color: #33d5f3;
            box-shadow: 0 4px 12px rgba(51, 213, 243, 0.3);
        }

        .thumbnail-item:hover {
            border-color: #33d5f3;
            transform: scale(1.05);
            transition: all 0.2s ease;
        }

        .thumbnail-item {
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .thumbnail-item.active::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(51, 213, 243, 0.1);
            pointer-events: none;
        }

        /* Specific styles for different number of thumbnails */
        .thumbnail-gallery:has(.thumbnail-item:nth-child(1):last-child) {
            grid-template-columns: 80px;
            justify-content: flex-start;
        }

        .thumbnail-gallery:has(.thumbnail-item:nth-child(2):last-child) {
            grid-template-columns: repeat(2, 80px);
            justify-content: flex-start;
        }

        .thumbnail-gallery:has(.thumbnail-item:nth-child(3):last-child) {
            grid-template-columns: repeat(3, 80px);
            justify-content: flex-start;
        }

        .thumbnail-gallery:has(.thumbnail-item:nth-child(4):last-child) {
            grid-template-columns: repeat(4, 80px);
            justify-content: flex-start;
        }

        /* Fallback for browsers without :has() support */
        .thumbnail-gallery.thumbnails-1 {
            grid-template-columns: 80px;
            justify-content: flex-start;
        }

        .thumbnail-gallery.thumbnails-2 {
            grid-template-columns: repeat(2, 80px);
            justify-content: flex-start;
        }

        .thumbnail-gallery.thumbnails-3 {
            grid-template-columns: repeat(3, 80px);
            justify-content: flex-start;
        }

        .thumbnail-gallery.thumbnails-4 {
            grid-template-columns: repeat(4, 80px);
            justify-content: flex-start;
        }

        /* Main image hover effects */
        .main-image {
            position: relative;
            cursor: pointer;
        }

        .main-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
            border-radius: 6px;
        }

        .main-image::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 32px;
            height: 32px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 3;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
        }

        .main-image:hover::before {
            opacity: 1;
        }

        .main-image:hover::after {
            opacity: 1;
        }

        .main-image img {
            z-index: 1;
            position: relative;
        }

        /* 3D Model Viewer */
        .model-viewer {
            border-radius: 6px;
            overflow: hidden;
        }

        /* Product Price Section */
        .product-price-section {
            margin-bottom: 1.5rem;
        }

        .price-main {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .product-price {
            font-family: 'Nippo', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #000;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .product-price .amount {
            background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .product-price del {
            color: #94a3b8;
            font-size: 1.4rem;
            font-weight: 400;
        }

        .product-price ins {
            text-decoration: none;
        }

        .price-without-vat {
            font-size: 0.9rem;
            color: #64748b;
            font-weight: 500;
        }

        /* Product Availability Section */
        .product-availability-section {
            margin-bottom: 2rem;
        }

        .availability {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1rem;
        }

        .availability.in-stock {
            background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
            color: #059669;
            border: 1px solid rgba(5, 150, 105, 0.2);
        }

        .availability.out-of-stock {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            color: #dc2626;
            border: 1px solid rgba(220, 38, 38, 0.2);
        }

        .availability-icon {
            width: 20px;
            height: 20px;
        }

        /* Inline Availability */
        .availability-inline {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-top: 0.75rem;
        }

        .availability-inline.in-stock {
            background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
            color: #059669;
            border: 1px solid rgba(5, 150, 105, 0.2);
        }

        .availability-inline.out-of-stock {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            color: #dc2626;
            border: 1px solid rgba(220, 38, 38, 0.2);
        }

        main ul li {
            padding: 6px 0 6px 0px !important;
        }


        /* Product Description */
        .product-description {
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border-radius: 6px;
        }

        .description-content {
            color: #64748b;
            line-height: 1.6;
            font-size: 1rem;
        }

        .description-content p {
            margin-bottom: 1rem;
        }

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

        /* Trust Indicators */
        .trust-indicators {
            margin-top: 1.5rem;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Override Tailwind input padding */
        input:not([type=radio]):not([type=checkbox]):not([type=submit]),
        textarea {
            padding: 0 !important;
        }

        /* Quantity selector styles */
        .quantity-selector {
            display: flex;
            align-items: center;
            border-radius: 6px;
            overflow: hidden;
            max-width: 120px;
            background: #ffffff;
            border: 2px solid #e2e8f0;
            margin-bottom: 1rem;
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            border: none;
            background: #f8fafc;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            font-weight: 600;
            color: #64748b;
        }

        .quantity-btn:hover {
            background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
            color: #ffffff;
        }

        /* Quantity input centering */
        .quantity-input {
            flex: 1;
            text-align: center !important;
            border: none !important;
            padding: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            background: #ffffff;
            color: #0f172a;
            display: block !important;
            margin: 0 !important;
            height: 40px;
            line-height: 40px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: #f8fafc;
            border-radius: 6px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .trust-item:hover {
            border-color: #33d5f3;
            background: #fef8e1;
        }

        .trust-icon {
            width: 16px;
            height: 16px;
            color: #33d5f3;
            flex-shrink: 0;
        }

        .trust-item span {
            color: #64748b;
            font-size: 0.8rem;
            font-weight: 500;
        }



        /* Product Features */
        .product-features {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e2e8f0;
        }



        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 0.75rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 0.75rem;
            background: #ffffff;
            border-radius: 6px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            color: #33d5f3;
            flex-shrink: 0;
        }

        .feature-item span {
            font-size: 0.9rem;
            color: #64748b;
            font-weight: 500;
        }

        /* Responsive Design for Product Details */
        @media (max-width: 1200px) and (min-width: 750px) {
            .main-display-container {
                min-height: clamp(260px, 45vw, 480px);
            }

            .thumbnail-item {
                width: 88px;
                height: 88px;
            }
        }

        /* Specifické styly pro iPhone a zařízení s notchem */
        @supports (padding: max(0px)) {
            .single-product-container {
                padding-top: 0;
            }
        }

        /* iPhone 11 Pro a podobná zařízení */
        @media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
            .single-product-container {
                padding-top: 0;
            }
        }

        /* iPhone 12/13/14 Pro a podobná zařízení */
        @media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
            .single-product-container {
                padding-top: 0;
            }
        }

        /* Obecné styly pro zařízení s notchem */
        @media screen and (max-width: 768px) and (orientation: portrait) {
            .single-product-container {
                padding-top: 0;
            }
        }

        @media (max-width: 1024px) {
            .single-product-container {
                padding-top: 0;
            }

            .breadcrumb-navigation {
                padding: 1.5rem 32px;
                width: 100%;
                margin-top: 0;
            }

            .top-products-list,
            .shop-controls,
            .products-grid {
                padding-left: 32px;
                padding-right: 32px;
            }

            .product-title-section {
                gap: 1rem;
            }

            .title-and-price {
                min-width: 250px;
            }

            .product-price {
                font-size: 2rem;
            }

            .certification-img {
                max-width: 135px;
            }

            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 0.75rem;
            }

            .trust-indicators {
                justify-content: center;
            }

            .main-display-container {
                min-height: clamp(240px, 50vw, 420px);
            }

            .thumbnail-item {
                width: 84px;
                height: 84px;
            }
        }

        @media (max-width: 768px) {
            .product-title-section {
                gap: 0.75rem;
            }

            .title-and-price {
                min-width: 180px;
            }

            .certification-img {
                max-width: 112px;
            }

            .main-display-container {
                min-height: clamp(220px, 55vw, 380px);
            }

            .thumbnail-item {
                width: 76px;
                height: 76px;
            }
        }

        @media (max-width: 640px) {
            .single-product-container {
                padding-top: 0;
            }

            .breadcrumb-navigation {
                padding: 1.5rem 32px !important;
                font-size: 0.8rem;
                width: 100%;
                margin-top: 0;
            }

            .breadcrumb-list {
                gap: 0.25rem;
            }

            .breadcrumb-link {
                font-size: 0.8rem;
            }

            .breadcrumb-current {
                font-size: 0.8rem;
            }

            /* Single Product Layout */
            .single-product-grid {
                display: block !important;
                gap: 0 !important;
            }

            /* Ensure proper stacking order for mobile */
            .single-product-images {
                position: relative;
                z-index: 10;
                margin-bottom: 1rem;
            }

            .single-product-details {
                position: relative;
                z-index: 5;
            }



            .single-product-details {
                padding: 0 16px;
            }

            .product-title-section {
                flex-direction: row;
                gap: 1rem;
                align-items: flex-start;
                text-align: left;
            }

            .title-and-price {
                flex: 1;
                min-width: 200px;
            }

            .product-title {
                font-size: 1.8rem !important;
                margin-bottom: 0.75rem !important;
                margin-top: 0.5rem !important;
            }

            .certification-image {
                margin-top: 0.25rem;
            }

            .certification-img {
                max-width: 120px;
            }

            .product-price {
                font-size: 1.8rem;
                margin-bottom: 0.75rem;
            }

            .product-description {
                font-size: 0.9rem;
                line-height: 1.5;
                margin-bottom: 1rem;
            }

            .product-actions {
                flex-direction: column;
                gap: 0.75rem;
                margin-bottom: 1rem;
            }

            .quantity-selector {
                width: 100%;
                justify-content: center;
            }

            .add-to-cart-btn {
                width: 100%;
                padding: 0.875rem 1rem;
                font-size: 1rem;
            }

            .product-meta {
                flex-direction: column;
                gap: 0.5rem;
                margin-top: 0.75rem;
                margin-bottom: 1rem;
            }

            .product-meta-item {
                font-size: 0.875rem;
            }

            .trust-indicators {
                flex-direction: column;
                gap: 0.5rem;
                margin-top: 1rem;
                margin-bottom: 1rem;
            }

            .trust-indicator {
                padding: 0.75rem;
                text-align: center;
            }

            .trust-indicator-icon {
                width: 32px;
                height: 32px;
                margin-bottom: 0.5rem;
            }

            .trust-indicator-text {
                font-size: 0.75rem;
            }

            .product-features {
                margin-top: 1rem;
                padding-top: 1rem;
                margin-bottom: 1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .feature-item {
                padding: 0.75rem;
                text-align: center;
            }

            .feature-icon {
                width: 32px;
                height: 32px;
                margin-bottom: 0.5rem;
            }

            .feature-item span {
                font-size: 0.75rem;
            }

            /* Image gallery mobile layout */
            .image-gallery {
                margin-bottom: 1rem;
                position: relative;
                z-index: 15;
            }

            .main-display-container {
                margin-bottom: 0.5rem;
                position: relative;
                z-index: 12;
            }

            .product-gallery {
                position: relative;
                z-index: 15;
            }

            /* Thumbnail gallery mobile */
            .thumbnail-gallery {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                -ms-overflow-style: none;
                gap: 0.5rem;
                padding: 0 1rem;
                height: 60px;
                margin-top: 0.5rem;
                margin-bottom: 1rem;
                flex-wrap: nowrap;
            }

            .thumbnail-item {
                flex: 0 0 50px;
                width: 50px;
                height: 50px;
                scroll-snap-align: start;
            }

            .thumbnail-gallery::-webkit-scrollbar {
                display: none;
            }

            /* View toggle buttons - ensure proper spacing */
            .view-toggle-full-width {
                margin-top: 0;
                margin-bottom: 1rem;
                position: relative;
                z-index: 20;
                background: #ffffff;
                padding: 0.5rem;
                border-radius: 8px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            }

            .view-toggle {
                gap: 0.5rem;
            }

            .view-toggle-btn {
                padding: 0.75rem 1rem;
                font-size: 0.875rem;
            }
        }

        @media (max-width: 480px) {
            .single-product-container {
                padding-top: 0;
            }

            .breadcrumb-navigation {
                padding: 1.5rem 32px !important;
                font-size: 0.75rem;
                margin-bottom: 0.75rem;
                width: 100%;
                margin-top: 0;
            }

            .breadcrumb-list {
                gap: 0.2rem;
            }

            .breadcrumb-link {
                font-size: 0.75rem;
            }

            .breadcrumb-current {
                font-size: 0.75rem;
            }

            .single-product-details {
                padding: 0 12px;
            }

            .product-title-section {
                flex-direction: row;
                gap: 0.75rem;
                align-items: flex-start;
                text-align: left;
            }

            .title-and-price {
                flex: 1;
                min-width: 150px;
            }

            .product-title {
                font-size: 1.5rem !important;
                margin-bottom: -1rem !important;
                margin-top: 0.25rem !important;
            }

            .certification-image {
                margin-top: 0.25rem;
                order: 0;
                align-self: flex-start;
            }

            .certification-img {
                max-width: 90px;
            }

            .product-price {
                font-size: 1.6rem;
                margin-bottom: 0.5rem;
            }

            .product-description {
                font-size: 0.85rem;
                line-height: 1.4;
                margin-bottom: 0.75rem;
            }

            .product-actions {
                gap: 0.5rem;
                margin-bottom: 0.75rem;
            }

            .add-to-cart-btn {
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
            }

            .product-meta {
                gap: 0.25rem;
                margin-top: 0.5rem;
                margin-bottom: 0.75rem;
            }

            .product-meta-item {
                font-size: 0.8rem;
            }

            .trust-indicators {
                gap: 0.25rem;
                margin-top: 0.75rem;
                margin-bottom: 0.75rem;
            }

            .trust-indicator {
                padding: 0.5rem;
            }

            .trust-indicator-icon {
                width: 28px;
                height: 28px;
                margin-bottom: 0.25rem;
            }

            .trust-indicator-text {
                font-size: 0.7rem;
            }

            .product-features {
                margin-top: 0.75rem;
                padding-top: 0.75rem;
                margin-bottom: 0.75rem;
            }

            .feature-item {
                padding: 0.5rem;
            }

            .feature-icon {
                width: 28px;
                height: 28px;
                margin-bottom: 0.25rem;
            }

            .feature-item span {
                font-size: 0.7rem;
            }

            /* Image gallery mobile layout */
            .image-gallery {
                margin-bottom: 1rem;
                position: relative;
                z-index: 15;
            }

            .main-display-container {
                margin-bottom: 0.25rem;
                position: relative;
                z-index: 12;
            }

            .product-gallery {
                position: relative;
                z-index: 15;
            }

            /* Thumbnail gallery as horizontal slider on mobile */
            .thumbnail-gallery {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scrollbar-width: none;
                -ms-overflow-style: none;
                gap: 0.5rem;
                padding: 0 1rem;
                height: 50px;
                margin-top: 0.25rem;
                margin-bottom: 0.75rem;
                flex-wrap: nowrap;
            }

            .thumbnail-item {
                flex: 0 0 45px;
                width: 45px;
                height: 45px;
                scroll-snap-align: start;
            }

            .thumbnail-gallery::-webkit-scrollbar {
                display: none;
            }

            /* View toggle buttons - smaller on mobile */
            .view-toggle-full-width {
                margin-top: 0;
                margin-bottom: 0.75rem;
                position: relative;
                z-index: 20;
                background: #ffffff;
                padding: 0.5rem;
                border-radius: 8px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            }

            .view-toggle-btn {
                padding: 0.5rem 0.75rem;
                font-size: 0.8rem;
            }

            /* Lightbox responsive styles */
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
                top: auto;
                bottom: -60px;
                transform: none;
            }

            .lightbox-nav:hover {
                transform: scale(1.1);
            }

            .lightbox-prev {
                left: auto;
                right: 60px;
            }

            .lightbox-next {
                right: 10px;
            }

            .lightbox-close {
                width: 35px;
                height: 35px;
                font-size: 1.3rem;
                top: -40px;
            }

            .lightbox-counter {
                font-size: 0.9rem;
                padding: 0.4rem 0.8rem;
                bottom: -40px;
            }
        }

        /* Page scale on smaller desktop screens (e.g., MacBook) */
        @media (max-width: 1600px) and (min-width: 1024px) {
            .single-product-container {
                zoom: 0.75;
                margin-top: 1.5rem;
                /* kompenzace pro fixní menu při zmenšení */
            }
        }

        /* Fallback for browsers without zoom support */
        @supports not (zoom: 1) {
            @media (max-width: 1600px) and (min-width: 1024px) {
                .single-product-container {
                    transform: scale(0.75);
                    transform-origin: top center;
                    width: calc(100% / 0.75);
                    margin-top: 1.5rem;
                    /* kompenzace pro fixní menu při zmenšení */
                }
            }
        }

        /* Related Modules Section */
        .related-modules-section {
            width: 1370px;
            max-width: 100%;
            margin: 0 auto;
            padding: 3rem 32px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-top: 1px solid #e2e8f0;
        }

        .related-modules-container {
            max-width: 100%;
        }

        .related-modules-header {
            text-align: left;
            margin-bottom: 2.5rem;
        }

        .related-modules-title {
            font-family: 'Nippo', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.75rem;
            line-height: 1.2;
            position: relative;
        }

        .related-modules-title::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
            border-radius: 2px;
        }

        .related-modules-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            margin: 0;
            font-weight: 500;
        }

        .related-modules-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .related-module-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid rgba(226, 232, 240, 0.5);
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .related-module-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            border-color: #33d5f3;
            transform: translateY(-2px);
        }

        /* Product Image Container - same as archive-product.php */
        .related-module-card .product-image-container {
            position: relative;
            height: 340px;
            background: #ffffff !important;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }

        .related-module-card .product-image {
            max-width: 100% !important;
            max-height: 100% !important;
            width: auto !important;
            height: auto !important;
            object-fit: contain !important;
            display: block !important;
            margin: 0 auto !important;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .related-module-card:hover .product-image {
            transform: scale(1.05);
        }

        /* Sale Badge - same as archive-product.php */
        .related-module-card .onsale {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: #ffffff;
            padding: 0.75rem;
            border-radius: 25%;
            font-size: 0.8rem;
            font-weight: 600;
            text-align: center;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
            min-width: 60px;
            min-height: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            line-height: 1.2;
        }

        /* Product Info - same as archive-product.php */
        .related-module-card .product-info {
            padding: 1.25rem;
            margin-bottom: 0;
        }

        .related-module-card .product-title {
            font-family: 'Nippo', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 0.5rem;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .related-module-card:hover .product-title {
            color: #33d5f3;
        }

        .related-module-card .product-price {
            font-family: 'Nippo', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .related-module-card .product-price .amount {
            background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .related-module-card .product-price del {
            color: #94a3b8;
            font-size: 1rem;
            font-weight: 400;
        }

        .related-module-card .product-price ins {
            text-decoration: none;
        }

        .related-module-card .product-availability-grid {
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .related-module-card .product-availability-grid.in-stock {
            color: #059669;
        }

        .related-module-card .product-availability-grid.out-of-stock {
            color: #dc2626;
        }

        .related-module-card .price-without-vat-grid {
            font-size: 0.8rem;
            color: #64748b;
            margin-bottom: 1rem;
        }

        /* Add to Cart Container - same as archive-product.php */
        .related-module-card .add-to-cart-container {
            padding: 0 1.25rem 1.25rem 1.25rem;
            position: relative;
            z-index: 10;
        }

        .related-module-card .quantity-selector {
            display: flex;
            align-items: center;
            border-radius: 6px;
            overflow: hidden;
            max-width: 120px;
            background: #ffffff;
            border: 2px solid #e2e8f0;
            margin-bottom: 0.5rem;
        }

        .related-module-card .quantity-btn {
            width: 40px;
            height: 40px;
            border: none;
            background: #f8fafc;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            font-weight: 600;
            color: #64748b;
        }

        .related-module-card .quantity-btn:hover {
            background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
            color: #ffffff;
        }

        .related-module-card .quantity-input {
            flex: 1;
            text-align: center;
            border: none !important;
            padding: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            background: #ffffff;
            color: #0f172a;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 !important;
        }

        .related-module-card .add-to-cart-btn {
            width: 100%;
            padding: 1rem 1.5rem;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #ffffff;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .related-module-card .add-to-cart-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .related-module-card .add-to-cart-btn:hover::before {
            left: 100%;
        }

        .related-module-card .add-to-cart-btn:hover {
            background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(51, 213, 243, 0.3);
        }

        .related-module-card .cart-icon {
            width: 18px;
            height: 18px;
        }


        /* Responsive Design for Related Modules */
        @media (max-width: 1024px) {
            .related-modules-section {
                padding: 2.5rem 32px;
            }

            .related-modules-title {
                font-size: 1.3rem;
            }

            .related-modules-subtitle {
                font-size: 1rem;
            }

            .related-modules-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .related-module-card .product-image-container {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .related-modules-section {
                padding: 2rem 16px;
            }

            .related-modules-title {
                font-size: 1.2rem;
            }

            .related-modules-subtitle {
                font-size: 0.95rem;
            }

            .related-modules-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .related-module-card .product-image-container {
                height: 250px;
            }
        }

        @media (max-width: 640px) {
            .related-modules-section {
                padding: 1.5rem 16px;
            }

            .related-modules-header {
                margin-bottom: 2rem;
            }

            .related-modules-title {
                font-size: 1.1rem;
            }

            .related-modules-subtitle {
                font-size: 0.9rem;
            }

            .related-modules-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-bottom: 1.5rem;
            }

            .related-module-card .product-image-container {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .related-modules-section {
                padding: 1.25rem 12px;
            }

            .related-modules-title {
                font-size: 1rem;
            }

            .related-modules-subtitle {
                font-size: 0.85rem;
            }

            .related-modules-grid {
                gap: 0.875rem;
                margin-bottom: 1.25rem;
            }

            .related-module-card .product-image-container {
                height: 180px;
            }

            .related-module-card .product-title {
                margin-bottom: 0.5rem !important;
            }
        }

        /* Documents Section Styles */
        .documents-section {
            margin-bottom: 2rem;
        }

        .documents-section h4 {
            font-family: 'Nippo', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
        }

        .documents-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 0.75rem;
        }

        .document-item {
            margin: 0;
        }

        .document-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            text-decoration: none;
            color: #0f172a;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .document-link:hover {
            border-color: #33d5f3;
            box-shadow: 0 4px 12px rgba(51, 213, 243, 0.15);
            transform: translateY(-1px);
            color: #0f172a;
            text-decoration: none;
        }

        .document-icon {
            width: 24px;
            height: 24px;
            color: #ef4444;
            flex-shrink: 0;
        }

        .document-name {
            flex: 1;
            font-weight: 500;
            font-size: 1rem;
        }

        .document-type {
            background: #f1f5f9;
            color: #64748b;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Responsive Documents */
        @media (max-width: 768px) {
            .documents-section h4 {
                font-size: 1.1rem;
            }

            .document-link {
                padding: 0.875rem 1rem;
                gap: 0.5rem;
            }

            .document-icon {
                width: 20px;
                height: 20px;
            }

            .document-name {
                font-size: 0.9rem;
            }

            .document-type {
                font-size: 0.7rem;
                padding: 0.2rem 0.4rem;
            }
        }

        /* Reviews Section Styles */
        .reviews-section {
            width: 1370px;
            max-width: 100%;
            margin: 0 auto;
            padding: 3rem 32px;
            background: #ffffff;
            border-top: 1px solid #e2e8f0;
        }

        .reviews-container {
            max-width: 100%;
            position: relative;
        }

        .reviews-header {
            text-align: left;
            margin-bottom: 2.5rem;
        }

        .reviews-title {
            font-family: 'Nippo', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 0.75rem;
            line-height: 1.2;
            position: relative;
        }

        .reviews-title::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #33d5f3 0%, #2bc4e0 100%);
            border-radius: 2px;
        }

        .reviews-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            margin: 0;
            font-weight: 500;
        }

        .reviews-swiper {
            width: 100%;
            padding: 1rem 0 4rem 0 !important;
            position: relative;
        }

        .review-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-sizing: border-box;
        }

        .review-card:hover {
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-color: #33d5f3;
            transform: translateY(-4px);
        }

        .review-rating {
            margin-bottom: 1.5rem;
            display: flex;
            gap: 2px;
        }

        .review-rating .star {
            font-size: 1.25rem;
        }

        .review-rating .star.filled {
            color: #33d5f3;
        }

        .review-rating .star.empty {
            color: #cbd5e1;
        }

        .review-text-wrap {
            flex-grow: 1;
            margin-bottom: 2rem;
        }

        .review-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.05rem;
            line-height: 1.6;
            color: #334155;
            font-style: italic;
            margin: 0;
        }

        .review-author-wrap {
            border-top: 1px solid #e2e8f0;
            padding-top: 1.25rem;
        }

        .review-author {
            font-family: 'Nippo', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: #0f172a;
            margin: 0 0 0.25rem 0;
        }

        .review-author-info {
            font-size: 0.875rem;
            color: #64748b;
            font-weight: 500;
        }

        /* Swiper custom styling for pagination & navigation */
        .reviews-swiper-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 2rem;
            position: relative;
            height: 40px;
        }

        .reviews-pagination {
            position: static !important;
            width: auto !important;
        }

        .reviews-pagination .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: #cbd5e1;
            opacity: 1;
            margin: 0 6px !important;
            transition: all 0.3s ease;
            border-radius: 9999px;
        }

        .reviews-pagination .swiper-pagination-bullet-active {
            background: #33d5f3;
            width: 24px;
        }

        .reviews-nav-btn {
            position: absolute !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            width: 44px !important;
            height: 44px !important;
            border-radius: 50% !important;
            background: #ffffff !important;
            border: 1px solid #e2e8f0 !important;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
            transition: all 0.3s ease !important;
            margin: 0 !important;
        }

        .reviews-nav-btn::after {
            font-size: 1.1rem !important;
            color: #0f172a !important;
            font-weight: bold !important;
        }

        .reviews-nav-btn:hover {
            background: #33d5f3 !important;
            border-color: #33d5f3 !important;
            box-shadow: 0 4px 15px rgba(51, 213, 243, 0.4) !important;
        }

        .reviews-nav-btn:hover::after {
            color: #ffffff !important;
        }

        .reviews-prev {
            left: 0 !important;
        }

        .reviews-next {
            right: 0 !important;
        }

        /* Responsive overrides */
        @media (max-width: 1400px) {
            .reviews-section {
                padding: 3rem 24px;
            }
        }

        @media (max-width: 1024px) {
            .review-card {
                padding: 2rem;
            }
        }

        @media (max-width: 640px) {
            .reviews-section {
                padding: 1.5rem 16px;
            }
            .reviews-header {
                margin-bottom: 2rem;
            }
            .reviews-title {
                font-size: 1.1rem;
            }
            .reviews-subtitle {
                font-size: 0.9rem;
            }
            .review-card {
                padding: 1.5rem;
            }
            .reviews-nav-btn {
                display: none !important;
            }
        }

        @media (max-width: 480px) {
            .reviews-section {
                padding: 1.25rem 12px;
            }
            .reviews-title {
                font-size: 1rem;
            }
            .reviews-subtitle {
                font-size: 0.85rem;
            }
        }