.leather-sections-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    width: 100%;
    height: 120vh; /* Increased from 100vh to 120vh */
    overflow: hidden;
}

.leather-section {
    position: relative;
    overflow: hidden;
    height: 100%; /* Ensure section takes full height */
}

.leather-section .section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02); /* Slight scale to ensure no white edges */
}

.leather-section .section-title {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    text-align: center;
    white-space: nowrap;
}

.leather-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%);
}

.leather-section .section-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.hover-content {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hover-content .price-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 600; /* Added font weight */
    transition: opacity 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2); /* Added subtle shadow for better readability */
}

.hover-content .details-button {
    display: none;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.leather-section:hover .price-text {
    display: none;
}

.leather-section:hover .details-button {
    display: inline-block;
}

.hover-content .details-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .leather-sections-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 300px); /* Increased from 250px to 300px */
        height: auto;
    }

    .leather-section .section-title {
        font-size: 1rem;
    }
    
    .hover-content .price-text {
        font-size: 0.9rem;
    }
    
    .hover-content .details-button {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}
