/* Premade Products Page Styles */

/* Hero Section */
.premade-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)), url('../images/background.png');
    background-size: cover;
    background-position: center;
}

.premade-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.premade-hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
}

.premade-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

/* Products Section */
.premade-products {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premade-products .products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.png');
    background-size: 80% auto;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.06;
    transform: rotate(-2deg);
    z-index: -1;
}

.premade-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.premade-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.premade-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.premade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product-features span {
    font-size: 0.9rem;
    color: #555;
    background-color: #f8f9fa;
    padding: 5px 10px;
    border-radius: 4px;
}

.product-features i {
    color: #4CAF50;
    margin-right: 5px;
}

.premade-cta {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 30px;
}

.premade-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.premade-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Features Section */
.premade-features {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .premade-hero-title {
        font-size: 2.5rem;
    }
    
    .premade-intro h2 {
        font-size: 2rem;
    }
    
    .premade-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .premade-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .premade-hero-title {
        font-size: 2rem;
    }
    
    .premade-hero-subtitle {
        font-size: 1rem;
    }
    
    .premade-intro h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
} 