/* ================================
   Krawdaddy Krewe - Main Stylesheet
   ================================ */

/* ================================
   Base Reset
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mothers', Georgia, "Times New Roman", Times, serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

body.modal-open {
    overflow: hidden;
}

/* ================================
   Header / Nav
   ================================ */
.header {
    background: #ffffff;
    color: #1e3a5f;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(20,48,77,0.08);
}

.top-bar {
    background: #14304d;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar-content,
.nav-container,
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex: 0 0 auto;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 0.25rem;
    border-radius: 3px;
}

.social-links a:hover {
    opacity: 1;
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.business-hours {
    color: #cfe9fb;
    font-size: 0.85rem;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1 auto;
    justify-content: flex-end;
    flex-wrap: wrap;
    row-gap: 0.35rem;
}

.business-hours span {
    white-space: normal;
}

.phone-in-top {
    background: linear-gradient(45deg, #87ceeb, #a0d7f0);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    white-space: nowrap;
    flex: 0 0 auto;
}

.phone-in-top:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.main-nav {
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    min-height: 120px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 120px;
}

.logo-image {
    width: 120px;
    height: 120px;
    background: url('./img/logotemp.webp') center/contain no-repeat;
    background-color: transparent;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #1e3a5f;
    text-decoration: none;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #5b7fa3;
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    flex: 1;
    justify-content: center;
    margin-left: 2rem;
}

.nav-links a {
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.current-page {
    color: #0f2843;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e3a5f;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.current-page::after {
    width: 100%;
}

.current-page {
    background-color: rgba(135, 206, 235, 0.2) !important;
    border-radius: 6px;
}

.phone-number {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #87ceeb, #a0d7f0);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: none;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.phone-number:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #a0d7f0, #87ceeb);
}

/* ================================
   Hero / Carousel
   ================================ */
.hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content .tagline {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #87ceeb;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-inline: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #1e3a5f, #87ceeb);
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ================================
   Layout / Sections
   ================================ */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #1e3a5f, #87ceeb);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.25rem;
    color: #1e3a5f;
    margin-bottom: 0.75rem;
}

/* ================================
   Products Grid
   ================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-products-btn {
    color: #fff;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid #fff;
    text-decoration: none;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 1.4rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0.5rem 0;
}

/* ================================
   About Section
   ================================ */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-text h3 {
    color: #1e3a5f !important;
}

.about-image {
    width: 100%;
    height: 400px;
    background: url('./img/catering.jpg') center/cover no-repeat;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ================================
   Contact Section
   ================================ */
.contact-section {
    background: #1e3a5f;
    color: #fff;
}

.contact-section .section-title {
    color: #87ceeb !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    color: #87ceeb;
    margin-bottom: 1rem;
}

.contact-info h4,
.contact-info a {
    color: #87ceeb !important;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #1e3a5f !important;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e3a5f;
}

.submit-btn {
    background: linear-gradient(45deg, #1e3a5f, #87ceeb);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* ================================
   Footer
   ================================ */
.footer {
    background: #14304d;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

/* ================================
   Crawfish Page / Parallax
   ================================ */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    justify-items: center;
    margin-top: 3rem;
}

.special-item-container {
    text-align: center;
}

.special-item {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.special-item:hover {
    transform: scale(1.05);
}

.special-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.special-item:hover .overlay {
    opacity: 1;
}

.special-label {
    margin-top: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e3a5f;
    text-align: center;
}

.parallax {
    background: url('img/crawfishpot1.jpg') center center / cover no-repeat fixed;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.parallax h1 {
    font-size: 3rem;
    background: rgba(0,0,0,0.5);
    padding: 1rem 2rem;
    border-radius: 5px;
}

/* ================================
   Modal
   ================================ */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 2001;
    padding: 24px;
}

.modal.is-open {
    display: flex;
}

.modal-content {
    position: relative;
    width: min(720px, 92vw);
    max-height: min(80vh, 700px);
    overflow: auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 70px rgba(0,0,0,0.35);
    border: 1px solid rgba(30, 58, 95, 0.12);
    padding: 22px 22px 18px;
    transform: translateY(12px) scale(0.98);
    opacity: 0;
    transition: transform 180ms ease, opacity 180ms ease;
}

.modal.is-open .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-content h3 {
    margin: 0 44px 10px 0;
    color: #1e3a5f;
    font-size: 1.35rem;
}

.modal-content p,
.modal-content li {
    color: #334;
    line-height: 1.6;
    font-size: 1.05rem;
}

.modal-content ul {
    margin: 10px 0 14px 18px;
}

.modal-content img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 14px;
    margin-top: 12px;
}

.close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: rgba(30, 58, 95, 0.10);
    color: #1e3a5f;
    font-size: 1.05rem;
    cursor: pointer;
    transition: transform 140ms ease, background 140ms ease;
}

.close-btn:hover {
    background: rgba(30, 58, 95, 0.18);
    transform: scale(1.04);
}

.close-btn:active {
    transform: scale(0.98);
}

/* ================================
   Privacy Policy Page
   ================================ */
.policy-section {
    padding: 3.5rem 0;
}

.policy-container {
    max-width: 900px;
}

.policy-container h1 {
    margin-bottom: 0.25rem;
}

.policy-updated {
    opacity: 0.9;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.policy-container h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.policy-container h3 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.policy-container h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.policy-container p,
.policy-container li {
    line-height: 1.7;
}

.policy-container ul {
    padding-left: 1.25rem;
}

/* ================================
   Events / Specials Page
   ================================ */
.badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 999px;
    background: #e8f4ff;
    color: #1e3a5f;
    margin-left: 8px;
}

.events-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-item {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid #e9eef3;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    margin-bottom: 10px;
}

.event-date {
    text-align: center;
    font-weight: 700;
    color: #1e3a5f;
}

.event-date .day {
    font-size: 1.4rem;
    line-height: 1;
}

.event-date .mon {
    font-size: 0.85rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.event-cta a {
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #1e3a5f;
    color: #1e3a5f;
}

.note-card {
    margin-top: 1.5rem;
    background: #f2f8ff;
    border-left: 5px solid #1e3a5f;
    padding: 12px 16px;
    border-radius: 6px;
}

.poster-card {
    overflow: hidden;
}

.poster-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ================================
   Fish Cuts Page (Accordion)
   ================================ */
.fishcuts-section {
    padding: 4rem 0;
}

.fishcuts-container {
    max-width: 980px;
}

.fishcuts-lede {
    margin-top: 0.75rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #555;
}

.cut {
    background: #ffffff;
    border: 1px solid #e9eef3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 16px;
}

.cut:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.cut summary
{
    list-style: none;
    cursor: pointer;
    padding: 18px;

    display: grid;
    grid-template-columns: 1fr auto 24px; /* title | tag | chevron */
    align-items: center;
    gap: 12px;

    user-select: none;
    background: linear-gradient(180deg, rgba(135,206,235,0.16), rgba(135,206,235,0.04));
    border-bottom: 1px solid rgba(20,48,77,0.08);
}

.cut summary::-webkit-details-marker {
    display: none;
}

.cut summary::after
{
    content: "▾";
    font-size: 1.05rem;
    color: #1e3a5f;
    opacity: 0.85;
    transition: transform 160ms ease;
    justify-self: end; /* key */
}

.cut[open] summary::after {
    transform: rotate(180deg);
}

.cut-title {
    justify-self: start;
    font-weight: 800;
    font-size: 1.15rem;
    color: #1e3a5f;
    letter-spacing: 0.2px;
}

.cut-tag
{
    justify-self: center;
    text-align: center;

    min-width: 260px; /* key: keeps the middle column aligned */
    padding: 0 8px;

    font-size: 0.9rem;
    font-weight: 600;
    color: #5b7fa3;
    white-space: nowrap;
}

.cut-body {
    padding: 18px 18px 20px;
}

.cut-body p,
.cut-body li {
    line-height: 1.7;
    color: #444;
}

.cut-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.cut-col {
    background: #f2f8ff;
    border-left: 5px solid #1e3a5f;
    border-radius: 10px;
    padding: 12px 14px;
}

.cut-col h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #1e3a5f;
}

.cut-col ul {
    margin: 0;
    padding-left: 1.15rem;
}

.fishcuts-footer-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-left: 5px solid #1e3a5f;
    border-radius: 10px;
    background: #f2f8ff;
}

.fishcuts-pdf {
    text-align: center;
    margin: 0.25rem 0 2rem;
}

.fishcuts-pdf a {
    display: inline-block;
    background: #f2f8ff;
    border: 1px solid #e9eef3;
    border-left: 5px solid #1e3a5f;
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fishcuts-pdf a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* ================================
   Recipes
   ================================ */
.recipe-wrap {
    max-width: 900px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.recipe-hero {
    padding: 2rem 2rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
}

.recipe-hero h1 {
    margin: 0;
    color: #1e3a5f;
    font-size: 2rem;
}

.recipe-hero p {
    margin: 0.75rem 0 0;
    color: #555;
    line-height: 1.7;
}

.recipe-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.recipe-pill {
    background: #e8f4ff;
    color: #1e3a5f;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.95rem;
}

.recipe-body {
    padding: 1.75rem 2rem 2rem;
}

.recipe-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 2rem;
}

.recipe-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.25rem;
}

.recipe-card h2 {
    margin-top: 0;
    color: #1e3a5f;
    font-size: 1.25rem;
}

.recipe-list {
    margin: 0;
    padding-left: 1.1rem;
    line-height: 1.85;
    color: #333;
}

.recipe-steps ol {
    margin: 0;
    padding-left: 1.1rem;
    line-height: 1.9;
    color: #333;
}

.recipe-note {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    border-radius: 8px;
    color: #6b5a00;
}

.recipe-subsection {
    margin-top: 2rem;
}

.recipe-subsection h3 {
    color: #1e3a5f;
    margin-bottom: 0.75rem;
}

.recipe-small {
    font-size: 0.95rem;
    color: #555;
}

.recipe-affiliate {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 5px solid #1e3a5f;
    border-radius: 6px;
    text-align: center;
}

.recipe-affiliate h3 {
    margin-bottom: 0.5rem;
    color: #1e3a5f;
}

.affiliate-card {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #1e3a5f;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
}

.affiliate-card:hover {
    background: #16304e;
}

.affiliate-title {
    display: block;
    margin-bottom: 0.25rem;
}

.affiliate-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.affiliate-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #666;
}

/* ================================
   Pricing Tables (Fish/Shellfish/Crawfish)
   ================================ */
.pricing-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 3px solid #1e3a5f;
}

.pricing-table-container {
    max-width: 800px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background-color: #1e3a5f;
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-size: 1.1rem;
}

.pricing-table th:nth-child(2) {
    text-align: center;
    width: 30%;
}

.pricing-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.pricing-table td:nth-child(2) {
    text-align: center;
    font-weight: bold;
    color: #1e3a5f;
}

.pricing-table tr:hover {
    background-color: #f8f9fa;
}

.shellfish-category,
.fish-category {
    background-color: #e8f4ff !important;
    font-weight: bold;
    text-align: center;
    color: #1e3a5f;
    font-size: 1.05rem;
}

.shellfish-category td,
.fish-category td {
    padding: 1rem;
}

.category-section {
    margin-top: 3rem;
}

.category-section h3 {
    color: #1e3a5f;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.loading-message {
    text-align: center;
    padding: 2rem;
    color: #1e3a5f;
    font-weight: bold;
}

.pricing-note {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem 1.5rem;
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    border-radius: 8px;
}

.oyster-warning-card {
    max-width: 800px;
    margin: 1rem auto 1.25rem;
    background: #fff3cd;
    border-left: 5px solid #ffc107;
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.oyster-warning-card h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #856404;
    font-size: 1.1rem;
}

.oyster-warning-card p {
    margin: 0 0 0.75rem;
    color: #5f4a00;
    line-height: 1.6;
}

/* ================================
   Responsive - All Media Queries
   ================================ */
@media (max-width: 980px) {
    .business-hours {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .recipe-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .cut summary
    {
        grid-template-columns: 1fr 24px; /* title | chevron */
    }

    .cut-tag
    {
        display: none;
    }

    .cut-grid
    {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Header/Nav */
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }
    
    .social-links {
        width: 100%;
        justify-content: center;
    }
    
    .business-hours {
        width: 100%;
        justify-content: center;
    }
    
    .nav-container,
    .logo-section {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0;
    }
    
    /* Hero */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .tagline {
        font-size: 1.3rem;
    }
    
    /* Grids */
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Parallax fallback for mobile Safari */
    .parallax {
        background-attachment: scroll;
    }
    
    /* Specials circular grid on mobile */
    .specials-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .special-item {
        width: 90vw;
        height: 90vw;
        max-width: 300px;
        max-height: 300px;
    }
    
    /* Modal */
    .modal {
        padding: 14px;
    }
    
    .modal-content {
        width: 100%;
        max-height: 85vh;
        padding: 18px 18px 14px;
        border-radius: 16px;
    }
}

/* ================================
   Crawfish season banner
   ================================ */
.seasonal-banner
{
    max-width: 1100px;
    margin: 0 auto 2.25rem;
    padding: 1.25rem 1.5rem;

    background: linear-gradient(135deg, rgba(135,206,235,0.18), rgba(135,206,235,0.06));
    border: 1px solid rgba(20,48,77,0.10);
    border-left: 6px solid #1e3a5f;
    border-radius: 16px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    align-items: center;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.seasonal-banner__icon
{
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(30,58,95,0.10);
    font-size: 1.8rem;
}

.seasonal-banner__kicker
{
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5b7fa3;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.seasonal-banner__title
{
    margin: 0;
    color: #1e3a5f;
    font-size: 1.35rem;
}

.seasonal-banner__desc
{
    margin: 0.35rem 0 0 0;
    color: #555;
}

.seasonal-banner__actions
{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.seasonal-banner__btn
{
    display: inline-block;
    background: linear-gradient(45deg, #1e3a5f, #87ceeb);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 180ms ease, box-shadow 180ms ease;
    white-space: nowrap;
}

.seasonal-banner__btn:hover
{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

.seasonal-banner__link
{
    color: #1e3a5f;
    font-weight: 700;
    text-decoration: none;
}

.seasonal-banner__link:hover
{
    text-decoration: underline;
}

@media (max-width: 768px)
{
    .seasonal-banner
    {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .seasonal-banner__icon
    {
        margin: 0 auto;
    }

    .seasonal-banner__actions
    {
        align-items: center;
    }
}

/* ================================
   Testimonial
   ================================ */
.testimonial
{
    max-width: 900px;
    margin: 1.75rem auto 0;
    padding: 1.5rem 1.5rem 1.25rem;

    background: #ffffff;
    border: 1px solid #e9eef3;
    border-left: 6px solid #1e3a5f;
    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.testimonial__quote
{
    font-size: 2.5rem;
    line-height: 1;
    color: rgba(30,58,95,0.35);
    margin-bottom: 0.5rem;
}

.testimonial__text
{
    margin: 0 0 1rem 0;
    color: #334;
    font-size: 1.05rem;
    line-height: 1.75;
}

.testimonial__byline
{
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: baseline;

    color: #1e3a5f;
    font-weight: 700;
}

.testimonial__meta
{
    font-weight: 600;
    color: #5b7fa3;
}

.testimonial__handles
{
    margin-top: 0.65rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;

    font-size: 0.95rem;
    color: #5b7fa3;
}

.testimonial__handles a
{
    color: #1e3a5f;
    font-weight: 700;
    text-decoration: none;
}

.testimonial__handles a:hover
{
    text-decoration: underline;
}

/* ================================
   Shipping Badge
   ================================ */
.shipping-badge
{
    margin: 0.85rem auto 0.9rem;
    padding: 0.75rem 0.85rem;

    display: flex;
    gap: 0.75rem;
    align-items: center;

    background: #f2f8ff;
    border: 1px solid #e9eef3;
    border-left: 5px solid #1e3a5f;
    border-radius: 12px;

    max-width: 420px;
}

.shipping-badge__icon
{
    font-size: 1.6rem;
    line-height: 1;
}

.shipping-badge__title
{
    font-weight: 800;
    color: #1e3a5f;
    font-size: 0.98rem;
    letter-spacing: 0.2px;
}

.shipping-badge__sub
{
    color: #5b7fa3;
    font-size: 0.9rem;
    line-height: 1.35;
}
/* ================================
   Shipping Badge (Crawfish page)
   ================================ */
.shipping-badge
{
    max-width: 640px;                 /* smaller + centered */
    margin: 1rem auto 1.75rem;
    padding: 12px 14px;
    border-radius: 14px;

    background: linear-gradient(
        180deg,
        rgba(135,206,235,0.18),
        rgba(135,206,235,0.06)
    );
    border: 1px solid rgba(20,48,77,0.10);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.shipping-badge__icon
{
    font-size: 1.4rem;   /* slightly smaller */
    line-height: 1;
    flex: 0 0 auto;
}

.shipping-badge__text
{
    flex: 0 1 auto;
}

.shipping-badge__title
{
    font-weight: 800;
    color: #1e3a5f;
    font-size: 1rem;
    margin-bottom: 2px;
}

.shipping-badge__sub
{
    color: #4b647e;
    font-weight: 600;
    font-size: 0.9rem;
}

.shipping-badge--link
{
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shipping-badge--link:hover
{
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

@media (max-width: 768px)
{
    .shipping-badge
    {
        padding: 12px;
    }
}


/* ================================
   Shipping Page
   ================================ */
.shipping-container
{
    max-width: 980px;
}

.shipping-lede
{
    max-width: 900px;
    margin: 0.75rem auto 1.5rem;
    color: #444;
    line-height: 1.75;
    text-align: center;
}

.shipping-callout
{
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 14px 16px;
    border-left: 5px solid #1e3a5f;
    border-radius: 12px;
    background: #f2f8ff;
    text-align: center;
}

.shipping-callout__title
{
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 6px;
}

.shipping-callout__sub a
{
    color: #1e3a5f;
    font-weight: 900;
    text-decoration: none;
}

.shipping-steps
{
    display: grid;
    gap: 16px;
    margin-top: 1rem;
}

.shipping-step
{
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 16px;
    align-items: center;

    background: #fff;
    border: 1px solid #e9eef3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.shipping-step--reverse
{
    grid-template-columns: 1.1fr 1fr;
}

.shipping-step__img img
{
    display: block;
    width: 100%;
    height: 100%;
    max-height: 340px;
    object-fit: cover;
}

.shipping-step__body
{
    padding: 16px 16px 18px;
}

.shipping-step__body h3
{
    margin: 0 0 8px 0;
    color: #1e3a5f;
    font-size: 1.25rem;
}

.shipping-step__body p
{
    margin: 0;
    color: #444;
    line-height: 1.7;
}

.shipping-card
{
    max-width: 980px;
    margin: 2.25rem auto 0;
    padding: 18px 18px 16px;

    background: #fff;
    border: 1px solid #e9eef3;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.shipping-card h3
{
    margin: 0 0 14px 0;
    color: #1e3a5f;
    text-align: center;
}

.shipping-pay-grid
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.shipping-pay-col
{
    background: #f2f8ff;
    border-left: 5px solid #1e3a5f;
    border-radius: 12px;
    padding: 14px 14px;
}

.shipping-pay-col h4
{
    margin: 0 0 8px 0;
    color: #1e3a5f;
}

.shipping-pay-col ul
{
    margin: 0;
    padding-left: 1.15rem;
    line-height: 1.7;
}

.shipping-fineprint
{
    margin: 12px 0 0 0;
    text-align: center;
    color: #555;
    line-height: 1.6;
}

.shipping-mono
{
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    color: #1e3a5f;
    font-weight: 700;
}

.shipping-back
{
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 900px)
{
    .shipping-step,
    .shipping-step--reverse
    {
        grid-template-columns: 1fr;
    }

    .shipping-pay-grid
    {
        grid-template-columns: 1fr;
    }
}
