/* Products Page Styles */

/* Section Labels */
.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-family: var(--font-subtitle);
}

/* Products Introduction */
.products-intro {
    background: linear-gradient(135deg, #1A1A1A 0%, #2C3E50 100%);
    padding: 6rem 2rem;
    color: var(--white);
}

.intro-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 3rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-title);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
}

/* Product Category */
.product-category {
    padding: 6rem 2rem;
}

.bac-category {
    background: var(--white);
}

.core-category {
    background: #f8f9fa;
}

/* Category Brand Header */
.category-brand {
    margin-bottom: 5rem;
}

.brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.brand-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.brand-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-subtitle);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.25);
    display: inline-block;
    transition: all 0.3s ease;
}

.brand-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(52, 152, 219, 0.35);
}

.brand-intro {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--light-text);
    font-family: var(--font-body);
    max-width: 1000px;
}

/* Product Item (BAC Products) - Card Layout */
.product-item {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

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

.product-item.reverse {
    grid-template-columns: 1fr 45%;
}

.product-item.reverse .product-image {
    order: 2;
}

.product-item.reverse .product-content {
    order: 1;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

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

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-title);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-item:hover .product-number {
    background: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.product-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: var(--font-title);
    line-height: 1.3;
}

.product-section {
    margin-bottom: 2rem;
}

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

.product-section h4 {
    font-size: 1.25rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--light-text);
    font-family: var(--font-body);
}

/* Product Card (Core Components) */
.product-card {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 3rem;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 4px solid var(--accent-color);
}

.product-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
    background: var(--white);
}

.product-card.reverse {
    grid-template-columns: 1fr 40%;
}

.product-card.reverse .card-image {
    order: 2;
}

.product-card.reverse .card-content {
    order: 1;
}

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

.card-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.card-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.brand-logo h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-title);
    text-transform: uppercase;
}

.brand-subtitle {
    display: block;
    font-size: 1.15rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 2rem;
    font-family: var(--font-subtitle);
}

.card-section {
    margin-bottom: 1.75rem;
}

.card-section h4 {
    font-size: 1.15rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.65rem;
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-section p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--light-text);
    font-family: var(--font-body);
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.advantage-list li {
    padding: 1rem;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    background: var(--bg-card);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-text);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.advantage-list li:hover {
    background: var(--white);
    transform: translateX(5px);
}

.advantage-list li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.tech-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.spec-badge {
    background: var(--white);
    color: var(--accent-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-subtitle);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--accent-color);
    transition: all 0.2s ease;
}

.spec-badge:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Call to Action */
.products-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-title);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-family: var(--font-body);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    font-family: var(--font-subtitle);
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-item,
    .product-item.reverse,
    .product-card,
    .product-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .product-item.reverse .product-image,
    .product-card.reverse .card-image {
        order: 1;
    }
    
    .product-item.reverse .product-content,
    .product-card.reverse .card-content {
        order: 2;
    }
    
    .product-image {
        min-height: 400px;
    }
    
    .card-image {
        min-height: 350px;
    }
}

@media (max-width: 968px) {
    .products-intro {
        padding: 4rem 2rem;
    }

    .intro-content h2 {
        font-size: 2.25rem;
    }

    .intro-content p {
        font-size: 1.05rem;
    }

    .product-category {
        padding: 4rem 2rem;
    }

    .category-brand {
        margin-bottom: 3.5rem;
    }

    .brand-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-header h2 {
        font-size: 2rem;
    }

    .brand-intro {
        font-size: 1.05rem;
    }

    .product-item {
        flex-direction: column !important;
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .product-image {
        flex: 0 0 100%;
    }

    .product-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: -10px;
        right: -10px;
    }

    .product-content h3 {
        font-size: 1.75rem;
    }

    .product-section h4 {
        font-size: 1.15rem;
    }

    .product-section p {
        font-size: 1rem;
    }

    .product-card {
        flex-direction: column !important;
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .card-image {
        flex: 0 0 100%;
        height: 300px;
    }

    .brand-logo h3 {
        font-size: 1.75rem;
    }

    .brand-subtitle {
        font-size: 1.05rem;
    }

    .card-section h4 {
        font-size: 1.05rem;
    }

    .card-section p {
        font-size: 0.95rem;
    }

    .products-cta {
        padding: 4rem 2rem;
    }

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

    .cta-content p {
        font-size: 1.1rem;
    }

    /* Button styles inherited from base.css */
}

@media (max-width: 480px) {
    .products-intro {
        padding: 3rem 1.5rem;
    }

    .intro-content h2 {
        font-size: 1.65rem;
    }

    .intro-content p {
        font-size: 0.95rem;
    }

    .product-category {
        padding: 3rem 1.5rem;
    }

    .category-brand {
        margin-bottom: 2.5rem;
    }

    .brand-header h2 {
        font-size: 1.65rem;
    }

    .brand-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.25rem;
    }

    .brand-intro {
        font-size: 0.95rem;
    }

    .product-item {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .product-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .product-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .product-section {
        margin-bottom: 1.5rem;
    }

    .product-section h4 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .product-section p {
        font-size: 0.95rem;
    }

    .product-card {
        padding: 1.5rem;
        border-radius: 12px;
        margin-bottom: 2.5rem;
    }

    .card-image {
        height: 240px;
    }

    .brand-logo h3 {
        font-size: 1.5rem;
    }

    .brand-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .card-section {
        margin-bottom: 1.5rem;
    }

    .card-section h4 {
        font-size: 1rem;
    }

    .card-section p {
        font-size: 0.9rem;
    }

    .tech-specs {
        gap: 0.5rem;
        padding-top: 1rem;
    }

    .spec-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }

    .products-cta {
        padding: 3rem 1.5rem;
    }

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

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

    /* Button styles inherited from base.css */
}
