/* ===========================================
   BRAND PAGE WRAPPER
=========================================== */
.brand-page-wrapper {
    background: #fff;
    color: #333;
}

/* ===========================================
   HERO SECTION
=========================================== */
.brand-page-wrapper .brand-hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.brand-page-wrapper .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2); /* Slight overlay for text readability */
    z-index: 1;
}

.brand-page-wrapper .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Title acts like the logo in your design */
.brand-page-wrapper .brand-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1;
}

.brand-page-wrapper .btn-visit {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 12px 30px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-page-wrapper .btn-visit:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* ===========================================
   INTRO & VALUES
=========================================== */
.brand-page-wrapper .brand-intro-section {
    padding: 80px 0;
    text-align: center;
}

.brand-page-wrapper .brand-intro-text {
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Values Title with Blue Underline */
.brand-page-wrapper .values-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.brand-page-wrapper .values-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #00b4d8;
    margin: 15px auto 0;
}

/* Icons Grid */
.brand-page-wrapper .brand-icons-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
}

.brand-page-wrapper .b-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.brand-page-wrapper .b-icon-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.brand-page-wrapper .b-icon-item span {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.brand-page-wrapper .values-sub {
    font-size: 0.9rem;
    color: #888;
    margin-top: 30px;
}

/* ===========================================
   COLLECTIONS GRID
=========================================== */
.brand-page-wrapper .brand-collections-section {
    padding: 60px 0 100px;
    background: #fff; /* or light grey if preferred */
}

.brand-page-wrapper .collection-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.brand-page-wrapper .collection-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #00b4d8;
    margin: 15px auto 0;
}

.brand-page-wrapper .brand-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 items per row */
    gap: 40px;
}

/* Product Card */
.brand-page-wrapper .brand-product-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.brand-page-wrapper .brand-product-card:hover {
    transform: translateY(-5px);
}

.brand-page-wrapper .card-link {
    text-decoration: none;
    color: inherit;
}

.brand-page-wrapper .card-image {
    height: 300px; /* Uniform image height */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.brand-page-wrapper .card-image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.brand-page-wrapper .card-info h3 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.brand-page-wrapper .card-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 40px; /* Ensures alignment if some have 1 line, others 2 */
}

.brand-page-wrapper .read-more-btn {
    font-size: 0.75rem;
    text-decoration: underline;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
}

/* Pagination styled as "See More" */
.brand-page-wrapper .brand-pagination {
    text-align: center;
    margin-top: 60px;
}

.brand-page-wrapper .brand-pagination .nav-links {
    display: inline-block;
}

.brand-page-wrapper .brand-pagination a {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.brand-page-wrapper .brand-pagination a:hover {
    background: #1a1a1a;
    color: #fff;
}

.brand-page-wrapper .brand-pagination .current {
    display: none; /* Hide page numbers if you just want next/prev buttons style */
}

/* Responsive */
@media (max-width: 900px) {
    .brand-page-wrapper .brand-icons-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .brand-page-wrapper .brand-product-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-page-wrapper .brand-title {
        font-size: 3rem;
    }
}