/* =========================================================
   CRAFTIVORE — ARTISTIC GLASSMORPHISM WEBSITE
   Frosted glass aesthetic with paint splatter effects
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
    --paper: #0f0a1a;
    --white: #ffffff;
    --ink: #e8e4f3;
    --muted: #a8a0b8;
    --wine: #d32f7f;
    --wine-dark: #a01f5f;
    --rose: #ff6b9d;
    --blush: #ff99cc;
    --cream: #ffd4e5;
    --cyan: #00d4ff;
    --purple: #9d4edd;
    --line: rgba(255, 255, 255, 0.2);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #0f0a1a 0%, #1a0f2e 25%, #2d1b4e 50%, #1a0f2e 75%, #0f0a1a 100%);
    background-attachment: fixed;
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="10" cy="22" r="4" fill="%23d32f7f"/><circle cx="16" cy="8" r="5" fill="%23ff6b9d"/><path d="M 10 22 Q 15 12 18 5" stroke="%2300d4ff" stroke-width="2" fill="none"/><circle cx="18" cy="5" r="3" fill="%2300d4ff"/></svg>') 10 20, auto;
}

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

img {
    max-width: 100%;
    display: block;
}

button, input, textarea, select {
    font: inherit;
}

/* ---------- HEADER ---------- */

.site-header {
    width: 100%;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid var(--line);
    padding: 0 40px;
    position: sticky;
    top: 0;
    background: rgba(15, 10, 26, 0.7);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(211, 47, 127, 0.1);
    z-index: 1000;
}

.brand img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    mix-blend-mode: multiply;
    flex-shrink: 0;
}

nav {
    display: flex;
    gap: 40px;
    flex: 1;
}

nav a {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--wine);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-button {
    border: 1.5px solid var(--rose);
    color: var(--rose);
    padding: 11px 20px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
}

.header-button:hover {
    background: linear-gradient(135deg, var(--wine), var(--rose));
    color: var(--white);
    box-shadow: 0 0 20px rgba(211, 47, 127, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ---------- COMMON SECTION SETTINGS ---------- */

.section {
    width: min(1280px, 95%);
    margin: 0 auto;
    padding: 120px 20px;
}

.section-label {
    font-size: 10px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--wine), var(--rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 25px;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2,
.contact h2,
.bulk-header h2 {
    font-family: var(--serif);
    font-size: clamp(50px, 6vw, 82px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -2px;
}

.section-heading h2 em,
.contact h2 em,
.bulk-header h2 em {
    color: var(--wine);
}

/* ---------- HERO ---------- */

.hero {
    width: min(1280px, 95%);
    min-height: calc(100vh - 86px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
    gap: 50px;
    padding: 70px 20px 100px;
}

.eyebrow {
    color: var(--wine);
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero h1 {
    max-width: 680px;
    font-family: var(--serif);
    font-size: clamp(68px, 8vw, 118px);
    font-weight: 500;
    line-height: 0.78;
    letter-spacing: -5px;
}

.hero h1 span {
    display: block;
    color: var(--wine);
    font-style: italic;
    padding-left: 70px;
}

.hero-description {
    max-width: 480px;
    margin: 40px 0 34px;
    color: var(--muted);
    font-size: 15px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.primary-button {
    background: linear-gradient(135deg, var(--wine), var(--rose));
    color: white;
    padding: 15px 23px;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 0 20px rgba(211, 47, 127, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(211, 47, 127, 0.6);
}

.text-button {
    font-size: 12px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.text-button:hover {
    color: var(--wine);
}

/* ---------- HERO ART ---------- */

.hero-art {
    min-height: 570px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-card {
    width: min(430px, 80%);
    aspect-ratio: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(211, 47, 127, 0.15);
    border: 2px solid rgba(255, 107, 157, 0.4);
    box-shadow: 0 30px 80px rgba(211, 47, 127, 0.25), inset 0 0 30px rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(25px);
    transform: rotate(-2deg);
}

.logo-card img {
    width: 82%;
    mix-blend-mode: multiply;
}

.logo-card p {
    margin-top: -35px;
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--muted);
}

.paint-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.shape-one {
    width: 250px;
    height: 250px;
    background: var(--blush);
    top: 8%;
    right: 0;
    border-radius: 60% 40% 45% 55%;
    transform: rotate(25deg);
}

.shape-two {
    width: 180px;
    height: 320px;
    background: var(--cream);
    bottom: 5%;
    left: 5%;
    border-radius: 45% 55% 35% 65%;
    transform: rotate(-30deg);
}

.floating-word {
    position: absolute;
    font-family: var(--serif);
    font-style: italic;
    font-size: 27px;
    color: var(--wine);
    z-index: 3;
}

.word-one {
    top: 13%;
    left: 5%;
    transform: rotate(-18deg);
}

.word-two {
    right: 3%;
    bottom: 17%;
    transform: rotate(12deg);
}

.brush-mark {
    position: absolute;
    left: 15%;
    bottom: 18%;
    font-size: 48px;
    color: var(--wine);
    transform: rotate(-20deg);
}

/* ---------- ABOUT SECTION ---------- */

.about {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 0.45fr 1fr 0.55fr;
    gap: 60px;
    align-items: start;
}

.about-content h2 {
    font-family: var(--serif);
    font-size: clamp(50px, 6vw, 82px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -2px;
}

.about-content h2 em {
    color: var(--wine);
}

.about-content p {
    max-width: 560px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 15px;
}

.about-content strong {
    color: var(--ink);
}

.about-stamp {
    width: 150px;
    height: 150px;
    border: 1px solid var(--wine);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--wine);
    font-size: 10px;
    letter-spacing: 3px;
    transform: rotate(12deg);
}

/* ---------- ARTISTS SECTION ---------- */

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.artist-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    padding: 0;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(211, 47, 127, 0.15);
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(50, 30, 30, 0.12);
}

.artist-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.artist-icon {
    font-size: 80px;
    opacity: 0.4;
    transition: transform 0.35s ease;
}

.artist-card:hover .artist-icon {
    transform: scale(1.1) rotate(5deg);
}

.artist-card h3 {
    font-family: var(--serif);
    font-size: 22px;
    padding: 25px 25px 5px;
    margin: 0;
}

.artist-role {
    color: var(--wine);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 25px;
    margin: 8px 0 12px;
}

.artist-bio {
    color: var(--muted);
    font-size: 14px;
    padding: 0 25px;
    line-height: 1.6;
}

.view-portfolio {
    display: inline-block;
    margin: 18px 25px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
    transition: color 0.3s ease;
}

.view-portfolio:hover {
    color: var(--wine);
}

/* ---------- SHOP SECTION ---------- */

.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    margin-top: 60px;
}

/* Paint Splatter Animation */
@keyframes splatter {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(1);  
        opacity: 0;
    }
}

@keyframes paintDrop {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.1) translateY(50px);
        opacity: 0;
    }
}

.paint-splatter {
    position: fixed;
    pointer-events: none;
    z-index: 999;
    animation: splatter 0.8s ease-out forwards;
}

.paint-drop {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    animation: paintDrop 0.6s ease-in forwards;
}

.shop-filters {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 120px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(211, 47, 127, 0.1);
}

.shop-filters h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.filter-group {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--wine);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-options label {
    display: flex;
    align-items: center;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.filter-options input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--wine);
}

.filter-options label:hover {
    color: var(--wine);
}

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

.product-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(211, 47, 127, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(50, 30, 30, 0.12);
    border-color: var(--wine);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    text-align: center;
    color: rgba(25, 22, 23, 0.3);
    font-size: 14px;
    font-style: italic;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, rgba(211, 47, 127, 0.8), rgba(255, 107, 157, 0.8));
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 12px;
    font-size: 10px;
    letter-spacing: 1px;
    border-radius: 6px;
    text-transform: uppercase;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h4 {
    font-family: var(--serif);
    font-size: 18px;
    margin-bottom: 5px;
}

.artist-name {
    color: var(--wine);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-desc {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
}

.price {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}

.add-to-cart {
    background: linear-gradient(135deg, var(--wine), var(--rose));
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(211, 47, 127, 0.3);
}

.add-to-cart:hover {
    box-shadow: 0 0 20px rgba(211, 47, 127, 0.6);
    transform: translateY(-2px);
}

/* ---------- QUOTE SECTION ---------- */

.quote-section {
    width: 100%;
    padding: 130px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(211, 47, 127, 0.2), rgba(157, 78, 221, 0.2));
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(211, 47, 127, 0.1);
}

.quote-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(211, 47, 127, 0.2);
    border-radius: 50%;
    left: -150px;
    top: -150px;
}

.quote-mark {
    font-family: var(--serif);
    font-size: 90px;
    line-height: 0.5;
}

.quote-section p {
    font-family: var(--serif);
    font-size: clamp(45px, 6vw, 78px);
    line-height: 0.9;
    margin: 30px 0;
}

.quote-section p em {
    color: var(--blush);
    font-style: italic;
}

.quote-section span {
    font-size: 10px;
    letter-spacing: 4px;
}

/* ---------- BULK ORDERS SECTION ---------- */

.bulk-orders {
    background: linear-gradient(135deg, rgba(211, 47, 127, 0.08), rgba(157, 78, 221, 0.08));
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.bulk-header {
    margin-bottom: 60px;
}

.bulk-header p {
    max-width: 600px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 15px;
}

.bulk-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.bulk-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.bulk-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(211, 47, 127, 0.1);
}

.bulk-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.bulk-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.bulk-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.bulk-card p {
    color: var(--muted);
    font-size: 13px;
}

.bulk-form {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(211, 47, 127, 0.15);
}

.bulk-form h3 {
    font-size: 18px;
    margin-bottom: 25px;
}

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

.bulk-form input,
.bulk-form textarea,
.bulk-form select {
    width: 100%;
    border: 1px solid var(--line);
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--ink);
    font-size: 13px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bulk-form input:focus,
.bulk-form textarea:focus,
.bulk-form select:focus {
    outline: none;
    border-color: var(--wine);
    background: var(--white);
}

.bulk-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    font-family: var(--sans);
}

.bulk-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23191617' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--wine), var(--rose));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(211, 47, 127, 0.3);
}

.submit-btn:hover {
    box-shadow: 0 0 30px rgba(211, 47, 127, 0.6);
    transform: translateY(-2px);
}

.form-note {
    grid-column: 1 / -1;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 12px;
}

/* ---------- CONTACT SECTION ---------- */

.contact {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 100px;
    border-top: 1px solid var(--line);
}

.contact-intro p {
    max-width: 400px;
    margin-top: 30px;
    color: var(--muted);
}

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

.contact-form label {
    margin-top: 18px;
    margin-bottom: 7px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    padding: 13px 0;
    outline: none;
    color: var(--ink);
    resize: vertical;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--wine);
}

.contact-form button {
    margin-top: 30px;
    align-self: flex-start;
    border: none;
    background: linear-gradient(135deg, var(--wine), var(--rose));
    color: white;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(211, 47, 127, 0.3);
    border-radius: 8px;
}

.contact-form button:hover {
    box-shadow: 0 0 30px rgba(211, 47, 127, 0.6);
    transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */

.site-footer {
    background: rgba(15, 10, 26, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--line);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-top {
    width: min(1280px, 95%);
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-brand img {
    width: 65px;
    mix-blend-mode: screen;
}

.footer-brand p {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--rose);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 107, 157, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--white);
    background: rgba(211, 47, 127, 0.1);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: linear-gradient(135deg, rgba(211, 47, 127, 0.3), rgba(255, 107, 157, 0.2));
    border-color: var(--rose);
    box-shadow: 0 0 15px rgba(211, 47, 127, 0.4);
}

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

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 13px;
    backdrop-filter: blur(10px);
    border-radius: 6px 0 0 6px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 15px;
    background: linear-gradient(135deg, var(--wine), var(--rose));
    border: none;
    color: white;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0 6px 6px 0;
}

.newsletter-form button:hover {
    box-shadow: 0 0 15px rgba(211, 47, 127, 0.5);
}

.footer-bottom {
    width: min(1280px, 95%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* ---------- RESPONSIVE DESIGN ---------- */

@media (max-width: 1024px) {
    .shop-container {
        grid-template-columns: 1fr;
    }

    .shop-filters {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .bulk-container {
        grid-template-columns: 1fr;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    nav {
        gap: 25px;
    }
}

@media (max-width: 850px) {
    .site-header {
        min-height: 72px;
    }

    .brand img {
        width: 75px;
        height: 75px;
    }

    nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 70px;
    }

    .hero-art {
        min-height: 480px;
    }

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

    .about-stamp {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

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

@media (max-width: 520px) {
    .header-button {
        display: none;
    }

    .hero h1 {
        font-size: 64px;
        letter-spacing: -3px;
    }

    .hero h1 span {
        padding-left: 35px;
    }

    .hero-art {
        min-height: 390px;
    }

    .logo-card {
        width: 90%;
    }

    .section {
        padding: 80px 20px;
    }

    .section-heading h2,
    .about-content h2,
    .contact h2,
    .bulk-header h2 {
        font-size: 55px;
    }

    .quote-section {
        padding: 90px 20px;
    }

    .shop-filters {
        display: none;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}