/* ========================================
   NON — 925 Sterling Silver Jewelry
   Premium Light Luxury Style
   ======================================== */

/* === CSS Variables === */
:root {
    --color-bg: #faf9f7;
    --color-bg-alt: #f3f1ed;
    --color-text: #2c2c2c;
    --color-text-light: #6b6b6b;
    --color-text-muted: #9a9a9a;
    --color-accent: #8a7b6b;
    --color-accent-light: #b5a694;
    --color-silver: #c0c0c0;
    --color-silver-dark: #a0a0a0;
    --color-white: #ffffff;
    --color-black: #1a1a1a;

    --font-heading: 'Cormorant Garamond', 'Noto Serif JP', serif;
    --font-body: 'Noto Sans JP', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    overflow-x: hidden;
    cursor: none;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

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

/* === Custom Cursor === */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--color-accent-light);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.3s var(--ease-out-expo), width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--color-accent);
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
    body { cursor: auto; }
}

/* === Loader === */
.loader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--color-text);
    margin-bottom: 16px;
}

.loader-tagline {
    font-size: 12px;
    letter-spacing: 0.4em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.loader-line {
    width: 60px;
    height: 1px;
    background: var(--color-accent);
    margin: 0 auto;
    animation: loaderLine 1.5s ease-in-out infinite;
}

@keyframes loaderLine {
    0%, 100% { transform: scaleX(0.3); opacity: 0.3; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 28px 0;
    transition: all 0.5s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 0;
    border-bottom: 1px solid rgba(138, 123, 107, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--color-text);
    transition: opacity 0.3s;
}

.nav-logo:hover {
    opacity: 0.6;
}

.nav-links {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-link {
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--color-text);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--color-text);
    transition: all 0.3s var(--ease-out-expo);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: right 0.5s var(--ease-out-expo);
    }
    .nav-links.open { right: 0; }
    .nav-link { font-size: 18px; letter-spacing: 0.3em; }
    .nav-container { padding: 0 24px; }
    .container { padding: 0 24px; }
}

/* === Hero === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: -40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(250,249,247,0.7) 0%,
        rgba(250,249,247,0.2) 30%,
        rgba(250,249,247,0.2) 60%,
        rgba(250,249,247,0.8) 100%
    );
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.hero-subtitle {
    font-size: 12px;
    letter-spacing: 0.5em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 32px;
    /* opacity: 0; */
    /* animation: fadeUp 1s var(--ease-out-expo) 1.8s forwards; */
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 32px;
}

.title-line {
    display: block;
    font-size: clamp(42px, 7vw, 96px);
    letter-spacing: 0.08em;
    /* opacity: 0; */
    /* animation: fadeUp 1.2s var(--ease-out-expo) forwards; */
}

.title-line:first-child {
    animation-delay: 2s;
}

.title-line:last-child {
    animation-delay: 2.2s;
}

.title-accent {
    font-style: italic;
    color: var(--color-accent);
}

.hero-desc {
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 300;
    color: var(--color-text-light);
    letter-spacing: 0.08em;
    max-width: 500px;
    margin: 0 auto 48px;
    /* opacity: 0; */
    /* animation: fadeUp 1s var(--ease-out-expo) 2.4s forwards; */
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: 1px solid var(--color-accent);
    color: var(--color-text);
    background: transparent;
    cursor: pointer;
    transition: all 0.5s var(--ease-out-expo);
    /* opacity: 0; */
    /* animation: fadeUp 1s var(--ease-out-expo) 2.6s forwards; */
}

.cta-button:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.cta-outline {
    border-color: var(--color-accent-light);
}

.cta-outline:hover {
    background: var(--color-accent-light);
    color: var(--color-white);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    /* opacity: 0; */
    /* animation: fadeUp 1s var(--ease-out-expo) 3s forwards; */
}

.hero-scroll span {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* === Marquee === */
.marquee-section {
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid rgba(138, 123, 107, 0.15);
    border-bottom: 1px solid rgba(138, 123, 107, 0.15);
}

.marquee-track {
    display: flex;
    gap: 32px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.marquee-dot {
    font-size: 8px !important;
    color: var(--color-accent-light) !important;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* === Section Header === */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-number {
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.title-line-bottom {
    width: 60px;
    height: 1px;
    background: var(--color-accent);
    margin: 0 auto;
}

/* === Collections === */
.collections {
    padding: 140px 0;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.collection-card {
    cursor: pointer;
}

.card-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    aspect-ratio: 3/4;
    background: var(--color-bg-alt);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease-out-expo);
}

.collection-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
}

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

.card-btn {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.6);
    padding: 12px 28px;
    transition: all 0.3s;
}

.card-btn:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.card-info {
    text-align: center;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .collection-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* === Featured === */
.featured {
    padding: 100px 0 140px;
}

.featured-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.featured-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease-out-expo);
}

.featured-image:hover img {
    transform: scale(1.03);
}

.featured-label {
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.featured-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}

.featured-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.featured-details {
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(138, 123, 107, 0.15);
}

.detail-label {
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.detail-value {
    font-size: 13px;
    color: var(--color-text);
}

@media (max-width: 900px) {
    .featured-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* === Brand Story === */
.brand-story {
    padding: 140px 0;
    background: var(--color-bg-alt);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content .section-number {
    text-align: left;
}

.story-content .section-title {
    text-align: left;
}

.story-content .title-line-bottom {
    margin: 0;
}

.story-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 2.2;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.brand-signature {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.signature {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.15em;
}

.signature-line {
    width: 80px;
    height: 1px;
    background: var(--color-accent-light);
}

.story-visual {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--color-bg);
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 900px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .story-content .section-number,
    .story-content .section-title {
        text-align: center;
    }
    .story-content .title-line-bottom {
        margin: 0 auto;
    }
    .brand-signature {
        justify-content: center;
    }
}

/* === Craftsmanship === */
.craftsmanship {
    padding: 140px 0;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.craft-item {
    text-align: center;
}

.craft-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.craft-icon svg {
    width: 100%;
    height: 100%;
}

.craft-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.craft-item p {
    font-size: 13px;
    font-weight: 300;
    line-height: 2;
    color: var(--color-text-light);
}

@media (max-width: 1024px) {
    .craft-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (max-width: 600px) {
    .craft-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* === Testimonial === */
.testimonial {
    padding: 140px 0;
    background: var(--color-bg-alt);
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 120px;
    line-height: 0.5;
    color: var(--color-accent-light);
    opacity: 0.4;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial blockquote {
    margin-bottom: 32px;
}

.testimonial blockquote p {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    font-style: italic;
    line-height: 2;
    color: var(--color-text);
}

.testimonial-author {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    font-style: normal;
}

/* === Contact === */
.contact {
    padding: 140px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-number,
.contact-info .section-title {
    text-align: left;
}

.contact-info .title-line-bottom {
    margin: 0;
}

.contact-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(138, 123, 107, 0.12);
}

.contact-label {
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.contact-value {
    font-size: 14px;
    color: var(--color-text);
}

.contact-value a {
    transition: color 0.3s;
}

.contact-value a:hover {
    color: var(--color-accent);
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(138, 123, 107, 0.25);
    outline: none;
    transition: border-color 0.3s;
    resize: vertical;
}

.form-input:focus {
    border-bottom-color: var(--color-accent);
}


.form-group label span[style*="color:#c00"] {
    font-size: 14px;
    margin-left: 4px;
}
.form-input::placeholder {
    color: var(--color-text-muted);
    font-weight: 300;
}

.submit-button {
    align-self: flex-start;
    padding: 16px 56px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text);
    background: transparent;
    border: 1px solid var(--color-accent);
    cursor: pointer;
    transition: all 0.5s var(--ease-out-expo);
}

.submit-button:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 64px;
    }
}

/* === Footer === */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(138, 123, 107, 0.15);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.3em;
}

.footer-tagline {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-top: 8px;
}

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

.footer-links a {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    transition: color 0.3s;
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: color 0.3s;
}

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

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(138, 123, 107, 0.1);
    font-size: 11px;
    color: var(--color-text-muted);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* === Scroll Reveal === */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.collection-card[data-reveal]:nth-child(1) { transition-delay: 0.0s; }
.collection-card[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.collection-card[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.collection-card[data-reveal]:nth-child(4) { transition-delay: 0.3s; }

.craft-item[data-reveal]:nth-child(1) { transition-delay: 0.0s; }
.craft-item[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.craft-item[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.craft-item[data-reveal]:nth-child(4) { transition-delay: 0.3s; }

/* === Selection === */
::selection {
    background: var(--color-accent-light);
    color: var(--color-white);
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent-light);
    border-radius: 3px;
}


/* === SHOP SECTION === */
.shop-section {
    padding: 140px 0;
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--color-text-light);
    background: transparent;
    border: 1px solid rgba(138, 123, 107, 0.2);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--color-white);
    background: var(--color-accent);
    border-color: var(--color-accent);
}

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

.product-card {
    cursor: pointer;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 4px 12px;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-accent);
}

.product-badge.bestseller { background: #b5a694; }
.product-badge.new { background: #6b6b6b; }
.product-badge.limited { background: #8a7b6b; }

.product-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
    background: var(--color-bg-alt);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: rgba(250, 249, 247, 0.95);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out-expo);
}

.product-card:hover .product-quick-add {
    transform: translateY(0);
}

.quick-add-btn {
    width: 100%;
    padding: 10px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text);
    background: transparent;
    border: 1px solid var(--color-accent);
    cursor: pointer;
    transition: all 0.3s;
}

.quick-add-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.product-info {
    text-align: center;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.product-name-en {
    font-size: 11px;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.product-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

/* Cart Badge & Dropdown */
.nav-cart {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-light);
    transition: color 0.3s;
}

.nav-cart:hover {
    color: var(--color-text);
}

.nav-cart-badge {
    font-size: 11px;
    color: var(--color-accent);
    margin-left: 4px;
}

.cart-dropdown {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--color-bg);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: right 0.4s var(--ease-out-expo);
    overflow-y: auto;
    padding: 24px;
}

.cart-dropdown.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cart-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(138, 123, 107, 0.2);
    margin-bottom: 24px;
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-text-light);
    transition: color 0.3s;
}

.cart-close:hover {
    color: var(--color-text);
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(138, 123, 107, 0.1);
}

.cart-item img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    margin-bottom: 4px;
}

.cart-item-option {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.cart-item-price {
    font-weight: 500;
    font-size: 13px;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-control button {
    width: 24px;
    height: 24px;
    background: transparent;
    border: 1px solid rgba(138, 123, 107, 0.3);
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text);
    transition: all 0.3s;
}

.qty-control button:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.cart-remove {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

.cart-remove:hover {
    color: #c00;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 16px;
}

.cart-total strong {
    font-size: 18px;
}

.cart-checkout-btn {
    display: block;
    width: 100%;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-white);
    background: var(--color-accent);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.cart-checkout-btn:hover {
    background: var(--color-accent-light);
}

.cart-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--color-text-muted);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .nav-links .nav-link {
        font-size: 14px;
    }
}



/* === PRODUCT DETAIL MODAL === */
.product-detail-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-detail {
    background: var(--color-bg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.detail-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-text);
    z-index: 2;
}

.detail-back {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.detail-back:hover {
    color: var(--color-accent);
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.detail-content {
    padding: 20px 0;
}

.detail-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.detail-name-en {
    font-size: 13px;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.detail-price {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.detail-divider {
    width: 60px;
    height: 1px;
    background: var(--color-accent);
    margin-bottom: 20px;
}

.detail-desc {
    font-size: 14px;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.detail-options label {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.detail-select {
    width: 100%;
    padding: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    border: 1px solid rgba(138, 123, 107, 0.3);
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
}

.detail-actions .detail-add-cart {
    width: 100%;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-accent);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.detail-add-cart:hover {
    background: var(--color-accent-light);
}

@media (max-width: 768px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
}



/* === CHECKOUT SECTION === */
.checkout {
    padding: 140px 0;
    background: var(--color-bg-alt);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.checkout-summary h3,
.checkout-form h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(138, 123, 107, 0.2);
}

.checkout-items {
    margin-bottom: 24px;
}

.checkout-item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(138, 123, 107, 0.1);
}

.checkout-item img {
    width: 60px;
    height: 80px;
    object-fit: cover;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-name {
    font-size: 14px;
    margin-bottom: 4px;
}

.checkout-item-meta {
    font-size: 12px;
    color: var(--color-text-muted);
}

.checkout-item-price {
    text-align: right;
    font-weight: 500;
}

.checkout-total,
.checkout-delivery {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
}

.checkout-grand-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 18px;
    border-top: 2px solid rgba(138, 123, 107, 0.3);
    margin-top: 12px;
}

.payment-options {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: var(--color-text-light);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color-text-light);
    cursor: pointer;
}

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

@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-options {
        flex-direction: column;
        gap: 12px;
    }
}


/* === AUTH SYSTEM === */
.nav-user {
    margin-left: 16px;
}
.login-btn {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    background: transparent;
    border: 1px solid rgba(138,123,107,0.3);
    padding: 6px 16px;
    cursor: pointer;
    transition: all 0.3s;
}
.login-btn:hover {
    background: var(--color-accent);
    color: white;
}

.auth-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-modal {
    background: var(--color-bg);
    padding: 40px;
    max-width: 400px;
    width: 90%;
    position: relative;
}
.auth-modal h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}
.auth-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-text-muted);
}
.auth-submit {
    width: 100%;
    padding: 14px;
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.15em;
    color: white;
    background: var(--color-accent);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.auth-submit:hover {
    background: var(--color-accent-light);
}


/* === Print === */
@media print {
    .cursor-dot, .cursor-ring, .loader, .hero-scroll, .marquee-section { display: none; }
    body { color: #000; background: #fff; }
}
