/* Product Detail Specific Styles */

/* Hero Section */
.product-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111; /* Placeholder for video/image */
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.product-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.product-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.back-link {
    position: absolute;
    top: -100px;
    left: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .product-hero-content h1 {
        font-size: 2.5rem;
    }
    .back-link {
        top: -60px;
        left: 20px;
    }
}

/* Split Sections */
.split-section {
    padding: 80px 0;
}

.bg-white {
    background-color: #ffffff;
    color: #333;
}

.bg-lightgrey {
    background-color: #f5f5f5;
    color: #333;
}

.bg-primary-color {
    background-color: var(--primary-color);
    color: #fff;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
}

.split-container.row-reverse {
    flex-direction: row-reverse;
}

.split-image,
.split-text {
    flex: 1;
    min-width: 300px;
}

.split-image {
    background-color: #ddd;
    height: 400px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.split-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.split-text ul {
    list-style: none;
    padding: 0;
}

.split-text ul li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.split-text ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: inherit;
    font-weight: bold;
}

.bg-primary-color .split-text ul li::before {
    color: #fff;
}

.bg-white .split-text ul li::before,
.bg-lightgrey .split-text ul li::before {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .split-container {
        flex-direction: column !important;
        padding: 0 20px;
    }
    .split-image {
        width: 100%;
        height: 300px;
    }
}

/* Specs Section */
.specs-section {
    padding: 80px 20px;
    background-color: var(--bg-color);
    color: var(--text-color);
}

.specs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.specs-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}

.specs-table th {
    font-weight: bold;
    width: 40%;
    color: #aaa;
}

.specs-table td {
    font-weight: 500;
}

@media (max-width: 768px) {
    .specs-table th,
    .specs-table td {
        display: block;
        width: 100%;
    }
    .specs-table th {
        border-bottom: none;
        padding-bottom: 5px;
        color: var(--primary-color);
    }
    .specs-table td {
        padding-top: 5px;
        padding-bottom: 20px;
    }
}

/* Testimonial Section */
.testimonial-section {
    position: relative;
    padding: 100px 20px;
    background-color: #222;
    color: #fff;
    text-align: center;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333; /* Placeholder for image */
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
}

.testimonial-author {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primary-color);
}

/* Trusted By Section */
.trusted-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.trusted-section h3 {
    color: #666;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-logo-placeholder {
    width: 120px;
    height: 60px;
    background-color: #eee;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 0.8rem;
}
