/* ====================================
   VoBot Store - Shop Page Specific Styles
   ==================================== */

/* Button Styles */
.btn-outline-light:hover {
    background-color: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
}

.btn-outline-light {
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-area {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.shop-hero {
    padding: 30px 0;
}

/* Newsletter Subscription */
.subscribe-area .form-control {
    border-radius: 25px 0 0 25px;
}

.subscribe-area .btn {
    border-radius: 0 25px 25px 0;
}

/* Product Grid Enhancements */
.product-grid {
    margin-top: 20px;
}

.product-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay-content {
    text-align: center;
    color: white;
}

.view-details-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
    transform: scale(1.05);
}

/* Featured Products Section */
.featured-section {
    background: #f8f9fa;
}

/* Contact Section */
.contact-section {
    background: #fff;
}

.contact-img img {
    max-width: 100%;
    height: auto;
}

/* Modal Enhancements */
.successModal .modal-content {
    background-color: burlywood;
    border-radius: 10px;
}

.successModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.successModal .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-area {
        min-height: 80px !important;
    }
    
    .shop-hero {
        padding: 20px 0;
    }
    
    .product-card {
        margin-bottom: 15px;
    }
    
    .contact-img {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .header-button .btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
    
    .product-overlay-content {
        padding: 10px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 1s ease infinite;
}

@keyframes spin {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}
