﻿/* ===================================
   GAMEFOWL RANCH STYLE DESIGN
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #000;
    background: #f4f4f4;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Ensure all images are responsive by default */
img {
    max-width: 100%;
    height: auto;
}

/* Minimum tap target size for all interactive elements */
a, button, input[type="submit"], input[type="button"],
input[type="checkbox"], input[type="radio"], select, label {
    min-height: 44px;
}
input[type="checkbox"], input[type="radio"] {
    min-height: unset;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Info Bar */
.contact-bar {
    background: #1a1a1a;
    color: #ccc;
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 1px solid #2e2e2e;
}

.contact-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-bar-inner span {
    display: inline-flex;
    align-items: center;
}

.contact-bar-inner a {
    color: #e0c97f;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-bar-inner a:hover {
    color: #fff;
}

.contact-bar-sep {
    color: #555;
    font-size: 16px;
    line-height: 1;
    user-select: none;
}

/* Legacy WhatsApp banner - hidden in favour of contact-bar */
.whatsapp-banner {
    display: none;
}

/* Header */
.header {
    background: rgba(247, 247, 247, 0.95);
    border-bottom: 2px solid #f1f1f1;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text h1, .logo-text .logo-name {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 0;
    font-weight: 700;
    display: block;
}

.logo-text p {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #ea4242;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: capitalize;
}

.nav a:hover,
.nav a.active {
    color: #8224e3;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Dropdown */
.mobile-nav {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-search {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.mobile-search-box {
    position: relative;
}

.mobile-search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
}

.mobile-search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #dd3333;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}

.mobile-search-box button svg {
    stroke: white;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links > li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-links a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: #f8f8f8;
    color: #dd3333;
}

.mobile-categories-title {
    padding: 15px 20px;
    background: #f8f8f8;
    font-weight: 700;
    color: #000;
    border-bottom: 2px solid #dd3333;
    margin: 0;
}

.mobile-nav-links .category-link {
    padding-left: 35px;
    font-size: 0.95rem;
    color: #666;
}

.mobile-nav-links .category-link:hover {
    background: #f8f8f8;
    color: #dd3333;
    padding-left: 40px;
}

/* Add to Cart Button for Gallery Pages - Simple Style */
.add-to-cart-btn {
    display: block;
    width: 100%;
    padding: 10px 15px;
    background: #dd3333;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}

.add-to-cart-btn:hover {
    background: #c12828;
}

.add-to-cart-btn:active {
    background: #a02020;
}

/* Hero Banner Section - Like GameFowl Ranch */
.hero {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('image/wallpaper.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-transform: capitalize;
}

.btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: #ec9d27;
}

.btn-secondary:hover {
    background: #d88a1a;
}

/* Intro Text Section */
.intro-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.intro-section h2 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000;
    max-width: 900px;
    margin: 0 auto 20px;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #dd3333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}


/* Products Section - Birds Gallery */
.products {
    padding: 80px 0;
    background: #f5f5f5;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-top: -20px;
    margin-bottom: 50px;
}

.birds-category {
    margin-bottom: 60px;
}

.category-heading {
    font-size: 2rem;
    color: #000;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #dd3333;
    font-weight: 700;
}

.birds-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.bird-card {
    background: white;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: all 0.3s;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.bird-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.bird-card h4 {
    font-size: 0.95rem;
    color: #000;
    padding: 12px 10px 5px;
    font-weight: 600;
    line-height: 1.3;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bird-card .price {
    font-size: 1.1rem;
    color: #dd3333;
    font-weight: 700;
    padding-bottom: 12px;
}

/* Gallery Pages */
.page-header {
    background: linear-gradient(135deg, #dd3333 0%, #c12828 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.birds-gallery-page {
    padding: 80px 0;
    background: #f5f5f5;
    min-height: 70vh;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb p {
    color: #666;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #dd3333;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Shop Layout with Sidebar */
.shop-layout {
    padding: 60px 0;
    background: #fff;
}

.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar */
.sidebar {
    background: #fff;
}

.search-box {
    display: flex;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 0.95rem;
    outline: none;
}

.search-btn {
    background: #dd3333;
    border: none;
    padding: 12px 18px;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #c12828;
}

.categories-widget {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 4px;
}

.categories-widget h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

.category-list li {
    border-bottom: 1px solid #e0e0e0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: block;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.category-list a:hover {
    color: #dd3333;
    padding-left: 10px;
}

.category-list a.active {
    color: #dd3333;
    font-weight: 700;
    padding-left: 10px;
    border-left: 3px solid #dd3333;
}

/* Main Content */
.main-content {
    flex: 1;
}

.category-header {
    margin-bottom: 30px;
}

.category-header h1 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 5px;
}

.result-count {
    color: #666;
    font-size: 0.95rem;
}

/* About Page Styles */
.about-hero {
    padding: 80px 0;
    background: #fff;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-text h1 {
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #dd3333;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-story {
    padding: 80px 0;
    background: #fff;
}

.about-text-section {
    max-width: 900px;
    margin: 0 auto;
}

.about-text-section h2 {
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 700;
}

.about-text-section h2:first-child {
    margin-top: 0;
}

.about-text-section h3 {
    font-size: 1.5rem;
    color: #dd3333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-text-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.about-features {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.feature-box {
    background: white;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.feature-box h3 {
    font-size: 1.4rem;
    color: #dd3333;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.about-commitment {
    padding: 80px 0;
    background: white;
}

.commitment-content {
    max-width: 900px;
    margin: 30px auto 0;
}

.commitment-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.commitment-content strong {
    color: #dd3333;
    font-weight: 700;
}

.shipping-info {
    padding: 80px 0;
    background: #f8f8f8;
}

.shipping-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    max-width: 800px;
    margin: 20px auto 50px;
    line-height: 1.8;
}

.shipping-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.shipping-card {
    background: white;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #dd3333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.shipping-card h3 {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.shipping-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #dd3333 0%, #c12828 100%);
    text-align: center;
    color: white;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.95;
}

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

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #dd3333;
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #dd3333;
    transform: translateY(-3px);
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #dd3333 0%, #c12828 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 10px;
}

.hero-description {
    max-width: 800px;
    margin: 20px auto 0;
    font-size: 1.1rem;
}

.contact-methods {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.contact-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #dd33331a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    stroke: #dd3333;
}

.contact-card h3 {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: block;
    font-size: 1.1rem;
    color: #dd3333;
    font-weight: 600;
    margin-bottom: 20px;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.btn-contact {
    display: inline-block;
    padding: 12px 30px;
    background: #dd3333;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-contact:hover {
    background: #c12828;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(221, 51, 51, 0.3);
}

.location-section {
    padding: 80px 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.location-info h2 {
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 30px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 1.3rem;
    color: #dd3333;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.contact-form-section h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-form {
    background: #f8f8f8;
    padding: 35px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dd3333;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #dd3333;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #c12828;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(221, 51, 51, 0.3);
}

.faq-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #dd3333;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* ===================================
   CHECKOUT — DIFFERENT SHIPPING ADDRESS
   =================================== */
.different-shipping-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    color: #222;
}

.different-shipping-label input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: #c8a84b;
    cursor: pointer;
    flex-shrink: 0;
}

#shippingAddressSection {
    background: #f9f6ee;
    border: 1px solid #e0d9c0;
    border-radius: 8px;
    padding: 20px 20px 8px;
    margin-top: 12px;
    margin-bottom: 8px;
    animation: fadeSlideDown 0.25s ease;
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.shipping-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0d9c0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   CHECKOUT — PAYMENT INTRO
   =================================== */
.payment-intro {
    font-size: 13.5px;
    color: #444;
    background: #f9f6ee;
    border-left: 3px solid #c8a84b;
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.payment-intro a {
    color: #c8a84b;
    font-weight: 600;
}

/* ===================================
   CHECKOUT — TERMS & CONDITIONS
   =================================== */
.terms-section {
    margin-top: 22px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.terms-section h4 {
    background: #f5f5f5;
    margin: 0;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.terms-body {
    max-height: 200px;
    overflow-y: auto;
    padding: 14px 16px;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    background: #fff;
}

.terms-body p {
    margin-bottom: 10px;
}

.terms-body a {
    color: #c8a84b;
}

.terms-agree {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fafafa;
    border-top: 1px solid #e0e0e0;
    font-size: 13.5px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
}

.terms-agree input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: #c8a84b;
    cursor: pointer;
    flex-shrink: 0;
}

/* ===================================
   CHECKOUT — ORDER CONFIRMATION MODAL
   =================================== */
.order-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.order-modal {
    background: #fff;
    border-radius: 12px;
    max-width: 520px;
    width: 100%;
    padding: 40px 36px 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.order-modal-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #2e7d32;
    color: #fff;
    font-size: 30px;
    line-height: 62px;
    margin: 0 auto 18px;
}

.order-modal h2 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.order-modal-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 22px;
}

.order-number-box {
    background: #f5f0e8;
    border: 2px dashed #c8a84b;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 22px;
}

.order-number-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 6px;
}

.order-number-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.order-modal-steps {
    text-align: left;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 22px;
    font-size: 13.5px;
    color: #444;
    line-height: 1.7;
}

.order-modal-steps p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #1a1a1a;
}

.order-modal-steps ol {
    margin: 0;
    padding-left: 18px;
}

.order-modal-steps li {
    margin-bottom: 6px;
}

.order-modal-steps a {
    color: #c8a84b;
    font-weight: 600;
}

.btn-email-order {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    background: #c8a84b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 14px;
    transition: background 0.2s;
}

.btn-email-order:hover {
    background: #a8882e;
}

.order-modal-note {
    font-size: 12px;
    color: #999;
    margin-bottom: 16px;
}

.btn-modal-close {
    background: none;
    border: 1px solid #ccc;
    color: #666;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-modal-close:hover {
    border-color: #999;
    color: #333;
}

/* Live Chat Widget - Fixed on all pages */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #dd3333;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(221, 51, 51, 0.4);
    transition: all 0.3s;
}

.chat-button:hover {
    background: #c12828;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(221, 51, 51, 0.5);
}

.chat-button svg {
    stroke: white;
}

/* Screen-reader only — hidden visually but crawlable by Google */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ── Our Birds Nav Dropdown ───────────────────────────────── */
.nav-dropdown-wrapper {
    position: relative;
    display: inline-block;
}
.nav-dropdown-wrapper > a {
    cursor: pointer;
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    min-width: 200px;
    list-style: none;
    margin: 4px 0 0;
    padding: 6px 0;
    z-index: 9000;
}
.nav-dropdown-wrapper:hover .nav-dropdown-menu,
.nav-dropdown-wrapper:focus-within .nav-dropdown-menu {
    display: block;
}
.nav-dropdown-menu li a {
    display: block;
    padding: 9px 18px;
    font-size: 0.88rem;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu li a:hover {
    background: #8B1A1A;
    color: #fff;
}

/* Chat Panel Popup */
.chat-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.20);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 10000;
    animation: chatSlideUp 0.25s ease;
}
.chat-panel.chat-panel-open {
    display: flex;
}
@keyframes chatSlideUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.chat-panel-header {
    background: #8B1A1A;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}
.chat-agent-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.45);
    flex-shrink: 0;
}
.chat-agent-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.chat-agent-name {
    font-weight: 700;
    font-size: 0.92rem;
}
.chat-agent-status {
    font-size: 0.74rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}
.chat-status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
}
.chat-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.75;
    padding: 0;
    line-height: 1;
    transition: opacity 0.2s;
}
.chat-close-btn:hover { opacity: 1; }
.chat-panel-body {
    padding: 16px;
    background: #f6f3f0;
}
.chat-welcome-bubble {
    background: white;
    border-radius: 4px 14px 14px 14px;
    padding: 13px 15px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.07);
    font-size: 0.88rem;
    color: #333;
    line-height: 1.55;
}
.chat-welcome-bubble p { margin: 0 0 7px; }
.chat-welcome-bubble p:last-child { margin: 0; }
.chat-panel-footer {
    padding: 12px 16px;
    background: white;
    border-top: 1px solid #eee;
}
.chat-send-btn {
    width: 100%;
    padding: 11px;
    background: #8B1A1A;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.chat-send-btn:hover { background: #6d1414; }

/* ── Back to Top Button ───────────────────────────────────── */
#backToTop {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: #8B1A1A;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
    z-index: 9998;
}
#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#backToTop:hover {
    background: #6d1414;
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.28);
}
@media (max-width: 768px) {
    #backToTop { bottom: 20px; left: 20px; width: 42px; height: 42px; font-size: 1.1rem; }
}

/* Fixed Cart Icon at Top Right Corner */
.cart-icon-link {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: #dd3333;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(221, 51, 51, 0.4);
}

.cart-icon-link:hover {
    background: #c12828;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(221, 51, 51, 0.5);
}

.cart-icon-link svg {
    stroke: white;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #000;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 50%;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid white;
}

/* Product Detail Page Styles */
.product-detail {
    padding: 40px 0;
    background: #fff;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Product Images */
.product-images {
    position: relative;
}

.main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.image-nav button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.image-nav button:hover {
    background: #dd3333;
}

.image-nav button:hover svg {
    stroke: white;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail-images img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
    border-color: #dd3333;
}

/* Product Info */
.product-info {
    padding: 20px 0;
}

.product-info h1 {
    font-size: 2rem;
    color: #dd3333;
    margin-bottom: 20px;
    font-weight: 700;
}

.product-price {
    margin-bottom: 15px;
}

.product-price .price {
    font-size: 1.75rem;
    color: #333;
    font-weight: 700;
}

.product-stock {
    margin-bottom: 25px;
}

.stock-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.stock-status.in-stock {
    background: #d4edda;
    color: #155724;
}

.stock-status.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.product-quantity {
    margin-bottom: 25px;
}

.product-quantity label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 2px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    color: #333;
}

.qty-btn:hover {
    background: #dd3333;
    color: white;
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 2px solid #ddd;
    border-right: 2px solid #ddd;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.quantity-selector input:focus {
    outline: none;
}

.btn-add-to-cart-detail {
    background: #f89406;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-bottom: 25px;
}

.btn-add-to-cart-detail:hover {
    background: #e08504;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 148, 6, 0.3);
}

.product-meta {
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.product-meta p {
    margin-bottom: 10px;
    color: #666;
}

.product-meta strong {
    color: #333;
}

/* Product Description Section */
.product-description-section {
    margin-top: 50px;
    border-top: 2px solid #eee;
    padding-top: 30px;
}

.description-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: #dd3333;
}

.tab-btn.active {
    color: #dd3333;
    border-bottom-color: #dd3333;
}

.tab-content {
    padding: 20px 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h2 {
    font-size: 1.75rem;
    color: #dd3333;
    margin-bottom: 20px;
}

.tab-pane p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Responsive Product Detail */
@media (max-width: 768px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-info h1 {
        font-size: 1.5rem;
    }

    .thumbnail-images {
        grid-template-columns: repeat(3, 1fr);
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Cart Page Styles */
.cart-page, .checkout-page {
    padding: 60px 0;
    background: #f8f8f8;
}

.cart-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto 60px;
    gap: 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.progress-step.active .step-circle {
    background: #dd3333;
    color: white;
}

.progress-step.completed .step-circle {
    background: #28a745;
    color: white;
}

.progress-step span {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.progress-line {
    width: 100px;
    height: 2px;
    background: #ddd;
}

.progress-line.active {
    background: #dd3333;
}

.cart-content {
    max-width: 1200px;
    margin: 0 auto;
}

.empty-cart {
    background: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.empty-icon {
    margin-bottom: 25px;
}

.empty-cart h2 {
    font-size: 2rem;
    color: #dd3333;
    margin-bottom: 15px;
}

.empty-cart p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.btn-shop-now {
    display: inline-block;
    padding: 14px 40px;
    background: #dd3333;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-shop-now:hover {
    background: #c12828;
    transform: translateY(-2px);
}

.cart-items {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table thead {
    background: #f8f8f8;
    border-bottom: 2px solid #ddd;
}

.cart-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #333;
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.product-col {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-col img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.product-col span {
    font-weight: 600;
    color: #333;
}

.quantity-input {
    width: 70px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 1rem;
}

.btn-remove {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #dd3333;
    transition: all 0.3s;
}

.btn-remove:hover {
    transform: scale(1.2);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.btn-continue, .btn-clear-cart {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-continue {
    background: #f8f8f8;
    color: #333;
    border: 1px solid #ddd;
}

.btn-continue:hover {
    background: #e8e8e8;
}

.btn-clear-cart {
    background: #dc3545;
    color: white;
    border: none;
}

.btn-clear-cart:hover {
    background: #c82333;
}

.cart-summary {
    max-width: 400px;
    margin-left: auto;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 8px;
}

.cart-summary h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #000;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.summary-row.total {
    border-top: 2px solid #ddd;
    border-bottom: none;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 10px;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 15px;
    background: #dd3333;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 25px;
    transition: all 0.3s;
}

.btn-checkout:hover {
    background: #c12828;
}

.new-in-store {
    margin-top: 60px;
}

/* Checkout Page Styles */
.checkout-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.checkout-form-section, .order-summary-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.checkout-form-section h2, .order-summary-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #000;
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.checkout-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
}

.checkout-form input[type="text"]:focus,
.checkout-form input[type="email"]:focus,
.checkout-form input[type="tel"]:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: #dd3333;
}

.order-summary-box {
    padding: 25px;
    background: #f8f8f8;
    border-radius: 8px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 2px solid #ddd;
    font-weight: 700;
    color: #000;
}

.order-items {
    margin: 20px 0;
    min-height: 50px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.order-row.total {
    border-top: 2px solid #ddd;
    border-bottom: none;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 10px;
    color: #dd3333;
}

.payment-methods {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #ddd;
}

.payment-methods h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #000;
}

.payment-option {
    margin-bottom: 15px;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.payment-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.payment-desc {
    margin: 10px 0 0 28px;
    padding: 15px;
    background: #fff;
    border-left: 3px solid #dd3333;
    font-size: 0.9rem;
    color: #666;
}

.privacy-policy {
    margin-top: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

.privacy-policy label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.privacy-policy input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
}

.btn-place-order {
    width: 100%;
    padding: 15px;
    background: #dd3333;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s;
}

.btn-place-order:hover {
    background: #c12828;
    transform: translateY(-2px);
}

/* Responsive Cart and Checkout */
@media (max-width: 992px) {
    .checkout-content {
        grid-template-columns: 1fr;
    }

    .order-summary-section {
        order: -1;
    }

    .cart-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .cart-progress {
        flex-direction: column;
        gap: 20px;
    }

    .progress-line {
        width: 2px;
        height: 50px;
    }

    .cart-table th:nth-child(3),
    .cart-table td:nth-child(3) {
        display: none;
    }

    .product-col {
        flex-direction: column;
        text-align: center;
    }

    .cart-actions {
        flex-direction: column;
        gap: 15px;
    }

    .checkout-form .form-row {
        grid-template-columns: 1fr;
    }

    .cart-count {
        font-size: 0.65rem;
        padding: 1px 5px;
        min-width: 16px;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

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

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

.product-card h3 {
    font-size: 1.1rem;
    color: #000;
    margin: 15px 15px 10px;
    font-weight: 600;
    line-height: 1.4;
    min-height: 50px;
}

.product-card .price {
    font-size: 1.15rem;
    color: #000;
    font-weight: 400;
    margin: 0 15px 15px;
}

.product-card .btn-small {
    display: block;
    margin: 0 15px 15px;
    padding: 10px 20px;
    font-size: 0.85rem;
    text-align: center;
    background: transparent;
    color: #000;
    border: 1px solid #000;
}

.product-card .btn-small:hover {
    background: #000;
    color: #fff;
    transform: none;
}

/* About Section - Text Left, Images Right */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    padding-right: 20px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 700;
}

.about-text .highlight-title {
    font-size: 1.5rem;
    color: #dd3333;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-images {
    display: grid;
    grid-template-rows: auto auto;
    gap: 20px;
}

.about-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

.about-images img:first-child {
    max-height: 350px;
}

.about-images img:last-child {
    max-height: 350px;
}

.btn-shop {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 35px;
    background: #dd3333;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-shop:hover {
    background: #c12828;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(221, 51, 51, 0.3);
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.category-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-item:last-child {
    margin-bottom: 0;
}

/* Alternate layout - image on left */
.category-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.category-item.reverse .category-content {
    order: 2;
}

.category-item.reverse .category-image {
    order: 1;
}

.category-content h3 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

.category-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.category-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.btn-category {
    display: inline-block;
    padding: 14px 35px;
    background: #dd3333;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-category:hover {
    background: #c12828;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(221, 51, 51, 0.3);
}

/* Services Section */
.services {
    padding: 60px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #dd3333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: #dd3333;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Footer - Game Fowl Ranch Style */
.footer {
    background: #000;
    color: #fff;
    padding: 50px 0 30px;
}

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

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .birds-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .logo {
        flex: 1;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .cart-icon-link {
        order: 3;
    }

    .nav {
        display: none !important;
    }

    .mobile-nav {
        order: 4;
        width: 100%;
    }

    .hero {
        min-height: 400px;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        padding-right: 0;
    }

    .category-item,
    .category-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .category-item.reverse .category-content,
    .category-item.reverse .category-image {
        order: unset;
    }

    .category-image img {
        height: 300px;
    }

    .shop-container {
        grid-template-columns: 1fr;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }

    .shop-container .main-content {
        order: -1 !important;
    }

    .shop-container .sidebar {
        order: 1 !important;
    }

    .birds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bird-card img {
        height: 200px;
    }

    .bird-card h4 {
        font-size: 0.9rem;
        min-height: 45px;
        padding: 10px 8px 5px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* About Page Responsive */
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-hero-image img {
        max-height: 350px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .shipping-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-cta h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    /* Contact Page Responsive */
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* =============================================
   SEO CONTENT BLOCK (all gallery pages)
   ============================================= */
.seo-content-block {
    margin-top: 48px;
    padding: 36px 40px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.seo-content-block h2 {
    font-family: 'Cabin', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #c8a84b;
}

.seo-content-block h3 {
    font-family: 'Cabin', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    margin: 24px 0 10px;
}

.seo-content-block p {
    color: #444;
    line-height: 1.85;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.seo-content-block ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.seo-content-block ul li {
    color: #444;
    line-height: 1.9;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.seo-content-block ul li strong {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .seo-content-block { padding: 24px 20px; margin-top: 32px; }
    .seo-content-block h2 { font-size: 1.2rem; }
    .seo-content-block h3 { font-size: 0.98rem; }
}

@media (max-width: 480px) {
    .seo-content-block { padding: 18px 14px; }
    .seo-content-block h2 { font-size: 1.05rem; }
}

/* =============================================
   MOBILE — 480px (phones, portrait)
   ============================================= */
@media (max-width: 480px) {

    /* ── Contact bar ── */
    .contact-bar-sep { display: none; }
    .contact-bar-inner {
        flex-direction: column;
        gap: 4px;
        font-size: 12px;
        padding: 6px 15px;
        text-align: center;
    }

    /* ── Logo ── */
    .logo img { width: 46px; height: 46px; }
    .logo-text h1, .logo-text .logo-name { font-size: 1rem; }
    .logo-text p  { font-size: 0.7rem; }

    /* ── Hero ── */
    .hero { min-height: 52vw; }
    .hero-content { padding: 20px 15px; }
    .hero-content h2 { font-size: 1.45rem; line-height: 1.3; }
    .hero-content p  { font-size: 0.88rem; margin-bottom: 18px; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary { width: 100%; text-align: center; }

    /* ── Section spacing ── */
    section, .about-section, .categories-section,
    .featured-section, .services-section { padding: 44px 0; }
    .section-title { font-size: 1.45rem; }
    .section-subtitle { font-size: 0.92rem; }
    .container { padding: 0 14px; }

    /* ── Grids → 2 cols on phone ── */
    .birds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .features-grid    { grid-template-columns: 1fr; gap: 14px; }
    .services-grid    { grid-template-columns: 1fr; }
    .footer-content   { grid-template-columns: 1fr; text-align: center; }
    .footer-links     { padding: 0; }

    /* ── Bird cards ── */
    .bird-card img  { height: 130px; }
    .bird-card h4   { font-size: 0.78rem; padding: 7px 6px 4px; min-height: auto; }
    .bird-card .price { font-size: 0.82rem; padding-bottom: 8px; }
    .add-to-cart-btn { font-size: 0.78rem; padding: 8px 10px; }

    /* ── Product cards ── */
    .product-card img { height: 160px; }
    .product-card h3  { font-size: 0.85rem; margin: 10px 10px 6px; min-height: auto; }
    .product-card .price   { font-size: 0.9rem; margin: 0 10px 8px; }
    .product-card .btn-small { margin: 0 10px 10px; padding: 9px 14px; font-size: 0.8rem; }

    /* ── Gallery / category page ── */
    .gallery-hero h1   { font-size: 1.5rem; }
    .gallery-hero p    { font-size: 0.9rem; }
    .category-content h2 { font-size: 1.4rem; }

    /* ── Cart page table → card layout ── */
    .cart-table { display: block; overflow: visible; border: none; }
    .cart-table thead { display: none; }
    .cart-table tbody, .cart-table tr { display: block; width: 100%; }
    .cart-table tr {
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        margin-bottom: 14px;
        padding: 14px 14px 10px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }
    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        padding: 5px 0;
        font-size: 0.88rem;
    }
    .cart-table td::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.75rem;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        min-width: 80px;
    }
    .product-col { flex-direction: row; gap: 10px; text-align: left; }
    .product-col img { width: 56px; height: 56px; border-radius: 6px; }

    /* ── Checkout ── */
    .checkout-form h3 { font-size: 1rem; }
    .checkout-form input,
    .checkout-form select,
    .checkout-form textarea {
        font-size: 16px; /* prevents iOS auto-zoom */
        padding: 11px 13px;
    }
    #shippingAddressSection { padding: 16px 14px 6px; }
    .payment-option label { font-size: 0.88rem; padding: 14px 14px; }

    /* ── Order modal ── */
    .order-modal {
        padding: 28px 18px 22px;
        margin: 10px;
        border-radius: 10px;
    }
    .order-modal h2 { font-size: 1.3rem; }
    .order-number-value { font-size: 1.1rem; letter-spacing: 1px; }
    .order-modal-steps { font-size: 12.5px; padding: 12px 14px; }
    .btn-email-order { font-size: 14px; padding: 12px 16px; }

    /* ── About page ── */
    .about-hero-text h1 { font-size: 1.5rem; }
    .about-hero-image img { max-height: 240px; }
    .shipping-details { grid-template-columns: 1fr; }

    /* ── Contact page ── */
    .contact-hero h1 { font-size: 1.5rem; }
    .contact-info-card { padding: 20px 16px; }

    /* ── Buttons ── */
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
        display: block;
        width: 100%;
        text-align: center;
    }

    /* ── Footer ── */
    .footer { padding: 40px 0 20px; }
    .footer-bottom { font-size: 12px; margin-top: 24px; }
}

/* =============================================
   MOBILE — 375px (small phones like iPhone SE)
   ============================================= */
@media (max-width: 375px) {
    .logo-text h1, .logo-text .logo-name { font-size: 0.9rem; }
    .logo-text p  { display: none; }
    .logo img { width: 40px; height: 40px; }

    .hero-content h2 { font-size: 1.25rem; }
    .section-title   { font-size: 1.25rem; }

    .birds-grid, .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .bird-card img { height: 110px; }
    .bird-card h4  { font-size: 0.72rem; }

    .order-number-value { font-size: 0.95rem; }

    .mobile-nav-links a { padding: 16px 18px; font-size: 1rem; }
}

/* =============================================
   MOBILE — extra: 768px additions
   ============================================= */
@media (max-width: 768px) {
    /* ── Prevent horizontal overflow on all gallery pages ── */
    .gallery-section, .categories-section, .shop-section { overflow: hidden; }

    /* ── Reduce big section padding on tablet/phone ── */
    .cart-page, .checkout-page { padding: 36px 0; }

    /* ── Mobile nav positioning - adapts to header height ── */
    .mobile-nav { top: 0; padding-top: 80px; }

    /* ── Inputs: bigger tap targets on mobile ── */
    .checkout-form input,
    .checkout-form select,
    .checkout-form textarea {
        min-height: 46px;
    }

    /* ── Terms checkbox row ── */
    .terms-agree { padding: 14px 16px; font-size: 13px; }

    /* ── Product detail page ── */
    .product-detail-section { padding: 30px 0; }
    .quantity-controls button { min-height: 40px; min-width: 40px; }

    /* ── Cart icon ── */
    .cart-icon-link { padding: 6px; }
    .cart-count { font-size: 0.6rem; min-width: 15px; padding: 1px 4px; }

    /* ── Order modal overlay ── */
    .order-modal-overlay { align-items: flex-end; padding: 0; }
    .order-modal {
        border-radius: 16px 16px 0 0;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* ── Gallery hero ── */
    .gallery-hero { padding: 40px 0; }
    .gallery-hero h1 { font-size: 1.8rem; }
    .gallery-hero p  { font-size: 0.95rem; }

    /* ── Footer links ── */
    .footer-links li { margin-bottom: 8px; }
    .footer-column h3 { font-size: 1rem; margin-bottom: 12px; }
}