/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/* PRESTIGE DESIGN SYSTEM INJECTION */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --prestige-red: #cc0000;
    --prestige-dark-red: #990000;
    --prestige-black: #0a0a0a;
    --prestige-surface: #121212;
    --prestige-gray: #f8f9fa;
    --prestige-text: #2b2b2b;
    --prestige-muted: #6c757d;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Typography Override */
body, p, a, span, div {
    font-family: 'Outfit', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .wd-entities-title, .product-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
}

/* PRESTIGE GRID STYLES */
.prestige-products-section, .prestige-reviews-blog-section {
    padding: 80px 0 !important;
    background-color: #fff !important;
}

.prestige-reviews-blog-section {
    background-color: #fafafa !important;
}

.prestige-section-header {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.prestige-section-header h2 {
    font-size: 2.5rem !important;
    color: var(--prestige-black) !important;
    margin-bottom: 15px !important;
}

.prestige-section-header p {
    font-size: 1.1rem !important;
    color: var(--prestige-muted) !important;
    max-width: 600px !important;
    margin: 0 auto !important;
}

/* Product Grid */
.prestige-product-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    padding: 0 20px !important;
}

.prestige-product-card {
    background: #fff !important;
    border-radius: 16px !important;
    padding: 20px !important;
    text-align: center !important;
    box-shadow: var(--shadow-soft) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    transition: var(--transition-smooth) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.prestige-product-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: var(--shadow-hover) !important;
    border-color: rgba(204, 0, 0, 0.15) !important;
}

.prestige-product-card img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
    transition: transform 0.5s ease !important;
}

.prestige-product-card:hover img {
    transform: scale(1.05) !important;
}

.prestige-product-card h3 {
    font-size: 1.25rem !important;
    margin-bottom: 10px !important;
}

.prestige-product-card p {
    font-size: 0.95rem !important;
    color: var(--prestige-muted) !important;
    margin-bottom: 20px !important;
}

.prestige-btn {
    display: inline-block !important;
    background-color: var(--prestige-red) !important;
    color: #fff !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: var(--transition-smooth) !important;
    margin-top: auto !important;
}

.prestige-btn:hover {
    background-color: var(--prestige-dark-red) !important;
    box-shadow: 0 8px 20px rgba(204,0,0,0.3) !important;
    color: #fff !important;
}

/* Reviews Grid */
.prestige-reviews-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    padding: 0 20px !important;
}

.prestige-review-card {
    background: #fff !important;
    padding: 30px !important;
    border-radius: 12px !important;
    box-shadow: var(--shadow-soft) !important;
    position: relative !important;
    border-top: 4px solid var(--prestige-red) !important;
}

.prestige-review-card .stars {
    color: #FFD700 !important;
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
    letter-spacing: 2px !important;
}

.prestige-review-card p {
    font-style: italic !important;
    color: var(--prestige-text) !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

.prestige-review-card .author {
    display: flex !important;
    flex-direction: column !important;
}

.prestige-review-card .author strong {
    color: var(--prestige-black) !important;
    font-size: 1.1rem !important;
}

.prestige-review-card .author span {
    color: var(--prestige-muted) !important;
    font-size: 0.9rem !important;
}

/* Blog Grid */
.prestige-blog-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    padding: 0 20px !important;
}

.prestige-blog-card {
    background: #fff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-soft) !important;
    text-decoration: none !important;
    transition: var(--transition-smooth) !important;
    display: block !important;
}

.prestige-blog-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-hover) !important;
}

.prestige-blog-card .blog-image {
    height: 200px !important;
    background-size: cover !important;
    background-position: center !important;
}

.prestige-blog-card .blog-content {
    padding: 25px !important;
}

.prestige-blog-card .blog-category {
    font-size: 0.8rem !important;
    color: var(--prestige-red) !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    display: block !important;
    margin-bottom: 10px !important;
}

.prestige-blog-card h3 {
    color: var(--prestige-black) !important;
    font-size: 1.2rem !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
}

.prestige-blog-card .read-more {
    color: var(--prestige-muted) !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    transition: color 0.3s !important;
}

.prestige-blog-card:hover .read-more {
    color: var(--prestige-red) !important;
}

/* Footer Refinements */
.prestige-footer {
    background-color: var(--prestige-surface) !important;
    color: #e0e0e0 !important;
    border-top: 4px solid var(--prestige-red) !important;
}

.prestige-footer .widget-title {
    color: #fff !important;
    font-family: 'Outfit', sans-serif !important;
}

.prestige-footer a {
    color: #b0b0b0 !important;
    transition: var(--transition-smooth) !important;
}

.prestige-footer a:hover {
    color: var(--prestige-red) !important;
    padding-left: 5px !important;
}

/* Pseudo-Footer Overrides for Elementor */
.prestige-footer, .prestige-footer .elementor-heading-title, .prestige-footer .elementor-icon-list-text, .prestige-footer p, .prestige-footer span, .prestige-footer div { color: #e0e0e0 !important; }
.prestige-footer a, .prestige-footer a .elementor-icon-list-text { color: #b0b0b0 !important; }
.prestige-footer a:hover, .prestige-footer a:hover .elementor-icon-list-text { color: var(--prestige-red) !important; }
.prestige-footer .elementor-heading-title { color: #fff !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; padding-bottom: 10px !important; margin-bottom: 15px !important; }
.prestige-footer { padding: 60px 0 !important; margin-top: 0 !important; }

/* BRAND NEW PRESTIGE FOOTER */
.modern-prestige-footer { background-color: #0a0a0a; color: #a0a0a0; font-family: 'Outfit', sans-serif; }
.modern-prestige-footer .footer-main { padding: 80px 0 60px; }
.modern-prestige-footer .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 991px) { .modern-prestige-footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .modern-prestige-footer .footer-grid { grid-template-columns: 1fr; } }
.modern-prestige-footer .footer-logo { color: #fff; font-size: 1.8rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 20px; }
.modern-prestige-footer .footer-desc { margin-bottom: 30px; line-height: 1.6; }
.modern-prestige-footer .footer-contact { list-style: none; padding: 0; margin: 0; }
.modern-prestige-footer .footer-contact li { display: flex; align-items: flex-start; margin-bottom: 20px; }
.modern-prestige-footer .footer-contact svg { width: 22px; height: 22px; color: #cc0000; margin-right: 15px; flex-shrink: 0; margin-top: 2px; }
.modern-prestige-footer .footer-title { color: #fff; font-size: 1.2rem; font-weight: 600; margin-bottom: 25px; border-bottom: 2px solid rgba(255,255,255,0.1); padding-bottom: 15px; display: inline-block; }
.modern-prestige-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.modern-prestige-footer .footer-links li { margin-bottom: 12px; }
.modern-prestige-footer .footer-links a { color: #a0a0a0; text-decoration: none; transition: all 0.3s ease; display: inline-block; }
.modern-prestige-footer .footer-links a:hover { color: #cc0000; transform: translateX(5px); }
.modern-prestige-footer .trust-col .guarantee-box { display: flex; align-items: center; background: rgba(255,255,255,0.05); padding: 20px; border-radius: 12px; border-left: 4px solid #cc0000; transition: all 0.3s; }
.modern-prestige-footer .trust-col .guarantee-box:hover { background: rgba(255,255,255,0.08); }
.modern-prestige-footer .guarantee-icon { font-size: 2.5rem; font-weight: 800; color: #cc0000; line-height: 1; margin-right: 15px; }
.modern-prestige-footer .guarantee-text { display: flex; flex-direction: column; }
.modern-prestige-footer .guarantee-text strong { color: #fff; font-size: 1.1rem; margin-bottom: 3px; }
.modern-prestige-footer .guarantee-text span { font-size: 0.85rem; }
.modern-prestige-footer .footer-bottom { background-color: #050505; padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.modern-prestige-footer .footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; }
.modern-prestige-footer .footer-bottom-flex p { margin: 0; font-size: 0.9rem; }
.modern-prestige-footer .agency a { color: #cc0000; text-decoration: none; font-weight: 600; transition: color 0.3s; }
.modern-prestige-footer .agency a:hover { color: #ff3333; }
@media (max-width: 767px) { .modern-prestige-footer .footer-bottom-flex { flex-direction: column; text-align: center; gap: 15px; } }
