/* =========================================
   BASE STYLES & BRANDING
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* =========================================
   NAVIGATION HEADER
   ========================================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
header img {
    max-width: 200px; /* This is the magic number! Start small. */
    height: auto;
    display: block;
}


.logo-text {
    font-size: 24px;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: #555;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e5a4b5; /* Brand Pink */
}

/* =========================================
   HERO BANNERS
   ========================================= */
.hero, .sub-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}

.hero {
    height: 50vh; /* Shrunk from 80vh to 50vh! */
}

.sub-hero {
    height: 40vh;
}

.hero-overlay, .sub-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 15px;
    position: relative; /* Unlocks the ability to nudge it */
    top: 40px; /* Slides it exactly 40 pixels down from its natural spot */
}

.hero h1, .sub-hero h1 {
    font-size: 36px; /* Shrunk from 48px */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero span, .sub-hero span {
    color: #e5a4b5; /* Brand Pink */
}

.hero h2 {
    font-size: 16px; /* Shrunk from 20px */
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.sub-hero p {
    font-size: 18px;
}

/* =========================================
   BUTTONS
   ========================================= */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
    text-align: center;
}

.primary-btn {
    background-color: #e5a4b5;
    color: #fff;
    border: 2px solid #e5a4b5;
}
.primary-btn:hover {
    background-color: #d18f9e;
    border-color: #d18f9e;
}

.secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.secondary-btn:hover {
    background-color: #fff;
    color: #111;
}

.boy-btn {
    background-color: #a4cce5; /* Pastel Blue */
    color: #000;
    border: 2px solid #a4cce5;
}
.boy-btn:hover {
    background-color: #8dbfe0;
    border-color: #8dbfe0;
}

/* =========================================
   BEDAZZLED TREATS BUTTON
   ========================================= */
.treats-btn {
    /* Creates a shiny moving background */
    background: linear-gradient(45deg, #ffffff, #ffe6eb, #ffffff, #ffe6eb);
    background-size: 300% 300%;
    color: #000000;
    border: 2px solid #ffffff;
    font-weight: 900; /* Makes the text extra thick */
    letter-spacing: 1px;
    
    /* Creates a glowing pink halo around the button */
    box-shadow: 0 0 15px #e5a4b5, 0 0 25px #e5a4b5;
    
    /* Activates the heartbeat pulse and the shine */
    animation: heartbeat 1.5s infinite, shimmer 3s infinite linear;
}

.treats-btn:hover {
    /* What happens when they hover over it */
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    animation: none; /* Stops the movement so they can click it easily */
    box-shadow: 0 0 35px #ffffff; /* Glows bright white on hover */
    transform: scale(1.05); /* Pops out slightly */
}

/* -----------------------------------------
   ANIMATION KEYFRAMES (The Magic Engines)
   ----------------------------------------- */
   
/* The double-bump heartbeat pulsing animation */
@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.06); }
    30% { transform: scale(1); }
    45% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* The scrolling shiny gradient effect */
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.small-btn {
    padding: 10px 15px;
    font-size: 13px;
    margin-top: 15px;
}

/* =========================================
   LAYOUT CONTAINERS & TYPOGRAPHY
   ========================================= */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.centered-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #111;
}

.section-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
    text-align: center;
}

/* =========================================
   THE PIE LADY DIFFERENCE (Value Props)
   ========================================= */
.value-prop-section {
    background-color: #fffafb; 
    padding: 60px 20px;
    border-bottom: 2px dashed #e5a4b5;
}

.feature-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.feature-box {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 40px;
    color: #e5a4b5; 
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* =========================================
   GALLERY GRIDS (Pups & Storefront Preview)
   ========================================= */
.pup-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pup-gallery-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.pup-gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: contain; /* This is the magic word that stops the cropping! */
    background-color: #fff; /* Keeps the background crisp white */
    display: block;
}

.pup-info {
    padding: 25px 20px;
}

.pup-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.pup-info p {
    color: #666;
    font-size: 14px;
}

/* =========================================
   DIGITAL TREAT MENU BOARD
   ========================================= */
.menu-board-container {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 60px;
}

.menu-layout {
    display: flex;
    gap: 50px;
    justify-content: space-between;
}

.menu-column {
    flex: 1;
}

.menu-category {
    margin-bottom: 40px;
}

.menu-header {
    background-color: #111;
    color: #fff;
    padding: 10px 20px;
    font-size: 20px;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 2px 2px 0px #e5a4b5;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
}

.item-name {
    white-space: nowrap;
}

.item-dots {
    flex-grow: 1;
    border-bottom: 2px dotted #ccc;
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.item-price {
    font-weight: bold;
    white-space: nowrap;
}

.item-badge {
    background-color: #e5a4b5;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
    white-space: nowrap;
}

.special-pack-block {
    margin-top: 30px;
    border: 3px solid #e5a4b5;
    border-radius: 8px;
    padding: 2px;
    text-align: center;
}

.special-pack-block .menu-header {
    background-color: #e5a4b5;
    box-shadow: none;
    display: block;
    margin: 0;
    border-radius: 4px 4px 0 0;
}

.special-pack-content {
    background-color: #fffafb;
    padding: 25px;
}

.special-pack-content h3 {
    color: #e5a4b5;
    font-size: 26px;
    margin-bottom: 8px;
}

.special-pack-content p {
    font-weight: bold;
    color: #444;
    font-size: 16px;
}

.menu-cta-banner {
    background-color: #e5a4b5;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 40px;
    cursor: pointer;
    transition: 0.3s ease;
}

.menu-cta-banner:hover {
    background-color: #d18f9e;
    transform: scale(1.02);
}

.cta-subtext {
    font-size: 15px;
    font-weight: normal;
    opacity: 0.9;
}

/* =========================================
   LIGHTBOX MODAL (Image Pop-outs)
   ========================================= */
.zoomable-img {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.zoomable-img:hover {
    opacity: 0.85;
}

.lightbox {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.9); 
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    width: 80vw;
    max-width: 800px;
    height: auto;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease; 
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: #e5a4b5; 
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;} 
    to {transform: scale(1); opacity: 1;}
}

/* =========================================
   ORDER INQUIRY FORM MODAL
   ========================================= */
.form-modal {
    display: none; 
    position: fixed;
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.form-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    border-top: 6px solid #e5a4b5; 
    animation: slideDown 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}
.close-modal:hover { color: #e5a4b5; }

.form-title {
    font-size: 22px;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: center;
}

.form-subtitle {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.4;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
}

.inquiry-form label {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #444;
}

.inquiry-form input[type="text"],
.inquiry-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.inquiry-form input[readonly] {
    background-color: #f2f2f2;
    color: #555;
    font-weight: bold;
    border: 1px solid #ddd;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.pay-radio {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid #e2e2e2;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
}

.pay-radio input {
    margin-right: 10px;
    accent-color: #e5a4b5; 
}

.pay-radio span {
    font-size: 13px;
}

.submit-form-btn {
    width: 100%;
    padding: 15px;
    font-size: 15px;
    cursor: pointer;
    border: none;
}

@keyframes slideDown {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* =========================================
   HOMEPAGE SPECIFIC STYLES
   ========================================= */
.content-row {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
} /* <-- THIS IS THE MISSING BRACKET */

.left-col, .right-col {
    flex: 1;
}

.align-bottom {
    align-items: flex-end;
}

.align-bottom {
    align-items: flex-end;
}

/* Featured Dogs (Dams & Sires) */
.dog-grid {
    display: flex;
    gap: 30px;
}

.dog-card {
    flex: 1;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.img-box {
    position: relative;
    height: 350px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

.img-label span {
    color: #e5a4b5;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bubble {
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    font-size: 14px;
}

.bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 30px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #f2f2f2 transparent transparent transparent;
}

/* Black Social Block */
.black-social-block {
    background-color: #111;
    color: #fff;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    margin-left: 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #e5a4b5;
}

/* =========================================
   FOOTER
   ========================================= */
.main-footer {
    background-color: #111;
    color: #fff;
    padding: 40px 20px;
}

.footer-info {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 100px;
    text-align: center;
}

.copyright {
    background-color: #000;
    color: #666;
    text-align: center;
    padding: 15px;
    font-size: 12px;
    text-transform: uppercase;
}
/* =========================================
   INDIVIDUAL SHOPPING CARDS (For Sub-Pages)
   ========================================= */
.shopping-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* This is the magic line that centers the bottom row! */
    gap: 30px;
    margin-top: 40px;
}

.shop-card {
    flex: 0 1 calc(33.333% - 20px); /* Forces exactly 3 cards per row on desktop */
    min-width: 280px; /* Keeps them from getting too skinny on smaller screens */
    background: #fff;
    border: 2px solid #f2f2f2;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    border-color: #e5a4b5;
    transform: translateY(-5px);
}

.shop-card h3 {
    color: #111;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.shop-price {
    color: #e5a4b5;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.shop-card ul {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes the checkbox to the bottom */
}

.shop-card ul li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}

.shop-card ul li i {
    color: #e5a4b5;
    margin-right: 8px;
}

/* =========================================
   CHECKBOXES & FLOATING CART BUTTON
   ========================================= */
.checkbox-container {
    display: flex;
    align-items: center;
    background: #fcfafb;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    border: 1px solid #e5a4b5;
    user-select: none;
}

.checkbox-container input {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    accent-color: #e5a4b5;
    cursor: pointer;
}

.floating-cart-btn {
    display: none; /* Hidden until an item is checked */
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #111;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    border: 2px solid #111;
    transition: 0.3s;
}

.floating-cart-btn:hover {
    background-color: #e5a4b5;
    border-color: #e5a4b5;
}

/* Modal Cart List */
.cart-summary-list {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    max-height: 150px;
    overflow-y: auto;
}

.cart-summary-item {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}
/* =========================================
   MENU INLINE CHECKBOXES
   ========================================= */
.menu-cb {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #e5a4b5;
    cursor: pointer;
    flex-shrink: 0;
}

.badge-cb {
    margin-right: 6px;
    width: 14px;
    height: 14px;
    accent-color: #111; /* Makes the checkmark black inside the pink badge */
    cursor: pointer;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
/* =========================================
   STICKY BOTTOM NAVIGATION & CART
   ========================================= */
body {
    padding-bottom: 70px; /* Prevents the footer from hiding behind the bar */
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    padding: 12px 0 10px 0;
    z-index: 1000;
    border-top: 3px solid #111;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #555;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.nav-item i {
    font-size: 22px;
    margin-bottom: 4px;
    color: #111;
    transition: 0.3s;
}

.nav-item:hover, .nav-item:hover i {
    color: #e5a4b5;
}

/* Highlights the Cart when items are added */
.cart-nav.has-items i, 
.cart-nav.has-items span {
    color: #e5a4b5;
}

/* Hides the old floating button if it's still in your code */
.floating-cart-btn {
    display: none !important;
}
/* =========================================
   LUXURY EDITORIAL SYSTEM
   ========================================= */
body {
    background-color: #fafafa; /* Soft off-white for a luxury gallery backdrop */
}

.editorial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.sub-label {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 3px;
    color: #e5a4b5;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

/* SECTION 1: ASYMMETRIC SHOWCASE SPLIT */
.showcase-split {
    display: flex;
    gap: 40px;
    margin-bottom: 100px;
}

.showcase-large {
    flex: 1.4;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 520px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.showcase-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-large:hover img {
    transform: scale(1.03);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}

.showcase-overlay h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
}

.editorial-link {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}
.editorial-link:hover { color: #e5a4b5; border-color: #e5a4b5; }

/* SIDEBAR ENTRIES */
.showcase-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.sidebar-item {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 245px;
}

.sidebar-item img {
    width: 45%;
    object-fit: cover;
}

.item-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-details h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.item-details p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.minimal-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.minimal-link:hover { color: #e5a4b5; }

/* SECTION 2: THE BAKERY EDITORIAL GRID */
.bakery-editorial {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 120px;
}

.bakery-intro {
    padding-right: 20px;
}

.editorial-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.editorial-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.boutique-action-btn {
    background-color: #000;
    color: #fff;
    text-decoration: none;
    padding: 14px 35px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
    display: inline-block;
}
.boutique-action-btn:hover { background-color: #e5a4b5; }

/* ASYMMETRIC PICTURE GRID */
/* ASYMMETRIC PICTURE GRID & CENTERING */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 invisible columns for perfect centering */
    gap: 20px;
}

.grid-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    position: relative;
    transition: transform 0.3s;
    grid-column: span 2; /* Standard cards take up 2 columns (3 fit on a row) */
}

.grid-card:hover { 
    transform: translateY(-4px); 
}

.grid-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    padding: 10px;
}

.zoomable-img {
    cursor: pointer;
}

.feature-card {
    grid-column: span 6; /* Spans all the way across the top */
}

.feature-card img {
    height: 280px;
}

/* Forces the bottom two cards to center perfectly */
.yak-card {
    grid-column: 2 / span 2; 
}
.medium-card {
    grid-column: 4 / span 2;
}

/* Card Caption & Links */
.card-caption {
    padding: 15px 12px;
    text-align: center;
    background: #fff;
    border-top: 1px solid #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.caption-title {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.explore-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e5a4b5;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.explore-link:hover {
    color: #000;
}

/* SECTION 3: OVERLAPPING PHILOSOPHY SHOWCASE */
.philosophy-showcase {
    display: flex;
    background-color: #000;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.philosophy-text-panel {
    flex: 1.3;
    padding: 60px;
    border-right: 1px solid #222;
}

.philosophy-text-panel h3 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 15px;
}

.philosophy-text-panel p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
}

.philosophy-social-panel {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-social-panel h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.philosophy-social-panel p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 25px;
}

.editorial-social-icons a {
    color: #fff;
    font-size: 18px;
    margin-right: 20px;
    transition: color 0.2s;
}
.editorial-social-icons a:hover { color: #e5a4b5; }
/* =========================================
   FLASHING BREAKING NEWS MENU LINK
   ========================================= */

/* The News link container */
.news-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff3b30 !important;
    font-weight: 800 !important;
    position: relative;
}

/* The Live Red Dot */
.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ff3b30;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

/* The Pulsing Glow Ring around the dot */
.live-dot::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #ff3b30;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1);
    animation: pulseGlow 1.5s infinite ease-out;
    opacity: 0.7;
}

/* The Animation Logic */
@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(2.5);
        opacity: 0; 
    }
}
/* =========================================
   HEADER DROPDOWN MENUS
   ========================================= */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none; /* THIS IS THE MAGIC LINE THAT HIDES THEM */
    position: absolute;
    background-color: #fffafb;
    min-width: 180px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    border-radius: 8px;
    border: 1px solid #e5a4b5;
    overflow: hidden;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #111 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: bold;
    border-bottom: 1px solid #f2e6e8;
    transition: background 0.2s ease;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
    color: #e5a4b5 !important;
}

.dropdown:hover .dropdown-content {
    display: block; /* THIS MAKES THEM APPEAR ON HOVER */
}

/* MOBILE LUXURY OVERRIDES */
@media (max-width: 900px) {
    .showcase-split, .bakery-editorial, .philosophy-showcase {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .showcase-large { height: 350px; }
    .sidebar-item { height: auto; flex-direction: column; }
    .sidebar-item img { width: 100%; height: 200px; }
    .editorial-grid { grid-template-columns: 1fr; }
    .grid-card, .feature-card, .yak-card, .medium-card { grid-column: span 1 !important; }
    .feature-card { grid-column: span 1; }
    .philosophy-text-panel { border-right: none; border-bottom: 1px solid #222; padding: 40px 30px; }
    .philosophy-social-panel { padding: 40px 30px; }
}
/* =========================================
   HEADER DROPDOWN MENUS
   ========================================= */

/* The container holding the main link */
.dropdown {
    position: relative;
    display: inline-block;
}

/* The hidden box that drops down */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fffafb;
    min-width: 180px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    border-radius: 8px;
    border: 1px solid #e5a4b5;
    overflow: hidden;
    top: 100%; /* Pushes it just below the header */
    left: 0;
}

/* The links inside the dropdown */
.dropdown-content a {
    color: #111 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: bold;
    border-bottom: 1px solid #f2e6e8;
    transition: background 0.2s ease;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

/* Hover effect for the links inside */
.dropdown-content a:hover {
    background-color: #f0f0f0;
    color: #e5a4b5 !important;
}

/* Make it drop down when hovered! */
.dropdown:hover .dropdown-content {
    display: block;
}
/* =========================================
   MODAL SCROLL FIX
   ========================================= */
.form-modal-content, .modal-content {
    max-height: 85vh !important; /* Forces the box to never be taller than 85% of the screen */
    overflow-y: auto !important; /* Adds a scrollbar inside the box if the content is too long */
}

/* =========================================
   MOBILE RESPONSIVE STYLES (Phones & Tablets)
   ========================================= */
@media (max-width: 768px) {
    
    /* 1. CLEAN SLIM WHITE HEADER */
    header {
        display: flex !important;
        flex-direction: column !important;
        padding: 15px 10px !important;
        background-color: #ffffff !important;
        height: auto !important;
    }

    .logo-text {
        font-size: 22px !important;
        text-align: center !important;
        margin-bottom: 10px !important;
    }

    /* 2. CLEAN NAVIGATION LINKS */
    nav {
        width: 100% !important;
    }

    nav ul {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px 15px !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    nav ul li a {
        font-size: 13px !important;
        color: #000 !important;
        font-weight: bold !important;
        text-transform: uppercase !important;
    }

    /* 3. DARK HERO SECTION - Auto Height stops text overlap! */
    .hero {
        height: auto !important; 
        min-height: 60vh !important;
        padding: 40px 0 !important; /* Adds breathing room top and bottom */
    }

    .hero-overlay {
        padding: 20px !important;
        justify-content: center !important;
        height: 100% !important;
    }

    .hero-logo {
        max-width: 90% !important; 
        height: auto !important;
        margin: 0 auto 20px auto !important; 
    }

    .hero h1 {
        font-size: 26px !important;
        line-height: 1.3 !important; /* Stops text from smashing together */
        margin-bottom: 10px !important;
    }

    .sub-hero h1 { 
        font-size: 28px; 
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 10px;
        margin: 0 auto;
    }

    /* =========================================
       YOUR EXISTING GRID STYLES (Cleaned up)
       ========================================= */
    .content-row, .dog-grid, .pup-gallery-grid, .feature-grid, .black-social-block {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-layout {
        flex-direction: column;
        gap: 10px;
    }
    
    .menu-cta-banner {
        font-size: 18px;
        padding: 15px;
    }
    
    .cta-subtext {
        display: block; 
        margin-top: 5px;
        font-size: 12px;
    }

    .item-dots {
        margin: 0 5px; 
    }
    
    .item-badge {
        margin-left: 5px;
        font-size: 11px;
    }

    .footer-info {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .payment-options {
        grid-template-columns: 1fr; 
    }
}
/* Hide side pictures on small mobile screens */
@media (max-width: 768px) {
    .desktop-only-pic {
        display: none !important;
    }
}
/* =========================================================
   UI UPGRADES: MOBILE MENU, BONE BUTTONS, & NEWS BADGE
   ========================================================= */

/* Mobile Menu Fix for Shop Pages */
.menu-toggle { display: none; font-size: 28px; cursor: pointer; color: #333; }
.nav-wrapper { display: flex; align-items: center; }
.nav-menu { margin: 0; display: flex; align-items: center; gap: 20px; list-style: none; padding: 0; }
.nav-menu a { text-decoration: none; color: #333; font-weight: 700; font-size: 14px; text-transform: uppercase; transition: 0.2s; }

@media (max-width: 950px) {
    .menu-toggle { display: flex; align-items: center; gap: 8px; } 
    .nav-wrapper { display: none; width: 100%; position: absolute; top: 65px; left: 0; background: #fffafb; box-shadow: 0 4px 6px rgba(0,0,0,0.1); z-index: 9999; flex-direction: column; }
    .nav-wrapper.active { display: flex; }
    .nav-menu { flex-direction: column; align-items: flex-start; padding: 10px 0; gap: 0; width: 100%; }
    .nav-menu li { width: 100%; }
    .nav-menu a { padding: 15px 20px; border-bottom: 1px solid #f0f0f0; width: 100%; box-sizing: border-box; display: block; }
    .dropdown-content { position: static; box-shadow: none; display: none; padding-left: 20px; }
    .dropdown:hover .dropdown-content, .dropdown.active .dropdown-content { display: block; }
    .header-cart-btn { width: 100%; justify-content: center; box-sizing: border-box; margin-left: 0; margin-top: 10px; margin-bottom: 10px; }
}

/* Pulsing News Badge */
.news-badge {
    background: #ff3b30;
    color: white !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 900 !important;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.6);
    animation: pulseRed 1.5s infinite alternate;
}
@keyframes pulseRed {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 59, 48, 0.6); }
    100% { transform: scale(1.1); box-shadow: 0 0 20px rgba(255, 59, 48, 1); }
}

/* Mega Glowing Bone Button - HIGH DEFINITION */
.bone-btn {
    position: relative;
    background: #e5a4b5;
    color: #fff !important;
    font-weight: 900 !important;
    height: 46px; /* Slightly taller for better proportions */
    padding: 0 30px; /* Wider padding to clear the bigger knobs */
    border-radius: 14px; 
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    z-index: 1;
    margin: 0 18px; 
    cursor: pointer;
    transition: 0.3s ease;
    
    /* THE MAGIC: drop-shadow traces the complex shape perfectly! */
    filter: drop-shadow(0 0 6px rgba(229,164,181, 0.6));
    animation: megaGlowFilter 1.2s infinite alternate;
}

/* The 4 Bone Knobs - Slightly larger for a deeper notch */
.bone-btn::before, .bone-btn::after {
    content: '';
    position: absolute;
    background: #e5a4b5;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    z-index: -1;
    transition: 0.3s ease;
}

/* Left Knobs */
.bone-btn::before { 
    left: -14px; 
    top: -4px; 
    box-shadow: 0 26px 0 #e5a4b5; 
}

/* Right Knobs */
.bone-btn::after { 
    right: -14px; 
    top: -4px; 
    box-shadow: 0 26px 0 #e5a4b5; 
}

/* Bone Hover Effects */
.bone-btn:hover { 
    background: #d6899d; 
    transform: scale(1.05); 
}
.bone-btn:hover::before, .bone-btn:hover::after { 
    background: #d6899d; 
}
.bone-btn:hover::before {
    box-shadow: 0 26px 0 #d6899d;
}
.bone-btn:hover::after {
    box-shadow: 0 26px 0 #d6899d;
}

/* The new filter-based glow that wraps the whole bone */
@keyframes megaGlowFilter {
    0% { filter: drop-shadow(0 0 5px rgba(229,164,181, 0.4)); }
    100% { filter: drop-shadow(0 0 20px rgba(229,164,181, 1)); }
}
/* Ensure the button anchors the tag correctly */
.bone-btn {
    position: relative !important; 
}

/* Safe, Tiny Free Shipping Tag */
.free-ship-tag {
    position: absolute;
    top: -18px;       /* Pushes it higher up */
    right: -25px;     /* Pushes it further off the right edge */
    background: #111;
    color: #fff;
    font-size: 9px;   /* Smaller font */
    font-weight: 900;
    padding: 3px 6px;
    border-radius: 12px;
    border: 2px solid #fffafb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    animation: gentleBounce 2s infinite;
    pointer-events: none;
    z-index: 2000;
    white-space: nowrap; /* THIS IS THE MAGIC FIX: Stops it from turning into a square */
}

/* Fix Mobile Menu Button Stretching */
@media (max-width: 768px) {
    .nav-menu li {
        text-align: center;
    }
    .nav-menu li .bone-btn, 
    .nav-menu li .news-badge {
        display: inline-block !important;
        width: max-content !important;
        margin: 10px auto !important;
    }
}
@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
/* Price Reduced Star Badge */
.price-drop-star {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #bf0a30; /* Firecracker Red */
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    padding: 12px 10px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 50;
    transform: rotate(-10deg);
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}
.price-drop-star i {
    color: #ffcc00; /* Golden Star Icon inside the badge */
    font-size: 14px;
    margin-bottom: 2px;
}

/* =========================================
   PREMIUM CART & MODAL FORM STYLING
   ========================================= */

/* Give the input boxes rounded corners and breathing room */
.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 14px 18px !important;
    margin-bottom: 22px !important;
    border: 2px solid #eaeaea !important;
    border-radius: 12px !important;
    font-family: inherit;
    font-size: 15px;
    color: #333;
    background-color: #fafafa !important;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Make the boxes "glow" pink when the user clicks inside them to type */
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    border-color: #e5a4b5 !important; 
    background-color: #fff !important;
    outline: none;
    box-shadow: 0 0 10px rgba(229, 164, 181, 0.2);
}

/* Clean up the labels above the boxes */
.inquiry-form label {
    display: block;
    font-size: 12px;
    font-weight: 900;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Upgrade the Radio Buttons to look like modern clickable cards */
.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.pay-radio {
    flex: 1;
    min-width: 130px;
    background: #fff;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: bold;
    font-size: 14px;
    color: #444;
}

/* Highlight the card when hovering OR when it is actively checked */
.pay-radio:hover, 
.pay-radio:has(input:checked) {
    border-color: #e5a4b5;
    background-color: #fffafb;
    color: #111;
}

/* Slightly enlarge the radio button circle itself */
.pay-radio input[type="radio"] {
    transform: scale(1.2);
    accent-color: #e5a4b5;
    margin: 0;
}
/* =========================================
   LITTER QUICK-NAVIGATION PILLS
   ========================================= */
.litter-nav-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: -20px auto 40px auto; /* This pulls the buttons up slightly so they overlap the space below the photo */
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.litter-nav-btn {
    background: #fff;
    color: #555;
    border: 2px solid #eaeaea;
    padding: 10px 25px;
    border-radius: 30px; /* Perfect pill shape */
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 8px;
}

.litter-nav-btn i {
    color: #e5a4b5; /* Pink paw prints */
    font-size: 15px;
}

/* Make them pop when hovered */
.litter-nav-btn:hover {
    border-color: #e5a4b5;
    background: #fffafb;
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(229, 164, 181, 0.25);
}