/* Nail Shapes Page Specific Styles */
.shapes-section {
    padding: 3rem 0;
}

.shape-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.shape-card:hover {
    transform: translateY(-5px);
}

.shape-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.shape-content {
    padding: 1.5rem;
}

.shape-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font1), var(--font3);
}

.shape-description {
    color: #666;
    margin-bottom: 1rem;
    font-family: var(--font2), var(--font3);
}

.shape-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font2), var(--font3);
}

.shape-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

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

.shape-features i {
    color: #000;
    margin-right: 0.5rem;
}

/* Image Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .shape-image {
        height: 200px;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
} 