/* ==========================================
   Custom CSS - Tyson Recycling Theme
   All Advanced Styles & Animations
   ========================================== */

/* ==========================================
   Google Fonts Import
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Open+Sans:wght@400;600;700&display=swap');

/* ==========================================
   CSS Root Variables
   ========================================== */
:root {
    --primary-red: #80091d;
    --dark-red: #5c0615;
    --light-red: #ff1a1a;
    --black: #1A1A1A;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;
    --white: #FFFFFF;
    --accent-yellow: #FFB800;
    --success-green: #28a745;
    --warning-orange: #fd7e14;
    --info-blue: #17a2b8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.18);
    --shadow-red: 0 5px 20px rgba(128,9,29,0.3);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ==========================================
   Global Reset & Base
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', 'Arial', sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ==========================================
   Scrollbar Styling
   ========================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

/* ==========================================
   Selection Color
   ========================================== */
::selection {
    background: var(--primary-red);
    color: var(--white);
}

/* ==========================================
   Top Bar Styles
   ========================================== */
.top-bar {
    background: #ffffff;
    color: #222;
    padding: 7px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid #e5e5e5;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-contact {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-contact li a {
    color: #222;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-contact li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #222;
}

.top-bar-contact li a:hover {
    color: var(--primary-red);
}

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


.account-links {
    display: flex;
    gap: 15px;
}

.account-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.account-links a:hover {
    color: var(--primary-red);
}

/* ==========================================
   Site Header
   ========================================== */
.site-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* ==========================================
   Site Logo
   ========================================== */
.site-branding {
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--medium-gray);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.custom-logo {
    max-height: 70px;
    width: auto;
}

/* ==========================================
   Header Search
   ========================================== */
.header-search {
    flex: 1;
    max-width: 500px;
}

.search-input-wrapper {
    display: flex;
    border: 2px solid var(--border-gray);
    border-radius: 50px;
    overflow: visible;
    position: relative;
    transition: var(--transition);
}

.search-input-wrapper:focus-within {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-red);
}

.search-field {
    flex: 1;
    padding: 10px 20px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    border-radius: 50px 0 0 50px;
    font-family: inherit;
    background: var(--white);
}

.search-submit {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 0 50px 50px 0;
    transition: var(--transition);
}

.search-submit:hover {
    background: var(--dark-red);
}

/* ==========================================
   Header Actions
   ========================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--black);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

.header-action-btn:hover {
    color: var(--primary-red);
    background: var(--light-gray);
}

.header-action-btn i {
    font-size: 1.3rem;
    color: var(--primary-red);
}

.action-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}

/* Cart Button Specific */
.cart-btn {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 8px 15px;
}

.cart-icon-wrapper {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-info {
    display: flex;
    flex-direction: column;
}

.cart-label {
    display: none;
}

.cart-total {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-red);
}

/* ==========================================
   Mobile Menu Toggle
   ========================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--light-gray);
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--black);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================
   Main Navigation
   ========================================== */
.main-navigation {
    background: #faf8f2;
    position: relative;
    z-index: 998;
    border-bottom: 2px solid #e8e0d0;
}

.nav-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
}

/* Category Menu Button */
.category-menu-wrapper {
    position: relative;
    flex-shrink: 0;
}

.category-menu-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 15px 25px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-family: inherit;
    height: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-menu-btn:hover {
    background: var(--dark-red);
}

/* Category Dropdown */
.category-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    width: 260px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-top: 3px solid var(--primary-red);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.category-dropdown.active,
.category-menu-wrapper:hover .category-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-list {
    list-style: none;
    padding: 8px 0;
}

.category-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.88rem;
}

.category-item a:hover {
    color: var(--primary-red);
    background: #faf8f2;
}

.category-item a i {
    color: var(--primary-red);
    width: 16px;
}

.category-item a img {
    border-radius: 4px;
    object-fit: cover;
}

.cat-count {
    margin-left: auto;
    color: #555;
    font-size: 0.78rem;
}

.category-item.view-all a {
    background: #faf8f2;
    color: var(--primary-red);
    font-weight: 700;
    border-top: 1px solid var(--border-gray);
    margin-top: 4px;
}

/* Primary Menu */
.primary-menu-wrapper {
    flex: 1;
}

.primary-menu {
    list-style: none;
    display: flex;
    align-items: stretch;
    height: 100%;
    margin: 0;
    padding: 0;
}

.primary-menu > li {
    position: relative;
}

.primary-menu > li > a {
    display: flex;
    align-items: center;
    padding: 0 22px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    height: 100%;
    white-space: nowrap;
    position: relative;
}

.primary-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 22px;
    right: 22px;
    height: 3px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a {
    color: var(--primary-red);
    background: transparent;
}

.primary-menu > li > a:hover::after,
.primary-menu > li.current-menu-item > a::after,
.primary-menu > li.current-menu-ancestor > a::after {
    transform: scaleX(1);
}

/* Dropdown Sub Menu */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-top: 3px solid var(--primary-red);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 1000;
}

.primary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu li a {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.primary-menu .sub-menu li a:hover {
    color: var(--primary-red);
    background: #faf8f2;
    padding-left: 24px;
}
    color: var(--white);
    border: none;
    padding: 15px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-family: inherit;
    height: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-menu-btn:hover {
    background: #5c0615;
}

/* Category Dropdown */
.category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-top: 3px solid var(--primary-red);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.category-dropdown.active,
.category-menu-wrapper:hover .category-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-list {
    list-style: none;
    padding: 10px 0;
}

.category-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.category-item a:hover {
    background: var(--light-gray);
    color: var(--primary-red);
    padding-left: 30px;
}

.category-item a i {
    color: var(--primary-red);
    width: 16px;
}

.category-item a img {
    border-radius: 4px;
    object-fit: cover;
}

.cat-count {
    margin-left: auto;
    color: var(--medium-gray);
    font-size: 0.8rem;
}

.category-item.view-all a {
    background: var(--light-gray);
    color: var(--primary-red);
    font-weight: 700;
    border-top: 1px solid var(--border-gray);
    margin-top: 5px;
}

/* Primary Menu */
.primary-menu-wrapper {
    flex: 1;
}

.primary-menu {
    list-style: none;
    display: flex;
    align-items: stretch;
    height: 100%;
    margin: 0;
    padding: 0;
}

.primary-menu > li {
    position: relative;
}

/* Nav link colors handled above */

/* Dropdown Sub Menu */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-top: 3px solid var(--primary-red);
    box-shadow: var(--shadow-lg);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.primary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-gray);
}

.primary-menu .sub-menu li a:hover {
    background: var(--light-gray);
    color: var(--primary-red);
    padding-left: 30px;
}

/* ==========================================
   Mobile Menu
   ========================================== */
.mobile-menu {
    display: block;
    background: var(--white);
    border-top: 3px solid var(--primary-red);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-menu.active {
    max-height: 80vh;
    overflow-y: auto;
}

.mobile-menu-inner {
    padding: 20px;
}

.mobile-search {
    margin-bottom: 20px;
    position: relative;
}

.mobile-search form {
    display: flex;
    border: 2px solid var(--border-gray);
    border-radius: var(--border-radius);
    overflow: visible;
    position: relative;
}

.mobile-search input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 0.9rem;
}

.mobile-search button {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.mobile-nav-menu li a {
    display: block;
    padding: 12px 15px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid var(--border-gray);
    font-weight: 600;
    transition: var(--transition);
}

.mobile-nav-menu li a:hover {
    color: var(--primary-red);
    padding-left: 25px;
    background: var(--light-gray);
}

.mobile-account {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-account a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: var(--light-gray);
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: var(--transition);
}

.mobile-account a:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Mobile Categories Button (header) */
.mobile-cat-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--primary-red);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
}

.mobile-cat-btn:hover { background: var(--dark-red); }

@media (max-width: 991px) {
    .mobile-cat-btn { display: flex; }
}

/* Mobile Category Sliding Panel */
.mobile-cat-panel {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: left 0.35s ease;
    box-shadow: 5px 0 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.mobile-cat-panel.open { left: 0; }

.mobile-cat-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

.mobile-cat-overlay.open { display: block; }

.mobile-cat-panel-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.mobile-cat-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: var(--primary-red);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.mobile-cat-panel-header i { margin-right: 8px; }

.mobile-cat-panel-close {
    background: rgba(0,0,0,0.06);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.mobile-cat-panel-close:hover { background: rgba(255,255,255,0.35); }

.mobile-cat-panel-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
    overflow-y: auto;
    flex: 1;
}

.mobile-cat-panel-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    color: #333;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.mobile-cat-panel-list li a:hover {
    background: #fafafa;
    color: var(--primary-red);
    padding-left: 24px;
}

.mobile-cat-panel-list li a i.fas.fa-tag { color: var(--primary-red); font-size: 0.85rem; }
.mobile-cat-panel-list li a i.fas.fa-chevron-right { margin-left: auto; font-size: 0.75rem; color: #ccc; }
.mobile-cat-panel-list li a img { border-radius: 4px; object-fit: cover; flex-shrink: 0; }

.mobile-cat-panel-list li.panel-view-all a {
    background: #80091d;
    color: #fff;
    justify-content: center;
    border-bottom: none;
    font-weight: 700;
    border-radius: 0;
    margin-top: 8px;
}

.mobile-cat-panel-list li.panel-view-all a:hover {
    background: #5c0615;
    padding-left: 18px;
    color: #fff;
}

/* Mobile Categories Section */
.mobile-categories-section {
    margin-top: 15px;
    border-top: 1px solid var(--border-gray);
    padding-top: 10px;
}

.mobile-cats-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--primary-red);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.3s;
}

.mobile-cats-toggle:hover {
    background: var(--dark-red);
}

.mobile-cats-arrow {
    margin-left: auto;
    transition: transform 0.3s;
}

.mobile-cats-toggle.open .mobile-cats-arrow {
    transform: rotate(180deg);
}

.mobile-cats-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    background: #fff;
    border: 1px solid var(--border-gray);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.mobile-cats-list.open {
    display: block;
}

.mobile-cats-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--dark-gray);
    text-decoration: none;
    border-bottom: 1px solid var(--border-gray);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.mobile-cats-list li a:hover {
    background: #fafafa;
    color: var(--primary-red);
    padding-left: 22px;
}

.mobile-cats-list li a i,
.mobile-cats-list li a img {
    color: var(--primary-red);
    font-size: 0.85rem;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}

.mobile-cats-list li a span {
    margin-left: auto;
    font-size: 0.78rem;
    color: #444;
}

.mobile-cats-list li.view-all-cats a {
    background: #fafafa;
    color: var(--primary-red);
    font-weight: 700;
    border-bottom: none;
}

/* ==========================================
   Breadcrumbs
   ========================================== */
.breadcrumbs-wrapper {
    background: var(--light-gray);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumbs a:hover {
    color: var(--primary-red);
}

.breadcrumb-separator {
    color: var(--medium-gray);
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: var(--primary-red);
    font-weight: 600;
}

/* ==========================================
   Hero Section Styles
   ========================================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-static {
    min-height: 580px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), center/cover no-repeat;
    background-image: var(--hero-bg, none);
    position: relative;
}

.hero-slide {
    display: none;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide.active {
    display: flex;
    align-items: center;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 700px;
    padding: 60px 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    line-height: 1;
}

.hero-stat .stat-text {
    font-size: 0.8rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.08);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(0,0,0,0.06);
    color: var(--white);
    border: 2px solid #ccc;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* ==========================================
   Features Bar Section
   ========================================== */
.features-bar-section {
    background: var(--white);
    padding: 0;
    border-bottom: 3px solid var(--primary-red);
    box-shadow: var(--shadow-md);
}

.features-bar-grid {
    display: flex;
    flex-wrap: wrap;
}

.feature-bar-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    border-right: 1px solid var(--border-gray);
    transition: var(--transition);
}

.feature-bar-item:last-child {
    border-right: none;
}

.feature-bar-item:hover {
    background: var(--light-gray);
}

.feature-bar-item .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-bar-item:hover .feature-icon {
    background: var(--dark-red);
    transform: rotateY(180deg);
}

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 3px;
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin: 0;
}

/* ==========================================
   Section Header / Title Styles
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.section-divider span {
    display: block;
    width: 80px;
    height: 2px;
    background: var(--border-gray);
}

.section-divider i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

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

.categories-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card-home {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
}

.category-card-home:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-card-home a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card-home:hover .category-image-wrapper img {
    transform: scale(1.1);
}

.category-overlay-home {
    position: absolute;
    inset: 0;
    background: rgba(128,9,29, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.category-card-home:hover .category-overlay-home {
    opacity: 1;
}

.category-overlay-content {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-info-home {
    padding: 20px;
    text-align: center;
}

.category-info-home h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.category-count {
    font-size: 0.85rem;
    color: var(--primary-red);
    font-weight: 600;
}

/* ==========================================
   Products Grid
   ========================================== */
.featured-products-section {
    padding: 80px 0;
    background: var(--white);
}

/* Product Filter Tabs */
.product-filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-tab {
    padding: 8px 20px;
    border: 2px solid var(--border-gray);
    background: var(--white);
    color: var(--dark-gray);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    font-family: inherit;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

/* Products Grid Home */
.products-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Product Card Home */
.product-card-home {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card-home:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

/* Product Image Area */
.product-image-area {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f5f5f5;
}

.product-image-area a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-main-image,
.product-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
    display: block;
}

.product-card-home:hover .product-main-image {
    transform: scale(1.08);
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.badge {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.badge-featured {
    background: var(--accent-yellow);
    color: var(--black);
}

.badge-instock {
    background: var(--success-green);
    color: var(--white);
}

.badge-outstock {
    background: var(--dark-gray);
    color: var(--white);
}

/* Product Actions Overlay */
.product-actions-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    z-index: 2;
}

.product-card-home:hover .product-actions-overlay {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--dark-gray);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.action-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    transform: scale(1.1);
}

/* Product Info Area */
.product-info-area {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-cat-label {
    margin-bottom: 8px;
}

.product-cat-label a {
    font-size: 0.78rem;
    color: var(--primary-red);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-name a {
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
}

.product-name a:hover {
    color: var(--primary-red);
}

/* Product Stars */
.product-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
}

.product-stars i {
    color: var(--accent-yellow);
    font-size: 0.8rem;
}

.star-count {
    font-size: 0.78rem;
    color: var(--medium-gray);
    margin-left: 5px;
}

/* Product Short Description */
.product-short-desc {
    font-size: 0.85rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

/* Product Price */
.product-price-area {
    margin-bottom: 15px;
}

.product-price-area .price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-red);
    font-family: 'Roboto', sans-serif;
}

.product-price-area .price del {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 400;
    margin-right: 8px;
}

.product-price-area .price ins {
    text-decoration: none;
    color: var(--primary-red);
}

/* Product Cart Buttons */
.product-cart-btn {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-add-cart {
    flex: 1;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    padding: 10px 12px;
}

.btn-view-details {
    padding: 10px 12px;
    font-size: 0.85rem;
}

.btn-disabled {
    flex: 1;
    background: var(--border-gray);
    color: var(--medium-gray);
    cursor: not-allowed;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

/* Section Footer Button */
.section-footer-btn {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================
   Buttons - All Types
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
    line-height: 1;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
    text-decoration: none;
}

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

.btn-secondary:hover {
    background: #e5a800;
    border-color: #e5a800;
    color: var(--black);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-outline-red {
    background: transparent;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-outline-red:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   Why Choose Section
   ========================================== */
.why-choose-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-image .image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.why-choose-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 25px;
    border-radius: 50%;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-red);
}

.exp-number {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
}

.exp-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-align: center;
}

.why-choose-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-choose-content > p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-choose-list {
    list-style: none;
    margin-bottom: 35px;
}

.why-choose-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.why-icon {
    width: 40px;
    height: 40px;
    background: rgba(128,9,29,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-icon i {
    color: var(--primary-red);
    font-size: 1rem;
}

.why-choose-list li:hover .why-icon {
    background: var(--primary-red);
}

.why-choose-list li:hover .why-icon i {
    color: var(--white);
}

.why-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.why-text p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

.why-choose-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================================
   Stats Section
   ========================================== */
.stats-section {
    background: #f3ede0;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 30px 20px;
    border: 1px solid rgba(152, 6, 29, 0.10);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-card:hover {
    background: #ffffff;
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(152, 6, 29, 0.12);
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    display: block;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
    display: inline-block;
}

.stat-card .stat-plus {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
    display: inline-block;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    display: block;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
    background: var(--white);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: var(--accent-yellow);
    font-size: 1rem;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 25px;
}

.quote-icon {
    color: var(--primary-red);
    font-size: 1.5rem;
    opacity: 0.3;
    margin-bottom: 10px;
    display: block;
}

.testimonial-quote p {
    color: var(--dark-gray);
    line-height: 1.8;
    font-style: italic;
    font-size: 0.95rem;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-gray);
}

.author-avatar i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--black);
    font-weight: 700;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

/* ==========================================
   CTA Banner Section
   ========================================== */
.cta-banner-section {
    background: var(--primary-red);
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(128,9,29, 0.88);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.cta-content p {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   Newsletter Section
   ========================================== */
.newsletter-section {
    background: var(--black);
    padding: 50px 0;
    border-top: 4px solid var(--primary-red);
}

.newsletter-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-content {
    flex: 1;
    min-width: 280px;
}

.newsletter-content h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-content h3 i {
    color: var(--primary-red);
}

.newsletter-content p {
    color: #aaaaaa;
    font-size: 0.95rem;
    margin: 0;
}

.newsletter-form {
    flex: 2;
    min-width: 300px;
}

.newsletter-input-group {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid #ddd;
    transition: var(--transition);
}

.newsletter-input-group:focus-within {
    border-color: var(--primary-red);
}

.newsletter-email {
    flex: 1;
    padding: 14px 25px;
    background: rgba(0,0,0,0.06);
    border: none;
    outline: none;
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
}

.newsletter-email::placeholder {
    color: #222;
}

.newsletter-btn {
    border-radius: 0;
    flex-shrink: 0;
    padding: 14px 25px;
}

.newsletter-privacy {
    font-size: 0.8rem;
    color: #333;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================
   Footer Styles
   ========================================== */
.site-footer {
    background: #f5f5f5;
    color: #333;
}

.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid #ddd;
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 40px;
}

.footer-logo-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-red);
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.footer-description {
    color: #222;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Footer Widget Title */
.footer-widget-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-red);
    position: relative;
    display: inline-block;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
}

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

.footer-menu li a {
    color: #111;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-menu li a i {
    color: #111;
    font-size: 0.75rem;
    transition: color 0.2s;
}

.footer-menu li a:hover {
    color: var(--primary-red);
    padding-left: 8px;
}

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

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
}

.footer-contact-list .contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.footer-contact-list .contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(128,9,29,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-contact-list .contact-icon i {
    color: var(--primary-red);
    font-size: 0.85rem;
}

.contact-item:hover .contact-icon {
    background: var(--primary-red);
}

.contact-item:hover .contact-icon i {
    color: var(--white);
}

.footer-contact-list .contact-text strong {
    display: block;
    font-size: 0.85rem;
    color: #333;
    margin-bottom: 3px;
}

.footer-contact-list .contact-text span,
.footer-contact-list .contact-text a {
    color: #111;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-list .contact-text a:hover {
    color: var(--primary-red);
}

/* Footer Products List */
.footer-products-list {
    list-style: none;
}

.footer-product-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.footer-product-item:last-child {
    border-bottom: none;
}

.footer-product-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-product-image {
    flex-shrink: 0;
}

.footer-product-image img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 2px solid #ddd;
    transition: var(--transition);
}

.footer-product-link:hover .footer-product-image img {
    border-color: var(--primary-red);
}

.footer-product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.footer-product-name {
    color: #111;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    line-height: 1.4;
}

.footer-product-link:hover .footer-product-name {
    color: var(--primary-red);
}

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

.footer-product-price .amount {
    color: var(--primary-red);
}

/* Footer Middle */
.footer-middle {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.2);
}

.footer-middle-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-label {
    color: #222;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-label i {
    color: var(--success-green);
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons i {
    font-size: 2rem;
    color: #444;
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--white);
    transform: scale(1.15);
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    font-size: 0.85rem;
    font-weight: 600;
}

.trust-badge i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    background: #e0e0e0;
    border-top: 1px solid #ccc;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright p {
    color: #222;
    font-size: 0.875rem;
    margin: 0;
}

.copyright a {
    color: var(--primary-red);
    text-decoration: none;
}

.footer-menu-list {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-menu-list li a {
    color: #222;
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

/* Back to Top */
.back-to-top {
    position: fixed !important;
    bottom: 25px;
    right: 25px;
    z-index: 9990;
}

.back-to-top-btn {
    width: 44px;
    height: 44px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    box-shadow: 0 4px 15px rgba(128,9,29,0.3);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: var(--dark-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

/* ==========================================
   WooCommerce Styles Override
   ========================================== */

/* Shop Page */
.woocommerce-products-header {
    margin-bottom: 30px;
}

.woocommerce-products-header__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
}

/* Product Archive */
ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

ul.products li.product {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    padding: 0 !important;
    margin: 0 !important;
}

ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

ul.products li.product img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    padding: 15px 15px 5px !important;
    margin: 0 !important;
}

ul.products li.product .price {
    color: var(--primary-red) !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    padding: 0 15px 10px !important;
    display: block !important;
}

ul.products li.product .button {
    display: block !important;
    margin: 0 15px 15px !important;
    background: var(--primary-red) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    padding: 10px !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    transition: var(--transition) !important;
    border: none !important;
    text-decoration: none !important;
}

ul.products li.product .button:hover {
    background: var(--dark-red) !important;
    color: var(--white) !important;
}

/* Single Product Page */
.woocommerce div.product {
    padding: 30px 0;
}

.woocommerce div.product .product_title {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: var(--black) !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--primary-red) !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    font-family: 'Roboto', sans-serif !important;
}

.woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 15px;
}

.woocommerce .star-rating span::before {
    color: var(--accent-yellow) !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
    background: var(--primary-red) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 35px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: var(--transition) !important;
    cursor: pointer !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: var(--dark-red) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-red) !important;
}

/* WooCommerce Notices */
.woocommerce-message {
    background: rgba(40,167,69,0.1) !important;
    border-left: 4px solid var(--success-green) !important;
    color: var(--dark-gray) !important;
    padding: 15px 20px !important;
    border-radius: var(--border-radius) !important;
    margin-bottom: 20px !important;
}

.woocommerce-error {
    background: rgba(128,9,29,0.1) !important;
    border-left: 4px solid var(--primary-red) !important;
    list-style: none !important;
    padding: 15px 20px !important;
    border-radius: var(--border-radius) !important;
    margin-bottom: 20px !important;
}

/* Cart Page */
.woocommerce-cart-form table.shop_table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.woocommerce-cart-form table.shop_table th {
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.woocommerce-cart-form table.shop_table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-gray);
    vertical-align: middle;
}

.woocommerce-cart-form table.shop_table tr:hover td {
    background: var(--light-gray);
}

/* Checkout Page */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout #order_review_heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-red);
    margin-bottom: 20px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    border: 2px solid var(--border-gray) !important;
    border-radius: var(--border-radius) !important;
    padding: 10px 15px !important;
    width: 100% !important;
    transition: var(--transition) !important;
    font-family: inherit !important;
    font-size: 0.95rem !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--primary-red) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(128,9,29,0.1) !important;
}

#place_order {
    background: var(--primary-red) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 15px 40px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
}

#place_order:hover {
    background: var(--dark-red) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-red) !important;
}

/* Pagination */
.woocommerce-pagination ul {
    list-style: none;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0 0;
    padding: 0;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-gray);
    border-radius: 50%;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.woocommerce-pagination ul li a:hover,
.woocommerce-pagination ul li span.current {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

/* ==========================================
   Blog Styles
   ========================================== */
.blog-layout {
    padding: 50px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-body {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.blog-meta span i {
    color: var(--primary-red);
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--primary-red);
}

.blog-excerpt {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* ==========================================
   Sidebar Widget Styles
   ========================================== */
.blog-sidebar .widget {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    margin-bottom: 25px;
}

.blog-sidebar .widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-red);
    margin-bottom: 20px;
}

/* ==========================================
   Contact Form Styles
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius-lg);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

.info-item p a {
    color: var(--primary-red);
    text-decoration: none;
}

.contact-form-wrapper .contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-gray);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--black);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(128,9,29,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* ==========================================
   Page Styles
   ========================================== */
.page-content {
    padding: 50px 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-red);
}

.entry-content {
    line-height: 1.9;
    color: var(--dark-gray);
}

.entry-content h2 { font-size: 1.8rem; margin: 30px 0 15px; }
.entry-content h3 { font-size: 1.5rem; margin: 25px 0 12px; }
.entry-content p { margin-bottom: 20px; }
.entry-content ul, .entry-content ol { padding-left: 25px; margin-bottom: 20px; }
.entry-content li { margin-bottom: 8px; }

/* ==========================================
   404 Page
   ========================================== */
.error-404 {
    text-align: center;
    padding: 100px 0;
}

.error-404 .error-code {
    font-size: 10rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    opacity: 0.15;
    display: block;
}

.error-404 h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.error-404 p {
    color: var(--medium-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ==========================================
   Loading Spinner
   ========================================== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.6s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.6s ease forwards; }
.animate-pulse { animation: pulse 2s infinite; }

/* ==========================================
   Responsive Design
   ========================================== */

/* Large Screens 1200px+ */
@media (min-width: 1200px) {
    .container { max-width: 1200px; }
}

/* Medium Screens 992px - 1199px */
@media (max-width: 1199px) {
    .products-grid-home {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-widgets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title { font-size: 3rem; }
}

/* Tablet 768px - 991px */
@media (max-width: 991px) {
    .header-inner {
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }
    .site-branding {
        flex: 1;
        min-width: 0;
    }
    .custom-logo {
        max-height: 48px !important;
        width: auto;
    }
    .logo-text {
        font-size: 1.3rem;
    }
    .header-search {
        order: 3;
        max-width: 100%;
        width: 100%;
        flex: 0 0 100%;
    }
    .header-actions {
        flex-shrink: 0;
        gap: 8px;
    }
    /* Hide wishlist on mobile */
    .header-action-btn.wishlist-btn {
        display: none;
    }
    /* Hide cart label text on mobile, keep icon + count + total */
    .cart-info .cart-label {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .primary-menu-wrapper {
        display: none;
    }
    .category-menu-btn {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-image {
        display: block;
        max-width: 480px;
        margin: 0 auto 30px;
    }
    .why-choose-image img {
        height: 320px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .categories-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
}

/* Mobile 576px - 767px */
@media (max-width: 767px) {
    .top-bar-inner {
        flex-direction: row;
        justify-content: center;
        padding: 4px 0;
    }
    .top-bar-right { display: none; }
    .top-bar-contact {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap;
    }
    .top-bar-contact li:last-child { display: none; } /* hide address */
    .top-bar-contact li a,
    .top-bar-contact li {
        font-size: 0.72rem;
        white-space: nowrap;
    }
    .features-bar-grid {
        flex-direction: column;
    }
    .feature-bar-item {
        border-right: none;
        border-bottom: 1px solid var(--border-gray);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .categories-grid-home {
        grid-template-columns: 1fr;
    }
    .products-grid-home {
        grid-template-columns: 1fr;
    }
    ul.products {
        grid-template-columns: 1fr !important;
    }
    .footer-widgets-grid {
        grid-template-columns: 1fr;
    }
    .footer-middle-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-menu-list {
        justify-content: center;
    }

    /* Footer Mobile Accordion */
    .footer-top .footer-widget-title.footer-accordion-ready {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        user-select: none;
        padding-bottom: 10px;
        border-bottom: 1px solid #ddd;
        margin-bottom: 0;
    }
    .footer-top .footer-widget-title.footer-accordion-ready .footer-toggle-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        background: rgba(0,0,0,0.08);
        border-radius: 50%;
        transition: background 0.3s ease, transform 0.3s ease;
        flex-shrink: 0;
    }
    .footer-top .footer-widget-title.footer-accordion-ready .footer-toggle-icon i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    .footer-top .footer-widget-title.footer-expanded .footer-toggle-icon {
        background: var(--primary-green, #4caf50);
    }
    .footer-top .footer-widget-title.footer-expanded .footer-toggle-icon i {
        transform: rotate(180deg);
    }
    .footer-widget-body {
        padding-top: 12px;
    }
    .hero-title { font-size: 2rem; }
    .hero-content { padding: 40px 0; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { justify-content: center; }
    .section-title { font-size: 1.8rem; }
    .cta-content h2 { font-size: 1.8rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .hero-slide { min-height: 450px; }
    .why-choose-btns { flex-direction: column; }
    .woocommerce-cart-form table { display: block; overflow-x: auto; }
}

/* Small Mobile - 575px */
@media (max-width: 575px) {
    .container { padding: 0 15px; }
    .hero-title { font-size: 1.7rem; }
    .section-title { font-size: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .account-links { display: none; }
    .top-bar-right { display: none; }
    .top-bar-contact li:last-child { display: none; }
    .top-bar { display: block; }
    .payment-icons i { font-size: 1.5rem; }
    .experience-badge { display: none; }
    .trust-badges { justify-content: center; }
}

/* ==========================================
   Compact Typography Override
   Normalized font size and weight across theme
   ========================================== */
html { font-size: 15px !important; }
body {
    font-size: 15px !important;
    line-height: 1.65 !important;
    font-weight: 400 !important;
}
body, p, li, input, textarea, select, button {
    font-weight: 400 !important;
}
h1, h2, h3, h4, h5, h6,
strong, b,
.logo-text,
.site-logo,
.section-title,
.section-tag,
.hero-title,
.page-hero-title,
.post-hero-title,
.shop-hero-title,
.product-detail-title,
.product-title,
.product-name,
.shop-product-title,
.related-product-name,
.blog-title,
.widget-title,
.footer-widget-title,
.footer-logo-text,
.btn,
.price,
.product-price,
.product-price-area .price,
.shop-product-price .price,
.product-detail-price .price,
.stat-number,
.shop-stat-number,
.exp-number,
.cart-total,
.badge,
.nav-title,
.menu a,
.primary-menu a,
.main-navigation a {
    font-weight: 600 !important;
}
h1 { font-size: 2rem !important; }
h2 { font-size: 1.55rem !important; }
h3 { font-size: 1.25rem !important; }
h4 { font-size: 1.05rem !important; }
h5 { font-size: 0.95rem !important; }
h6 { font-size: 0.9rem !important; }
.logo-text,
.footer-logo-text { font-size: 1.35rem !important; letter-spacing: 0 !important; }
.logo-tagline { font-size: 0.68rem !important; letter-spacing: 0.4px !important; }
.hero-title { font-size: 2.15rem !important; line-height: 1.22 !important; }
.hero-subtitle { font-size: 0.98rem !important; line-height: 1.65 !important; }
.page-hero-title,
.shop-hero-title,
.post-hero-title { font-size: 1.75rem !important; line-height: 1.25 !important; }
.section-title { font-size: 1.65rem !important; line-height: 1.3 !important; }
.section-subtitle { font-size: 0.95rem !important; }
.cta-content h2 { font-size: 1.65rem !important; }
.why-choose-content h2 { font-size: 1.55rem !important; }
.product-detail-title { font-size: 1.45rem !important; }
.product-detail-price .price { font-size: 1.45rem !important; }
.product-price-area .price,
.shop-product-price .price,
.related-price .price,
.product-price { font-size: 1.05rem !important; }
.shop-product-title,
.product-name,
.product-title,
.related-product-name { font-size: 0.95rem !important; }
.blog-title { font-size: 1.12rem !important; }
.page-title { font-size: 1.75rem !important; }
.post-body,
.page-entry-content,
.product-full-description { font-size: 0.94rem !important; }
.btn,
button,
.filter-tab,
.category-menu-btn,
.primary-menu > li > a {
    font-size: 0.84rem !important;
    letter-spacing: 0.2px !important;
}
.btn-large { font-size: 0.9rem !important; padding: 12px 26px !important; }
.hero-stat .stat-number,
.stat-card .stat-number,
.shop-stat-number { font-size: 1.65rem !important; }
.stat-card .stat-plus { font-size: 1.2rem !important; }
.error-404 .error-code { font-size: 5.5rem !important; font-weight: 600 !important; }
.post-hero-meta,
.breadcrumbs,
.page-breadcrumb,
.product-short-description,
.shop-product-desc,
.product-short-desc { font-size: 0.88rem !important; }

/* Office details */
.tyson-offices {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}
.tyson-office-card {
    background: rgba(128,9,29,0.05);
    border-left: 3px solid var(--primary-red, #80091d);
    border-radius: 10px;
    padding: 14px 16px;
}
.tyson-office-card h4 {
    margin: 0 0 8px !important;
    font-size: 0.98rem !important;
    font-weight: 600 !important;
    color: var(--black, #1A1A1A);
}
.tyson-office-card p {
    margin: 4px 0 !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
}
.footer-office-details .tyson-office-card,
.tyson-offices-compact .tyson-office-card {
    background: rgba(0,0,0,0.03);
    border-left-color: var(--primary-red, #80091d);
}
.footer-office-details .tyson-office-card h4,
.footer-office-details .tyson-office-card p,
.footer-office-details .tyson-office-card strong,
.footer-email-row,
.footer-email-row a {
    color: #111 !important;
}
.footer-email-row {
    margin-top: 12px;
    font-size: 0.9rem;
}
.contact-offices-card {
    margin-bottom: 18px;
}

@media (max-width: 991px) {
    .hero-title { font-size: 1.85rem !important; }
    .page-hero-title,
    .shop-hero-title,
    .post-hero-title { font-size: 1.55rem !important; }
    .section-title { font-size: 1.45rem !important; }
    .product-detail-title { font-size: 1.3rem !important; }
}
@media (max-width: 576px) {
    html { font-size: 14px !important; }
    .hero-title { font-size: 1.45rem !important; }
    .page-hero-title,
    .shop-hero-title,
    .post-hero-title { font-size: 1.35rem !important; }
    .section-title,
    .cta-content h2 { font-size: 1.25rem !important; }
    h1 { font-size: 1.55rem !important; }
    h2 { font-size: 1.28rem !important; }
}

/* Footer layout update: categories in middle, contact at end, no recent-products column */
.footer-categories .footer-category-list li a {
    justify-content: space-between;
}
.footer-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 22px;
    padding: 0 7px;
    margin-left: 10px;
    border-radius: 999px;
    background: rgba(128,9,29,0.18);
    color: rgba(255,255,255,0.82);
    font-size: 0.76rem !important;
    font-weight: 500 !important;
}
.footer-contact-end {
    order: 4;
}
.footer-categories {
    order: 3;
}
.footer-links {
    order: 2;
}
.footer-about {
    order: 1;
}
@media (min-width: 992px) {
    .footer-widgets-grid {
        grid-template-columns: 1.7fr 1.2fr 1.4fr 1.7fr !important;
        gap: 34px !important;
    }
}

/* ==========================================
   FOOTER FULL BLACK TEXT OVERRIDE
   ========================================== */
.site-footer,
.site-footer *:not(.footer-widget-title):not(.social-link):not(.back-to-top-btn):not(.btn):not(.btn-inquiry):not(.inq-submit) {
    color: #111 !important;
}
.footer-widget-title { color: #80091d !important; }
.site-footer a:hover,
.footer-menu li a:hover,
.footer-contact-list a:hover,
.footer-menu-list li a:hover { color: #80091d !important; }
.back-to-top-btn { color: #fff !important; }
.footer-bottom { background: #e0e0e0; }
.footer-bottom * { color: #111 !important; }


/* ==========================================
   TYSON RESPONSIVE PERMANENT FIXES V1.0.6
   Mobile menu, category carousel, product cards, shop/category grids
   ========================================== */

/* Keep page backgrounds clean and remove accidental dark/grey blocks */
html,
body,
#page-wrapper,
.site-wrapper,
.content-area,
.site-main,
.main-content,
.shop-main,
.archive-products,
.woocommerce-page,
.woocommerce {
    background: #fff !important;
}
.categories-section,
.featured-products-section,
.shop-wrapper,
.products-container,
.shop-content,
.product-section,
.products-section {
    background: #fff !important;
}

/* Mobile menu: clean dropdown, no blurry/dark page overlay */
.menu-overlay {
    background: rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.mobile-menu {
    background: #fff !important;
    border-top: 2px solid var(--primary-red, #80091d) !important;
    box-shadow: 0 14px 35px rgba(0,0,0,0.12) !important;
    position: relative !important;
    z-index: 1002 !important;
}
.mobile-menu.active {
    max-height: calc(100vh - 130px) !important;
    overflow-y: auto !important;
}
.mobile-menu-inner {
    background: #fff !important;
    padding: 10px 14px 16px !important;
}
.mobile-nav-menu,
.mobile-nav-menu ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
}
.mobile-nav-menu li a {
    display: flex !important;
    align-items: center !important;
    min-height: 46px !important;
    padding: 12px 14px !important;
    color: #111 !important;
    background: #fff !important;
    border-bottom: 1px solid #eeeeee !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    filter: none !important;
}
.mobile-nav-menu li a:hover,
.mobile-nav-menu li.current-menu-item > a {
    color: var(--primary-red, #80091d) !important;
    background: rgba(128,9,29,0.06) !important;
    padding-left: 16px !important;
}
.mobile-menu-toggle {
    min-width: 44px !important;
    min-height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fff !important;
    border: 1px solid #e5e5e5 !important;
}
.mobile-menu-toggle.active {
    background: var(--primary-red, #80091d) !important;
}
.mobile-menu-toggle.active .hamburger-line {
    background: #fff !important;
}

/* Home categories: round cards + desktop autoplay track */
.categories-section {
    overflow: hidden !important;
}
.categories-grid-home.categories-carousel-home {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 22px !important;
    overflow: hidden !important;
    scroll-behavior: smooth !important;
    padding: 6px 2px 16px !important;
    margin-bottom: 28px !important;
}
.category-card-home {
    flex: 0 0 calc(25% - 17px) !important;
    min-width: 210px !important;
    background: #fff !important;
    border: 1px solid #eeeeee !important;
    border-radius: 999px 999px 24px 24px !important;
    box-shadow: 0 5px 18px rgba(0,0,0,0.07) !important;
    overflow: hidden !important;
    text-align: center !important;
}
.category-card-home:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
}
.category-card-home a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    min-height: 100% !important;
    padding: 20px 14px 16px !important;
}
.category-image-wrapper {
    width: 122px !important;
    height: 122px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    background: #f8f8f8 !important;
    border: 3px solid rgba(128,9,29,0.12) !important;
    margin: 0 auto 12px !important;
    flex: 0 0 auto !important;
}
.category-image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}
.category-overlay-home {
    display: none !important;
}
.category-info-home {
    padding: 0 !important;
    text-align: center !important;
    width: 100% !important;
}
.category-info-home h3 {
    margin: 0 0 4px !important;
    color: #111 !important;
    font-size: 0.98rem !important;
    line-height: 1.3 !important;
    min-height: 2.6em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}
.category-count {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 24px !important;
    padding: 3px 10px !important;
    border-radius: 999px !important;
    background: rgba(128,9,29,0.08) !important;
    color: var(--primary-red, #80091d) !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
}

/* Product tabs removed permanently from layout */
.product-filter-tabs,
.filter-tab {
    display: none !important;
}

/* Product image normalization: no stretching/cutting */
.product-card-home,
li.shop-product-card,
.woocommerce ul.products li.product,
.product-card {
    background: #fff !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}
.product-image-area,
.shop-product-image,
.product-card > a:first-child,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    background: #fff !important;
}
.product-image-area,
.shop-product-image {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}
.product-image-area a,
.shop-product-image a {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.product-main-image,
.product-image-area img,
.shop-product-thumb,
.shop-product-image img,
.woocommerce ul.products li.product img,
.product-card img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    background: #fff !important;
    transform: none !important;
}
.product-card-home:hover .product-main-image,
li.shop-product-card:hover .shop-product-thumb,
.product-card:hover img {
    transform: none !important;
}
.product-info-area,
.shop-product-info,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-card .woocommerce-loop-product__title {
    background: #fff !important;
}
.product-info-area,
.shop-product-info {
    padding: 14px !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
}
.product-name,
.shop-product-title,
.woocommerce-loop-product__title {
    min-height: 2.6em !important;
    margin: 0 0 8px !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}
.product-short-desc,
.shop-product-desc {
    min-height: 3.2em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}
.product-price-area,
.shop-product-price {
    margin-top: auto !important;
}
.product-cart-btn,
.shop-product-cart {
    margin-top: 10px !important;
}
.product-cart-btn .btn,
.shop-product-cart .btn,
.shop-add-cart,
.woocommerce ul.products li.product .button {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: 999px !important;
    min-height: 38px !important;
    white-space: normal !important;
}

/* Home products grid */
.products-grid-home {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: stretch !important;
}

/* WooCommerce shop/category grids */
.products-container ul.products,
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: stretch !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}
.products-container ul.products::before,
.products-container ul.products::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
    content: none !important;
}
.products-container ul.products li.product,
.woocommerce ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}
.shop-wrapper {
    padding: 30px 0 50px !important;
}
.shop-inner {
    gap: 24px !important;
}
.shop-toolbar {
    background: #fff !important;
    border: 1px solid #eeeeee !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05) !important;
}
.shop-sidebar {
    background: #fff !important;
    border: 1px solid #eeeeee !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
}

/* Responsive fixes */
@media (max-width: 1199px) {
    .products-grid-home,
    .products-container ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
    .category-card-home {
        flex-basis: calc(33.333% - 15px) !important;
    }
}
@media (max-width: 991px) {
    .menu-overlay {
        background: rgba(0, 0, 0, 0.05) !important;
    }
    .main-navigation .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .nav-inner {
        display: block !important;
    }
    .mobile-menu {
        width: 100% !important;
    }
    .categories-grid-home.categories-carousel-home {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        overflow: visible !important;
        gap: 14px !important;
    }
    .category-card-home {
        min-width: 0 !important;
        flex: none !important;
        border-radius: 18px !important;
    }
    .category-card-home a {
        padding: 14px 8px 12px !important;
    }
    .category-image-wrapper {
        width: 92px !important;
        height: 92px !important;
        margin-bottom: 10px !important;
    }
    .category-info-home h3 {
        font-size: 0.88rem !important;
        min-height: 2.5em !important;
    }
    .products-grid-home,
    .products-container ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }
    .shop-inner {
        display: block !important;
    }
    .shop-sidebar {
        max-width: 320px !important;
    }
}
@media (max-width: 767px) {
    .top-bar {
        background: #fff !important;
    }
    .site-header {
        background: #fff !important;
        z-index: 1001 !important;
    }
    .header-inner {
        gap: 8px !important;
    }
    .header-search {
        margin-top: 8px !important;
    }
    .categories-section,
    .featured-products-section {
        padding: 42px 0 !important;
    }
    .products-grid-home,
    .products-container ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }
    .product-image-area,
    .shop-product-image {
        padding: 8px !important;
    }
    .product-info-area,
    .shop-product-info {
        padding: 10px !important;
    }
    .product-cat-label,
    .shop-product-cat,
    .product-short-desc,
    .shop-product-desc,
    .shop-product-rating,
    .shop-product-stock,
    .product-actions-overlay,
    .shop-product-actions {
        display: none !important;
    }
    .product-name,
    .shop-product-title,
    .woocommerce-loop-product__title {
        font-size: 0.82rem !important;
        min-height: 2.55em !important;
        margin-bottom: 6px !important;
    }
    .product-price-area .price,
    .shop-product-price .price,
    .woocommerce ul.products li.product .price {
        font-size: 0.86rem !important;
        line-height: 1.25 !important;
    }
    .product-cart-btn .btn,
    .shop-product-cart .btn,
    .shop-add-cart,
    .woocommerce ul.products li.product .button {
        min-height: 34px !important;
        padding: 7px 8px !important;
        font-size: 0.72rem !important;
    }
    .shop-toolbar {
        padding: 12px !important;
        gap: 8px !important;
    }
    .toolbar-left,
    .toolbar-right {
        width: 100% !important;
        justify-content: space-between !important;
    }
}
@media (max-width: 480px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .categories-grid-home.categories-carousel-home,
    .products-grid-home,
    .products-container ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }
    .category-image-wrapper {
        width: 78px !important;
        height: 78px !important;
    }
    .category-info-home h3 {
        font-size: 0.78rem !important;
    }
    .category-count {
        font-size: 0.68rem !important;
        padding: 2px 7px !important;
    }
}


/* TYSON SHOP/CATEGORY HERO CLEAN FIX V1.0.7
   Permanent removal of the old shop-hero.jpg banner image on shop and product category pages. */
.shop-main .shop-hero,
body.post-type-archive-product .shop-hero,
body.tax-product_cat .shop-hero,
body.woocommerce-shop .shop-hero {
    background: linear-gradient(135deg, #5c0615 0%, #80091d 100%) !important;
    background-image: none !important;
    box-shadow: none !important;
}
.shop-main .shop-hero::before,
.shop-main .shop-hero::after,
body.post-type-archive-product .shop-hero::before,
body.post-type-archive-product .shop-hero::after,
body.tax-product_cat .shop-hero::before,
body.tax-product_cat .shop-hero::after,
body.woocommerce-shop .shop-hero::before,
body.woocommerce-shop .shop-hero::after,
.shop-main .shop-hero-overlay {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
}
.shop-main .shop-hero-content,
.shop-main .shop-hero-title,
.shop-main .shop-hero-subtitle,
.shop-main .shop-stat-number,
.shop-main .shop-stat-label,
body.post-type-archive-product .shop-hero-title,
body.post-type-archive-product .shop-hero-subtitle,
body.post-type-archive-product .shop-stat-number,
body.post-type-archive-product .shop-stat-label,
body.tax-product_cat .shop-hero-title,
body.tax-product_cat .shop-hero-subtitle,
body.tax-product_cat .shop-stat-number,
body.tax-product_cat .shop-stat-label {
    color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: none !important;
}
.shop-main .shop-hero-title,
body.post-type-archive-product .shop-hero-title,
body.tax-product_cat .shop-hero-title {
    font-weight: 700 !important;
    margin-bottom: 12px !important;
}
.shop-main .shop-hero-subtitle,
body.post-type-archive-product .shop-hero-subtitle,
body.tax-product_cat .shop-hero-subtitle,
.shop-main .shop-stat-label,
body.post-type-archive-product .shop-stat-label,
body.tax-product_cat .shop-stat-label {
    color: rgba(255, 255, 255, 0.94) !important;
}

/* TYSON PRODUCT IMAGE FINAL FIX V1.0.8
   Prevent hidden lazy images, broken custom-size thumbnails, cropping, stretching and uneven product cards. */
.product-card-home,
li.shop-product-card,
.woocommerce ul.products li.product,
.related-product-card,
.product-card {
    background: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    overflow: hidden !important;
}

.product-image-area,
.shop-product-image,
.woo-product-image,
.related-product-image {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 12px !important;
    background: #ffffff !important;
    border-bottom: 1px solid #f1f1f1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.product-image-area a,
.shop-product-image a,
.woo-product-image a,
.related-product-image a {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-main-image,
.shop-product-thumb,
.related-product-thumb,
.popular-product-thumb,
.tyson-product-img,
.product-image-area img,
.shop-product-image img,
.woo-product-image img,
.related-product-image img,
.woocommerce ul.products li.product img,
.product-card img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    transform: none !important;
}

.product-card-home:hover .product-main-image,
li.shop-product-card:hover .shop-product-thumb,
.related-product-card:hover img,
.product-card:hover img {
    transform: none !important;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: block !important;
    background: #ffffff !important;
    color: inherit !important;
    text-decoration: none !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-name,
.shop-product-title,
.related-product-title {
    color: #1f1f1f !important;
    line-height: 1.3 !important;
    min-height: 2.6em !important;
    margin-bottom: 8px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.main-image-container {
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.main-product-img {
    width: 100% !important;
    height: auto !important;
    max-height: 620px !important;
    object-fit: contain !important;
    object-position: center center !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.popular-product-image,
.popular-product-image a {
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.popular-product-image img {
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 767px) {
    .product-image-area,
    .shop-product-image,
    .woo-product-image,
    .related-product-image {
        padding: 8px !important;
    }
    .product-main-image,
    .shop-product-thumb,
    .related-product-thumb,
    .tyson-product-img,
    .product-image-area img,
    .shop-product-image img,
    .woocommerce ul.products li.product img {
        object-fit: contain !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}


/* TYSON PRODUCT IMAGE RESTORE + CARD FIX V1.1.0 */
body.woocommerce-shop li.shop-product-card,
body.post-type-archive-product li.shop-product-card,
body.tax-product_cat li.shop-product-card,
.products-grid-home .product-card-home,
.woocommerce ul.products li.tyson-fixed-product-card,
li.tyson-fixed-product-card {
    background: #fff !important;
    border: 1px solid #ececec !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.06) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 0 !important;
}

.tyson-fixed-product-image,
.shop-product-image.tyson-fixed-product-image,
.product-image-area.tyson-fixed-product-image,
.woocommerce ul.products li.product .tyson-fixed-product-image {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    min-height: 0 !important;
    background: #fff !important;
    padding: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.tyson-fixed-product-image a {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

.tyson-fixed-product-image img,
.shop-product-thumb,
.product-main-image,
.tyson-product-img,
.woocommerce ul.products li.product .tyson-fixed-product-image img,
.woocommerce ul.products li.tyson-fixed-product-card img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: #fff !important;
}

.tyson-fixed-product-image img.tyson-placeholder-img,
.tyson-placeholder-img {
    padding: 18px !important;
    background: #fafafa !important;
    border-radius: 12px !important;
}

body.woocommerce-shop li.shop-product-card .shop-product-info,
body.post-type-archive-product li.shop-product-card .shop-product-info,
body.tax-product_cat li.shop-product-card .shop-product-info,
.products-grid-home .product-card-home .product-info-area,
.tyson-fixed-product-info {
    padding: 14px 14px 16px !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
}

.tyson-fixed-product-title,
.shop-product-title.tyson-fixed-product-title,
.product-name.tyson-fixed-product-title,
.woocommerce-loop-product__title.tyson-fixed-product-title,
.woocommerce ul.products li.product .tyson-fixed-product-title {
    color: #111 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    min-height: 2.7em !important;
    margin: 0 0 12px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.tyson-fixed-product-title a,
.shop-product-title.tyson-fixed-product-title a,
.product-name.tyson-fixed-product-title a,
.woocommerce-loop-product__title.tyson-fixed-product-title a {
    color: #111 !important;
    text-decoration: none !important;
}

.tyson-fixed-product-buttons,
.shop-product-cart.tyson-fixed-product-buttons,
.product-cart-btn.tyson-fixed-product-buttons {
    margin-top: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    align-items: center !important;
}

.tyson-fixed-product-buttons .btn,
.tyson-fixed-product-buttons .button,
.woocommerce ul.products li.product .tyson-fixed-product-buttons .button {
    min-height: 42px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 9px 12px !important;
    line-height: 1.1 !important;
    white-space: normal !important;
}

.tyson-fixed-product-buttons .btn-view {
    width: 52px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Hide only extra text/clutter. Do NOT hide product images. */
body.woocommerce-shop li.shop-product-card .shop-product-cat,
body.post-type-archive-product li.shop-product-card .shop-product-cat,
body.tax-product_cat li.shop-product-card .shop-product-cat,
.products-grid-home .product-card-home .product-cat-label,
body.woocommerce-shop li.shop-product-card .shop-product-rating,
body.post-type-archive-product li.shop-product-card .shop-product-rating,
body.tax-product_cat li.shop-product-card .shop-product-rating,
body.woocommerce-shop li.shop-product-card .shop-product-desc,
body.post-type-archive-product li.shop-product-card .shop-product-desc,
body.tax-product_cat li.shop-product-card .shop-product-desc,
.products-grid-home .product-card-home .product-short-desc,
body.woocommerce-shop li.shop-product-card .shop-product-price,
body.post-type-archive-product li.shop-product-card .shop-product-price,
body.tax-product_cat li.shop-product-card .shop-product-price,
.products-grid-home .product-card-home .product-price-area,
body.woocommerce-shop li.shop-product-card .shop-product-stock,
body.post-type-archive-product li.shop-product-card .shop-product-stock,
body.tax-product_cat li.shop-product-card .shop-product-stock,
body.woocommerce-shop li.shop-product-card .product-badges,
body.post-type-archive-product li.shop-product-card .product-badges,
body.tax-product_cat li.shop-product-card .product-badges,
.products-grid-home .product-card-home .product-badges,
body.woocommerce-shop li.shop-product-card .shop-product-actions,
body.post-type-archive-product li.shop-product-card .shop-product-actions,
body.tax-product_cat li.shop-product-card .shop-product-actions,
.products-grid-home .product-card-home .product-actions-overlay,
.woocommerce ul.products li.tyson-fixed-product-card .star-rating,
.woocommerce ul.products li.tyson-fixed-product-card .price {
    display: none !important;
}

.products-grid-home,
.products-container ul.products,
.woocommerce ul.products {
    align-items: stretch !important;
}

@media (max-width: 767px) {
    .products-grid-home,
    .products-container ul.products,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .tyson-fixed-product-image,
    .shop-product-image.tyson-fixed-product-image,
    .product-image-area.tyson-fixed-product-image {
        padding: 8px !important;
    }

    .tyson-fixed-product-info,
    body.woocommerce-shop li.shop-product-card .shop-product-info,
    body.post-type-archive-product li.shop-product-card .shop-product-info,
    body.tax-product_cat li.shop-product-card .shop-product-info,
    .products-grid-home .product-card-home .product-info-area {
        padding: 10px !important;
    }

    .tyson-fixed-product-title,
    .shop-product-title.tyson-fixed-product-title,
    .product-name.tyson-fixed-product-title,
    .woocommerce-loop-product__title.tyson-fixed-product-title {
        font-size: 13px !important;
        min-height: 2.8em !important;
        margin-bottom: 9px !important;
    }

    .tyson-fixed-product-buttons,
    .shop-product-cart.tyson-fixed-product-buttons,
    .product-cart-btn.tyson-fixed-product-buttons {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .tyson-fixed-product-buttons .btn-view {
        width: 100% !important;
    }
}
/* END TYSON PRODUCT IMAGE RESTORE + CARD FIX V1.1.0 */



/* TYSON SHOP/CATEGORY TOP SPACE REMOVE FIX V1.1.1 */
body.woocommerce-shop .shop-hero,
body.post-type-archive-product .shop-hero,
body.tax-product_cat .shop-hero,
.shop-main .shop-hero {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
}
body.woocommerce-shop .shop-wrapper,
body.post-type-archive-product .shop-wrapper,
body.tax-product_cat .shop-wrapper,
.shop-main .shop-wrapper {
    padding-top: 20px !important;
}
body.woocommerce-shop .woocommerce-breadcrumb,
body.post-type-archive-product .woocommerce-breadcrumb,
body.tax-product_cat .woocommerce-breadcrumb {
    margin-bottom: 16px !important;
}
/* END TYSON SHOP/CATEGORY TOP SPACE REMOVE FIX V1.1.1 */


/* TYSON HOME BANNER IMAGE + HEIGHT FIX V1.1.2 */
body.home .hero-section.tyson-home-banner-section,
body.front-page .hero-section.tyson-home-banner-section,
.hero-section.tyson-home-banner-section {
    background: #fbf9f4 !important;
    background-image: none !important;
    color: inherit !important;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
    text-align: center !important;
}
.tyson-home-banner-wrap {
    width: 100% !important;
    background: #fbf9f4 !important;
    display: block !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 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;
    margin: 0 auto !important;
    background: #fbf9f4 !important;
}
.hero-section.tyson-home-banner-section .container,
.hero-section.tyson-home-banner-section .hero-static,
.hero-section.tyson-home-banner-section .hero-content,
.hero-section.tyson-home-banner-section .hero-tag,
.hero-section.tyson-home-banner-section .hero-title,
.hero-section.tyson-home-banner-section .hero-subtitle,
.hero-section.tyson-home-banner-section .hero-buttons {
    display: none !important;
}
.features-bar-section {
    padding: 0 !important;
}
.feature-bar-item {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}
.categories-section,
.featured-products-section,
.about-section,
.contact-section {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}
@media (max-width: 991px) {
    .tyson-home-banner-img {
        max-height: 330px !important;
    }
    .feature-bar-item {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }
}
@media (max-width: 767px) {
    .tyson-home-banner-img {
        min-height: 170px !important;
        max-height: 230px !important;
        object-fit: cover !important;
    }
    .features-bar-section {
        display: none !important;
    }
    .categories-section,
    .featured-products-section,
    .about-section,
    .contact-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}
/* END TYSON HOME BANNER IMAGE + HEIGHT FIX V1.1.2 */


/* TYSON FOOTER SOCIAL ICON HARD REMOVE V1.1.3
   Backup rule: footer DB/widgets may output social blocks outside theme files. */
.site-footer .wp-social-links,
.site-footer .wp-block-social-links,
.site-footer .wp-social-link,
.site-footer .social-icons,
.site-footer .footer-social,
.site-footer .social-media,
.site-footer .contact-social-links,
.site-footer .team-social,
.site-footer a[href*="facebook"],
.site-footer a[href*="fb.com"],
.site-footer a[href*="instagram"],
.site-footer a[href*="twitter"],
.site-footer a[href*="x.com"],
.site-footer a[href*="linkedin"],
.site-footer a[href*="youtube"],
.site-footer a[href*="tiktok"],
.site-footer a[href*="pinterest"],
.site-footer a[href*="snapchat"],
.site-footer a[href*="reddit"],
.site-footer [class*="facebook"],
.site-footer [class*="instagram"],
.site-footer [class*="twitter"],
.site-footer [class*="linkedin"],
.site-footer [class*="youtube"],
.site-footer [class*="tiktok"],
.site-footer [class*="pinterest"],
.site-footer [class*="reddit"] {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    max-width: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}
/* END TYSON FOOTER SOCIAL ICON HARD REMOVE V1.1.3 */


/* ==========================================
   TYSON OUR BRANDS CAROUSEL SECTION V1.1.4
   ========================================== */
.tyson-brands-section {
    background: #fbf9f4 !important;
    padding: 64px 0 70px !important;
    overflow: hidden !important;
    position: relative !important;
}

.tyson-brands-header {
    max-width: 920px !important;
    margin: 0 auto 34px !important;
    text-align: center !important;
}

.tyson-brands-tag {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    color: #98061d !important;
    margin-bottom: 12px !important;
}

.tyson-brands-header h2 {
    color: #111111 !important;
    font-size: clamp(28px, 3vw, 42px) !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    margin: 0 0 14px !important;
}

.tyson-brands-header p {
    color: #555555 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    max-width: 840px !important;
    margin: 0 auto !important;
}

.tyson-brands-carousel-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    position: relative !important;
}

.tyson-brands-carousel {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
}

.tyson-brands-track {
    display: flex !important;
    align-items: stretch !important;
    transition: transform 0.55s ease !important;
    will-change: transform !important;
}

.tyson-brand-slide {
    flex: 0 0 20% !important;
    padding: 10px !important;
    box-sizing: border-box !important;
}

.tyson-brand-card {
    min-height: 142px !important;
    background: #ffffff !important;
    border: 1px solid rgba(152, 6, 29, 0.10) !important;
    border-radius: 20px !important;
    padding: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.055) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.tyson-brand-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(152, 6, 29, 0.28) !important;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.085) !important;
}

.tyson-brand-card img {
    max-width: 100% !important;
    max-height: 86px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.tyson-brand-slide:first-child .tyson-brand-card {
    border-color: rgba(152, 6, 29, 0.22) !important;
}

.tyson-brand-slide:first-child .tyson-brand-card img {
    max-height: 98px !important;
}

.tyson-brands-nav {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 50% !important;
    border: 0 !important;
    background: #98061d !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 10px 24px rgba(152, 6, 29, 0.24) !important;
    transition: transform 0.25s ease, background 0.25s ease !important;
}

.tyson-brands-nav:hover,
.tyson-brands-nav:focus {
    background: #7c0417 !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

@media (max-width: 1199px) {
    .tyson-brand-slide { flex-basis: 25% !important; }
}

@media (max-width: 991px) {
    .tyson-brands-section { padding: 52px 0 58px !important; }
    .tyson-brand-slide { flex-basis: 33.3333% !important; }
}

@media (max-width: 767px) {
    .tyson-brands-carousel-wrap { gap: 8px !important; }
    .tyson-brand-slide { flex-basis: 50% !important; padding: 8px !important; }
    .tyson-brand-card { min-height: 118px !important; padding: 16px !important; border-radius: 16px !important; }
    .tyson-brand-card img { max-height: 68px !important; }
    .tyson-brands-nav { width: 40px !important; height: 40px !important; min-width: 40px !important; font-size: 13px !important; }
    .tyson-brands-header p { font-size: 15px !important; }
}

@media (max-width: 420px) {
    .tyson-brand-slide { flex-basis: 100% !important; }
}
/* END TYSON OUR BRANDS CAROUSEL SECTION V1.1.4 */


/* TYSON FINAL FOOTER / ABOUT / CONTACT FIXES V1.1.5 */
.footer-brand-about {
    display: block;
}
.footer-brand-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    text-decoration: none;
}
.footer-brand-logo {
    display: block;
    max-width: 165px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.footer-brand-about-text {
    color: #222;
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0 0 10px;
    max-width: 330px;
}
.tyson-clean-page-main .page-hero {
    display: none;
}
.tyson-about-page-section,
.tyson-contact-page-section {
    padding: 70px 0;
    background: #fbf9f4;
}
.tyson-about-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 55px;
    align-items: center;
}
.tyson-about-page-image img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}
.tyson-about-page-content h1,
.tyson-contact-page-header h1 {
    margin: 12px 0 18px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: #111;
}
.tyson-about-page-content p,
.tyson-contact-page-header p {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 14px;
}
.tyson-page-user-content {
    margin-top: 20px;
}
.tyson-about-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 45px;
}
.tyson-about-value-card,
.tyson-contact-card,
.tyson-contact-form-card {
    background: #fff;
    border: 1px solid rgba(152,6,29,0.10);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.055);
}
.tyson-about-value-card i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(152,6,29,0.10);
    color: #98061d;
    font-size: 1.25rem;
    margin-bottom: 16px;
}
.tyson-about-value-card h3,
.tyson-contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #111;
}
.tyson-about-value-card p,
.tyson-contact-card p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 8px;
}
.tyson-contact-page-header {
    max-width: 780px;
    margin: 0 auto 36px;
    text-align: center;
}
.tyson-contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1.4fr);
    gap: 24px;
    align-items: start;
}
.tyson-simple-contact-form,
.tyson-simple-contact-form .form-row-double {
    display: grid;
    gap: 14px;
}
.tyson-simple-contact-form .form-row-double {
    grid-template-columns: 1fr 1fr;
}
.tyson-simple-contact-form .form-control {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 14px;
    background: #fff;
}
@media (max-width: 991px) {
    .tyson-about-page-grid,
    .tyson-contact-page-grid {
        grid-template-columns: 1fr;
    }
    .tyson-about-value-grid {
        grid-template-columns: 1fr;
    }
    .tyson-about-page-image img {
        height: auto;
        max-height: 520px;
    }
}
@media (max-width: 576px) {
    .tyson-about-page-section,
    .tyson-contact-page-section {
        padding: 45px 0;
    }
    .tyson-simple-contact-form .form-row-double {
        grid-template-columns: 1fr;
    }
    .footer-brand-logo {
        max-width: 145px;
    }
}
/* END TYSON FINAL FOOTER / ABOUT / CONTACT FIXES V1.1.5 */

/* ==========================================================
   TYSON V1.2.0 — Reviews 12-grid + Verified badge + Flags
   + Hide leftover btn-view (defensive)
   + Professional About page sections
   + Hide Section 8 CTA (cta-banner-section)
   ========================================================== */

/* Defensive: hide any leftover btn-view (eye) buttons everywhere */
.tyson-fixed-product-buttons .btn-view,
.shop-product-cart .btn-view,
.product-cart-btn .btn-view,
.btn.btn-outline-red.btn-view {
    display: none !important;
}

/* Hide the "Ready to Start Your Recycling Journey?" red CTA banner
   even if it was loaded from somewhere else / cached */
.cta-banner-section {
    display: none !important;
}

/* ==========================================
   Testimonials — Reviews Carousel (3/2/1 responsive)
   ========================================== */

/* Section needs relative positioning so the arrows can sit beside the carousel */
.testimonials-section .container {
    position: relative;
}

.tyson-reviews-carousel {
    position: relative;
    margin: 0 auto;
    padding: 0 60px; /* space for desktop arrows */
}

.tyson-reviews-viewport {
    overflow: hidden;
    width: 100%;
}

.tyson-reviews-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
    touch-action: pan-y;
}

/* Each slide is exactly 1/N of the viewport (minus gap proportions) */
.tyson-review-slide {
    flex: 0 0 calc((100% - 2 * 24px) / 3); /* desktop default: 3 per view */
    max-width: calc((100% - 2 * 24px) / 3);
    display: flex;
}

.tyson-review-slide > .testimonial-card {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 26px 24px;
    background: #fff;
    border: 1px solid rgba(152, 6, 29, 0.10);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border-radius: var(--border-radius-lg, 12px);
    display: flex;
    flex-direction: column;
}

/* Quote text */
.tyson-review-slide .testimonial-quote {
    flex: 1 1 auto;
}
.tyson-review-slide .testimonial-quote p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Top row: stars + verified badge */
.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}
.review-card-top .testimonial-stars {
    margin-bottom: 0;
}

/* Verified badge */
.review-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #0f7a3d;
    background: #e6f5ec;
    border: 1px solid rgba(15, 122, 61, 0.25);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
}
.review-verified-badge i {
    color: #0f7a3d;
    font-size: 0.85rem;
}

/* Empty (gray) star color for review cards */
.review-card .testimonial-stars .far.fa-star {
    color: #d8d8d8;
}

/* Country flag next to reviewer name */
.review-flag {
    display: inline-block;
    margin-left: 6px;
    font-size: 1.05rem;
    line-height: 1;
    vertical-align: -1px;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji",
                 "Twemoji Mozilla", "EmojiOne Color", sans-serif;
}

/* ===== Carousel arrows ===== */
.tyson-reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #98061d;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 5;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.tyson-reviews-arrow:hover {
    background: #98061d;
    color: #fff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 10px 26px rgba(152, 6, 29, 0.35);
}
.tyson-reviews-arrow:focus {
    outline: 2px solid rgba(152, 6, 29, 0.4);
    outline-offset: 2px;
}
.tyson-reviews-arrow.is-disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}
.tyson-reviews-prev { left: 0; }
.tyson-reviews-next { right: 0; }

/* ===== Dots ===== */
.tyson-reviews-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.tyson-reviews-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #d8c8cb;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}
.tyson-reviews-dot:hover {
    background: #b86574;
}
.tyson-reviews-dot.is-active {
    background: #98061d;
    width: 26px;
    border-radius: 999px;
}

/* ===== Responsive: 2 per view at tablet ===== */
@media (max-width: 991px) {
    .tyson-review-slide {
        flex: 0 0 calc((100% - 1 * 24px) / 2);
        max-width: calc((100% - 1 * 24px) / 2);
    }
    .tyson-reviews-carousel {
        padding: 0 50px;
    }
}

/* ===== Responsive: 1 per view at mobile ===== */
@media (max-width: 640px) {
    .tyson-review-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .tyson-reviews-track {
        gap: 16px;
    }
    .tyson-reviews-carousel {
        padding: 0 8px;
    }
    .tyson-reviews-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
    .tyson-reviews-prev { left: -4px; }
    .tyson-reviews-next { right: -4px; }
    .review-card-top {
        flex-wrap: wrap;
    }
    .tyson-review-slide > .testimonial-card {
        padding: 22px 18px;
    }
}

@media (max-width: 380px) {
    .tyson-reviews-carousel {
        padding: 0 4px;
    }
    .tyson-reviews-arrow {
        background: rgba(255, 255, 255, 0.92);
    }
}


/* ==========================================
   About Us — Hero
   ========================================== */
.tyson-about-hero {
    position: relative;
    background: #fbf9f4;
    color: #000;
    padding: 70px 0 60px;
    overflow: hidden;
    border-bottom: 1px solid rgba(152, 6, 29, 0.08);
}

.tyson-about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.tyson-about-hero-inner .section-tag {
    background: rgba(152, 6, 29, 0.10);
    color: #98061d;
    border: 1px solid rgba(152, 6, 29, 0.25);
}

.tyson-about-hero-inner h1 {
    color: #000;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1.18;
    margin: 14px 0 18px;
    font-weight: 800;
}

.tyson-about-hero-inner p {
    color: #2c2c2c;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

/* Hide default page-hero on about page since we have our own */
body.page-template-template-about .page-hero,
.tyson-about-hero + .tyson-about-page-section .page-hero {
    display: none !important;
}

/* ==========================================
   About — Story section refinements
   ========================================== */
.tyson-about-page-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.25;
    color: #111;
    margin: 12px 0 18px;
    font-weight: 800;
}

.tyson-about-page-image {
    position: relative;
}

.tyson-about-experience-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: #98061d;
    color: #fff;
    padding: 14px 22px;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(152, 6, 29, 0.35);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tyson-about-experience-badge strong {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.tyson-about-experience-badge span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1.25;
    max-width: 110px;
}

.tyson-about-feature-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 22px;
}

.tyson-about-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.55;
}

.tyson-about-feature-list li i {
    color: #98061d;
    font-size: 1.05rem;
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .tyson-about-feature-list {
        grid-template-columns: 1fr;
    }
    .tyson-about-experience-badge {
        bottom: 12px;
        left: 12px;
        padding: 10px 16px;
    }
    .tyson-about-experience-badge strong {
        font-size: 1.4rem;
    }
}

/* ==========================================
   About — Stats Strip
   ========================================== */
.tyson-about-stats-section {
    background: linear-gradient(135deg, #98061d 0%, #6e0414 100%);
    padding: 50px 0;
    color: #fff;
}

.tyson-about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.tyson-about-stat-card {
    padding: 14px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.tyson-about-stat-card:last-child {
    border-right: none;
}

.tyson-about-stat-card i {
    font-size: 1.8rem;
    color: #ffd9df;
    margin-bottom: 10px;
    display: block;
}

.tyson-about-stat-card strong {
    display: block;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 4px;
    color: #fff;
}

.tyson-about-stat-card span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 767px) {
    .tyson-about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .tyson-about-stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 16px;
    }
    .tyson-about-stat-card:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 6px;
    }
}

/* ==========================================
   About — Mission, Vision, Values
   ========================================== */
.tyson-about-mvv-section {
    padding: 70px 0;
    background: #fff;
}

.tyson-about-mvv-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.tyson-about-mvv-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    color: #111;
    margin: 12px 0 14px;
    font-weight: 800;
}

.tyson-about-mvv-header p {
    color: #4b5563;
    font-size: 1.02rem;
    line-height: 1.75;
}

.tyson-about-mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.tyson-about-mvv-card {
    background: #fff;
    border: 1px solid #efe3e6;
    border-radius: 18px;
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tyson-about-mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(152, 6, 29, 0.12);
    border-color: rgba(152, 6, 29, 0.35);
}

.tyson-about-mvv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #98061d, #6e0414);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 22px rgba(152, 6, 29, 0.35);
}

.tyson-about-mvv-card h3 {
    font-size: 1.25rem;
    color: #111;
    margin: 0 0 12px;
    font-weight: 800;
}

.tyson-about-mvv-card p {
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
    font-size: 0.97rem;
}

@media (max-width: 991px) {
    .tyson-about-mvv-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   About — Why Choose Us
   ========================================== */
.tyson-about-why-section {
    padding: 70px 0;
    background: #fbf9f4;
}

.tyson-about-why-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.tyson-about-why-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    color: #111;
    margin: 12px 0 0;
    font-weight: 800;
}

.tyson-about-why-section .tyson-about-value-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
    gap: 24px;
}

.tyson-about-why-section .tyson-about-value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tyson-about-why-section .tyson-about-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
}

@media (max-width: 991px) {
    .tyson-about-why-section .tyson-about-value-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .tyson-about-why-section .tyson-about-value-grid {
        grid-template-columns: 1fr;
    }
}

/* END TYSON V1.2.0 */

/* ==========================================================
   TYSON V1.3.0
   - Hero banner overlay text
   - Round/decent brand cards
   - Mobile brand carousel: 3 visible
   - Read More buttons: arrow icon with hover slide animation
   ========================================================== */

/* ===== Hero Banner Overlay Text ===== */
.tyson-home-banner-section {
    position: relative !important;
}

.tyson-home-banner-wrap {
    position: relative !important;
    overflow: hidden !important;
}

.tyson-home-banner-overlay {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 6% !important;
    z-index: 2 !important;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 251, 240, 0.85) 0%, rgba(255, 251, 240, 0.55) 45%, rgba(255, 251, 240, 0.0) 70%);
}

.tyson-home-banner-content {
    max-width: 540px;
    text-align: left;
    pointer-events: auto;
}

.tyson-home-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(152, 6, 29, 0.10);
    color: #98061d;
    border: 1px solid rgba(152, 6, 29, 0.25);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.tyson-home-banner-tag i {
    color: #98061d;
    font-size: 0.85rem;
}

.tyson-home-banner-title {
    font-size: clamp(1.85rem, 3.6vw, 3rem);
    line-height: 1.15;
    color: #000000;
    font-weight: 900;
    margin: 0 0 14px;
}

.tyson-home-banner-accent {
    color: #000000;
}

.tyson-home-banner-sub {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    line-height: 1.65;
    color: #2c2c2c;
    margin: 0 0 22px;
    max-width: 480px;
}

.tyson-home-banner-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tyson-banner-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 22px !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    transition: all 0.25s ease !important;
}

.tyson-banner-btn i {
    transition: transform 0.25s ease;
}

.tyson-banner-btn:hover i {
    transform: translateX(4px);
}

.tyson-banner-btn.btn-outline-white {
    background: rgba(255, 255, 255, 0.92) !important;
    color: #98061d !important;
    border: 2px solid #98061d !important;
}

.tyson-banner-btn.btn-outline-white:hover {
    background: #98061d !important;
    color: #fff !important;
}

@media (max-width: 991px) {
    .tyson-home-banner-overlay {
        padding: 0 5% !important;
        background: linear-gradient(90deg, rgba(255, 251, 240, 0.92) 0%, rgba(255, 251, 240, 0.7) 55%, rgba(255, 251, 240, 0.15) 100%);
    }
    .tyson-home-banner-content {
        max-width: 480px;
    }
}

@media (max-width: 767px) {
    .tyson-home-banner-overlay {
        padding: 0 18px !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        background: linear-gradient(180deg, rgba(255, 251, 240, 0.5) 0%, rgba(255, 251, 240, 0.85) 60%, rgba(255, 251, 240, 0.95) 100%);
    }
    .tyson-home-banner-content {
        text-align: center;
        max-width: 100%;
    }
    .tyson-home-banner-cta {
        justify-content: center;
    }
    .tyson-home-banner-sub {
        margin-left: auto;
        margin-right: auto;
    }
    .tyson-banner-btn {
        padding: 10px 18px !important;
        font-size: 0.88rem !important;
    }
}

@media (max-width: 480px) {
    .tyson-home-banner-tag {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
    .tyson-home-banner-sub {
        font-size: 0.88rem;
        margin-bottom: 16px;
    }
    .tyson-home-banner-cta {
        gap: 8px;
    }
}

/* ===== Round/Decent Brand Cards ===== */
.tyson-brand-card {
    border-radius: 50% !important;
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
    width: 100% !important;
    max-width: 170px !important;
    margin: 0 auto !important;
    padding: 22px !important;
    background: #ffffff !important;
    border: 2px solid rgba(152, 6, 29, 0.08) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06) !important;
    overflow: hidden !important;
}

.tyson-brand-card:hover {
    transform: translateY(-4px) scale(1.03) !important;
    border-color: rgba(152, 6, 29, 0.35) !important;
    box-shadow: 0 14px 32px rgba(152, 6, 29, 0.18) !important;
}

.tyson-brand-card img {
    max-width: 80% !important;
    max-height: 70% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.tyson-brand-slide:first-child .tyson-brand-card {
    border-color: rgba(152, 6, 29, 0.20) !important;
}

.tyson-brand-slide:first-child .tyson-brand-card img {
    max-height: 75% !important;
}

/* ===== Brand Carousel responsive — Mobile shows 3 ===== */
@media (max-width: 991px) {
    .tyson-brand-slide { flex-basis: 25% !important; padding: 8px !important; }
    .tyson-brand-card { max-width: 145px !important; padding: 18px !important; }
}

@media (max-width: 767px) {
    .tyson-brands-carousel-wrap { gap: 4px !important; }
    .tyson-brand-slide { flex-basis: 33.3333% !important; padding: 6px !important; }
    .tyson-brand-card {
        max-width: 110px !important;
        padding: 14px !important;
        border-width: 1.5px !important;
    }
    .tyson-brands-nav {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 360px) {
    .tyson-brand-slide { flex-basis: 50% !important; }
    .tyson-brand-card { max-width: 130px !important; }
}

/* ===== Read More button — arrow with hover slide ===== */
.btn .btn-arrow {
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85em;
    margin-left: 6px;
    flex-shrink: 0;
}

.btn:hover .btn-arrow,
a:hover > .btn-arrow {
    transform: translateX(5px);
}

.btn .btn-label {
    display: inline-block;
}

/* Ensure proper layout for product Read More buttons */
.tyson-fixed-product-buttons .btn {
    gap: 4px !important;
}

.tyson-fixed-product-buttons .btn .btn-arrow {
    font-size: 0.8em !important;
    margin-left: 4px !important;
}

/* END TYSON V1.3.0 */

/* ==========================================
   Header/Menu border cleanup - requested update
   ========================================== */
.main-navigation {
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08) !important;
}

.main-navigation::before,
.main-navigation::after,
.nav-inner::before,
.nav-inner::after,
.primary-menu-wrapper::before,
.primary-menu-wrapper::after,
.primary-menu > li > a::before,
.primary-menu > li > a::after {
    display: none !important;
    content: none !important;
}

.primary-menu > li > a {
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.site-header {
    box-shadow: none !important;
}

.site-header.scrolled {
    box-shadow: none !important;
}
/* END Header/Menu border cleanup */


/* TYSON CERTIFICATIONS MARQUEE V1.3.9 */
.certifications-marquee-section{
    position: relative;
    padding: 28px 0 24px;
    background: linear-gradient(135deg,#fffaf2 0%,#ffffff 55%,#f7f1e8 100%);
    border-bottom: 1px solid rgba(128,9,29,0.12);
    overflow: hidden;
}
.certifications-marquee-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}
.certifications-marquee-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(128,9,29,0.08);
    color: var(--primary-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}
.certifications-marquee-header p{
    margin: 0;
    color: #555;
    line-height: 1.7;
    max-width: 780px;
    text-align: right;
}
.certifications-marquee-wrap{
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg,transparent 0,#000 8%,#000 92%,transparent 100%);
    mask-image: linear-gradient(90deg,transparent 0,#000 8%,#000 92%,transparent 100%);
}
.certifications-marquee-track{
    display: flex;
    width: max-content;
    gap: 16px;
    animation: tysonCertMarquee 32s linear infinite;
}
.certifications-marquee-wrap:hover .certifications-marquee-track{
    animation-play-state: paused;
}
.certification-marquee-item{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 260px;
    padding: 15px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(128,9,29,0.10);
    box-shadow: 0 10px 28px rgba(18,38,63,0.07);
    color: #222;
}
.certification-marquee-item i{
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(128,9,29,0.08);
    color: var(--primary-red);
    flex: 0 0 38px;
}
.certification-marquee-item strong{
    color: var(--primary-red);
    font-size: 1rem;
    letter-spacing: .02em;
    white-space: nowrap;
}
.certification-marquee-item span{
    color: #666;
    font-size: .92rem;
    white-space: nowrap;
}
.product-certification-badges .trust-badge-item i{
    color: var(--primary-red);
}
@keyframes tysonCertMarquee{
    from{transform: translateX(0);}
    to{transform: translateX(-50%);}
}
@media (max-width: 767px){
    .certifications-marquee-section{
        display: block !important;
        padding: 22px 0 20px;
    }
    .certifications-marquee-header{
        display: block;
        text-align: center;
    }
    .certifications-marquee-tag{
        margin-bottom: 12px;
        white-space: normal;
        justify-content: center;
    }
    .certifications-marquee-header p{
        text-align: center;
        font-size: .94rem;
    }
    .certification-marquee-item{
        min-width: 230px;
        padding: 13px 16px;
    }
    .certification-marquee-item span{
        display: none;
    }
}
/* END TYSON CERTIFICATIONS MARQUEE V1.3.9 */


/* MOBILE TOP BAR CLEAN V1.4.0 */
@media (max-width: 767px){
    .top-bar{
        display: block !important;
        padding: 6px 0 !important;
        background: #fff !important;
    }
    .top-bar .container{
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .top-bar-inner{
        justify-content: center !important;
        gap: 0 !important;
        padding: 0 !important;
    }
    .top-bar-left{
        width: 100% !important;
    }
    .top-bar-right{
        display: none !important;
    }
    .top-bar-contact{
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .top-bar-contact li{
        display: none !important;
    }
    .top-bar-contact li:nth-child(2),
    .top-bar-contact li:nth-child(3){
        display: flex !important;
        align-items: center !important;
    }
    .top-bar-contact li:nth-child(2) a,
    .top-bar-contact li:nth-child(3) a{
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
        font-size: 0.72rem !important;
        line-height: 1.25 !important;
        white-space: nowrap !important;
        color: #222 !important;
        text-decoration: none !important;
    }
    .top-bar-phone-label{
        display: none !important;
    }
}
/* END MOBILE TOP BAR CLEAN V1.4.0 */

/* ==========================================================
   TYSON V1.4.1 — Professional Contact Page + USA Head Office
   ========================================================== */
.tyson-contact-page-section {
    position: relative;
    padding: 72px 0 86px;
    background:
        radial-gradient(circle at top left, rgba(152,6,29,0.075), transparent 34%),
        linear-gradient(180deg, #fffaf6 0%, #fbf8f2 100%);
    overflow: hidden;
}

.tyson-contact-page-section::before {
    content: "";
    position: absolute;
    top: 110px;
    right: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(152,6,29,0.055);
    pointer-events: none;
}

.tyson-contact-page-section .container {
    position: relative;
    z-index: 1;
}

.tyson-contact-page-header {
    max-width: 850px;
    margin: 0 auto 42px;
    text-align: center;
}

.tyson-contact-page-header h1 {
    margin: 14px 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.035em;
    color: #111827;
}

.tyson-contact-page-header p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: #4b5563;
}

.tyson-contact-page-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.35fr);
    gap: 28px;
    align-items: stretch;
    max-width: 1120px;
    margin: 0 auto;
}

.tyson-contact-offices-wrap {
    display: grid;
    gap: 18px;
}

.tyson-contact-card,
.tyson-contact-form-card {
    border: 1px solid rgba(152, 6, 29, 0.12);
    border-radius: 24px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 22px 55px rgba(17, 24, 39, 0.08);
}

.tyson-contact-card {
    padding: 25px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tyson-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 60px rgba(17, 24, 39, 0.105);
    border-color: rgba(152, 6, 29, 0.22);
}

.tyson-contact-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 17px;
}

.tyson-contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    background: linear-gradient(135deg, #98061d, #6f0718);
    color: #fff;
    box-shadow: 0 12px 24px rgba(152, 6, 29, 0.23);
}

.tyson-contact-card-top small {
    display: block;
    margin-bottom: 2px;
    color: #98061d;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tyson-contact-card-top h3,
.tyson-contact-card h3 {
    margin: 0;
    color: #111827;
    font-size: 1.18rem;
    line-height: 1.3;
}

.tyson-contact-card .tyson-contact-detail,
.tyson-contact-card p {
    margin: 0 0 10px;
    color: #4b5563;
    line-height: 1.72;
    font-size: 0.97rem;
}

.tyson-contact-card .tyson-contact-detail:last-child,
.tyson-contact-card p:last-child {
    margin-bottom: 0;
}

.tyson-contact-card strong {
    color: #111827;
    font-weight: 800;
}

.tyson-contact-card a {
    color: #98061d;
    font-weight: 700;
    text-decoration: none;
}

.tyson-contact-card a:hover {
    text-decoration: underline;
}

.tyson-contact-form-card {
    padding: clamp(24px, 3vw, 36px);
}

.tyson-contact-form-heading {
    margin-bottom: 22px;
}

.tyson-contact-form-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #98061d;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tyson-contact-form-heading h2 {
    margin: 0 0 8px;
    color: #111827;
    font-size: clamp(1.55rem, 2.5vw, 2.05rem);
    letter-spacing: -0.025em;
}

.tyson-contact-form-heading p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}

.tyson-simple-contact-form {
    display: grid;
    gap: 17px;
}

.tyson-simple-contact-form .form-row-double {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.tyson-simple-contact-form .form-field {
    display: grid;
    gap: 7px;
}

.tyson-simple-contact-form label {
    color: #111827;
    font-size: 0.88rem;
    font-weight: 800;
}

.tyson-simple-contact-form .form-control {
    width: 100%;
    min-height: 50px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 13px 15px;
    background: #fff;
    color: #111827;
    font-size: 0.96rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.tyson-simple-contact-form textarea.form-control {
    min-height: 148px;
    resize: vertical;
}

.tyson-simple-contact-form .form-control::placeholder {
    color: #9ca3af;
}

.tyson-simple-contact-form .form-control:focus {
    border-color: rgba(152, 6, 29, 0.58);
    box-shadow: 0 0 0 4px rgba(152, 6, 29, 0.10);
    background: #fff;
}

.tyson-simple-contact-form .form-control.field-error {
    border-color: #b91c1c;
    box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.09);
}

.tyson-simple-contact-form .error-message {
    margin-top: -2px;
    color: #b91c1c;
    font-size: 0.82rem;
    font-weight: 700;
}

.tyson-contact-submit,
.tyson-simple-contact-form .btn-full {
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 16px 30px rgba(152, 6, 29, 0.22);
}

.tyson-form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #6b7280;
    font-size: 0.86rem;
    line-height: 1.55;
}

.tyson-form-note i {
    color: #98061d;
}

@media (max-width: 991px) {
    .tyson-contact-page-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
    }
}

@media (max-width: 576px) {
    .tyson-contact-page-section {
        padding: 50px 0 62px;
    }

    .tyson-contact-form-card,
    .tyson-contact-card {
        border-radius: 20px;
        padding: 22px;
    }

    .tyson-simple-contact-form .form-row-double {
        grid-template-columns: 1fr;
    }
}
