/* ===========================================
   RESET AND BASE STYLES
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none;
    color: inherit;
}

@font-face {
    font-family: 'TrajanPro-Regular';
    src: url('../shared/fonts/TrajanPro-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'OldeEnglish';
    src: url('../shared/fonts/OldeEnglish.ttf') format('truetype');
}

@font-face {
    font-family: 'Baskerville Old Face';
    src: url('../shared/fonts/Baskerville Old Face Regular.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #000000;
    --accent-color: #ffffff;
    --text-color: #fff;
    --text-secondary: #ccc;
    --transition: all 0.3s ease;
    --menu-font: TrajanPro-Regular, "Trajan Pro", "Times New Roman", serif;
    --body-font: 'Baskerville Old Face', Baskerville, "Times New Roman", serif;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
}

#animatedBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 1;
}

/* ===========================================
   NAVIGATION
   =========================================== */
.main-nav {
    position: fixed;
    top: 0.3rem;
    left: 0;
    right: 0;
    width: 100%;
    background-color: transparent;
    padding: 1rem 2rem 1rem 1.5rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.1rem;
    margin-right: auto;
}

.nav-brand a {
    color: #f3ecde;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: var(--menu-font);
    letter-spacing: 1px;
}

.nav-brand:has(.nav-logo) {
    margin-left: 0.5rem;
    margin-right: -0.75rem;
}

.nav-logo-link {
    display: block;
    line-height: 0;
}

.nav-logo {
    height: 3rem;
    width: auto;
    opacity: 0.96;
    transition: var(--transition);
}

.nav-logo-link:hover .nav-logo {
    opacity: 1;
}

.nav-menu li a {
    color: #f3ecde;
    text-decoration: none;
    padding: 0.7rem 1.1rem;
    transition: var(--transition);
    font-family: var(--menu-font);
    font-size: 0.74rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--accent-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-decoration-color: #f3ecde;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.55rem;
    transition: var(--transition);
}

.nav-toggle:focus {
    outline: none;
}

.hamburger {
    --bar-color: #e9ddc3;
    --bar-height: 2px;
    --bar-gap: 9px;
    --bar-full: 26px;
    --bar-short: 14px;

    display: block;
    width: var(--bar-short);
    height: var(--bar-height);
    background: var(--bar-color);
    position: relative;
    margin: 0 auto;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 50%;
    width: var(--bar-full);
    height: var(--bar-height);
    background: var(--bar-color);
    transform: translateX(-50%);
    transition: var(--transition);
}

.hamburger::before { top: calc(-1 * var(--bar-gap)); }
.hamburger::after { bottom: calc(-1 * var(--bar-gap)); }

.nav-toggle:hover .hamburger,
.nav-toggle:hover .hamburger::before,
.nav-toggle:hover .hamburger::after {
    background: #f3ecde;
}

.nav-toggle.active .hamburger {
    width: var(--bar-full);
    background: transparent;
}

.nav-toggle.active .hamburger::before,
.nav-toggle.active .hamburger::after {
    background: var(--bar-color);
    width: var(--bar-full);
}

.nav-toggle.active .hamburger::before {
    transform: translateX(-50%) rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: translateX(-50%) rotate(-45deg);
    bottom: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    margin-right: 1.8rem;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    justify-content: flex-end;
}

.nav-social a {
    color: #f3ecde;
    font-size: 1.25rem;
    transition: color 0.2s;
}

.nav-social a:hover {
    color: var(--accent-color);
}

/* ===========================================
   SECTION SEPARATORS
   =========================================== */
.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.098);
    position: relative;
}

.separator-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #f3ecde, transparent);
    width: 100%;
    max-width: 500px;
    opacity: 0.6;
}

/* ===========================================
   SHOP SECTION
   =========================================== */
.section {
    padding: 7rem 2rem 5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: rgba(0, 0, 0, 0.098);
}

#shop.section {
    justify-content: flex-start;
}

.shop-page {
    width: 100%;
    max-width: 1400px;
}

.shop-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    text-align: center;
}

.shop-header .separator-line {
    max-width: 700px;
}

.shop-title {
    font-family: var(--menu-font);
    font-size: 1.4rem;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #f3ecde;
    opacity: 0.96;
}

.shop-category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.shop-category-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(243, 236, 222, 0.25);
    color: #f3ecde;
    padding: 0.55rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--menu-font);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.shop-category-tab:hover,
.shop-category-tab.active {
    background: rgba(243, 236, 222, 0.1);
    border-color: rgba(243, 236, 222, 0.5);
    color: #fff;
}

.shop-container {
    width: 100%;
    padding: 0 1rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.shop-grid--grouped {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.shop-category-section {
    width: 100%;
}

.shop-category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

.shop-category-header .separator-line {
    max-width: 400px;
}

.shop-category-heading {
    font-family: var(--menu-font);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f3ecde;
    text-align: center;
    margin: 0;
    opacity: 0.85;
}

.shop-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.shop-category-grid--empty {
    display: block;
}

.shop-category-empty {
    font-family: var(--menu-font);
    font-size: 0.8rem;
    color: #c9a96e;
    letter-spacing: 1px;
    line-height: 1.7;
    text-align: center;
    margin: 0;
    padding: 1.5rem 1rem 2.5rem;
    opacity: 0.9;
}

.product-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-card--soon {
    opacity: 0.85;
}

.product-card--soon:hover {
    transform: none;
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.3rem 0.6rem;
    font-family: var(--menu-font);
    font-size: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 2;
}

.product-badge--music {
    background: rgba(60, 60, 60, 0.9);
    color: #f3ecde;
}

.product-badge--merch {
    background: rgba(60, 60, 60, 0.9);
    color: #f3ecde;
}

.product-badge--soon {
    background: rgba(120, 80, 40, 0.85);
    color: #f3ecde;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 340px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.03);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-product-button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--menu-font);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.view-product-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.view-product-button--inline {
    width: 100%;
    flex-shrink: 0;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-family: var(--menu-font);
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.product-description {
    font-family: var(--body-font);
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-price {
    font-family: var(--menu-font);
    font-size: 1rem;
    color: var(--accent-color);
    margin-top: auto;
    margin-bottom: 1rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* ===========================================
   PRODUCT MODAL
   =========================================== */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(5px);
    padding: 1rem;
}

.product-modal[hidden] {
    display: none;
}

.product-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(243, 236, 222, 0.3);
    text-align: center;
}

.product-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: #f3ecde;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.product-modal-close:hover {
    opacity: 1;
}

.product-modal-title {
    font-family: var(--menu-font);
    font-size: 1.4rem;
    color: #f3ecde;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.product-modal-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-modal-figure {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-modal-figure figcaption {
    font-family: var(--menu-font);
    font-size: 0.7rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-modal-mockup,
.product-modal-artwork,
.product-modal-cover {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem;
}

.product-modal-figure--single {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
}

.product-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-option-group {
    text-align: left;
}

.product-option-group label {
    display: block;
    font-family: var(--menu-font);
    font-size: 0.65rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
}

.product-select,
.product-quantity {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(243, 236, 222, 0.3);
    color: #f3ecde;
    font-family: var(--menu-font);
    font-size: 0.8rem;
    min-width: 140px;
}

.product-select option {
    background: #fff;
    color: #1a1a1a;
}

.product-quantity {
    width: 70px;
    min-width: 70px;
    text-align: center;
}

.product-coming-soon-notice {
    font-family: var(--menu-font);
    font-size: 0.75rem;
    color: #c9a96e;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.add-to-cart-button {
    background: rgba(243, 236, 222, 0.12);
    border: 2px solid rgba(243, 236, 222, 0.4);
    color: #f3ecde;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--menu-font);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.add-to-cart-button:hover {
    background: rgba(243, 236, 222, 0.2);
    border-color: #f3ecde;
}

.product-modal-description {
    font-family: var(--body-font);
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.product-modal-detail-description {
    font-family: var(--body-font);
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-modal-price {
    font-family: var(--menu-font);
    font-size: 1.2rem;
    color: #f3ecde;
    margin-bottom: 1.5rem;
}

.paypal-button-container {
    max-width: 300px;
    margin: 0 auto;
}

.paypal-unconfigured {
    font-family: var(--menu-font);
    font-size: 0.75rem;
    color: #aaa;
    line-height: 1.6;
}

.paypal-unconfigured code {
    font-size: 0.7rem;
    color: #ccc;
}

/* ===========================================
   SHOPPING CART
   =========================================== */
.cart-toggle {
    position: relative;
    background: none;
    border: 1px solid rgba(243, 236, 222, 0.3);
    border-radius: 4px;
    padding: 0.45rem 0.55rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    transform: translateY(-4px);
}

.cart-toggle:hover {
    border-color: rgba(243, 236, 222, 0.6);
    background: rgba(243, 236, 222, 0.06);
}

.cart-icon {
    width: 22px;
    height: 22px;
    fill: #f3ecde;
    display: block;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #c45c5c;
    color: #fff;
    font-family: var(--menu-font);
    font-size: 0.6rem;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2500;
}

.cart-overlay[hidden] {
    display: none;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    border-left: 1px solid rgba(243, 236, 222, 0.25);
    z-index: 2600;
    display: flex;
    flex-direction: column;
}

.cart-panel[hidden] {
    display: none;
}

.cart-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(243, 236, 222, 0.15);
}

.cart-panel-title {
    font-family: var(--menu-font);
    font-size: 1rem;
    color: #f3ecde;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cart-close {
    background: none;
    border: none;
    color: #f3ecde;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-empty {
    font-family: var(--menu-font);
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    padding: 2rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.cart-item-image {
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-family: var(--menu-font);
    font-size: 0.7rem;
    color: #f3ecde;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.cart-item-variant {
    font-size: 0.7rem;
    color: #888;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-family: var(--menu-font);
    font-size: 0.8rem;
    color: #ccc;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.cart-qty-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f3ecde;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    border-radius: 3px;
}

.cart-qty-value {
    font-family: var(--menu-font);
    font-size: 0.8rem;
    min-width: 1.2rem;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #888;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    align-self: flex-start;
}

.cart-item-remove:hover {
    color: #c45c5c;
}

.cart-panel-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(243, 236, 222, 0.15);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--menu-font);
    font-size: 1rem;
    color: #f3ecde;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cart-total {
    font-weight: bold;
}

.cart-clear-button {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: none;
    border: none;
    color: #666;
    font-family: var(--menu-font);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.2s;
}

.cart-clear-button:hover {
    color: #c45c5c;
}

.shop-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

body > .shop-footer-links {
    padding: 2rem 2rem 0;
}

footer .shop-footer-links {
    margin-bottom: 1rem;
}

.shop-footer-links a {
    font-family: var(--menu-font);
    font-size: 0.65rem;
    color: #f3ecde;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.shop-footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ===========================================
   SUPPORT PAGES (FAQ / CONTACT)
   =========================================== */
.support-page {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.support-title {
    font-family: 'OldeEnglish', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    text-align: center;
    margin-bottom: 0.5rem;
}

.support-subtitle {
    font-family: var(--menu-font);
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #f3ecde;
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: var(--menu-font);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.1rem;
    opacity: 0.6;
    flex-shrink: 0;
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    display: none;
    padding: 0 1.25rem 1.25rem;
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer a {
    color: #f3ecde;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.contact-form .form-group {
    text-align: left;
}

.contact-form label {
    display: block;
    font-family: var(--menu-font);
    font-size: 0.7rem;
    color: #f3ecde;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(243, 236, 222, 0.3);
    color: #f3ecde;
    font-family: var(--menu-font);
    font-size: 0.85rem;
}

.contact-form select option {
    background: #fff;
    color: #1a1a1a;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(243, 236, 222, 0.6);
}

.contact-submit {
    align-self: center;
    margin-top: 0.5rem;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid rgba(243, 236, 222, 0.4);
    color: #f3ecde;
    font-family: var(--menu-font);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.contact-submit:hover {
    border-color: #f3ecde;
    background: rgba(243, 236, 222, 0.08);
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: wait;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form-status {
    text-align: center;
    font-family: var(--menu-font);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin: 0;
}

.contact-form-status--success {
    color: #a8d5a2;
}

.contact-form-status--error {
    color: #e8a0a0;
}

.contact-alt {
    text-align: center;
    margin-top: 2rem;
    font-family: var(--menu-font);
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.contact-alt a {
    color: #f3ecde;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.back-to-shop {
    display: inline-block;
    margin-top: 2rem;
    font-family: var(--menu-font);
    font-size: 0.7rem;
    color: #f3ecde;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.back-to-shop:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
    background: rgba(0, 0, 0, 0.098);
    padding: 1rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    --social-icon-size: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.social-link {
    width: var(--social-icon-size);
    height: var(--social-icon-size);
    flex-shrink: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    filter: brightness(0.6);
}

.social-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.social-link:hover .social-icon {
    filter: brightness(0.6);
}

footer p {
    font-family: var(--menu-font);
    font-size: 0.7rem;
    color: #f3ecde;
    text-transform: uppercase;
    opacity: 0.96;
}

.copyright-notice {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3em;
}

.copyright-brand,
.copyright-rights {
    white-space: nowrap;
}

footer p a {
    color: #f3ecde;
    text-decoration: none;
}

.footer-logo {
    display: inline-block;
    margin-top: 0.5rem;
}

.footer-logo-img {
    width: 4.34rem;
    height: 4.34rem;
    transition: filter 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    filter: brightness(0.6);
}

/* ===========================================
   EVENTS / CHRONICLES MODAL
   =========================================== */
.events-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.events-modal[hidden] {
    display: none;
}

.events-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(243, 236, 222, 0.3);
    text-align: center;
}

.events-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: #f3ecde;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
}

.events-modal-content h2 {
    font-family: var(--menu-font);
    font-size: 1.2rem;
    color: #f3ecde;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.events-access-form .form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.events-access-form label {
    display: block;
    font-family: var(--menu-font);
    font-size: 0.7rem;
    color: #f3ecde;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.events-access-form input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(243, 236, 222, 0.3);
    color: #f3ecde;
    font-family: var(--menu-font);
    font-size: 0.85rem;
}

.events-access-form input:focus {
    outline: none;
    border-color: rgba(243, 236, 222, 0.6);
}

.events-access-error {
    color: #c45c5c;
    font-family: var(--menu-font);
    font-size: 0.7rem;
    text-transform: uppercase;
}

.events-access-submit {
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(243, 236, 222, 0.4);
    color: #f3ecde;
    font-family: var(--menu-font);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.events-access-submit:hover {
    border-color: #f3ecde;
    background: rgba(243, 236, 222, 0.08);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
    .main-nav {
        padding: 1rem 0.75rem;
        gap: 0.75rem;
    }

    .nav-brand:has(.nav-logo) {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-left: 0.25rem;
        margin-right: 0.05rem;
        margin-top: -0.55rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
        margin-right: auto;
        flex-shrink: 0;
        margin-top: -0.6rem;
    }

    .nav-social {
        margin-right: 0;
        gap: 0.65rem;
    }

    .section {
        padding: 6rem 1rem 3rem;
    }

    .shop-grid,
    .shop-category-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-image {
        height: 300px;
    }

    .product-modal-images {
        grid-template-columns: 1fr;
    }

    .nav-actions {
        margin-right: 0;
    }

    .nav-social {
        display: none;
    }

    .product-options {
        flex-direction: column;
        align-items: stretch;
    }
}
