/* =========================================
   BANG & OLUFSEN INSPIRED PRODUCT PAGE
   ========================================= */

/* Container Utilities */
.bo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .bo-container {
        padding: 0 3rem;
    }
}

.bo-container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .bo-container-narrow {
        padding: 0 3rem;
    }
}

/* Hero Section */
.bo-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.bo-hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bo-hero-media img,
.bo-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
}

.bo-hero-content {
    position: absolute;
    bottom: 4rem;
    left: 2rem;
    z-index: 2;
}

@media (min-width: 768px) {
    .bo-hero-content {
        bottom: 6rem;
        left: 3rem;
    }
}

.bo-hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .bo-hero-title {
        font-size: 4rem;
    }
}

/* Product Overview Section */
.bo-product-overview {
    background-color: #F7F7F7;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .bo-product-overview {
        padding: 6rem 0;
    }
}

.bo-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .bo-overview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.bo-overview-image img {
    width: 100%;
    height: auto;
}

.bo-overline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 0.5rem;
}

.bo-product-name {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .bo-product-name {
        font-size: 4rem;
    }
}

.bo-product-variant {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.bo-color-selector {
    margin-bottom: 2rem;
}

.bo-color-dots {
    display: flex;
    gap: 0.75rem;
}

.bo-color-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    padding: 0;
}

.bo-color-dot:nth-child(1) {
    background-color: #A8D5E2;
}

.bo-color-dot:nth-child(2) {
    background-color: #9B6B9E;
}

.bo-color-dot:nth-child(3) {
    background-color: #7CAA82;
}

.bo-color-dot.active {
    border-color: #000;
    transform: scale(1.1);
}

.bo-color-dot:hover {
    transform: scale(1.1);
}

.bo-price-block {
    margin-bottom: 2rem;
}

.bo-price {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.bo-btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #000;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.bo-btn-primary:hover {
    background-color: #333;
}

.bo-btn-secondary {
    width: 100%;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #000;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bo-btn-secondary:hover {
    background-color: #000;
    color: #fff;
}

.bo-btn-secondary.centered {
    width: auto;
    display: block;
    margin: 0 auto;
}

.bo-features-list ul {
    list-style: none;
    padding: 0;
}

.bo-features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E0E0E0;
    font-size: 0.9375rem;
}

.bo-features-list li:last-child {
    border-bottom: none;
}

/* Text Section */
.bo-text-section {
    background-color: #fff;
    padding: 5rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .bo-text-section {
        padding: 7rem 0;
    }
}

.bo-section-heading {
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.5px;
    color: #000;
}

@media (min-width: 768px) {
    .bo-section-heading {
        font-size: 2.5rem;
    }
}

.bo-section-heading.centered {
    text-align: center;
}

/* Split Section */
.bo-split-section {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .bo-split-section {
        grid-template-columns: 1fr 1fr;
    }
}

.bo-split-section.reversed {
    direction: ltr;
}

@media (min-width: 1024px) {
    .bo-split-section.reversed .bo-split-content {
        order: 1;
    }

    .bo-split-section.reversed .bo-split-image {
        order: 2;
    }
}

.bo-split-section.dark {
    background-color: #2B2B2B;
    color: #fff;
}

.bo-split-section.light {
    background-color: #F7F7F7;
}

.bo-split-image {
    min-height: 400px;
}

@media (min-width: 768px) {
    .bo-split-image {
        min-height: 500px;
    }
}

.bo-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

@media (min-width: 768px) {
    .bo-split-content {
        padding: 4rem 3rem;
    }
}

@media (min-width: 1024px) {
    .bo-split-content {
        padding: 5rem 4rem;
    }
}

.bo-split-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .bo-split-title {
        font-size: 2.5rem;
    }
}

.bo-split-text {
    font-size: 1rem;
    line-height: 1.8;
    color: inherit;
}

@media (min-width: 768px) {
    .bo-split-text {
        font-size: 1.0625rem;
    }
}

/* Cards Section */
.bo-cards-section {
    background-color: #fff;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .bo-cards-section {
        padding: 7rem 0;
    }
}

.bo-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 640px) {
    .bo-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.bo-feature-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    margin-bottom: 1.5rem;
    background-color: #f9f9f9;
}

.bo-feature-card h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.bo-feature-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666;
}

/* Full Width Image */
.bo-fullwidth-image {
    position: relative;
    min-height: 500px;
}

@media (min-width: 768px) {
    .bo-fullwidth-image {
        min-height: 700px;
    }
}

.bo-fullwidth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bo-fullwidth-overlay {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    color: #fff;
    text-align: right;
}

.bo-fullwidth-overlay h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.bo-fullwidth-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Comparison Section */
.bo-comparison-section {
    background-color: #F7F7F7;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .bo-comparison-section {
        padding: 7rem 0;
    }
}

.bo-comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .bo-comparison-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.bo-comparison-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.bo-comparison-item:hover {
    transform: translateY(-8px);
}

.bo-comparison-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 1.5rem;
    background-color: #fff;
}

.bo-comparison-item h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.bo-comparison-category {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.bo-comparison-price {
    font-size: 1rem;
    font-weight: 600;
}

/* Carousel Section */
.bo-carousel-section {
    background-color: #fff;
    padding: 2rem 0;
}

.bo-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.bo-carousel-track {
    display: flex;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.bo-carousel-slide {
    flex: 0 0 100%;
    transition: transform 0.5s ease;
}

.bo-carousel-slide img {
    width: 100%;
    height: auto;
}

.bo-carousel-prev,
.bo-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    transition: opacity 0.3s ease;
}

.bo-carousel-prev:hover,
.bo-carousel-next:hover {
    opacity: 0.7;
}

.bo-carousel-prev {
    left: -60px;
}

.bo-carousel-next {
    right: -60px;
}

@media (max-width: 1024px) {
    .bo-carousel-prev {
        left: 1rem;
    }

    .bo-carousel-next {
        right: 1rem;
    }
}

/* Moments Section */
.bo-moments-section {
    background-color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.bo-moments-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.bo-moments-thumb {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}

.bo-moments-text {
    font-size: 0.875rem;
    color: #666;
}

/* Lifestyle Grid */
.bo-lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    background-color: #fff;
}

@media (min-width: 768px) {
    .bo-lifestyle-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}

.bo-lifestyle-item {
    position: relative;
    overflow: hidden;
}

.bo-lifestyle-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bo-lifestyle-item.small {
    aspect-ratio: 1;
}

.bo-lifestyle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bo-lifestyle-item:hover img {
    transform: scale(1.05);
}

/* Awards Section */
.bo-awards-section {
    background-color: #fff;
    padding: 4rem 0;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
}

.bo-awards-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 1.5rem;
}

.bo-rating-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 0.5rem;
}

.bo-rating-stars {
    font-size: 1.5rem;
    color: #00B67A;
}

/* Description Section */
.bo-description-section {
    background-color: #fff;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .bo-description-section {
        padding: 7rem 0;
    }
}

.bo-description-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .bo-description-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 5rem;
    }
}

.bo-description-text h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.bo-description-text p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.bo-description-image img {
    width: 100%;
    height: auto;
}

/* Box Section */
.bo-box-section {
    background-color: #F7F7F7;
    padding: 5rem 0;
}

.bo-box-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .bo-box-content {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.bo-box-image img {
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 2rem;
}

.bo-box-list h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 1.5rem;
}

.bo-box-list ul {
    list-style: none;
    padding: 0;
}

.bo-box-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E0E0E0;
    font-size: 0.9375rem;
}

.bo-box-dots {
    text-align: center;
}

.bo-box-dots .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 4px;
}

.bo-box-dots .dot.active {
    background-color: #000;
}

/* Table Section */
.bo-table-section {
    background-color: #fff;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .bo-table-section {
        padding: 7rem 0;
    }
}

.bo-table-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .bo-table-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.bo-table-column {
    text-align: center;
}

.bo-table-column img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 1.5rem;
    background-color: #F7F7F7;
}

.bo-table-column h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.bo-table-price {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.bo-table-specs {
    list-style: none;
    padding: 0;
    text-align: left;
}

.bo-table-specs li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: #666;
    border-bottom: 1px solid #E0E0E0;
}

.bo-table-specs li:last-child {
    border-bottom: none;
}

/* Compatibility Section */
.bo-compatibility-section {
    background-color: #F7F7F7;
    padding: 5rem 0;
}

.bo-compat-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 2rem;
}

.bo-compat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .bo-compat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bo-compat-item p {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.bo-compat-item .value {
    font-size: 1rem;
    color: #000;
    font-weight: 500;
}

.bo-compat-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .bo-compat-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .bo-compat-buttons button {
        width: auto;
    }
}

/* Discovery Section */
.bo-discovery-section {
    background-color: #fff;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .bo-discovery-section {
        padding: 7rem 0;
    }
}

.bo-discovery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .bo-discovery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.bo-discovery-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.bo-discovery-card:hover {
    transform: translateY(-8px);
}

.bo-discovery-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 1rem;
    background-color: #F7F7F7;
}

.bo-discovery-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 0.5rem;
}

.bo-discovery-card h4 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.bo-discovery-price {
    font-size: 1rem;
    font-weight: 600;
}

/* Newsletter Section */
.bo-newsletter-section {
    background-color: #F7F7F7;
    padding: 5rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .bo-newsletter-section {
        padding: 6rem 0;
    }
}

.bo-newsletter-icon {
    margin: 0 auto 2rem;
    color: #000;
}

.bo-newsletter-section h3 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .bo-newsletter-section h3 {
        font-size: 2rem;
    }
}

.bo-newsletter-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bo-hero-title {
        font-size: 2rem;
    }

    .bo-product-name {
        font-size: 2.5rem;
    }

    .bo-section-heading {
        font-size: 1.5rem;
    }

    .bo-split-title {
        font-size: 1.75rem;
    }
}
