/*
Theme Name: Tyson Recycling Theme
Theme URI: https://tysonfoodsbr.com/
Author: Your Name
Author URI: https://tysonfoodsbr.com/
Description: Custom WooCommerce theme inspired by Tyson Foods and EcoScrap Recycling
Version: 1.4.1
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tyson-recycling
Tags: e-commerce, custom-colors, featured-images, product-filters, responsive-layout, translation-ready, woocommerce

This theme, like WordPress, is licensed under the GPL.
Use it to help make web better for you and others.

*/

/* ==========================================
   CSS Variables - Tyson Foods Color Scheme
   ========================================== */
:root {
  --primary-red: #CC0000;
  --dark-red: #990000;
  --black: #1A1A1A;
  --dark-gray: #333333;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --accent-yellow: #FFB800;
  --font-family: 'Arial', 'Helvetica Neue', sans-serif;
  --font-size-base: 16px;
  --spacing-unit: 20px;
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-red);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--dark-red);
  text-decoration: underline;
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 15px;
}

/* ==========================================
   Layout & Grid
   ========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  flex: 1;
  padding: 0 15px;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-8 { flex: 0 0 66.666%; max-width: 66.666%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }

/* ==========================================
   Header
   ========================================== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.site-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-red);
}

.site-logo span {
  color: var(--black);
}

/* ==========================================
   Navigation
   ========================================== */
.main-navigation {
  background: var(--white);
  border-top: 2px solid var(--primary-red);
}

.main-navigation ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  padding: 15px 20px;
  color: var(--black);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  background: var(--primary-red);
  color: var(--white);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: var(--accent-yellow);
  color: var(--black);
}

.btn-secondary:hover {
  background: #e5a800;
  transform: translateY(-2px);
}

/* ==========================================
   Products Section
   ========================================== */
.products-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color: var(--primary-red);
  font-size: 2.5rem;
}

/* ==========================================
   Product Cards
   ========================================== */
.product-card {
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-title {
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.3rem;
  color: var(--primary-red);
  font-weight: 700;
}

/* ==========================================
   About Section
   ========================================== */
.about-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
  padding: 80px 0;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--black);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 20px;
  margin-top: 50px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-widget h3 {
  color: var(--primary-red);
  margin-bottom: 20px;
}

.footer-widget p {
  color: #ccc;
}

.footer-widget ul {
  list-style: none;
}

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget ul li a {
  color: #ccc;
}

.footer-widget ul li a:hover {
  color: var(--primary-red);
}

.site-info {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #999;
}

/* ==========================================
   WooCommerce Overrides
   ========================================== */
.woocommerce-product-rating {
  margin: 10px 0;
}

.woocommerce div.product span.price {
  color: var(--primary-red);
  font-size: 1.3rem;
}

.woocommerce-cart-form table {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce-cart-form td,
.woocommerce-cart-form th {
  border: 1px solid #ddd;
  padding: 12px;
}

.woocommerce-cart-form input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .footer-widgets {
    grid-template-columns: 1fr;
  }
  
  .col-6,
  .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .main-navigation ul {
    flex-direction: column;
  }
}

/* Compact Typography Override */
h1{font-size:2rem!important;font-weight:600!important}h2{font-size:1.55rem!important;font-weight:600!important}h3{font-size:1.25rem!important;font-weight:600!important}.hero-section h1{font-size:2.15rem!important;font-weight:600!important}.section-title h2{font-size:1.65rem!important;font-weight:600!important}.btn{font-size:.84rem!important;font-weight:600!important}


/* TYSON HOME BANNER IMAGE SAFETY V1.1.2 */
.hero-section.tyson-home-banner-section{background:#fbf9f4!important;background-image:none!important;padding:0!important;margin:0!important;min-height:0!important;height:auto!important;overflow:hidden!important}.tyson-home-banner-wrap{width:100%!important;background:#fbf9f4!important;line-height:0!important}.tyson-home-banner-img{width:100%!important;height:auto!important;max-height:430px!important;display:block!important;object-fit:cover!important;object-position:center!important;background:#fbf9f4!important}
/* END TYSON HOME BANNER IMAGE SAFETY V1.1.2 */


/* CTA SECTION V1.3.5 */
.home-cta-section{
  padding: 0 0 20px;
}
.home-cta-box{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(280px,0.9fr);
  gap: 32px;
  align-items: center;
  padding: 48px 52px;
  border-radius: 24px;
  background: linear-gradient(135deg,#fcfbf7 0%,#f6f2ea 100%);
  border: 1px solid rgba(153,0,0,0.10);
  box-shadow: 0 18px 45px rgba(18, 38, 63, 0.08);
  overflow: hidden;
}
.home-cta-box:before,
.home-cta-box:after{
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(204,0,0,0.05);
  pointer-events: none;
}
.home-cta-box:before{
  width: 220px;
  height: 220px;
  right: -60px;
  top: -90px;
}
.home-cta-box:after{
  width: 160px;
  height: 160px;
  left: -55px;
  bottom: -85px;
}
.home-cta-content,
.home-cta-actions{
  position: relative;
  z-index: 1;
}
.home-cta-tag{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(204,0,0,0.08);
  color: var(--dark-red);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.home-cta-tag i{
  color: var(--primary-red);
}
.home-cta-title{
  margin-bottom: 14px;
  color: #151515;
  line-height: 1.25;
}
.home-cta-text{
  margin-bottom: 22px;
  font-size: 1rem;
  line-height: 1.8;
  color: #4f4f4f;
  max-width: 760px;
}
.home-cta-points{
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}
.home-cta-points span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(153,0,0,0.08);
  color: #3a3a3a;
  font-size: 0.94rem;
  font-weight: 600;
}
.home-cta-points i{
  color: var(--primary-red);
}
.home-cta-actions{
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(153,0,0,0.08);
  border-radius: 20px;
  padding: 28px;
}
.home-cta-note strong{
  display: block;
  margin-bottom: 10px;
  color: #171717;
  font-size: 1.15rem;
}
.home-cta-note p{
  margin-bottom: 20px;
  color: #595959;
  line-height: 1.75;
}
.home-cta-buttons{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.home-cta-buttons .btn{
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 14px 20px;
  text-decoration: none !important;
}
.home-cta-buttons .btn:hover{
  text-decoration: none !important;
}
.home-cta-buttons .btn-outline-red{
  background: transparent;
  color: var(--primary-red);
  border: 1px solid var(--primary-red);
}
.home-cta-buttons .btn-outline-red:hover{
  background: var(--primary-red);
  color: var(--white);
}

@media (max-width: 991px){
  .home-cta-box{
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }
}

@media (max-width: 767px){
  .home-cta-section{
    padding: 0 0 10px;
  }
  .home-cta-box{
    padding: 28px 20px;
    border-radius: 18px;
    gap: 22px;
  }
  .home-cta-tag{
    font-size: 0.8rem;
  }
  .home-cta-title{
    font-size: 1.5rem !important;
  }
  .home-cta-points span{
    width: 100%;
    justify-content: flex-start;
  }
  .home-cta-actions{
    padding: 22px 18px;
    border-radius: 16px;
  }
}
/* END CTA SECTION V1.3.5 */


/* TYSON FUTURE FOOD SECTION V1.3.7 */
.tyson-future-food-section{
  padding: 70px 0;
  background: #fffaf2;
}
.tyson-future-food-grid{
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(320px,0.92fr);
  gap: 46px;
  align-items: center;
}
.tyson-future-food-tag{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(204,0,0,0.08);
  color: var(--dark-red);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tyson-future-food-tag i{color: var(--primary-red);}
.tyson-future-food-title{
  margin-bottom: 16px;
  color: #171717;
  line-height: 1.25;
}
.tyson-future-food-text{
  max-width: 720px;
  margin-bottom: 24px;
  color: #555;
  font-size: 1rem;
  line-height: 1.85;
}
.tyson-future-food-features{
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.tyson-future-food-feature{
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(153,0,0,0.08);
  box-shadow: 0 10px 28px rgba(18,38,63,0.06);
}
.tyson-future-food-feature i{
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(204,0,0,0.08);
  color: var(--primary-red);
  font-size: 1.05rem;
}
.tyson-future-food-feature strong{
  display: block;
  margin-bottom: 4px;
  color: #1b1b1b;
  font-size: 1rem;
}
.tyson-future-food-feature span{
  display: block;
  color: #626262;
  line-height: 1.55;
}
.tyson-future-food-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--primary-red);
  border-radius: 12px;
  color: var(--primary-red);
  text-decoration: none !important;
}
.tyson-future-food-btn:hover{
  background: var(--primary-red);
  color: var(--white);
  text-decoration: none !important;
}
.tyson-future-food-image-slot{
  min-height: 430px;
  border-radius: 26px;
  background: linear-gradient(135deg,#ffffff 0%,#f4eee5 100%);
  border: 1px solid rgba(153,0,0,0.10);
  box-shadow: 0 18px 42px rgba(18,38,63,0.08);
  overflow: hidden;
}
.tyson-future-food-image{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

/* Hide old footer payment/trust strip if any cached markup remains */
.footer-middle{display:none!important;}

@media (max-width: 991px){
  .tyson-future-food-grid{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px){
  .tyson-future-food-section{
    padding: 48px 0;
  }
  .tyson-future-food-image-slot,
  .tyson-future-food-image{
    min-height: 280px;
  }
  .tyson-future-food-feature{
    grid-template-columns: 40px 1fr;
    padding: 14px;
  }
  .tyson-future-food-feature i{
    width: 40px;
    height: 40px;
  }
}
/* END TYSON FUTURE FOOD SECTION V1.3.7 */


/* WISHLIST REMOVAL V1.3.8 */
.header-action-btn.wishlist-btn,
.product-action-buttons .wishlist-btn,
.related-product-actions .wishlist-btn,
.wishlist-btn{
  display: none !important;
}
/* END WISHLIST REMOVAL V1.3.8 */
