
/* ========================================
   PRODUCT DETAIL PAGE STYLES
   ======================================== */

/* Product Hero */
.product-hero {
    padding: 150px 0 100px;
    background: var(--navy-blue);
    color: var(--white);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.product-hero-content {
    text-align: center;
}

.product-breadcrumb {
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.product-breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.product-breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.product-hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.product-hero-title i {
    color: var(--primary-green);
    margin-right: 15px;
}

.product-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Product Overview */
.product-overview {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.overview-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.overview-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.overview-item h3 {
    font-size: 1.4rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.overview-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Product Category Section */
.product-category {
    padding: 100px 0;
    background: var(--white);
}

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

.category-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.category-text h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.category-text h2 i {
    color: var(--primary-blue);
    margin-right: 10px;
}

.category-text h3 {
    font-size: 1.8rem;
    color: var(--navy-blue);
    margin-bottom: 25px;
    font-weight: 600;
}

.category-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.feature-highlights {
    margin-bottom: 40px;
}

.feature-highlights h4 {
    font-size: 1.3rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.feature-highlights h4 i {
    color: var(--primary-green);
    margin-right: 10px;
}

.feature-list-detailed {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-list-detailed li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-list-detailed li:hover {
    background: #e8f5ff;
    transform: translateX(5px);
}

.feature-list-detailed li i {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-top: 3px;
}

.feature-list-detailed li div {
    flex: 1;
}

.feature-list-detailed li strong {
    display: block;
    color: var(--navy-blue);
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-list-detailed li span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Specifications */
.specifications {
    margin-bottom: 40px;
}

.specifications h4 {
    font-size: 1.3rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.specifications h4 i {
    color: var(--primary-blue);
    margin-right: 10px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.spec-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table th,
.spec-table td {
    padding: 15px 20px;
    text-align: left;
}

.spec-table th {
    background: var(--navy-blue);
    color: var(--white);
    font-weight: 600;
    width: 180px;
}

.spec-table td {
    color: var(--text-light);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-primary i,
.btn-secondary i {
    margin-right: 10px;
}

/* Category Image */
.category-image {
    position: relative;
}

.category-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.image-badge i {
    font-size: 1.2rem;
}

/* Coming Soon Section */
.coming-soon {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.coming-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.coming-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.coming-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.coming-card h3 {
    font-size: 1.3rem;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.coming-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.coming-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive - Product Detail Pages */
@media (max-width: 768px) {
    .product-hero {
        padding: 120px 0 60px;
    }

    .product-hero-title {
        font-size: 2rem;
    }

    .product-hero-subtitle {
        font-size: 1rem;
    }

    .category-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .category-text h2 {
        font-size: 1.8rem;
    }

    .category-text h3 {
        font-size: 1.4rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }

    .spec-table th,
    .spec-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .spec-table th {
        width: 120px;
    }

    .wiper-product-card {
        padding: 30px 20px;
    }

    .product-card-cta {
        flex-direction: column;
    }

    .product-card-cta .btn-large {
        width: 100%;
    }
}

/* ========================================
   WIPER PRODUCT CARD SECTION
   ======================================== */

.product-card-section {
    padding: 80px 0;
    background: var(--white);
}

.wiper-product-card {
    max-width: 1200px;
    margin: 40px auto 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.product-card-image {
    width: 100%;
    position: relative;
}

.product-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-card-cta {
    padding: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    background: var(--light-gray);
}

.product-card-cta .btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 250px;
    text-align: center;
}

