/**
 * XpressO Main Styles
 */

/* Base Styles */
:root {
    --primary-color: #0073aa;
    --secondary-color: #23282d;
    --background-color: #ffffff;
    --text-color: #333333;
    --accent-color: #f0ad4e;
    --border-color: #e5e5e5;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  }
  
  /* Layout */
  .site-header {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .site-footer {
    padding: 1rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
  }
  
  .site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Navigation */
  .wp-block-navigation {
    --navigation-layout-justification-setting: flex-end;
  }
  
  /* Post Meta */
  .post-meta {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.875rem;
  }
  
  /* Post Tags */
  .post-tags {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
  }
  
  /* Comments */
  .wp-block-comments {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
  }
  
  /* Archive pages */
  .wp-block-post-template {
    margin-top: 2rem;
  }
  
  /* Basic responsive adjustments */
  @media (max-width: 768px) {
    .wp-block-columns {
      flex-direction: column;
    }
    
    .wp-block-column {
      margin-left: 0 !important;
    }
  }
  
  /* WooCommerce adjustments */
  .wc-block-grid__products {
    margin-bottom: 2rem;
  }
  
  .wp-block-woocommerce-product-image-gallery {
    margin-bottom: 1.5rem;
  }
  
  /* ACF Block base styles */
  .acf-block {
    margin-bottom: 2rem;
  }