:root {
    /* STRICT PALETTE: BLACK, WHITE, GOLDEN AMBER */
    --clr-bg: #000000;
    --clr-surface: #0a0a0a;
    --clr-contrast: #ffffff;
    --clr-primary: #ff9e20;
    /* Golden Amber */
    --clr-accent: #ffca28;
    --clr-primary-grad: linear-gradient(135deg, #ffb300 0%, #ff8f00 100%);
    --clr-glass: rgba(255, 255, 255, 0.03);
    /* Fonts */
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    /* Borders */
    --border-subtle: 1px solid rgba(255, 179, 0, 0.2);
    /* Amber-tinted border */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    justify-self: center;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-contrast);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

/* Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10);
    border-bottom: var(--border-subtle);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--clr-contrast);
}


.nav-brand {
    height: 60px;
    /* Premium sizing */
    width: auto;
    filter: brightness(1.1);
}

nav ul.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--clr-contrast);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul.nav-links li a:hover {
    color: var(--clr-primary);
}

/* Mobile nav links inside cart */
.mobile-nav-links {
    display: none;
}

.mobile-icon {
    display: none;
}

.desktop-text {
    display: block;
}

.cart-btn-container {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fff;
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--clr-bg);
    z-index: 5;
}

.btn-cart {
    background: var(--clr-primary);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--clr-bg);
    transition: all 0.3s;
}

.btn-cart:hover {
    background: #ffa000;
    box-shadow: 0 0 15px rgba(255, 179, 0, 0.4);
}

.cart-dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    width: 350px;
    padding: 2rem;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
    background: #0a0a0a !important;
    border: 1px solid var(--clr-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 1);
    opacity: 1 !important;
    backdrop-filter: none !important;
}

.cart-dropdown.show {
    display: flex;
}

.cart-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: var(--border-subtle);
    padding-bottom: 1rem;
}

.btn-close {
    background: transparent;
    border: none;
    color: var(--clr-contrast);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: var(--border-subtle);
}

.cart-item-thumb {
    flex-shrink: 0;
}

.cart-item-thumb img {
    width: 65px;
    height: 65px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgba(255, 158, 32, 0.2);
    background: #000;
}

.item-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.item-details h4 {
    font-size: 0.9rem;
    color: var(--clr-contrast);
    line-height: 1.2;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    width: fit-content;
}

.btn-qty {
    background: transparent;
    border: none;
    color: var(--clr-primary);
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.qty-val {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 1rem;
    text-align: center;
}

.btn-remove-lite {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 2px;
}

.btn-remove-lite:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.cart-dropdown-footer {
    border-top: var(--border-subtle);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Event Banner V2 */
.event-banner-v2 {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: var(--border-subtle);
    margin-top: 100px;
}

.banner-panels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.panel {
    flex: 1;
    background-size: cover;
    background-position: center;
    transition: transform 10s linear;
    position: relative;
}

.panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    transition: opacity 0.5s;
}

.event-banner-v2:hover .panel {
    transform: scale(1.1);
}

.banner-overlay-card {
    position: relative;
    z-index: 10;
    padding: 3rem;
    max-width: 750px;
    text-align: center;
    border: 1px solid rgba(255, 158, 32, 0.3);
    animation: fadeInUp 1s ease-out;
}

.banner-pre {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.banner-tag {
    color: var(--clr-primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.3em;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.banner-heading {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--clr-primary), var(--clr-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.banner-location {
    font-size: 1.2rem;
    color: var(--clr-contrast);
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
}

.banner-date {
    font-size: 1rem;
    color: var(--clr-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.banner-desc {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .event-banner-v2 {
        height: auto;
        padding: 4rem 1rem;
    }

    .banner-panels {
        flex-direction: column;
    }

    .banner-heading {
        font-size: 2.5rem;
    }
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding-top: 60px;
    /* Dramatic offset for fixed header */
    padding-bottom: 60px;
    position: relative;
    /* Spotlight background fallback */
    background: radial-gradient(circle at bottom, #212121 0%, #000000 60%);
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -50%;
    width: 200%;
    height: 60%;
    background-image: linear-gradient(45deg, rgba(255, 179, 0, 0.15) 25%, transparent 25%), linear-gradient(-45deg, rgba(255, 179, 0, 0.15) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(255, 179, 0, 0.15) 75%), linear-gradient(-45deg, transparent 75%, rgba(255, 179, 0, 0.15) 75%);
    background-size: 200px 200px;
    background-repeat: repeat;
    transform: perspective(400px) rotateX(35deg);
    transform-origin: center bottom;
    mask-image: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 80%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-logo {
    width: 250px;
    /* Balanced centerpiece width */
    height: auto;
    margin-bottom: 2rem;
    mix-blend-mode: screen;
    /* Blend black background away */
    /* filter: drop-shadow(0 0 50px rgba(255, 179, 0, 0.3)); */
    animation: fadeInScale 1.5s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--clr-primary);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    background: var(--clr-primary);
    color: var(--clr-bg);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: #ffa000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 179, 0, 0.3);
}

.btn-secondary {
    border: 1px solid var(--clr-contrast);
    color: var(--clr-contrast);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: var(--clr-contrast);
    color: var(--clr-bg);
}

/* Shop Section */
.shop-section {
    padding: 10rem 0;
    background: #0d0d0d;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--clr-primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.product-card {
    background: var(--clr-surface);
    border: var(--border-subtle);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--clr-primary);
    background: rgba(255, 179, 0, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 179, 0, 0.1);
}

.product-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: #000;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    opacity: 1;
    transition: all 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
    opacity: 1;
}

/* Removed product-img::after spotlight to keep line art crisp */

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-card-primary,
.btn-card-secondary {
    flex: 1;
    padding: 0.8rem 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

.btn-card-primary {
    background: var(--clr-primary);
    color: var(--clr-bg);
    border: 1px solid var(--clr-primary);
}

.btn-card-primary:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-card-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-card-secondary:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.btn-add-cart {
    margin-top: auto;
    background: var(--clr-primary);
    border: none;
    color: var(--clr-bg);
    padding: 1rem;
    width: 100%;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.btn-add-cart:hover {
    background: #ffa000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 179, 0, 0.4);
}

.btn-add-cart.active {
    background: var(--clr-contrast);
    color: var(--clr-bg);
}

/* Process Section */
.process-section {
    padding: 8rem 0;
    background: var(--clr-bg);
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.process-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.step-indicator {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-blob {
    width: 50px;
    height: 50px;
    background: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-bg);
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.4);
}

.step-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    background: rgba(255, 179, 0, 0.3);
    z-index: 1;
}

.step-content h3 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--clr-contrast);
}

.step-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* Checkout Section */
.checkout-section {
    padding: 10rem 0;
    background: var(--clr-surface);
    /* Darker background for checkout */
}

.glass {
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(11px);
    border: var(--border-subtle);
    padding: 3.5rem;
    border-radius: 8px;
    z-index: 10;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
}

.subtitle-2 {
    text-align: center;
    color: var(--clr-primary);
    margin: 0 auto 3rem;
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.big-text {
    font-size: 1.5rem;
    font-weight: 700;
}


@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .quality-content {
        padding: 2rem 1.5rem;
    }

    .quality-text {
        font-size: 1.1rem;
        font-weight: 600;
    }
}

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

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

.full-width {
    grid-column: span 2;
}

label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 0.1em;
}

input,
textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    color: #fff;
    font-family: inherit;
    border-radius: 2px;
}

input:focus {
    outline: none;
    border-color: var(--clr-primary);
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    min-height: 3.4rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.file-upload-wrapper:hover {
    border-color: var(--clr-primary);
    background: rgba(255, 179, 0, 0.05);
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-display {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.2rem;
    z-index: 1;
    pointer-events: none;
}

.file-icon {
    font-size: 1.2rem;
    color: var(--clr-primary);
}

.file-name {
    font-size: 0.85rem;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-upload-wrapper.has-file .file-name {
    color: #fff;
}

.visual-cart-form {
    background: #0a0a0a;
    border: 1px solid rgba(255, 179, 0, 0.2);
    padding: 1.5rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 120px;
    opacity: 1 !important;
    backdrop-filter: none !important;
}

.visual-item-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.visual-item-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 179, 0, 0.3);
}

.visual-item-thumb {
    flex-shrink: 0;
}

.visual-item-thumb img {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: #000;
}

.visual-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.visual-item-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--clr-contrast);
}

.visual-item-card p.item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-primary);
}

.visual-item-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

#order-comments {
    min-height: 150px;
}

.disclaimer {
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: #5a5a5a;
    /* text-align: center; */
}

/* Footer */
footer {
    background: #000;
    padding: 6rem 0 2rem;
    border-top: var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    align-items: start;
    text-align: center;
}

.footer-brand {
    text-align: center;
}

.footer-brand h3 {
    font-size: 1.7rem;
    letter-spacing: 0.1em;
    /* margin-bottom: 1.5rem; */
}

.footer-brand p {
    color: #888;
    margin-top: 1rem;
    font-size: .8rem;
}

.brand-highlight {
    color: rgb(21, 170, 170);
    font-weight: 500;
}

.masonic-blue {
    color: #a18101;
    font-weight: inherit;
}

.motto-square {
    margin: .7rem auto 0;
    display: flex;
    flex-direction: column;
    width: 145px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    letter-spacing: 0.15em;
    padding: .2rem 0;
    border-top: 1px solid rgba(247, 198, 2, 0.3);
    border-bottom: 1px solid rgba(247, 198, 2, 0.3);
    color: rgb(159, 159, 159);
}

.motto-line {
    display: flex;
    justify-content: space-between;
}

.footer-links {
    text-align: center;
}


.footer-links a {
    text-decoration: none;
    color: #888;
}

.footer-links a:hover {
    color: var(--clr-primary);
}

.footer-links h4,
.footer-social h4,
.footer-accreditation h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
}

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

.social-link {
    color: #888;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-accreditation {
    text-align: center;
}

.footer-accreditation p {
    color: #888;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 2rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom {
    margin-top: 6rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #333;
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-text {
    animation: fadeIn 1.2s ease-out forwards;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--clr-surface);
    border: 1px solid var(--clr-primary);
    border-radius: 4px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 179, 0, 0.15);
    z-index: 5000;
    transform: translateX(120%);
    /* Hide off-screen to the right by default */
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.6s ease;
    display: flex;
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}

.toast-icon {
    font-size: 1.5rem;
    margin-top: -0.2rem;
}

.toast-text {
    flex: 1;
}

.toast-text strong {
    color: var(--clr-primary);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.toast-text p {
    font-size: 0.85rem;
    color: #ddd;
    margin: 0;
    line-height: 1.4;
}

.btn-close-toast {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 0.8;
    padding: 0;
    margin-left: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.3s, color 0.3s;
}

.btn-close-toast:hover {
    opacity: 1;
    color: var(--clr-primary);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        margin-top: 1rem;
        padding-top: 3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }

    .nav-brand {
        height: 40px;
        /* Smaller brand on mobile to fit button */
    }

    .desktop-text {
        display: none !important;
    }

    .mobile-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    h3.mobile-icon {
        display: block;
    }

    .btn-cart {
        padding: 0.5rem;
        background: transparent;
        color: var(--clr-primary);
        border: 1px solid var(--clr-primary);
        width: 40px;
        height: 40px;
    }

    .btn-cart:hover {
        background: var(--clr-glass);
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

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

    .full-width {
        grid-column: auto;
    }

    nav ul.nav-links {
        display: none;
    }

    /* Mobile Menu / Cart */
    .mobile-nav-links {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        border-bottom: var(--border-subtle);
        padding-bottom: 2rem;
        margin-bottom: 1rem;
    }

    .mobile-link {
        flex: 1;
        text-align: center;
        padding: 0.8rem;
        font-size: 0.8rem;
        line-height: 1;
        font-family: var(--font-body);
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.05em;
        transition: color 0.3s;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--clr-contrast);
        text-decoration: none;
    }

    .mobile-link:hover {
        color: var(--clr-primary);
    }

    .cart-dropdown {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100dvh;
        z-index: 3000;
        border: none;
        border-left: var(--border-subtle);
        padding: 2rem 2rem 4rem 2rem;
        border-radius: 0;
        overflow-y: auto;
    }

    .cart-items {
        max-height: none;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .step-line {
        display: none;
    }

    .toast {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        transform: translateY(120%);
        /* On mobile, hide by dropping down instead of right */
    }

    .toast.show {
        transform: translateY(0);
    }

    .shop-section,
    .process-section,
    .checkout-section {
        padding: 4rem 0;
    }

    .glass {
        padding: 2rem 1.5rem;
    }

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

    .hero-btns {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    #submit-order {
        margin: 0 auto;
        display: block;
        width: 100%;
        max-width: 300px;
    }
}

/* Detail Page Styles */
.detail-info-section {
    background-color: #000;
    padding: 2rem;
    border-radius: 8px;
    border: var(--border-subtle);
    position: relative;
}

.detail-page-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.detail-left-column {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
}

.detail-image-section {
    border: var(--border-subtle);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.detail-image-section img {
    max-width: 100%;
    height: auto;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.detail-image-section:hover img {
    transform: scale(1.05);
}

.back-link {
    display: inline-block;
    color: var(--clr-primary);
    text-decoration: none;
    margin: 2rem 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: transform 0.3s;
}

.back-link:hover {
    transform: translateX(-5px);
}

.detail-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--clr-primary);
}

.detail-price {
    font-size: 2rem;
    font-family: var(--font-body);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.detail-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 2rem 0;
}

.detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 2.5rem;
}

.detail-select {
    width: 100%;
    background: var(--clr-bg);
    border: 1px solid #333;
    padding: 1.2rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.detail-select:focus {
    border-color: var(--clr-primary);
    outline: none;
}

.btn-large {
    margin-top: 1rem;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
}

.detail-meta {
    margin-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.detail-meta p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.detail-meta p span {
    color: var(--clr-primary);
    font-weight: 600;
    margin-right: 0.5rem;
}

@media (max-width: 992px) {
    .product-grid {
        gap: 2rem;
    }

    .shop-section,
    .process-section,
    .checkout-section {
        padding: 6rem 0;
    }

    .detail-page-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        /* Tighten gap to allow layering */
    }

    .detail-left-column {
        position: relative;
        /* Container is relative */
        top: 0;
    }

    .detail-image-section {
        position: sticky;
        top: 0;
        /* Aligns with sticky header */
        z-index: 10;
        margin-bottom: 1rem;
    }

    .detail-title {
        font-size: 2.5rem;
    }
}

/* Detail Quality Style */
.subtle-quality {
    border: none;
    background: transparent;
    padding: 1rem 3rem;
    /* margin-top: 0.5rem; */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    max-width: 100%;
    position: relative;
    /* z-index: 1; */
}

.subtle-quality .quality-icon {
    opacity: 0.6;
    transform: scale(0.85);
}

.subtle-quality .quality-text {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    max-width: 400px;
}