/* Brand Page Component */
.brand-hero {
    padding: 150px 0 100px;
    background: var(--cream);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.brand-hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.brand-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.brand-hero-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 1rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--text-light);
}

.brand-hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: var(--font-english);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.brand-hero-subtitle {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.brand-hero-description .lead-paragraph {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.brand-hero-actions {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.brand-hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
product-categories
.brand-highlights {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

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

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.highlight-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.brand-image-placeholder {
    position: relative;
    width: 100%;
    height: 300px;
    background: var(--light-gray);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.brand-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.brand-image-caption {
    text-align: center;
    color: var(--white);
    background: rgba(30, 58, 138, 0.9);
    padding: 20px;
    border-radius: 12px;
}

.brand-image-caption h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.brand-image-caption p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Brand Features Section */
.brand-features {
    background: var(--white);
}

.brand-features-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.brand-features-container .section-header {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 30px;
}

.brand-features-container .section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: var(--font-english);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.brand-features-container .section-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.features-main {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    background: var(--white);
}

.feature-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item h4::before {
    content: '✓';
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.features-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 120px;
}

.brand-stats {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.brand-stats h4 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition-medium);
}

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

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    font-family: var(--font-english);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-quote {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border-left: 5px solid var(--secondary-color);
}

.brand-quote blockquote {
    margin: 0;
    font-style: italic;
}

.brand-quote p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

.brand-quote p::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    top: -10px;
    left: -20px;
    font-family: serif;
    line-height: 1;
}

.brand-quote cite {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
    display: block;
    text-align: right;
}

.brand-quote cite::before {
    content: '— ';
}

/* Categories Section */
.categories {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.categories-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.categories .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.categories .section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: var(--font-english);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.categories .section-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.categories-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.categories-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.category-item {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.category-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.category-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.categories-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.categories-highlight {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.categories-highlight h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.categories-highlight ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.categories-highlight li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-light);
    font-size: 1rem;
    position: relative;
    padding-left: 25px;
}

.categories-highlight li:last-child {
    border-bottom: none;
}

.categories-highlight li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* CTA Section */
.cta {
    padding: var(--section-padding);
    background: var(--primary-color);
    color: var(--white);
}

.cta-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-main h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta-main p {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cta-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-highlight h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.cta-highlight ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cta-highlight li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    padding-left: 25px;
}

.cta-highlight li:last-child {
    border-bottom: none;
}

.cta-highlight li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--white);
}

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

.contact-item i {
    width: 20px;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design for Brand Page */
@media (max-width: 1200px) {
    .brand-hero-content,
    .features-content,
    .categories-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .categories-main {
        grid-template-columns: 1fr;
    }

    .features-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .brand-hero-container,
    .brand-features-container,
    .categories-container,
    .cta-container {
        padding: 0 20px;
    }

    .brand-hero {
        padding: 120px 0 80px;
    }

    .brand-hero-title {
        font-size: 3rem;
    }

    .brand-hero-subtitle {
        font-size: 1.5rem;
    }

    .brand-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .brand-features .section-title,
    .categories .section-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 30px 20px;
    }

    .feature-item h4 {
        font-size: 1.2rem;
    }

    .feature-item p {
        font-size: 1rem;
    }

    .brand-stats {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .brand-quote {
        padding: 30px 20px;
    }

    .brand-quote p {
        font-size: 1.1rem;
    }

    .cta-main h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .brand-hero-title {
        font-size: 2.5rem;
    }

    .brand-features .section-title {
        font-size: 2rem;
    }

    .features-content {
        gap: 40px;
    }

    .feature-item {
        padding: 25px 15px;
    }

    .feature-item h4 {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .feature-item h4::before {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    .brand-stats {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .brand-quote {
        padding: 25px 15px;
    }

    .brand-quote p {
        font-size: 1rem;
    }

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