
/* ===========================================
   Product Detail Page Styles
   =========================================== */

/* Breadcrumb */
.breadcrumb {
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: #666666;
}

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

.breadcrumb a:hover {
    color: #FF2D2D;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #CCCCCC;
}

/* Product Detail Layout */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Product Hero */
.product-hero {
    background-color: #F8F8F8;
    padding: 2.5rem;
    border-radius: 5px;
}

.product-flag {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.product-subtitle {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 2rem;
}

/* Pricing Section */
.pricing-section {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.currency-toggle {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.currency-btn {
    flex: 1;
    padding: 0.625rem 1rem;
    background-color: #F0F0F0;
    border: 2px solid transparent;
    border-radius: 5px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-btn:hover {
    background-color: #E0E0E0;
}

.currency-btn.active {
    background-color: #FFFFFF;
    border-color: #FF2D2D;
    color: #FF2D2D;
}

.price-display {
    text-align: center;
    padding: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #FF2D2D;
}

.price-currency {
    font-size: 1.25rem;
    color: #666666;
    margin-left: 0.5rem;
}

/* Features Badges */
.features-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background-color: #FFFFFF;
    border-radius: 5px;
    font-size: 0.875rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.feature-badge-icon {
    color: #FF2D2D;
    font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
    margin-top: 2rem;
}

/* Product Specs */
.product-specs {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.specs-grid {
    display: grid;
    gap: 1.25rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid #EEEEEE;
}

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

.spec-label {
    font-weight: bold;
    color: #000000;
}

.spec-value {
    color: #666666;
}

/* Tabs */
.tabs-container {
    margin-top: 3rem;
    background-color: #F8F8F8;
    border-radius: 5px;
    overflow: hidden;
}

.tabs-header {
    display: flex;
    background-color: #FFFFFF;
    border-bottom: 2px solid #EEEEEE;
}

.tab-btn {
    flex: 1;
    padding: 1.25rem 2rem;
    background-color: transparent;
    border: none;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background-color: #F8F8F8;
}

.tab-btn.active {
    color: #FF2D2D;
    border-bottom-color: #FF2D2D;
}

.tabs-content {
    padding: 2.5rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.included-list, .howto-list {
    margin-left: 1.5rem;
    line-height: 1.8;
}

.included-list li, .howto-list li {
    margin-bottom: 1rem;
    color: #333333;
}

.howto-list li strong {
    color: #000000;
}

/* Related Section */
.related-section {
    margin-top: 4rem;
}

.related-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Responsive Product Detail */
@media (max-width: 1024px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .currency-toggle {
        flex-direction: column;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid #EEEEEE;
        border-left: 3px solid transparent;
    }
    
    .tab-btn.active {
        border-bottom-color: #EEEEEE;
        border-left-color: #FF2D2D;
    }
    
    .tabs-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.75rem;
    }
    
    .pricing-section {
        padding: 1.5rem;
    }
    
    .features-badges {
        gap: 0.5rem;
    }
}
