/**
 * Single Product Page Styles
 * Used for all individual product pages across all sports
 */

/* ---------- PRODUCT HERO SECTION ---------- */
.product-hero {
    position: relative;
    background: #000000;
    padding: 60px 0;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.product-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.product-image-section {
    position: relative;
}

/* Product Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 550px;
}

.gallery-main-image {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.product-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Gallery Thumbnails */
.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
    max-width: 550px;
}

.thumbnail {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.thumbnail:hover {
    border-color: rgba(254, 0, 0, 0.5);
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: #FE0000;
    box-shadow: 0 4px 12px rgba(254, 0, 0, 0.3);
}

.product-info-section {
    color: #ffffff;
}

.product-breadcrumb {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.product-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
    color: var(--accent-red);
}

.product-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.product-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ffffff 0%, #fe0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Product Description --- */
.product-description {
    margin-bottom: 20px;
}

.product-description p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 10px 0;
}

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

/* --- Product Highlights --- */
.product-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.highlight-check {
    width: 16px;
    height: 16px;
    min-width: 16px;
    fill: #FE0000;
    color: #FE0000;
    margin-top: 2px;
}

.highlight-item span {
    font-size: 0.82rem;
    line-height: 1.45;
    color: #ffffff !important;
}

/* Legacy support */
.product-tagline {
    font-size: 0.92rem;
    margin-bottom: 10px;
    opacity: 0.85;
    line-height: 1.6;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.product-features-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent-red);
    color: #ffffff;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.product-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-product-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent-red);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(254, 0, 0, 0.4);
}

.btn-product-primary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(254, 0, 0, 0.6);
}

.btn-product-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-product-secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

/* ---------- CUSTOMIZATION SECTION ---------- */
.customization-section {
    padding: 80px 0;
    background: #ffffff;
}

.customization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.customization-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.customization-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.customization-options {
    display: grid;
    gap: 20px;
}

.customization-option {
    background: var(--accent-light-grey);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-red);
    transition: all 0.3s ease;
}

.customization-option:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.customization-option h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.customization-option p {
    margin: 0;
    color: var(--text-grey);
    font-size: 0.95rem;
}

.customization-visual {
    background: var(--accent-light-grey);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.customization-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ---------- CUSTOMIZATION METHODS SECTION (NEW) ---------- */
.customization-methods-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.customization-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.customization-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 900;
}

.customization-header p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-grey);
}

.customization-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.method-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(254, 0, 0, 0.15);
}

.method-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.method-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.method-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.method-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 700;
}

.method-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-grey);
    margin-bottom: 20px;
    flex: 1;
}

.method-best-for {
    padding: 15px;
    background: var(--accent-light-grey);
    border-radius: 8px;
    border-left: 4px solid var(--accent-red);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.method-best-for strong {
    color: var(--accent-red);
    display: block;
    margin-bottom: 5px;
}

/* Animation delays */
.animation-delay-150 {
    animation-delay: 150ms;
}

.animation-delay-300 {
    animation-delay: 300ms;
}

/* Responsive */
@media (max-width: 968px) {
    .customization-methods-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .method-image {
        height: 240px;
    }
}

@media (min-width: 969px) and (max-width: 1200px) {
    .customization-methods-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .method-image {
        height: 220px;
    }

    .method-content {
        padding: 25px;
    }
}

/* ---------- PRICING SECTION ---------- */
.pricing-section {
    padding: 80px 0;
    background: var(--accent-light-grey);
}

.pricing-section h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.pricing-simple-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.pricing-table {
    border: 2px solid var(--accent-red);
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--accent-red);
    color: #ffffff;
}

.pricing-table-header .pricing-table-cell {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.pricing-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-table-row:last-child {
    border-bottom: none;
}

.pricing-table-row .pricing-table-cell {
    padding: 18px 20px;
    text-align: center;
    font-size: 1.1rem;
}

.pricing-table-row .pricing-table-cell.quantity {
    font-weight: 600;
    color: var(--text-dark);
    background: #f9f9f9;
}

.pricing-table-row .pricing-table-cell.price {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--accent-red);
}

.pricing-table-row .pricing-table-cell.price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-grey);
}

.pricing-includes h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-includes-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-grey);
    line-height: 1.5;
}

.pricing-includes-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--accent-red);
    color: #ffffff;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 2px;
}

.pricing-guarantee {
    background: linear-gradient(90deg, #ffe5e5 0%, #fff5f5 100%);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-red);
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.6;
}

.pricing-guarantee strong {
    color: var(--accent-red);
    font-weight: 700;
}

.pricing-cta-wrapper {
    text-align: center;
}

.btn-pricing-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    background: var(--accent-red);
    color: #ffffff;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(254, 0, 0, 0.4);
}

.btn-pricing-quote:hover {
    background: #000000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

/* ---------- SPECIFICATIONS SECTION ---------- */
.specifications-section {
    padding: 80px 0;
    background: #ffffff;
}

.specifications-section h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 50px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.spec-item {
    background: var(--accent-light-grey);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.spec-icon svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.spec-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.spec-item p {
    margin: 0;
    color: var(--text-grey);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ---------- PRODUCT REVIEWS SECTION ---------- */
.product-reviews-section {
    padding: 80px 0;
    background: #fafafa;
}

.reviews-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.reviews-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    color: var(--text-dark);
    text-transform: uppercase;
    font-weight: 900;
}

.reviews-header p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #ffffff;
    padding: 35px 30px 25px;
    border-radius: 8px;
    border-left: 4px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.review-card:hover {
    border-left-color: var(--accent-red);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.review-quote {
    font-size: 72px;
    line-height: 0;
    color: #e0e0e0;
    font-family: Georgia, serif;
    position: absolute;
    top: 15px;
    left: 15px;
    opacity: 0.3;
}

.review-content {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.review-content p {
    margin: 0;
}

.review-footer {
    margin-top: auto;
}

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    letter-spacing: 1px;
}

.reviewer-details {
    flex: 1;
    min-width: 0;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.reviewer-company {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

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

.review-stars .star {
    color: #ddd;
    font-size: 1rem;
}

.review-stars .star.filled {
    color: #FFA500;
}

.verified-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.no-reviews-message {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px dashed #ddd;
}

.no-reviews-message p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.no-reviews-message a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--accent-red);
}

.no-reviews-message a:hover {
    color: #d40000;
    border-bottom-color: #d40000;
}

/* Auto-scroll animation for reviews */
@keyframes reviewsAutoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive - Mobile Horizontal Scroll with Auto-scroll */
@media (max-width: 768px) {
    .product-reviews-section {
        overflow: hidden;
    }

    .product-reviews-section .container {
        max-width: 100%;
        padding: 0;
        overflow: hidden;
    }

    .reviews-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow: visible !important;
        gap: 15px;
        padding: 15px;
        margin: 0;
        animation: reviewsAutoScroll 25s linear infinite;
    }

    .reviews-grid:hover {
        animation-play-state: paused;
    }

    .review-card {
        flex: 0 0 260px !important;
        min-width: 260px !important;
        max-width: 260px !important;
        width: 260px !important;
        padding: 20px;
    }
}

/* ---------- TRUST BADGES SECTION ---------- */
.trust-badges-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 20px 0;
    border-top: 3px solid var(--accent-red);
    border-bottom: 3px solid var(--accent-red);
    position: relative;
    overflow: hidden;
}

.trust-badges-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: rgba(254, 0, 0, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.trust-badges-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -3%;
    width: 150px;
    height: 150px;
    background: rgba(254, 0, 0, 0.03);
    border-radius: 50%;
    z-index: 1;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: zoomIn 0.6s ease-out backwards;
}

.trust-badge:nth-child(1) {
    animation-delay: 0.1s;
}

.trust-badge:nth-child(2) {
    animation-delay: 0.2s;
}

.trust-badge:nth-child(3) {
    animation-delay: 0.3s;
}

.trust-badge:nth-child(4) {
    animation-delay: 0.4s;
}

.trust-badge:hover .badge-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(254, 0, 0, 0.4);
}

.badge-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-red);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(254, 0, 0, 0.2);
}

.badge-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

/* Zoom In Animation */
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-text {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.badge-subtext {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 968px) {
    .trust-badges {
        gap: 15px;
    }

    .trust-badge {
        flex: 1 1 calc(50% - 15px);
        min-width: 200px;
    }
}

@media (max-width: 520px) {
    .trust-badge {
        flex: 1 1 100%;
    }
}

/* ---------- PROMOTIONAL CREDIT BANNER ---------- */
.promo-credit-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #fe0000 0%, #c00000 100%);
    position: relative;
    overflow: hidden;
}

.promo-credit-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.promo-credit-banner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 40px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.promo-credit-content {
    flex: 1;
    min-width: 250px;
}

.promo-credit-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--accent-red);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.promo-credit-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-red);
    animation: ringBell 2s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes ringBell {
    0%, 10%, 20%, 30%, 100% {
        transform: rotate(0deg);
    }
    5% {
        transform: rotate(-15deg);
    }
    15% {
        transform: rotate(15deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    35% {
        transform: rotate(10deg);
    }
}

.promo-credit-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-credit-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.promo-credit-terms {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

.promo-credit-action {
    display: flex;
    align-items: center;
}

.btn-promo-claim {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: #ffffff;
    color: var(--accent-red);
    border: none;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.btn-promo-claim:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* ---------- PRICING SUBTITLE ---------- */
.pricing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-grey);
    margin: -30px auto 40px;
    max-width: 800px;
    line-height: 1.6;
    font-weight: 500;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .product-hero-content,
    .customization-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-main-image {
        max-width: 100%;
    }

    .pricing-simple-wrapper {
        grid-template-columns: 1fr;
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 40px 0;
    }

    .product-breadcrumb {
        font-size: 0.65rem !important;
        margin-bottom: 10px !important;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .product-description p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        margin-bottom: 8px !important;
    }

    .product-highlights {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
        padding: 12px 0 !important;
        margin-bottom: 16px !important;
    }

    .highlight-item span {
        font-size: 0.75rem !important;
    }

    .highlight-check {
        width: 14px !important;
        height: 14px !important;
        min-width: 14px !important;
    }

    /* Legacy */
    .product-tagline {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }

    .product-features-list li {
        margin-bottom: 5px !important;
        font-size: 0.7rem !important;
    }

    .product-info-section {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    .product-cta-buttons {
        flex-direction: row !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
    }

    .btn-product-primary,
    .btn-product-secondary {
        flex: 1 !important;
        padding: 10px 12px !important;
        font-size: 0.6rem !important;
        justify-content: center !important;
        min-width: auto !important;
        text-align: center !important;
        line-height: 1.3 !important;
    }

    .btn-product-primary svg {
        display: none !important;
    }

    .btn-product-secondary svg {
        width: 14px !important;
        height: 14px !important;
    }

    /* Pricing Section */
    .pricing-subtitle {
        font-size: 0.75rem !important;
        margin: -15px auto 20px !important;
        line-height: 1.4 !important;
    }

    .pricing-section p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }

    .pricing-includes-list {
        text-align: left !important;
        padding-left: 15px !important;
    }

    .pricing-includes-list li {
        font-size: 0.7rem !important;
        text-align: left !important;
    }

    /* Customization Methods Section */
    .customization-methods-section {
        padding: 40px 15px !important;
    }

    .customization-header {
        margin-bottom: 25px !important;
    }

    .customization-header h2 {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
    }

    .customization-header p {
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
    }

    .customization-methods-grid {
        gap: 15px !important;
        margin-top: 20px !important;
    }

    .method-card {
        border-radius: 10px !important;
    }

    .method-image {
        height: 150px !important;
    }

    .method-content {
        padding: 15px !important;
    }

    .method-content h3 {
        font-size: 0.9rem !important;
        margin-bottom: 8px !important;
    }

    .method-description {
        font-size: 0.7rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }

    .method-best-for {
        padding: 10px !important;
        font-size: 0.65rem !important;
        line-height: 1.4 !important;
    }

    /* Product Reviews Section */
    .product-reviews-section {
        padding: 40px 0 !important;
    }

    .reviews-header {
        margin-bottom: 25px !important;
        border: none !important;
        padding-bottom: 0 !important;
    }

    .reviews-header h2 {
        font-size: 1.4rem !important;
        margin-bottom: 8px !important;
        border: none !important;
    }

    .reviews-header p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    .review-card {
        padding: 18px !important;
        border-radius: 8px !important;
        border: 1px solid #e5e5e5 !important;
        border-left: 1px solid #e5e5e5 !important;
    }

    .review-quote {
        font-size: 36px !important;
        top: 8px !important;
        left: 10px !important;
    }

    .review-content {
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }

    .review-footer {
        padding-top: 12px !important;
    }

    .reviewer-info {
        gap: 10px !important;
    }

    .reviewer-avatar {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.65rem !important;
    }

    .reviewer-details strong {
        font-size: 0.8rem !important;
    }

    .reviewer-details span {
        font-size: 0.7rem !important;
    }

    .review-stars {
        font-size: 14px !important;
    }

    .review-stars .star {
        font-size: 14px !important;
    }

    .customization-section,
    .pricing-section,
    .specifications-section {
        padding: 50px 0;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    /* Trust Badges Responsive */
    .trust-badges-section {
        padding: 15px 10px !important;
    }

    .trust-badges {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .trust-badge {
        gap: 8px !important;
    }

    .badge-icon {
        width: 32px !important;
        height: 32px !important;
    }

    .badge-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    .badge-text {
        font-size: 0.65rem !important;
    }

    .badge-subtext {
        font-size: 0.5rem !important;
        display: none !important;
    }

    /* Promo Credit Responsive */
    .promo-credit-section {
        padding: 25px 0;
    }

    .promo-credit-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 15px;
    }

    .promo-credit-badge {
        padding: 4px 12px;
        font-size: 0.65rem;
        margin-bottom: 5px;
    }

    .promo-credit-badge svg {
        width: 12px;
        height: 12px;
    }

    .promo-credit-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
        margin-bottom: 3px;
    }

    .promo-credit-subtitle {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .promo-credit-terms {
        font-size: 0.7rem;
    }

    .btn-promo-claim {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    /* Pricing Simple Responsive */
    .pricing-simple-wrapper {
        padding: 25px 20px;
    }

    .pricing-table-header .pricing-table-cell,
    .pricing-table-row .pricing-table-cell {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .pricing-table-row .pricing-table-cell.price {
        font-size: 1.3rem;
    }

    .pricing-includes h3 {
        font-size: 1.1rem;
    }

    .pricing-includes-list li {
        font-size: 0.9rem;
    }

    .btn-pricing-quote {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 16px 30px;
    }
}

/* ---------- QUALITY GUARANTEE SECTION ---------- */
.quality-guarantee-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.guarantee-header {
    text-align: center;
    margin-bottom: 50px;
}

.guarantee-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    fill: #28a745;
    filter: drop-shadow(0 4px 12px rgba(40, 167, 69, 0.3));
}

.guarantee-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin: 0 0 10px 0;
    font-weight: 800;
}

.guarantee-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin: 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.guarantee-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.guarantee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.15);
    border-top-color: #28a745;
}

.guarantee-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-card-icon svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.guarantee-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    font-weight: 700;
}

.guarantee-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.guarantee-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.guarantee-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #856404;
    margin: 0 0 25px 0;
    text-align: left;
}

.guarantee-note strong {
    color: #856404;
    font-weight: 700;
}

.guarantee-footer .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.guarantee-footer .btn-outline:hover {
    background: var(--accent-red);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .quality-guarantee-section {
        padding: 40px 0;
        overflow: visible;
    }

    .quality-guarantee-section .container {
        overflow: visible;
    }

    .guarantee-header {
        margin-bottom: 25px;
    }

    .guarantee-badge {
        margin-bottom: 12px;
    }

    .guarantee-icon {
        width: 50px;
        height: 50px;
    }

    .guarantee-header h2 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .guarantee-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Horizontal scroll for guarantee cards */
    .guarantee-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: scroll !important;
        overflow-y: hidden !important;
        gap: 12px;
        padding: 15px;
        margin: 0;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .guarantee-grid::-webkit-scrollbar {
        display: none;
    }

    .guarantee-card {
        flex: 0 0 200px !important;
        min-width: 200px !important;
        max-width: 200px !important;
        width: 200px !important;
        padding: 18px 15px;
        scroll-snap-align: start;
    }

    .guarantee-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .guarantee-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .guarantee-card h3 {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .guarantee-card p {
        font-size: 0.7rem;
        line-height: 1.5;
    }

    .guarantee-footer {
        padding-top: 20px;
    }

    .guarantee-footer .btn-outline {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* ---------- PRODUCTION TIMELINE ---------- */
.order-timeline-banner {
    padding: 40px 0;
    background: #FE0000;
    border-top: 3px solid #E00000;
    border-bottom: 3px solid #E00000;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(254, 0, 0, 0.3);
}

.order-timeline-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.timeline-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 850px;
    margin: 0 auto;
    padding: 35px 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    border: 2px solid #f0f0f0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 18px;
    animation: slideInTimeline 0.8s ease-out backwards;
}

.timeline-item:first-child {
    animation-delay: 0.2s;
}

.timeline-item:last-child {
    animation-delay: 0.4s;
}

@keyframes slideInTimeline {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.timeline-icon svg {
    width: 30px;
    height: 30px;
    fill: #666;
}

.timeline-delivery .timeline-icon {
    background: linear-gradient(135deg, var(--accent-red) 0%, #c00000 100%);
    animation: pulseBeat 2s ease-in-out infinite;
}

@keyframes pulseBeat {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(254, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 6px 20px rgba(254, 0, 0, 0.5);
    }
}

.timeline-delivery .timeline-icon svg {
    fill: #ffffff;
    animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.timeline-label {
    font-size: 0.8rem;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-date {
    font-size: 1.15rem;
    color: #333;
    font-weight: 800;
}

.delivery-highlight {
    color: var(--accent-red);
    font-size: 1.2rem;
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.timeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: slideInTimeline 0.8s ease-out 0.3s backwards;
}

.timeline-arrow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ddd 0%, var(--accent-red) 100%);
    top: 50%;
    left: 0;
    animation: lineGrow 2s ease-in-out infinite;
}

@keyframes lineGrow {
    0%, 100% { width: 100%; opacity: 1; }
    50% { width: 80%; opacity: 0.6; }
}

.timeline-arrow svg {
    width: 32px;
    height: 32px;
    fill: var(--accent-red);
    position: relative;
    z-index: 1;
    animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

/* Responsive */
@media (max-width: 768px) {
    .order-timeline-banner {
        padding: 20px 0;
    }

    .timeline-banner-content {
        flex-direction: column;
        gap: 25px;
        padding: 25px 20px;
    }

    .timeline-item {
        width: 100%;
    }

    .timeline-arrow {
        transform: rotate(90deg);
    }

    .timeline-date {
        font-size: 1rem;
    }

    .delivery-highlight {
        font-size: 1.05rem;
    }
}

/* ==================== RELATED PRODUCTS SECTION ==================== */

.related-products-section {
    background: #f9f9f9;
    padding: 80px 0;
    position: relative;
}

.related-products-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.related-products-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.related-products-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.related-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-red);
}

.related-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-red);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.related-product-info {
    padding: 25px 20px;
}

.related-product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 50px;
}

.related-product-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    min-height: 45px;
}

.related-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.pricing-text {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-red);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.related-product-card:hover .view-details-btn {
    gap: 12px;
}

.view-details-btn svg {
    transition: transform 0.3s ease;
}

.related-product-card:hover .view-details-btn svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .related-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .related-products-section {
        padding: 60px 0;
    }

    .related-products-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .related-products-section {
        padding: 40px 0;
    }

    .related-products-section .section-header {
        margin-bottom: 20px;
    }

    .related-products-section .section-title {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .related-products-section .section-subtitle {
        font-size: 0.8rem;
    }

    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .related-product-card {
        border-radius: 8px;
    }

    /* Square image holder */
    .related-product-image {
        height: 0;
        padding-bottom: 100%;
        position: relative;
        background: #fff;
    }

    .related-product-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 10px;
    }

    .related-product-info {
        padding: 8px 10px;
        text-align: center;
    }

    .related-product-title {
        font-size: 0.7rem;
        min-height: auto;
        margin-bottom: 3px;
        font-weight: 600;
        line-height: 1.3;
    }

    .related-product-description {
        display: none;
    }

    .related-product-footer {
        padding: 6px 8px;
        background: #f8f9fa;
        text-align: center;
    }

    .related-product-footer .pricing-text {
        font-size: 0.5rem;
        color: #28a745;
        font-weight: 600;
        display: block;
        margin-bottom: 4px;
    }

    .view-details-btn {
        font-size: 0.55rem;
        padding: 4px 8px;
        border-radius: 4px;
        width: 100%;
        justify-content: center;
    }

    .view-details-btn svg {
        width: 10px;
        height: 10px;
    }
}

/* ==================== COMPACT CONTACT SECTION ==================== */

.contact-compact-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 60px 0;
}

.contact-compact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-compact-content {
    background: white;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid #FE0000;
    position: relative;
    overflow: hidden;
}

.contact-compact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #FE0000;
}

.contact-compact-header {
    margin-bottom: 35px;
}

.contact-compact-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.contact-compact-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.contact-compact-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-compact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 35px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 280px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-compact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.4s ease;
    z-index: 0;
}

.contact-compact-btn:hover::before {
    left: 0;
}

.contact-compact-btn > * {
    position: relative;
    z-index: 1;
}

.phone-btn {
    background: #FE0000;
}

.phone-btn::before {
    background: #E00000;
}

.phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 0, 0, 0.3);
}

.email-btn {
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
}

.email-btn::before {
    background: linear-gradient(135deg, #0055aa 0%, #0088ee 100%);
}

.email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.contact-icon {
    width: 32px;
    height: 32px;
    color: white;
    flex-shrink: 0;
}

.contact-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.contact-compact-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 25px;
    background: #f8f9fa;
    border-radius: 30px;
    display: inline-flex;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.hours-icon {
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-compact-section {
        padding: 35px 0;
        margin: 40px 0;
    }

    .contact-compact-content {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .contact-compact-header h3 {
        font-size: 1.6rem;
    }

    .contact-compact-header p {
        font-size: 1rem;
    }

    .contact-compact-actions {
        flex-direction: column;
        gap: 15px;
    }

    .contact-compact-btn {
        min-width: 100%;
        padding: 18px 25px;
    }

    .contact-value {
        font-size: 1.1rem;
    }

    .contact-compact-hours {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .contact-compact-header h3 {
        font-size: 1.4rem;
    }

    .contact-compact-header p {
        font-size: 0.95rem;
    }

    .contact-icon {
        width: 28px;
        height: 28px;
    }

    .contact-value {
        font-size: 1rem;
    }

    /* Trust Badges 480px */
    .trust-badges-section {
        padding: 12px 8px !important;
    }

    .trust-badges {
        gap: 8px !important;
    }

    .trust-badge {
        gap: 6px !important;
    }

    .badge-icon {
        width: 28px !important;
        height: 28px !important;
    }

    .badge-icon svg {
        width: 14px !important;
        height: 14px !important;
    }

    .badge-text {
        font-size: 0.55rem !important;
    }
}

/* ==================== VERTICAL SHIPPING BADGE ==================== */

.shipping-badge-vertical {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.shipping-badge-content {
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 40px 8px;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 4px 20px rgba(34, 197, 94, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 55px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.shipping-badge-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer-badge 3s infinite;
}

@keyframes shimmer-badge {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.shipping-badge-vertical:hover .shipping-badge-content {
    transform: translateX(-5px);
    box-shadow: -6px 6px 30px rgba(34, 197, 94, 0.6);
}

.shipping-badge-icon {
    width: 32px;
    height: 32px;
    color: white;
    animation: truck-bounce 2s ease-in-out infinite;
}

@keyframes truck-bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5px);
    }
}

.shipping-badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.badge-free {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-shipping {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
}

.badge-included {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.95;
    line-height: 1;
    margin-top: 2px;
}

.shipping-badge-check {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-check 2s ease-in-out infinite;
}

.shipping-badge-check svg {
    width: 20px;
    height: 20px;
    color: #16a34a;
}

@keyframes pulse-check {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .shipping-badge-vertical {
        right: 0;
        top: 40%;
    }

    .shipping-badge-content {
        padding: 35px 7px;
        min-width: 50px;
    }

    .shipping-badge-icon {
        width: 26px;
        height: 26px;
    }

    .badge-free {
        font-size: 1.2rem;
    }

    .badge-shipping {
        font-size: 0.8rem;
    }

    .badge-included {
        font-size: 0.7rem;
    }

    .shipping-badge-check {
        width: 22px;
        height: 22px;
    }

    .shipping-badge-check svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 768px) {
    .shipping-badge-vertical {
        top: auto !important;
        bottom: 180px !important;
        transform: none;
    }

    .shipping-badge-content {
        padding: 30px 6px;
        min-width: 45px;
    }

    .shipping-badge-icon {
        width: 22px;
        height: 22px;
    }

    .badge-free {
        font-size: 1rem;
    }

    .badge-shipping {
        font-size: 0.7rem;
    }

    .badge-included {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .shipping-badge-vertical {
        bottom: 200px !important;
    }

    .shipping-badge-content {
        padding: 25px 6px;
        min-width: 42px;
    }

    .shipping-badge-icon {
        width: 20px;
        height: 20px;
    }

    .badge-free {
        font-size: 0.9rem;
    }

    .badge-shipping {
        font-size: 0.65rem;
    }

    .badge-included {
        font-size: 0.55rem;
    }

    .shipping-badge-check {
        width: 18px;
        height: 18px;
    }

    .shipping-badge-check svg {
        width: 12px;
        height: 12px;
    }
}

/* ==================== SAMPLE ORDER FORM ==================== */

.sample-order-section {
    padding: 40px 0;
    background: #f8f9fa;
    margin: 50px 0;
}

.sample-order-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.sample-order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sample-order-info-side {
    padding-right: 20px;
    border-right: 2px solid #f0f0f0;
}

.sample-badge {
    display: inline-block;
    background: #FE0000;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.sample-order-info-side h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.sample-intro {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.company-highlights {
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.highlight-item svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-item span {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.4;
}

.sample-benefits {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #FE0000;
}

.sample-benefits h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.sample-benefits ul {
    margin: 0;
    padding: 0 0 0 20px;
    list-style: disc;
}

.sample-benefits li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.sample-order-form-side {
    display: flex;
    flex-direction: column;
}

.sample-order-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    margin: 0;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #FE0000;
    box-shadow: 0 0 0 3px rgba(254, 0, 0, 0.1);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.btn-submit-sample {
    width: 100%;
    padding: 14px 24px;
    background: #FE0000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
}

.btn-submit-sample:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 0, 0, 0.3);
    background: #E00000;
}

.btn-submit-sample:active {
    transform: translateY(0);
}

.btn-submit-sample .btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

.btn-submit-sample.loading .btn-text {
    display: none;
}

.btn-submit-sample.loading .btn-loading {
    display: flex;
}

.btn-submit-sample.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

.spinner-circle {
    stroke-dasharray: 60;
    stroke-dashoffset: 15;
    transform-origin: center;
}

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

.form-response {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-response:not(:empty) {
    display: block;
}

.form-response.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-response.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== FINAL CTA SECTION ==================== */

.category-cta-section {
    padding: 60px 0;
    background: #FE0000;
    margin: 0;
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-buttons .btn-secondary {
    background: white;
    color: #FE0000;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: #000000;
    color: white;
    border-color: #000000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .category-cta-section {
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .cta-buttons .btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
}

/* ==================== PRODUCT FAQ SECTION ==================== */

.product-faq-section {
    padding: 25px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 18px;
}

.faq-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.faq-header p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.faq-accordion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.faq-item {
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
}

.faq-question:hover {
    color: #FE0000;
    background: white;
}

.faq-question:focus {
    outline: none;
    color: #FE0000;
    background: white;
}

.faq-question:active {
    color: #FE0000;
    background: white;
}

.faq-question:focus-visible {
    outline: none;
    color: #FE0000;
    background: white;
}

.faq-item.active .faq-question {
    color: #FE0000;
    background: #fff5f5;
}

.faq-question span {
    flex: 1;
    padding-right: 10px;
}

.faq-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #FE0000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    overflow-y: auto;
    max-height: 200px;
}

.faq-answer p {
    padding: 0 14px 12px 14px;
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #444;
}

.faq-cta {
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    /* Break out of 1200px faq-container to match site width (1600px) */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
    /* Center the content */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq-cta p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.btn-faq-contact {
    display: inline-block;
    padding: 10px 24px;
    background: #FE0000;
    color: white;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.82rem;
    transition: all 0.3s ease;
}

.btn-faq-contact:hover {
    background: #E00000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .faq-accordion {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-faq-section {
        padding: 20px 0;
    }

    .faq-header h2 {
        font-size: 1.3rem;
    }

    .faq-header p {
        font-size: 0.8rem;
    }

    .faq-header {
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .faq-answer p {
        padding: 0 12px 10px 12px;
        font-size: 0.8rem;
    }

    .faq-cta {
        padding: 15px 15px;
    }

    .faq-cta p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .btn-faq-contact {
        padding: 9px 20px;
        font-size: 0.8rem;
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .sample-order-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .sample-order-info-side {
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 30px;
    }

    .sample-order-info-side h3 {
        font-size: 1.5rem;
    }

    .company-highlights {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    /* Beautiful Mobile Sample Section */
    .sample-order-section {
        padding: 0;
        margin: 30px 15px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    }

    .sample-order-container {
        padding: 0;
    }

    .sample-order-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }

    .sample-order-info-side {
        padding: 25px 20px 20px;
        border-right: none;
        border-bottom: none;
        text-align: center;
        background: transparent;
    }

    .sample-badge {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        color: #fff;
        padding: 5px 14px;
        font-size: 0.7rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        margin-bottom: 12px;
    }

    .sample-order-info-side h3 {
        font-size: 1.3rem;
        color: #fff;
        margin-bottom: 8px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .sample-intro {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.8rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    /* Compact highlights in 2 columns */
    .company-highlights {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 15px;
    }

    .highlight-item {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        padding: 8px 10px;
        border-radius: 10px;
        margin-bottom: 0;
        gap: 6px;
        align-items: center;
    }

    .highlight-item svg {
        width: 14px;
        height: 14px;
        color: #4ade80;
        margin-top: 0;
    }

    .highlight-item span {
        font-size: 0.65rem;
        color: #fff;
        line-height: 1.3;
    }

    .sample-benefits {
        display: none;
    }

    /* Form Side Styling */
    .sample-order-form-side {
        background: #fff;
        padding: 20px;
        border-radius: 20px 20px 0 0;
        margin-top: -10px;
    }

    .sample-order-form {
        gap: 12px;
    }

    .form-control {
        padding: 12px 15px;
        font-size: 0.85rem;
        border: 2px solid #e8e8e8;
        border-radius: 12px;
        background: #f8f9fa;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        border-color: #667eea;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    }

    .form-control::placeholder {
        color: #aaa;
        font-size: 0.8rem;
    }

    textarea.form-control {
        min-height: 80px;
    }

    .btn-submit-sample {
        padding: 14px 20px;
        font-size: 0.9rem;
        border-radius: 12px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        margin-top: 5px;
    }

    .btn-submit-sample:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    }
}

/* ========================================
   COMPACT SAMPLE ORDER + CONTACT LAYOUT
   ======================================== */

/* Wrapper for compact bottom sections */
.compact-bottom-sections {
    display: block;
    margin: 60px 0;
}

/* Desktop & Tablet: Sample Order and Contact side-by-side (50/50 split) */
@media (min-width: 768px) {
    .compact-bottom-sections .container {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }

    .compact-bottom-sections .sample-order-section {
        flex: 1;
        width: 50%;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    .compact-bottom-sections .contact-compact-section {
        flex: 1;
        width: 50%;
        margin: 0;
        padding: 0;
        background: transparent;
    }

    /* Remove max-width constraints from internal containers */
    .compact-bottom-sections .sample-order-container {
        max-width: none;
        padding: 0;
    }

    .compact-bottom-sections .contact-compact-container {
        max-width: none;
        padding: 0;
    }
}

/* Mobile: Stack sections vertically */
@media (max-width: 767px) {
    .compact-bottom-sections {
        display: block;
    }

    .compact-bottom-sections .sample-order-section,
    .compact-bottom-sections .contact-compact-section {
        width: 100%;
        margin-bottom: 40px;
    }
}

/* ===== Internal Links Section ===== */
.internal-links-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.internal-links-header {
    text-align: center;
    margin-bottom: 40px;
}

.internal-links-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.internal-links-header p {
    font-size: 1.1rem;
    color: #555;
}

.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.internal-link-card {
    display: flex;
    flex-direction: column;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.internal-link-card:hover {
    border-color: var(--hamco-primary, #c41230);
    box-shadow: 0 4px 16px rgba(196, 18, 48, 0.12);
    transform: translateY(-2px);
}

.internal-link-card::after {
    content: '\2192';
    position: absolute;
    top: 24px;
    right: 20px;
    font-size: 1.2rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.internal-link-card:hover::after {
    color: var(--hamco-primary, #c41230);
    right: 16px;
}

.internal-link-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
    padding-right: 24px;
}

.internal-link-card:hover .internal-link-title {
    color: var(--hamco-primary, #c41230);
}

.internal-link-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .internal-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .internal-links-section {
        padding: 40px 0;
    }

    .internal-links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .internal-link-card {
        padding: 18px 22px;
    }
}
