/**
 * Apera Shop Extensions - Frontend Styles
 *
 * @package AperaShopExtensions
 * @author kobosil.me Development
 * @version 1.0.0
 */

/* ========================================
   Basis Styles
   ======================================== */

.apera-shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.apera-shop-wrapper {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

/* ========================================
   Buttons
   ======================================== */

.apera-shop-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0073aa;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.apera-shop-button:hover {
    background-color: #005a87;
    color: #ffffff;
}

.apera-shop-button:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

/* ========================================
   Grid & Layout
   ======================================== */

.apera-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.apera-shop-grid-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.apera-shop-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Typography
   ======================================== */

.apera-shop-heading {
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.apera-shop-subheading {
    font-size: 20px;
    font-weight: 500;
    color: #555555;
    margin-bottom: 15px;
}

.apera-shop-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .apera-shop-container {
        padding: 15px;
    }

    .apera-shop-wrapper {
        padding: 20px;
    }

    .apera-shop-grid {
        grid-template-columns: 1fr;
    }

    .apera-shop-heading {
        font-size: 24px;
    }
}

/* ========================================
   Utilities
   ======================================== */

.apera-shop-mt-10 { margin-top: 10px; }
.apera-shop-mt-20 { margin-top: 20px; }
.apera-shop-mb-10 { margin-bottom: 10px; }
.apera-shop-mb-20 { margin-bottom: 20px; }

.apera-shop-text-center { text-align: center; }
.apera-shop-text-right { text-align: right; }
