/* Shine of Royalty Custom Styles */

:root {
    --shine-black: #111111;
    --shine-gold: #D4AF37;
    --shine-ivory: #FDFDFD;
    --shine-gray: #666666;
    --shine-light-gold: #F4E5C2;
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--shine-black);
    background-color: var(--shine-ivory);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--shine-black);
    line-height: 1.2;
}

.gold-text {
    color: var(--shine-gold);
}

.btn-primary {
    background-color: var(--shine-gold);
    color: var(--shine-black);
    padding: 15px 40px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--shine-black);
    color: var(--shine-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--shine-black);
    padding: 15px 40px;
    border: 2px solid var(--shine-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: var(--shine-black);
    color: var(--shine-ivory);
}

/* Header Modifications */
.ast-primary-header-bar {
    background-color: var(--shine-ivory);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Hero Section */
.hero-section {
    background-color: var(--shine-black);
    color: var(--shine-ivory);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--shine-gold) 0%, transparent 70%);
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--shine-ivory);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 80px 0;
}

.product-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-card .price {
    font-size: 1.25rem;
    color: var(--shine-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

/* About Section */
.about-preview {
    background-color: var(--shine-light-gold);
    padding: 80px 0;
    text-align: center;
}

.about-preview h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-preview p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background-color: var(--shine-black);
    color: var(--shine-ivory);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: var(--shine-gold);
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* WooCommerce Customization */
.woocommerce ul.products li.product {
    text-align: center;
}

.woocommerce ul.products li.product .button {
    background-color: var(--shine-gold);
    color: var(--shine-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce ul.products li.product .button:hover {
    background-color: var(--shine-black);
    color: var(--shine-gold);
}

.woocommerce div.product .summary {
    margin-top: 40px;
}

.woocommerce div.product .product_title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.2rem;
    }
    
    .about-preview h2 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}