/* CSS Variables */
:root {
    --primary-color: #0056b3;
    --primary-light: #4a90e2;
    --primary-dark: rgba(0, 86, 179, 0.9);
    --accent-green: #89BC23;
    --accent-gold: #cd9900;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --background: #ffffff;
    --surface: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 86, 179, 0.08);
    --shadow: 0 8px 25px rgba(0, 86, 179, 0.12);
    --shadow-lg: 0 15px 35px rgba(0, 86, 179, 0.15);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --phf-text-color: #5a6678;
    --phf-strong-color: #333d4b;
    --phf-border-color: #e9ecef;
}

body:is(
  [class*="fullpage_configuration"],
  .printq-image_editor,
  .printq-personalization,
  .printq-upload_personalization_configuration,
  .printq-upload_personalization_configuration_packaging
) #maincontent::before {
  margin: 30px;
}



.container_detail {
    max-width: 1200px;
    margin: 0 auto;
}

/* USP Banner */
.usp-banner {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 3rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 86, 179, 0.08);
}

.usp-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
}

.usp-banner h2 {
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.usp-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.usp-item {
    display: flex;
    align-items: flex-start;
    padding: 0;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    transition: transform 0.3s ease;
}

.usp-icon-wrapper {
    background-color: rgb(72 72 72 / 11%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.usp-item:hover .usp-icon-wrapper {
    background-color: rgba(137, 188, 35, 0.2);
    transform: translateY(-3px);
}

.usp-icon {
    color: #89BC23;
    width: 24px;
    height: 24px;
    stroke-width: 2px;
}

.usp-text {
    text-align: left;
}

.usp-title {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.usp-description {
    font-size: 13px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
}

/* Product Content */
.product-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-gallery {
    position: relative;
}

.main-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 0.55rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(0, 86, 179, 0.08);
}

.main-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.thumbnail-images {
    display: flex;
    gap: 0.55rem;
    justify-content: center;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
    border: 3px solid transparent;
    box-shadow: var(--shadow-sm);
}

.thumbnail:hover, .thumbnail.active {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.thumbnail.active {
    border-color: var(--accent-gold);
    opacity: 1;
}

.product-description {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 86, 179, 0.08);
}

.product-description h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    line-height: 1.2;
}

.product-description h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

.features-list {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.feature:hover {
    background-color: rgba(137, 188, 35, 0.05);
}

.feature i {
    color: var(--accent-green);
    font-size: 1rem;
    margin-right: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}
.product-social-links{
    display:none;
}

.feature p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 300;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-width: 140px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.secondary-btn {
    background-color: var(--accent-gold);
    color: var(--white);
}

.secondary-btn:hover {
    background-color: #b8850a;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Reviews Section */
.reviews-section {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
}

.reviews-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.75rem;
}

.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.rating-stars {
    font-size: 1.75rem;
    color: #ffc107;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.rating-stars span {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 600;
    margin-left: 0.5rem;
    letter-spacing: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    position: relative;
}

.review-card {
    background-color: var(--background);
    padding: 1.75rem;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.1;
}


.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 1rem;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.name {
    font-weight: 600;
    color: var(--text-color);
    margin: 5px;
    text-align: center;
}

.review-rating {
    color: #ffc107;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-content {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .usp-list {
        flex-wrap: wrap;
        justify-content: flex-start;
        justify-content: center;
    }

    .usp-item {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .usp-banner {
        padding: 2rem 1rem;
    }

    .usp-banner h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .usp-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .usp-item {
        padding: 1.5rem;
    }

    .product-description {
        padding: 1.5rem;
    }

    .product-description h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .feature {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    .reviews-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .reviews-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .reviewer {
        align-items: center;
    }

    .avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .review-rating {
        font-size: 1.1rem;
    }

    .review-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0.75rem;
    }

    .usp-banner {
        padding: 1.5rem 0.75rem;
    }

    .usp-banner h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .tagline {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .usp-list {
        gap: 1rem;
        justify-content: center;
    }

    .usp-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .usp-icon-wrapper {
        width: 45px;
        height: 45px;
        margin: 0 auto 0.75rem;
    }

    .usp-icon {
        width: 18px;
        height: 18px;
    }

    .usp-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .usp-description {
        font-size: 0.85rem;
    }

    .product-gallery {
        margin-bottom: 1.5rem;
    }

    .main-image {
        height: 250px;
        margin-bottom: 1rem;
    }

    .thumbnail-images {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .product-description {
        padding: 1rem;
    }

    .product-description h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .features-list {
        gap: 0.75rem;
    }

    .feature {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
    }

    .feature i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }

    .feature h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .feature p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .reviews-section {
        padding: 1rem;
    }

    .reviews-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .review-card {
        padding: 1rem;
    }

    .review-header {
        gap: 0.75rem;
    }

    .avatar {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
        margin-right: 0.75rem;
    }

    .name {
        font-size: 0.9rem;
    }

    .review-rating {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}



.material-title {
    text-align: center;
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.material-entry {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-divider);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
}

.material-entry:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

@media (min-width: 700px) {
    .material-entry {
        flex-direction: row;
        gap: 30px;
    }
    .material-entry:nth-child(even) .material-image-wrapper {
        order: 2;
        align-self: center;
    }
     .material-entry:nth-child(even) .material-content-wrapper {
        order: 1;
    }
}

.material-image-wrapper {
    flex: 0 0 280px;
    margin-bottom: 20px;
    align-self: flex-start;
}

@media (min-width: 700px) {
    .material-image-wrapper {
        margin-bottom: 0;
    }
}

.material-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
    background-color: #f8f8f8;
    border-radius: 15px;
}

.material-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.material-name  {
    font-size: 1.7em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--color-accent);
}
.reviews-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #cd9900;
    border-radius: 2px;

}

.material-summary {
    font-size: 0.95em;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.material-details-container {
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

@media (min-width: 500px) { 
     .material-details-container {
        flex-direction: row;
        gap: 30px; 
    }
    .material-details-container > div {
        flex: 1; 
    }
}

.material-details-container h4 {
    font-size: 1em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.material-details-container ul {
    list-style: disc;
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
    font-size: 0.9em;
    color: var(--color-text-secondary);
}

.material-details-container ul li {
    margin-bottom: 5px;
    display: list-item !important;
    list-style: disc !important;
}

.material-details-container ul li strong {
    font-weight: 500;
    color: var(--color-text-primary);
}

@media (max-width: 699px) {
    .material-title { font-size: 1.8em; }
    .material-name { font-size: 1.5em; }
    .material-image-wrapper { flex-basis: auto; width: 100%;}
    .material-image-wrapper img { max-height: 180px; }
}
@media (max-width: 499px) {
    .material-details-container {
        gap: 15px; 
    }
}

 /* Contact Section inside USP banner */
        .contact-inner {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 86, 179, 0.1);
            text-align: center;
        }
        
        .contact-heading {
            font-size: 0.95rem;
            color: #7f8c8d;
            margin-bottom: 1rem;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        
        .contact-items {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2.5rem;
            flex-wrap: wrap;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.95rem;
            color: #2c3e50;
            transition: transform 0.3s ease;
            background: rgba(255, 255, 255, 0.7);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            backdrop-filter: blur(5px);
        }
        
        .contact-item:hover {
            transform: translateY(-2px);
        }
        
        .contact-item i {
            color: #0056b3;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        
        .contact-item:hover i {
            color: #89BC23;
        }
        
        .contact-item a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .contact-item a:hover {
            color: #0056b3;
        }
        
        /* Content Info Section */
        .content-info-section {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 3rem 2rem;
            margin-bottom: 4rem;
            box-shadow: 0 8px 25px rgba(0, 86, 179, 0.12);
            border: 1px solid rgba(0, 86, 179, 0.08);
        }
        
        .info-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .info-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .info-header h2 {
            font-size: 2.2rem;
            font-weight: 600;
            color: #0056b3;
            margin-bottom: 0.75rem;
            letter-spacing: -0.5px;
            position: relative;
            padding-bottom: 0.75rem;
        }
        
        .info-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background-color: #cd9900;
            border-radius: 2px;
        }
        
        .info-subtitle {
            font-size: 1.1rem;
            color: #7f8c8d;
            font-weight: 300;
        }
        
        .info-content-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            align-items: start;
        }
        
        .info-text-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .info-paragraph h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.75rem;
        }
        
        .info-paragraph p {
            font-size: 1rem;
            line-height: 1.7;
            color: #666666;
        }
        
        .info-paragraph strong {
            color: #2c3e50;
            font-weight: 600;
        }
        .info-visual-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .info-image-wrapper {
            position: relative;
            border-radius: 12px;
            overflow: visible;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .info-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        
        .small-banner-label {
            position: absolute;
            top: -10px;
            right: 20px;
            background: linear-gradient(135deg, #cd9900 0%, #e6ac00 100%);
            color: #ffffff;
            padding: 0.5rem 1.25rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 20px;
            box-shadow: 0 4px 10px rgba(205, 153, 0, 0.3);
            z-index: 10;
        }
        
        .info-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.5rem;
            margin-top: 2rem;
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .stat-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 50%;
            background: rgba(0, 86, 179, 0.1);
        }
        
        .stat-item:last-child::after {
            display: none;
        }
        
        .stat-item:hover .stat-number {
            color: #89BC23;
            transform: scale(1.05);
        }
        
        .stat-number {
            font-size: 1.5rem;
            font-weight: 300;
            color: #0056b3;
            margin-bottom: 0.25rem;
            transition: all 0.3s ease;
            letter-spacing: -1px;
        }
        
        .stat-label {
            font-size: 0.85rem;
            color: #7f8c8d;
            line-height: 1.3;
            font-weight: 400;
        }
        
        .info-bottom-content {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 86, 179, 0.08);
        }
        
        .info-bottom-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: #666666;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .info-bottom-content strong {
            color: #2c3e50;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .content-info-section {
                padding: 2.5rem 1.5rem;
                margin-bottom: 2rem;
            }
            
            .info-header h2 {
                font-size: 1.75rem;
            }
            
            .info-subtitle {
                font-size: 1rem;
            }
            
            .info-content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .info-paragraph h3 {
                font-size: 1.2rem;
            }
            
            .info-paragraph p,
            .info-bottom-content p {
                font-size: 0.95rem;
            }
            
            .info-visual-content {
                order: -1;
            }
            
            .info-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.25rem;
                margin-top: 1.5rem;
            }
            
            .stat-item {
                padding: 0.75rem 0.25rem;
            }
            
            .stat-item::after {
                height: 40%;
            }
            
            .stat-number {
                font-size: 1.75rem;
            }
            
            .stat-label {
                font-size: 0.75rem;
            }
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 3rem 2rem;
            margin-bottom: 4rem;
            box-shadow: 0 8px 25px rgba(0, 86, 179, 0.12);
            border: 1px solid rgba(0, 86, 179, 0.08);
        }
        
        .faq-section h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #0056b3;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .faq-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #cd9900;
            border-radius: 2px;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid rgba(0, 86, 179, 0.08);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 4px 15px rgba(0, 86, 179, 0.1);
        }
        
        .faq-question {
            background-color: #f8f9fa;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
            user-select: none;
        }
        
        .faq-question:hover {
            background-color: #e9ecef;
        }
        
        .faq-item.active .faq-question {
            background-color: #0056b3;
            color: #ffffff;
        }
        
        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            color: #2c3e50;
            flex: 1;
        }
        
        .faq-item.active .faq-question h3 {
            color: #ffffff;
        }
        
        .faq-icon {
            font-size: 1.2rem;
            color: #0056b3;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
            color: #ffffff;
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background-color: #ffffff;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 1.5rem;
        }
        
        .faq-answer p {
            margin: 0;
            color: #7f8c8d;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .contact-inner {
                margin-top: 2rem;
                padding-top: 2rem;
            }
            
            .contact-heading {
                font-size: 0.85rem;
                margin-bottom: 0.8rem;
            }
            
            .contact-items {
                gap: 1rem;
                flex-direction: column;
            }
            
            .contact-item {
                font-size: 0.9rem;
                padding: 0.6rem 1.2rem;
                width: auto;
            }
            
            .contact-item i {
                font-size: 1rem;
            }
            
            .faq-section {
                padding: 2rem 1rem;
                margin-bottom: 2rem;
            }
            
            .faq-section h2 {
                font-size: 1.75rem;
                margin-bottom: 1.5rem;
            }
            
            .faq-question {
                padding: 1rem 1.25rem;
            }
            
            .faq-question h3 {
                font-size: 1rem;
            }
            
            .faq-item.active .faq-answer {
                padding: 1.25rem;
            }
            
            .faq-answer p {
                font-size: 0.95rem;
            }
        }

.prev-next-products {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: calc(1.125rem - 14px);
    justify-content: flex-end;
    max-width: 1200px; /* nebo šířka podle tvého hlavního obsahu */
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.page-wrapper{
background: #e6f5fe;
}

@keyframes shine-effect {
    0% { transform: translateX(-150%) skewX(-25deg); }
    100% { transform: translateX(150%) skewX(-25deg); }
  }

  .product-header-final {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 48px;
    max-width: 1150px;
    padding: 40px 48px;
    background-color: var(--white);
    border: 1px solid var(--phf-border-color);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden; 
    margin: 10px auto;
  }
  
  .phf-badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    background-color: #cd9900;
    padding: 10px 18px;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 0 12px;
    overflow: hidden; 
  }

  .phf-badge::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 16px 16px 0;
    border-style: solid;
    border-color: transparent #bb8c00 transparent transparent;
    box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.2);
  }
  
  .phf-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    animation: shine-effect 3s ease-in-out infinite;
  }

  .phf-content { display: flex; flex-direction: column; }
  .phf-content h1 { font-size: 2.5rem; font-weight: 800; color: var(--primary-color); margin: 0 0 12px 0; line-height: 1.2; }
  .phf-lead { font-size: 1.125rem; color: var(--phf-text-color); margin: 0 0 28px 0; line-height: 1.6; max-width: 55ch; }
  .phf-lead strong { color: var(--phf-strong-color); font-weight: 700; }

  .phf-usp-bar { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; border-top: 1px solid var(--phf-border-color); padding-top: 24px; }
  .phf-usp-item { position: relative; display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 500; color: var(--phf-text-color); }
  .phf-usp-item:not(:first-child)::before { content: ''; position: absolute; left: -12px; top: 50%; transform: translateY(-50%); width: 1px; height: 20px; background-color: var(--phf-border-color); }
  .phf-usp-icon { max-width: 20px; width: 20px; height: 20px; color: var(--primary-color); }

  .phf-image-wrapper { display: flex; justify-content: center; align-items: center; }
  .phf-image {
    max-width: 240px;
    height: auto;
  }
  
  @media (max-width: 900px) {
    .product-header-final { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
    .phf-content { order: 2; text-align: center; }
    .phf-image-wrapper { order: 1; }
    .phf-lead { max-width: none; }
    .phf-usp-bar { justify-content: center; }
  }
  @media (max-width: 520px) {
    .phf-content h1 { font-size: 2rem; }
    .phf-lead { font-size: 1rem; }
    .phf-usp-bar { flex-direction: column; gap: 16px; align-items: center; }
    .phf-usp-item:not(:first-child)::before { display: none; }
  }

  .matrix_uploadButtonDelete, .matrix_uploadButtonPreview, .matrix_uploadButtonDownload, .matrix_uploadButtonRearrange{
    margin-bottom: 10px;
  }
  .matrix_addToCartButton .btn{
    background-color: #89BC23 !important;
  }
