/* AWGE SHOP Design Aesthetic - White borders, dark backgrounds, clean typography */

:root {
    --awge-black: #000000;
    --awge-white: #ffffff;
    --awge-red: #ff0000;
    --awge-border: 2px solid #ffffff;
}

/* General AWGE styling */
.awge-container {
    background-color: var(--awge-black);
    color: var(--awge-white);
    border: var(--awge-border);
    padding: 20px;
    margin: 20px 0;
}

.awge-border {
    border: var(--awge-border);
}

.awge-text {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* News & Promotions Section */
.news-section {
    background: rgba(0, 0, 0, 0.9);
    border: 3px solid #fff;
    padding: 30px;
    margin: 40px 0;
}

.news-section h2 {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    border-bottom: 2px solid #fff;
    padding-bottom: 15px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.news-item {
    background: #000;
    border: 2px solid #fff;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-item:hover {
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #fff;
}

.news-content {
    padding: 20px;
}

.news-item h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-item p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-item .news-link {
    display: inline-block;
    color: #fff;
    background: #ff0000;
    padding: 10px 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.news-item .news-link:hover {
    background: #fff;
    color: #000;
}

/* Product Grid AWGE Style */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: #000;
    border: 2px solid #fff;
    padding: 0;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #ff0000;
    transform: scale(1.02);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid #fff;
}

.product-info {
    padding: 15px;
    color: #fff;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.product-price {
    font-size: 18px;
    color: #ff0000;
    font-weight: 700;
}

/* Orders List AWGE Style */
.orders-section {
    background: #000;
    border: 3px solid #fff;
    padding: 30px;
    margin: 40px 0;
}

.order-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #fff;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.order-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #fff;
}

.order-info {
    flex: 1;
    color: #fff;
}

.order-status {
    padding: 5px 15px;
    background: #ff0000;
    color: #fff;
    border: 2px solid #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

/* Buttons AWGE Style */
.awge-button {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.awge-button:hover {
    background: #fff;
    color: #000;
}

.awge-button-red {
    background: #ff0000;
    color: #fff;
    border: 2px solid #fff;
}

.awge-button-red:hover {
    background: #fff;
    color: #ff0000;
    border-color: #ff0000;
}

/* Empty state styling */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.empty-state p {
    font-size: 16px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .order-item {
        flex-direction: column;
        text-align: center;
    }
}
