/* Thin New Arrivals Section for Product Page */
.new-arrivals-thin-section {
    background: #0d1117;
    padding: 40px 0;
    border-top: 1px solid rgba(48, 54, 61, 0.3);
}

.new-arrivals-thin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header with decorative lines */
.arrivals-thin-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

.arrivals-thin-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.3) 20%, 
        rgba(255, 107, 53, 0.6) 50%, 
        rgba(255, 107, 53, 0.3) 80%, 
        transparent 100%);
}

.arrivals-thin-subtitle {
    color: rgba(139, 148, 158, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

/* Content area */
.arrivals-thin-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Products horizontal row */
.arrivals-thin-products {
    display: flex;
    gap: 20px;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 53, 0.3) transparent;
    padding-bottom: 5px;
}

.arrivals-thin-products::-webkit-scrollbar {
    height: 4px;
}

.arrivals-thin-products::-webkit-scrollbar-track {
    background: rgba(48, 54, 61, 0.3);
    border-radius: 2px;
}

.arrivals-thin-products::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.5);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.arrivals-thin-products::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 53, 0.7);
}

/* Product link wrapper */
.arrivals-thin-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.arrivals-thin-product-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Individual product */
.arrivals-thin-product {
    display: flex;
    flex-direction: column;
    min-width: 180px;
    background: rgba(22, 27, 34, 0.3);
    border: 1px solid rgba(48, 54, 61, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.arrivals-thin-product:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.arrivals-thin-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.arrivals-thin-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.arrivals-thin-product:hover .arrivals-thin-img {
    transform: scale(1.05);
}

.arrivals-thin-info {
    padding: 12px;
    text-align: center;
}

.arrivals-thin-name {
    color: #f0f6fc;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    line-height: 1.3;
}

.arrivals-thin-category {
    color: rgba(139, 148, 158, 0.8);
    font-size: 0.75rem;
    font-weight: 400;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .arrivals-thin-content {
        justify-content: center;
    }
    
    .arrivals-thin-products {
        width: 100%;
        gap: 16px;
        justify-content: flex-start;
    }
    
    .arrivals-thin-product {
        min-width: 160px;
    }
    
    .arrivals-thin-image {
        height: 100px;
    }
    
    .arrivals-thin-header {
        gap: 15px;
    }
    
    .arrivals-thin-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .new-arrivals-thin-section {
        padding: 30px 0;
    }
    
    .arrivals-thin-container {
        padding: 0 16px;
    }
    
    .arrivals-thin-product {
        min-width: 140px;
    }
    
    .arrivals-thin-image {
        height: 90px;
    }
    
    .arrivals-thin-info {
        padding: 10px;
    }
    
    .arrivals-thin-name {
        font-size: 0.8rem;
    }
    
    .arrivals-thin-category {
        font-size: 0.7rem;
    }
} 