.frames-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.frame-card {
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s ease forwards;
    transition: all 0.3s ease;
}

.frame-border {
   
    
    padding: 15px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.frame-content {
    width: 100%;
    height: 100%;
    
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.frame-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 107, 0, 0.2),
        transparent
    );
    transition: 0.5s;
}

/* Hover Effects */
.frame-border:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
    border-color: #ff6b00;
}

.frame-border:hover .frame-content {
    background: rgba(255, 107, 0, 0.05);
}

.frame-border:hover .frame-content::before {
    left: 100%;
}

.frame-card:hover h3 {
    color: #ff6b00;
}

.frame-card:hover .frame-price {
    color: #ff8533;
}

.frame-card h3 {
    font-size: 1.2rem;
    margin: 15px 0 5px;
}

.frame-price {
    color: #666;
    font-size: 0.9rem;
}

/* Hover Effects */
.frame-border:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.frame-border:hover .frame-content {
    background: #e0e0e0;
}

/* Staggered Animation */
.frame-card:nth-child(1) { animation-delay: 0.1s; }
.frame-card:nth-child(2) { animation-delay: 0.2s; }
.frame-card:nth-child(3) { animation-delay: 0.3s; }
.frame-card:nth-child(4) { animation-delay: 0.4s; }
.frame-card:nth-child(5) { animation-delay: 0.5s; }
.frame-card:nth-child(6) { animation-delay: 0.6s; }
.frame-card:nth-child(7) { animation-delay: 0.7s; }
.frame-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .frame-card {
        padding: 10px;
    }
}