/* Reset and Base Styles */

/* Coming Soon Page Styles */
.coming-soon {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c1810 0%, #4a2c1a 100%);
    color: white;
    min-height: 80vh;
}

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

.coming-soon h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #fff;
}

.coming-soon-message {
    margin-bottom: 3rem;
}

.coming-soon-message p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-option h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-option p {
    color: #e8e8e8;
    margin-bottom: 1.5rem;
}

.newsletter-signup {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.newsletter-signup h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.newsletter-signup p {
    color: #e8e8e8;
    margin-bottom: 1.5rem;
}

.current-offerings {
    margin-top: 3rem;
}

.current-offerings h3 {
    color: #fff;
    margin-bottom: 2rem;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.offering {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.offering h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.offering p {
    color: #e8e8e8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #8B4513;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #8B4513;
    color: white;
}

@media (max-width: 768px) {
    .coming-soon h1 {
        font-size: 2rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #7A1F2B;
    color: #fff;
    border-color: #7A1F2B;
}

.btn-primary:hover {
    background-color: #5A1823;
    border-color: #5A1823;
}

.btn-secondary {
    background-color: #fff;
    color: #7A1F2B;
    border-color: #fff;
}

.btn-secondary:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #7A1F2B;
    margin: 1rem auto 2rem;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo {
    height: 60px;
    width: auto;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #7A1F2B;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #7A1F2B;
}

.shop-btn {
    background-color: #7A1F2B;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 4px;
}

.shop-btn:hover {
    background-color: #5A1823;
    color: #fff !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 0 50px;
    background-image: url('images/bg-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 50px;
}

.hero-products {
    margin-top: 6rem;
    max-width: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero-content h1 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

/* Hero Products Section - removed duplicate, styling above */

.hero-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-product {
    position: relative;
    border: 2px solid white;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-product:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-product img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
    position: relative;
}

.hero-product::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: rgba(255, 255, 255, 0);
    border-radius: 10px 10px 0 0;
    transition: background 0.3s ease;
    pointer-events: none;
}

.hero-product:hover::after {
    background: rgba(255, 255, 255, 0.2);
}

.hero-product-overlay {
    position: relative;
    background: #e8e8e8;
    padding: 1.2rem 1rem 1.2rem;
    color: #333;
    border-radius: 0 0 10px 10px;
    transition: background-color 0.3s ease;
}

.hero-product:hover .hero-product-overlay {
    background: #e8e8e8;
}

.hero-product h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.hero-product-price {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.8rem;
    text-shadow: none;
    line-height: 1.2;
}

.btn-small {
    padding: 6px 16px;
    font-size: 0.85rem;
}

.btn-hero-product {
    background-color: #7A1F2B;
    color: #fff;
    border-color: #7A1F2B;
    padding: 6px 16px;
    font-size: 0.85rem;
    border-radius: 4px;
}

.btn-hero-product:hover {
    background-color: #5A1823;
    border-color: #5A1823;
}

.hero-image {
    display: none;
}

/* Responsive for hero products */
@media (max-width: 1024px) {
    .hero-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 600px;
        padding: 0 20px;
    }
    
    .hero-products {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        padding: 0 20px;
    }
    
    .hero-products {
        margin-top: 4rem;
        width: 100%;
        margin-left: 0;
    }
    
    .hero-product:nth-child(2),
    .hero-product:nth-child(4) {
        display: none;
    }
    
    .hero-product img {
        height: 200px;
    }
    
    .hero-product-overlay {
        padding: 1rem;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border: 1px solid #ddd;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #7A1F2B;
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #e8e8e8;
}

.product-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.category h3 {
    text-align: center;
    color: #7A1F2B;
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.products .product-item {
    display: block;
    text-align: center;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.products .product-item:hover {
    transform: translateY(-5px);
}

.products .product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.products .product-item h4 {
    color: #2c2c2c;
    font-weight: 600;
}

/* Bundles Section */
.bundles {
    padding: 80px 0;
    background-color: #fff;
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.bundle-card {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border: 1px solid #ddd;
    position: relative;
    transition: transform 0.3s ease;
}

.bundle-card:hover {
    transform: translateY(-5px);
}

.bundle-card.featured {
    border: 3px solid #7A1F2B;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: #7A1F2B;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.bundle-card h3 {
    color: #7A1F2B;
    text-align: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 0.5rem;
}

.weight {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.bundle-card ul {
    list-style: none;
    padding: 0;
}

.bundle-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.bundle-card li:last-child {
    border-bottom: none;
}

.other-bundles {
    text-align: center;
}

.other-bundles h3 {
    color: #7A1F2B;
    margin-bottom: 2rem;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.specialty-item {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

.specialty-item h4 {
    color: #7A1F2B;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 500;
}

.testimonial cite {
    font-weight: 600;
    color: #7A1F2B;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item h3 {
    color: #7A1F2B;
    margin-bottom: 1rem;
}

.info-item a {
    color: #7A1F2B;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.newsletter {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.newsletter h3 {
    color: #7A1F2B;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #7A1F2B;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: #7A1F2B;
    margin-bottom: 1rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #7A1F2B;
}

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

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

/* Page Styles for Individual Pages */
.page-hero {
    background-color: #7A1F2B;
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
}

/* About Page Styles */
.about-detailed {
    padding: 80px 0;
    background-color: #e8e8e8;
}

.about-intro {
    margin-bottom: 5rem;
}

.about-content-detailed {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-detailed h2 {
    color: #7A1F2B;
    margin-bottom: 1.5rem;
}

.about-text-detailed h3 {
    color: #7A1F2B;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-image-detailed img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-caption {
    text-align: center;
    margin-top: 1rem;
}

.image-caption p {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.family-values {
    background-color: #f8f8f8;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    padding: 1rem 0;
    text-align: left;
}

.value-item h3 {
    color: #7A1F2B;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.value-item p {
    color: #444;
    line-height: 1.6;
}

.tradition-section {
    margin-top: 5rem;
}

.tradition-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tradition-text h2 {
    color: #7A1F2B;
    margin-bottom: 1.5rem;
}

.cta-section {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}

.cta-section h3 {
    color: #7A1F2B;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tradition-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Page Styles */
.services-detailed {
    padding: 80px 0;
    background-color: #e8e8e8;
}

.service-section {
    margin-bottom: 5rem;
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-header h2 {
    color: #7A1F2B;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.service-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.service-content.reverse .service-text {
    order: 2;
}

.service-content.reverse .service-image {
    order: 1;
}

.service-text h3 {
    color: #7A1F2B;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-text h4 {
    color: #7A1F2B;
    margin-bottom: 0.5rem;
}

.service-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-text ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-text li {
    margin-bottom: 0.5rem;
    color: #666;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-cta {
    text-align: center;
    margin-top: 2rem;
}

.policy-note {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.policy-note h4 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.policy-note p {
    color: #856404;
    margin: 0;
}

.additional-services {
    background-color: #f8f8f8;
    padding: 5rem 0;
    margin: 5rem 0;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.additional-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.additional-item h3 {
    color: #7A1F2B;
    margin-bottom: 1rem;
}

.service-guarantee {
    background-color: #7A1F2B;
    color: #fff;
    padding: 5rem 0;
    margin-top: 5rem;
    text-align: center;
}

.guarantee-content h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.guarantee-content p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-info-services h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    text-align: left;
}

.contact-item strong {
    color: #fff;
}

.contact-item a {
    color: #fff;
    text-decoration: underline;
}

/* In-Store Menu Page Styles */
.menu-detailed {
    padding: 80px 0;
    background-color: #e8e8e8;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.menu-category {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.menu-category.half {
    flex: 1;
}

.menu-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.category-title {
    background-color: #7A1F2B;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.category-title h2 {
    color: #fff;
    margin: 0;
    font-size: 1.8rem;
}

.category-subtitle {
    margin-top: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

.menu-items {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-items.single-column {
    grid-template-columns: 1fr;
}

.menu-column {
    display: flex;
    flex-direction: column;
}

.menu-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

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

.menu-item:hover {
    color: #7A1F2B;
}

.menu-cta {
    background-color: #7A1F2B;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    margin-top: 5rem;
    border-radius: 15px;
}

.menu-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.menu-cta p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Bundles Page Styles */
.bundles-detailed {
    padding: 80px 0;
    background-color: #e8e8e8;
}

.bundles-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.bundles-intro h2 {
    color: #7A1F2B;
    margin-bottom: 2rem;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bundle-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit {
    text-align: center;
}

.benefit h3 {
    color: #7A1F2B;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit p {
    font-size: 0.9rem;
    color: #666;
}

.bundle-section {
    margin-bottom: 6rem;
}

.detailed-bundles {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.bundle-card-detailed {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 3rem;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s ease;
}

.bundle-card-detailed:hover {
    transform: translateY(-5px);
}

.featured-detailed {
    border-color: #7A1F2B;
    transform: scale(1.02);
}

.featured-badge-detailed {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: #7A1F2B;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.bundle-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 2rem;
}

.bundle-header h3 {
    color: #7A1F2B;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bundle-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.bundle-weight {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
}

.bundle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.bundle-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.bundle-items h4 {
    color: #7A1F2B;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.bundle-items ul {
    list-style: none;
    padding: 0;
}

.bundle-items li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
}

.bundle-items li:last-child {
    border-bottom: none;
}

.bundle-items strong {
    color: #7A1F2B;
}

.bundle-value {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.bundle-value p {
    margin: 0;
    font-style: italic;
}

.bundle-value strong {
    color: #7A1F2B;
}

.specialty-bundles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.specialty-bundle {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.specialty-bundle:hover {
    transform: translateY(-3px);
}

.specialty-header {
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

.specialty-header h3 {
    color: #7A1F2B;
    margin-bottom: 0.5rem;
}

.specialty-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
}

.specialty-content p {
    margin-bottom: 1rem;
}

.specialty-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.specialty-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.specialty-content li:last-child {
    border-bottom: none;
}

.bundle-ordering {
    background-color: #f8f8f8;
    padding: 5rem 0;
    margin-top: 5rem;
}

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

.ordering-info h2 {
    color: #7A1F2B;
    margin-bottom: 3rem;
}

.ordering-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step h3 {
    color: #7A1F2B;
    margin-bottom: 1rem;
}

.important-notes {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: left;
}

.important-notes h3 {
    color: #7A1F2B;
    text-align: center;
    margin-bottom: 1rem;
}

.important-notes ul {
    list-style-type: disc;
    padding-left: 2rem;
}

.important-notes li {
    margin-bottom: 0.5rem;
    color: #666;
}

.bundle-cta h3 {
    color: #7A1F2B;
    margin-bottom: 1rem;
}

.bundle-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Contact Page Styles */
.contact-detailed {
    padding: 80px 0;
    background-color: #e8e8e8;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.contact-info-detailed .contact-card {
    background-color: #f8f8f8;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-card h2 {
    color: #7A1F2B;
    margin-bottom: 2rem;
}

.contact-details-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item h3 {
    color: #7A1F2B;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-item p {
    margin: 0;
    font-size: 1rem;
}

.detail-item a {
    color: #7A1F2B;
    text-decoration: none;
    font-weight: 600;
}

.detail-item a:hover {
    text-decoration: underline;
}

.store-image {
    text-align: center;
}

.store-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-form-section {
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-section h2 {
    color: #7A1F2B;
    margin-bottom: 1rem;
}

.contact-form-section p {
    margin-bottom: 2rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.additional-contact-info {
    margin-bottom: 5rem;
}

.info-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.info-section {
    background-color: #f8f8f8;
    padding: 3rem;
    border-radius: 15px;
}

.info-section h3 {
    color: #7A1F2B;
    margin-bottom: 1.5rem;
}

.info-section h4 {
    color: #7A1F2B;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.info-content ul,
.info-content ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.info-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

.warning-box {
    background-color: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.warning-box h4 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.warning-box p {
    color: #856404;
    margin: 0;
}

.social-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.social-section,
.newsletter-section {
    background-color: #f8f8f8;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.social-section h3,
.newsletter-section h3 {
    color: #7A1F2B;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    background-color: #7A1F2B;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #5A1823;
}

.newsletter-form-detailed {
    margin-top: 2rem;
}

.newsletter-input {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.newsletter-input input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-input input:focus {
    outline: none;
    border-color: #7A1F2B;
}

.testimonials-contact {
    margin-bottom: 5rem;
}

.testimonials-grid-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial-contact {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #7A1F2B;
}

.testimonial-contact p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-contact cite {
    font-weight: 600;
    color: #7A1F2B;
}

.contact-cta {
    background-color: #7A1F2B;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    border-radius: 15px;
}

.contact-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Wild Game Processing Page Styles */
.wild-game-detailed {
    padding: 80px 0;
    background-color: #e8e8e8;
}

.wild-game-intro {
    margin-bottom: 5rem;
}

.intro-content h2 {
    color: #7A1F2B;
    text-align: center;
    margin-bottom: 2rem;
}

.intro-content p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.guarantee-highlight {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #7A1F2B;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
    margin: 3rem auto 0;
}

.guarantee-highlight h3 {
    color: #7A1F2B;
    margin-bottom: 1rem;
}

.guarantee-highlight p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.processing-info {
    margin-bottom: 5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    background-color: #7A1F2B;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    color: #7A1F2B;
    margin-bottom: 1rem;
}

.pickup-policy {
    margin-bottom: 5rem;
}

.policy-card {
    background-color: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 15px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.policy-card h3 {
    color: #856404;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.policy-content p {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.policy-content p:last-child {
    margin-bottom: 0;
}

.processing-form-section {
    margin-bottom: 5rem;
}

.wild-game-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: #7A1F2B;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #7A1F2B;
    padding-bottom: 0.5rem;
}

.form-section h4 {
    color: #7A1F2B;
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-section {
    margin: 2rem 0;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background-color: #f8f8f8;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.form-submit .btn {
    font-size: 1.2rem;
    padding: 15px 40px;
    margin-bottom: 1rem;
}

.form-note {
    color: #666;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-wild-game {
    margin-top: 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card-wild-game {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-card-wild-game h3 {
    color: #7A1F2B;
    margin-bottom: 1rem;
}

.contact-card-wild-game a {
    color: #7A1F2B;
    text-decoration: none;
    font-weight: 600;
}

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

/* Product Options Styling */
.product-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-item:hover {
    background-color: #f0f0f0;
}

.product-item.selected {
    border-color: #7A1F2B;
    background-color: #fff;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.product-info input[type="checkbox"] {
    margin: 0;
}

.product-info label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
}

.weight-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
}

.weight-input label {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.weight-input input {
    width: 80px;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.weight-input input:disabled {
    background-color: #f5f5f5;
    color: #999;
}

.weight-input input:focus {
    border-color: #7A1F2B;
}

.form-total {
    background-color: #7A1F2B;
    color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.form-total h3 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
}

/* Order Summary Styles */
.order-summary {
    background-color: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.order-summary.hidden {
    display: none;
}

.summary-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 2px solid #7A1F2B;
    padding-bottom: 2rem;
}

.summary-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.summary-header h1 {
    color: #7A1F2B;
    margin-bottom: 0.5rem;
}

.summary-header p {
    color: #666;
    font-size: 1rem;
}

.customer-info-summary {
    margin-bottom: 3rem;
}

.customer-info-summary h3 {
    color: #7A1F2B;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.order-details {
    margin-bottom: 3rem;
}

.order-details h3 {
    color: #7A1F2B;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.order-table th,
.order-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.order-table th {
    background-color: #7A1F2B;
    color: #fff;
    font-weight: 600;
}

.order-table tbody tr:hover {
    background-color: #f8f8f8;
}

.total-row {
    background-color: #f8f8f8;
    font-weight: 600;
}

.total-row td {
    border-top: 2px solid #7A1F2B;
    padding: 1rem 0.8rem;
}

.pickup-policy-summary {
    background-color: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.pickup-policy-summary h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.pickup-policy-summary p {
    color: #856404;
    margin-bottom: 0.5rem;
}

.summary-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.summary-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }
    
    .order-summary,
    .order-summary * {
        visibility: visible;
    }
    
    .order-summary {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 20px;
        box-shadow: none;
        border-radius: 0;
    }
    
    .summary-buttons {
        display: none;
    }
    
    .summary-header {
        border-bottom: 2px solid #000;
    }
    
    .order-table th {
        background-color: #000 !important;
        color: #fff !important;
        -webkit-print-color-adjust: exact;
    }
}

/* Active Navigation State */
.nav-menu a.active {
    color: #7A1F2B;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
        padding: 120px 0 50px;
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scrolling on mobile */
    body {
        overflow-x: hidden;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Ensure all sections fit on mobile */
    .page-hero {
        padding: 80px 0 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Ensure wide content doesn't overflow */
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Form elements responsive */
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Prevent wide images from overflowing */
    img {
        max-width: 100%;
        height: auto;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .bundles-grid {
        grid-template-columns: 1fr;
    }
    
    .bundle-card.featured {
        transform: none;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Image Layout Styles for New Sections */
.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-text {
    display: flex;
    flex-direction: column;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.bundles-intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
    margin-bottom: 3rem;
}

.bundles-intro .intro-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.bundles-intro .intro-text p {
    text-align: left;
    margin-bottom: 2rem;
}

/* Compact Bundle Styles */
.bundles-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.bundles-grid-compact-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bundle-card-compact {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

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

.featured-compact {
    border-color: #7A1F2B;
    transform: scale(1.02);
}

.featured-badge-compact {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #7A1F2B;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.bundle-card-compact h3 {
    color: #7A1F2B;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.bundle-card-compact .bundle-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.4rem;
}

.bundle-card-compact .bundle-weight {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.bundle-items-compact {
    margin-bottom: 1.2rem;
}

.bundle-items-compact ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.bundle-items-compact li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #555;
}

.bundle-items-compact li:last-child {
    border-bottom: none;
}

.bundle-description-compact {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments for new layouts */
@media (max-width: 1024px) {
    .bundles-grid-compact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bundles-grid-compact-two {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-compact {
        transform: none;
    }
}

@media (max-width: 768px) {
    .intro-content,
    .bundles-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-image {
        order: -1;
    }
    
    .bundles-intro .intro-text h2 {
        text-align: center;
    }
    
    .bundles-intro .intro-text p {
        text-align: center;
    }
    
    .bundle-card-compact {
        padding: 1.5rem;
    }
    
    /* Wild Game Page Mobile Styles */
    .wild-game-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-wild-game {
        margin-top: 3rem;
    }
    
    .contact-card-wild-game {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    /* Wild game process steps mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .guarantee-highlight {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    /* Bundles Page Mobile Styles */
    .specialty-bundles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .specialty-bundle {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .specialty-header {
        margin-bottom: 1rem;
    }
    
    .specialty-price {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    /* Bundle benefits grid mobile */
    .bundle-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .benefit {
        text-align: center;
        padding: 1rem;
    }
    
    /* Bundles intro mobile fixes */
    .bundles-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .intro-text {
        order: 2;
    }
    
    .intro-image {
        order: 1;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Contact Page Mobile Styles */
    .contact-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .contact-info-detailed {
        order: 2;
    }
    
    .contact-form-section {
        order: 1;
    }
    
    .contact-grid-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    /* Fix contact form rows to stack on mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - additional adjustments */
    .wild-game-form {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .specialty-bundle {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }
    
    .contact-card {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .contact-card-wild-game {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }
    
    .specialty-header h3 {
        font-size: 1.3rem;
    }
    
    .specialty-price {
        font-size: 1.2rem;
    }
    
    /* Additional small screen fixes */
    .step-card {
        padding: 1.2rem;
        margin: 0 0.5rem;
    }
    
    .guarantee-highlight {
        margin: 1rem 0.5rem;
        padding: 1.2rem;
    }
    
    .intro-image {
        max-width: 250px;
    }
    
    .bundle-benefits {
        gap: 1rem;
    }
    
    .benefit {
        padding: 0.8rem;
    }
}

/* Social Media Links Styling */
.social-links {
    margin-top: 1rem;
}

.social-links h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background-color: #fff;
    color: #333;
    transform: translateY(-2px);
    border-color: #8B4513;
}

/* Specific social media brand colors on hover */
.social-icon.facebook:hover {
    background-color: #1877F2;
    color: white;
    border-color: #1877F2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    color: white;
    border-color: #E1306C;
}

.social-icon.tiktok:hover {
    background-color: #000;
    color: white;
    border-color: #FF0050;
}

.social-icon.twitter:hover {
    background-color: #000;
    color: white;
    border-color: #1DA1F2;
}

.social-icon.threads:hover {
    background-color: #000;
    color: white;
    border-color: #666;
}

.social-icon.youtube:hover {
    background-color: #FF0000;
    color: white;
    border-color: #FF0000;
}

/* Threads icon styling (fallback) */
.threads-icon {
    font-weight: bold;
    font-family: Arial, sans-serif;
    font-size: 1.4rem;
    display: inline-block;
    width: auto;
    text-align: center;
}

/* Hero Social Icons Styling */
.hero-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.hero-social-icons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 0;
}

.hero-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 11;
    position: relative;
}

.hero-social-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 1);
}

/* Hero social icon brand colors on hover */
.hero-social-icon.facebook:hover {
    background-color: #1877F2;
    color: white;
    border-color: #1877F2;
}

.hero-social-icon.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border-color: #E1306C;
}

.hero-social-icon.tiktok:hover {
    background-color: #000;
    color: white;
    border-color: #FF0050;
}

.hero-social-icon.twitter:hover {
    background-color: #000;
    color: white;
    border-color: #1DA1F2;
}

.hero-social-icon.threads:hover {
    background-color: #000;
    color: white;
    border-color: #666;
}

.hero-social-icon.youtube:hover {
    background-color: #FF0000;
    color: white;
    border-color: #FF0000;
}

/* Hero threads icon specific styling */
.hero-social-icon .threads-icon {
    font-size: 0.95rem;
    font-weight: bold;
}

/* Mobile social links */
@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .threads-icon {
        font-size: 1.6rem;
    }
    
    /* Hero social icons mobile responsive */
    .hero-social {
        padding: 10px 0;
    }
    
    .hero-social-icons {
        gap: 12px;
    }
    
    .hero-social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .hero-social-icon .threads-icon {
        font-size: 0.95rem;
    }
}

@media (max-width: 1024px) {
    /* Tablet adjustments for hero social */
    .hero-social {
        padding: 10px 0;
    }
    
    .hero-social-icons {
        gap: 12px;
    }
    
    .hero-social-icon {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
    
    .hero-social-icon .threads-icon {
        font-size: 1rem;
    }
}