/*
 Theme Name:   Primetime Meats
 Theme URI:    https://shop.derfwins.com
 Description:  Custom butcher shop child theme based on Storefront, inspired by PrimeTime Meats PA
 Author:       Derf Wins
 Author URI:   https://shop.derfwins.com
 Template:     storefront
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  derf-wins-meats
*/

/* ============================================
   DERF WINS MEATS - Butcher Shop Theme
   Color Palette:
   - Primary Dark: #1a1a1a (near black)
   - Secondary Dark: #2d2d2d (charcoal)
   - Primary Red: #c0392b (butcher red)
   - Light Red: #e74c3c (highlight red)
   - Gold/Amber: #d4a843 (accent)
   - Cream: #f5f0e8 (warm background)
   - White: #ffffff
   ============================================ */

/* --- Reset and Base --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    color: #1a1a1a;
    background-color: #f5f0e8;
    -webkit-font-smoothing: antialiased;
}

/* --- Top Bar (Header above main header) --- */
.derf-top-bar {
    background-color: #1a1a1a;
    color: #cccccc;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 2px solid #c0392b;
}

.derf-top-bar .col-full {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

.derf-top-bar-left,
.derf-top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.derf-top-bar a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.derf-top-bar a:hover {
    color: #c0392b;
}

.derf-top-bar .fa {
    margin-right: 5px;
    color: #c0392b;
}

.derf-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 3px;
    background: #333;
    color: #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
}

.derf-social-icons a:hover {
    background: #c0392b;
    color: #fff;
}

/* --- Main Header --- */
.site-header {
    background-color: #2d2d2d !important;
    border-bottom: 3px solid #c0392b !important;
    padding: 0 !important;
}

.site-header .col-full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 1em;
}

/* Logo / Site Title */
.site-branding .site-title a,
.site-branding .site-title {
    color: #ffffff !important;
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif !important;
    font-weight: 700 !important;
    font-size: 2rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none !important;
}

.site-branding .site-description {
    color: #c0392b !important;
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Main Navigation --- */
.main-navigation {
    background-color: #c0392b !important;
}

.main-navigation ul.menu > li > a,
.main-navigation ul.nav-menu > li > a {
    color: #ffffff !important;
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    padding: 14px 18px !important;
    transition: background-color 0.3s ease;
}

.main-navigation ul.menu > li > a:hover,
.main-navigation ul.nav-menu > li > a:hover,
.main-navigation ul.menu > li.current-menu-item > a {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

.main-navigation ul.menu > li:hover > a {
    background-color: #1a1a1a !important;
}

.main-navigation ul.sub-menu {
    background-color: #2d2d2d !important;
    border-top: 2px solid #c0392b !important;
}

.main-navigation ul.sub-menu li a {
    color: #ffffff !important;
    border-bottom: 1px solid #3a3a3a;
}

.main-navigation ul.sub-menu li a:hover {
    background-color: #c0392b !important;
}

/* Mobile menu button */
.menu-toggle {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.menu-toggle:hover {
    background-color: #c0392b !important;
}

/* --- Hero Section --- */
.derf-hero {
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.85)),
                #2d2d2d;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.derf-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(192, 57, 43, 0.03) 35px,
        rgba(192, 57, 43, 0.03) 70px
    );
    z-index: 1;
}

.derf-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
}

.derf-hero h1 {
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.derf-hero h1 span {
    color: #c0392b;
}

.derf-hero .derf-tagline {
    font-size: 1.4rem;
    color: #d4a843;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.derf-hero p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.derf-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.derf-btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.derf-btn-primary {
    background-color: #c0392b;
    color: #ffffff;
}

.derf-btn-primary:hover {
    background-color: #e74c3c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.4);
}

.derf-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #d4a843;
}

.derf-btn-secondary:hover {
    background-color: #d4a843;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* --- Feature Columns on Home Page --- */
.derf-features {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.derf-features .col-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

.derf-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.derf-feature-card {
    text-align: center;
    padding: 40px 25px;
    background: #2d2d2d;
    border-radius: 5px;
    border-bottom: 3px solid #c0392b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.derf-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.derf-feature-card .feature-icon {
    font-size: 3rem;
    color: #c0392b;
    margin-bottom: 20px;
}

.derf-feature-card h3 {
    color: #ffffff;
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.derf-feature-card p {
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Section Titles --- */
.derf-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.derf-section-title h2 {
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.derf-section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #c0392b;
}

.derf-section-title.light h2 {
    color: #ffffff;
}

/* --- Products Section --- */
.derf-products-section {
    background-color: #f5f0e8;
    padding: 70px 0;
}

.derf-products-section .col-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

/* --- WooCommerce Product Cards --- */
.woocommerce ul.products li.product {
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    padding-bottom: 0 !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.woocommerce ul.products li.product a {
    color: #1a1a1a !important;
    text-decoration: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem !important;
    color: #1a1a1a !important;
    padding: 12px 15px 5px !important;
}

.woocommerce ul.products li.product .price {
    color: #c0392b !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
}

.woocommerce ul.products li.product .price del {
    color: #999 !important;
}

.woocommerce ul.products li.product .button {
    background-color: #c0392b !important;
    color: #ffffff !important;
    border-radius: 3px !important;
    text-transform: uppercase;
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    padding: 10px 20px !important;
}

.woocommerce ul.products li.product .button:hover {
    background-color: #e74c3c !important;
}

.woocommerce ul.products li.product .onsale {
    background-color: #c0392b !important;
    color: #ffffff !important;
    border-radius: 3px !important;
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 12px !important;
}

/* --- About / CTA Section --- */
.derf-about-section {
    background-color: #1a1a1a;
    padding: 70px 0;
    color: #ffffff;
}

.derf-about-section .col-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

.derf-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.derf-about-text h2 {
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    font-size: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.derf-about-text h2 span {
    color: #c0392b;
}

.derf-about-text .derf-gold-line {
    width: 60px;
    height: 3px;
    background-color: #d4a843;
    margin: 15px 0 25px;
}

.derf-about-text p {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 25px;
}

.derf-about-image {
    background-color: #2d2d2d;
    min-height: 350px;
    border-radius: 5px;
    border: 3px solid #c0392b;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.derf-about-image .placeholder-text {
    color: #c0392b;
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.2rem;
}

/* --- CTA Banner --- */
.derf-cta-banner {
    background: linear-gradient(135deg, #c0392b 0%, #962d22 100%);
    padding: 60px 0;
    text-align: center;
}

.derf-cta-banner .col-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

.derf-cta-banner h2 {
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    font-size: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.derf-cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.derf-cta-banner .derf-btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.derf-cta-banner .derf-btn-secondary:hover {
    background-color: #ffffff;
    color: #c0392b;
}

/* --- Footer --- */
.site-footer {
    background-color: #1a1a1a !important;
    color: #aaaaaa !important;
    padding: 0 !important;
}

.site-footer .col-full {
    max-width: 1200px;
    margin: 0 auto;
}

.derf-footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 50px 0 30px;
}

.derf-footer-col h4 {
    color: #ffffff;
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c0392b;
}

.derf-footer-col p,
.derf-footer-col li {
    color: #aaaaaa;
    font-size: 0.9rem;
    line-height: 1.8;
}

.derf-footer-col a {
    color: #aaaaaa !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.derf-footer-col a:hover {
    color: #c0392b !important;
}

.derf-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.derf-footer-col ul li {
    padding: 3px 0;
}

.derf-footer-col ul li::before {
    content: '›';
    color: #c0392b;
    margin-right: 8px;
    font-weight: bold;
}

.derf-footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #666 !important;
}

/* --- Page/Post Content --- */
.page-content,
.entry-content {
    font-size: 1rem;
    line-height: 1.8;
}

.entry-title,
.page-title {
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a !important;
}

/* --- WooCommerce Shop Page --- */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    color: #1a1a1a;
}

.woocommerce .woocommerce-breadcrumb {
    color: #666;
}

.woocommerce .woocommerce-breadcrumb a {
    color: #c0392b;
}

/* Product single page */
.single-product .entry-title {
    font-size: 2rem !important;
}

.woocommerce div.product p.price {
    color: #c0392b !important;
    font-size: 1.8rem !important;
}

.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
    background-color: #c0392b !important;
    color: #ffffff !important;
    border-radius: 3px !important;
    text-transform: uppercase;
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: #e74c3c !important;
}

/* Cart */
.woocommerce-cart table.cart th {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}

.woocommerce-cart .cart_totals h2 {
    color: #1a1a1a;
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    text-transform: uppercase;
}

/* Checkout */
.woocommerce-checkout h3 {
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    text-transform: uppercase;
    color: #1a1a1a;
}

/* Widgets */
.widget-title {
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #c0392b;
    padding-bottom: 10px;
}

/* Search */
.search-form .search-field {
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 8px 12px;
}

.search-form .search-submit {
    background-color: #c0392b;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    padding: 8px 15px;
    cursor: pointer;
}

/* Sidebar */
.widget-area .widget {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    color: #1a1a1a;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    color: #c0392b;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #c0392b !important;
    color: #ffffff !important;
    border-color: #c0392b !important;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .derf-features-grid {
        grid-template-columns: 1fr;
    }
    
    .derf-about-grid {
        grid-template-columns: 1fr;
    }
    
    .derf-footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .derf-hero h1 {
        font-size: 2.2rem;
    }
    
    .derf-hero .derf-tagline {
        font-size: 1rem;
    }
    
    .derf-cta-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .derf-footer-main {
        grid-template-columns: 1fr;
    }
    
    .derf-top-bar .col-full {
        flex-direction: column;
        gap: 5px;
    }
}

/* --- Storefront Override Fixes --- */
.site-header .site-branding {
    padding: 0 !important;
}

.site-header .col-full {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.col-full {
    max-width: 1200px;
}

/* Hide Storefront credit */
.site-info {
    display: none;
}

/* WooCommerce Mini Cart */
.site-header-cart .widget_shopping_cart {
    background: #2d2d2d !important;
    border: 1px solid #444 !important;
}

.site-header-cart .widget_shopping_cart a {
    color: #ffffff !important;
}

.site-header-cart .cart-contents {
    color: #ffffff !important;
}

.site-header-cart .cart-contents .count {
    background: #c0392b !important;
    color: #ffffff !important;
}

/* Star ratings */
.star-rating span::before {
    color: #d4a843 !important;
}

/* Tabs on product page */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #c0392b !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-bottom-color: #c0392b !important;
}

/* Related Products */
.woocommerce .related > h2 {
    font-family: 'Oswald', 'Roboto Condensed', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ============================================
   PAGE HERO — Interior page hero banners
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-secondary-dark) 100%);
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(192,57,43,0.03) 35px, rgba(192,57,43,0.03) 70px);
}
.page-hero .col-full {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.page-hero h1, .page-hero h2 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}
.page-hero h1 span, .page-hero h2 span {
    color: #c0392b;
}
.page-hero p {
    color: #d4a843;
    font-size: 1.15rem;
    margin-bottom: 0;
    line-height: 1.6;
    letter-spacing: 1px;
}

/* ============================================
   PAGE CONTENT SECTIONS
   ============================================ */
.page-content-section {
    padding: 70px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.page-content-section--dark {
    background: #1a1a1a;
    padding: 70px 0;
    color: #fff;
}
.page-content-section--dark .col-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}
.page-content-section--cream {
    background: #f5f0e8;
}

/* ============================================
   PAGE CTA BANNER
   ============================================ */
.page-cta-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}
.page-cta-banner h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #fff;
}
.page-cta-banner p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-red { color: #c0392b; }
.text-gold { color: #d4a843; }

.section-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 5px;
}
.section-heading--light {
    color: #fff;
}
.section-heading-center {
    text-align: center;
    margin-bottom: 40px;
}
.gold-line--center {
    margin: 20px auto;
}

/* ============================================
   SIDEBAR CARD — Dark callout cards
   ============================================ */
.sidebar-card {
    background: #2d2d2d;
    border-radius: 8px;
    border: 3px solid #c0392b;
    padding: 40px;
    text-align: center;
}
.sidebar-card__icon {
    font-size: 4rem;
    margin-bottom: 15px;
}
.sidebar-card__title {
    color: #d4a843;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.3rem;
    margin: 0 0 15px;
}
.sidebar-card__text {
    color: #ccc;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   INFO CARD — Grid cards for features
   ============================================ */
.info-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.info-card h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin: 0 0 15px;
}
.info-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}
.info-card.gold-top {
    border-top: 3px solid #d4a843;
}
.info-card.gold-top h3 {
    color: #1a1a1a;
}

/* ============================================
   FEATURE CARD BORDERED VARIANT
   ============================================ */
.derf-feature-card.feature-card--bordered {
    border-left: 4px solid #c0392b;
}

/* ============================================
   COLUMNS GRIDS
   ============================================ */
.cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.cols-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ============================================
   CONTACT GRID
   ============================================ */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-icon {
    min-width: 40px;
    height: 40px;
    background: #c0392b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}
.contact-card h4 {
    margin: 0 0 5px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #1a1a1a;
    font-size: 1rem;
}
.contact-card p {
    margin: 0;
    color: #666;
}
.contact-card a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-card a:hover {
    color: #c0392b;
}

/* ============================================
   HOURS TABLE
   ============================================ */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
.hours-table td {
    padding: 8px 0;
    color: #ccc;
    border-bottom: 1px solid #3a3a3a;
    font-size: 0.95rem;
}
.hours-table td:last-child {
    text-align: right;
    color: #d4a843;
    font-family: 'Oswald', sans-serif;
}

/* ============================================
   MAP CONTAINER
   ============================================ */
.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}
.map-container iframe {
    width: 100%;
    border-radius: 8px;
}

/* ============================================
   RESPONSIVE — Mobile improvements
   ============================================ */
@media (max-width: 768px) {
    .page-hero {
        padding: 50px 15px;
    }
    .page-hero h1, .page-hero h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    .page-hero p {
        font-size: 1rem;
    }
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cols-2, .cols-3, .cols-4 {
        grid-template-columns: 1fr;
    }
    .derf-features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .section-heading {
        font-size: 1.5rem;
    }
    .page-content-section {
        padding: 50px 15px;
    }
    .page-content-section--dark {
        padding: 50px 0;
    }
    .section-heading-center {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .derf-features-grid {
        grid-template-columns: 1fr;
    }
    .page-hero h1, .page-hero h2 {
        font-size: 1.5rem;
    }
    .sidebar-card {
        padding: 25px;
    }
    .info-card {
        padding: 20px;
    }
    .contact-grid {
        gap: 15px;
    }
}

/* ============================================
   WOOCOMMERCE PRODUCT IMPROVEMENTS
   ============================================ */
ul.products li.product {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}
ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
ul.products li.product a {
    color: #1a1a1a;
    text-decoration: none;
}
ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    padding: 12px 15px 5px;
}
ul.products li.product .price {
    font-family: 'Oswald', sans-serif;
    color: #c0392b;
    font-size: 1.1rem;
    padding: 0 15px 15px;
}
ul.products li.product .price del {
    color: #999;
    font-size: 0.85rem;
}
ul.products li.product .button {
    background: #c0392b;
    color: #fff;
    border-radius: 3px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    padding: 10px 20px;
    margin: 0 15px 15px;
    transition: background 0.3s, transform 0.2s;
}
ul.products li.product .button:hover {
    background: #a93226;
    transform: translateY(-1px);
}
ul.products li.product img {
    transition: transform 0.3s;
}
ul.products li.product:hover img {
    transform: scale(1.03);
}

/* ============================================
   ENTRANCE ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.page-hero .col-full > * {
    animation: fadeInUp 0.6s ease forwards;
}
.page-hero .col-full > *:nth-child(1) { animation-delay: 0.1s; }
.page-hero .col-full > *:nth-child(2) { animation-delay: 0.2s; }
.page-hero .col-full > *:nth-child(3) { animation-delay: 0.3s; }

.derf-feature-card, .info-card, .sidebar-card {
    animation: fadeInUp 0.5s ease forwards;
}

/* --- About Image Photo Variant --- */
.derf-about-image--photo {
    overflow: visible !important;
    border: none;
    background: transparent;
    min-height: auto;
}
.derf-about-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 3px solid #c0392b;
    object-fit: cover;
}

/* --- Bulk Package Cards --- */
.bulk-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.bulk-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.bulk-card--dark {
    background: #333;
    border-color: #444;
}
.bulk-card-header {
    background: linear-gradient(135deg, #c0392b 0%, #962d22 100%);
    padding: 25px 30px;
    text-align: center;
}
.bulk-card-header--gold {
    background: linear-gradient(135deg, #d4a843 0%, #b8942e 100%);
}
.bulk-card-header h3 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.3rem;
    margin: 0 0 8px;
}
.bulk-price {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}
.bulk-price--gold {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.bulk-weight {
    color: rgba(255,255,255,0.8);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-top: 5px;
}
.bulk-items {
    list-style: none;
    padding: 20px 30px;
    margin: 0;
    flex: 1;
}
.bulk-items li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #444;
}
.bulk-items li::before {
    content: '•';
    color: #c0392b;
    font-weight: bold;
    margin-right: 10px;
}
.bulk-items--dark li {
    color: #ccc;
    border-bottom-color: #444;
}
.bulk-items--dark li::before {
    color: #d4a843;
}
.bulk-card-footer {
    padding: 15px 30px 25px;
}

/* --- Mix, Match & Save --- */
.mix-match-intro {
    text-align: center;
    margin-bottom: 35px;
}
.mix-match-price {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4a843;
    line-height: 1;
}
.mix-match-weight {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #999;
    margin: 5px 0 15px;
}
.mix-match-intro p {
    color: #aaa;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.mix-match-intro strong {
    color: #d4a843;
}
.mix-col {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #444;
}
.mix-col-title {
    font-family: 'Oswald', sans-serif;
    color: #d4a843;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4a843;
    text-align: center;
}
.mix-items {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mix-items li {
    padding: 6px 0;
    border-bottom: 1px solid #3a3a3a;
    font-size: 0.9rem;
    color: #ccc;
}
.mix-items li::before {
    content: '•';
    color: #d4a843;
    margin-right: 8px;
}

/* Responsive bulk cards */
@media (max-width: 768px) {
    .bulk-card-header h3 { font-size: 1.1rem; }
    .bulk-price { font-size: 2rem; }
    .mix-match-price { font-size: 2.2rem; }
}
