/* Product Showcase Section Styles */
.product-showcase-section {
    background-color: #1A1A1A;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Product Section Divider */
.product-section-divider {
    border: none;
    height: 1px;
    background: white;
    opacity: 0.6;
    margin: 40px auto;
    width: 60%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Override title-wrapper grid gap for tight spacing */
.title-wrapper {
    grid-row-gap: 0 !important;
    grid-column-gap: 0 !important;
}

/* Button Hover Cursor */
.button-with-circle-icon {
    cursor: pointer;
}

.button-with-circle-icon:hover {
    cursor: pointer;
}
.button-arrow-wrapper:hover {
    cursor: pointer !important;
}
.learn-more-text:hover {
    cursor: pointer !important;
}
.arrow:hover {
    cursor: pointer !important;
}
.product-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-showcase-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 500px;
}

/* Product Image Column */
.product-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.mb-2 {
    margin-bottom: 20px;
}

.product-showcase-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.product-showcase-image:hover {
    transform: scale(1.02);
}

/* Product Info Column */
.product-info-column {
    color: white;
    padding: 40px 0;
}

.product-premier-tag {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.product-name {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: none;
}

.product-model-number {
    font-size: 0.9rem;
    color: var(--primary, #d1952a);
    margin: -5px 0 30px 0;
    font-weight: 500;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1;
}

.product-features {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 40px;
}

.product-features br {
    display: block;
    margin: 8px 0;
}

/* Learn More Button */
.product-learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.product-learn-more-btn:hover {
    background-color: transparent;
    border-color: var(--primary, #d1952a);
    color: var(--primary, #d1952a);
    transform: translateY(-2px);
}

.btn-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary, #d1952a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-learn-more-btn:hover .btn-icon {
    background-color: var(--primary, #d1952a);
    transform: rotate(45deg);
}

.btn-icon svg {
    width: 12px;
    height: 12px;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-showcase-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .product-showcase-section {
        padding: 60px 0;
    }

    .product-name {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .product-showcase-image {
        max-width: 300px;
    }
}

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

    .product-name {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .product-features {
        font-size: 0.9rem;
    }
}

/* Animation for scroll reveal */
.product-showcase-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.product-showcase-section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure proper spacing between sections */
.product-showcase-section + .product-showcase-section {
    margin-top: 0;
}

