@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Noto+Sans+TC:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-color: #0c0c0c;
    --secondary-color: #d4af37; /* Metallic Gold */
    --accent-color: #faf5ee;   /* Soft Creme */
    --text-color: #1a1a1a;
    --muted-color: #666666;
    --light-text: #ffffff;
    --border-color: #eeeeee;
    --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-chinese: 'Noto Sans TC', sans-serif;
    --font-body: 'Noto Sans TC', 'Inter', sans-serif;
    --transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-mid: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Global Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), 
                opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for grid children */
/* Staggered reveal for grid children - making them more distinct and warmer */
.products-grid .reveal:nth-child(2) { transition-delay: 0.2s; }
.products-grid .reveal:nth-child(3) { transition-delay: 0.4s; }
.products-grid .reveal:nth-child(4) { transition-delay: 0.6s; }
.news-grid .reveal:nth-child(2) { transition-delay: 0.25s; }
.news-grid .reveal:nth-child(3) { transition-delay: 0.5s; }
.categories-grid .reveal:nth-child(1) { transition-delay: 0.1s; }
.categories-grid .reveal:nth-child(2) { transition-delay: 0.3s; }
.categories-grid .reveal:nth-child(3) { transition-delay: 0.5s; }

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), 
                opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-in {
    animation: fadeIn 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

.page-load-cover {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    pointer-events: none;
    animation: coverFade 1.2s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes coverFade {
    0% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

/* Header & Nav - Standard Professional Style */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 2000;
    background: #ffffff;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0; /* Removed padding */
}

header.scrolled {
    height: 70px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 6px;
    color: #000000;
    text-transform: uppercase;
}

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

.nav-links a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000;
    font-weight: 500;
    position: relative;
    transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

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

.menu-toggle {
    display: none;
    width: 28px;
    height: 18px;
    position: relative;
    cursor: pointer;
    z-index: 3000;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #000;
    position: absolute;
    transition: 0.3s;
}

.menu-toggle span:first-child { top: 0; }
.menu-toggle span:nth-child(2) { top: 8px; }
.menu-toggle span:last-child { top: 16px; }


/* Mobile Overlay Hidden by Default */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 5000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-nav {
    list-style: none;
    text-align: center;
}

.mobile-nav li {
    margin: 2rem 0;
    overflow: hidden;
}

.mobile-nav a {
    font-size: 2rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #000;
    text-decoration: none;
    display: block;
    transform: translateY(100%);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-overlay.active .mobile-nav a {
    transform: translateY(0);
}

.overlay-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    cursor: pointer;
    font-weight: 200;
}


/* Hero Carousel */
.hero-slider {
    position: relative;
    height: 100vh;
    background: #111;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s cubic-bezier(0.22, 1, 0.36, 1), visibility 2s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.1); /* Initial scale for Ken Burns */
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    z-index: 5;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide.active .slide-content {
    animation: slideContentReveal 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes slideContentReveal {
    0% { opacity: 0; transform: translateY(-30%) scale(0.95); filter: blur(10px); }
    100% { opacity: 1; transform: translateY(-50%) scale(1); filter: blur(0); }
}

@keyframes kenBurns {
    0% { transform: scale(1.15) rotate(0.01deg); }
    100% { transform: scale(1) rotate(0.01deg); }
}

.slide-content {
    position: absolute;
    top: 55%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--light-text);
    z-index: 10;
    max-width: 900px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.15);
    border-left: 1px solid rgba(255,255,255,0.1);
}


.slide-content h2 {
    font-size: 5.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 4rem;
    color: var(--secondary-color);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.btn-hero {
    display: inline-block;
    padding: 1.5rem 5rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.85rem;
    transition: var(--transition);
    backdrop-filter: blur(15px);
}

.btn-hero:hover {
    background: var(--light-text);
    color: var(--primary-color);
    transform: scale(1.02) translateY(-2px);
    border-color: var(--light-text);
}

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

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Override for Chinese headings */
h1 span, h2 span, .nav-links a {
    font-family: var(--font-chinese);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    border: 1px solid var(--light-text);
    color: var(--light-text);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.btn:hover {
    background: var(--light-text);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}


.btn-dark {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.btn-dark:hover {
    background: #1a1a1a;
    color: #fff;
}

.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active {
    background: var(--light-text);
}

/* Sections General */
section {
    padding: 8rem 2rem;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 0.3em;
}


.section-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted-color);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 5rem;
    position: relative;
    padding-bottom: 20px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--secondary-color);
    transition: width 1.5s ease;
}

.reveal.active .section-subtitle::after {
    width: 80px;
}

/* Section 2: Brand Story */
.brand-story {
    background: var(--accent-color);
    text-align: center;
}
.brand-story-inner {
    max-width: 800px;
    margin: 0 auto;
}
.brand-story p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: #444;
}

/* Section 3: Categories (Funnel Step 1: Discover) */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card:hover img {
    transform: scale(1.08);
}


.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem;
    color: var(--light-text);
}

.category-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.category-overlay p {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Section 4: Featured Products (Funnel Step 2: Interest) */
.products {
    background: #ffffff;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    aspect-ratio: 1/1.2;
    background: #fcfaf8;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-img-wrapper {
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

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

.product-hover-action {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.product-card:hover .product-hover-action {
    bottom: 0;
}

.product-title {
    font-weight: 500;
    letter-spacing: 2px;
}

.product-price {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Section 5: Experience / Editorial Layout */
.experience.editorial-layout {
    background: #000;
    padding: 15rem 0;
    overflow: hidden;
    position: relative;
}

.exp-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    align-items: center;
    padding: 0 40px;
}

.exp-image-box {
    position: relative;
    z-index: 1;
}

.exp-img-mask {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    mask-image: linear-gradient(to right, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, black 90%, transparent);
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.exp-image-box:hover .exp-img-mask {
    transform: scale(1.02);
}

.exp-decorative-box {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 300px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 0;
    transition: transform 2s ease;
}

.reveal.active .exp-decorative-box {
    transform: translate(20px, 20px);
}

.exp-content-box {
    background: #000;
    padding: 6rem;
    margin-left: -5vw;
    position: relative;
    z-index: 3;
    border-left: 1px solid rgba(255,255,255,0.05);
}

.exp-tag {
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.exp-heading {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 3rem;
    line-height: 1.25;
    font-weight: 300;
}

.exp-divider {
    height: 1px;
    width: 80px;
    background: var(--secondary-color);
    margin-bottom: 4rem;
}

.exp-desc {
    color: #999;
    font-size: 1.15rem;
    line-height: 2.2;
    margin-bottom: 5rem;
}

.btn-editorial {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-editorial:hover {
    color: var(--secondary-color);
    transform: translateX(10px);
}

.arrow-right {
    font-size: 1.5rem;
    transition: transform 0.4s ease;
}

.btn-editorial:hover .arrow-right {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .exp-container { grid-template-columns: 1fr; }
    .exp-content-box { margin-left: 0; padding: 4rem 0; background: transparent; }
    .exp-image-box { margin-bottom: 4rem; }
}

/* Section 6: News & Trends */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: #fff;
}

.news-img {
    height: 250px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-date {
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.news-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

.news-title a {
    color: var(--primary-color);
}

/* Section 7: Contact / Newsletter (CTA) */
.cta-section {
    background: var(--accent-color);
    text-align: center;
    padding: 6rem 2rem;
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-form {
    display: flex;
    margin-top: 2rem;
    border-bottom: 1px solid var(--primary-color);
}

.cta-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.cta-form button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0 1rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: color 0.3s;
}
.cta-form button:hover {
    color: var(--secondary-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}
.footer-col ul li a {
    color: #999;
}
.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #666;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* End of Footer */


/* About Page Specific Styles */
.hero-banner {
    height: 80vh;
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2a2520 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex; align-items: center; justify-content: center; color: #fff; text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.hero-banner .reveal {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 1.5rem;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--font-heading);
    letter-spacing: 10px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    opacity: 0.8;
}

.about-section { 
    padding: 3rem 4rem 15rem; /* Aggressively reduced top padding */
    max-width: 1200px; 
    margin: 0 auto; 
    line-height: 2.2; 
    letter-spacing: 0.5px; 
    position: relative;
}

.about-section::before {
    content: 'EST. 2024';
    position: absolute;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--secondary-color);
    font-weight: bold;
}

.about-section h2 { 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    text-align: center; 
    margin-bottom: 8rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--secondary-color);
}

.about-section p {
    color: var(--muted-color);
    margin-bottom: 2rem;
}

.quote { 
    font-family: var(--font-heading); 
    font-style: italic; 
    font-size: 2.5rem; 
    color: var(--primary-color); 
    text-align: center; 
    margin: 10rem 0; 
    padding: 6rem 4rem; 
    position: relative;
    background: var(--accent-color);
    border-radius: 4px;
}

.quote::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: var(--secondary-color);
    opacity: 0.2;
    font-family: serif;
}

.about-img { 
    width: 100%; 
    height: 600px; 
    object-fit: cover; 
    margin: 5rem 0; 
}



/* -------------------------------------------------------------------------- */
/* Category Page Specific Styles */
/* -------------------------------------------------------------------------- */
.cat-header {
    padding: 3rem 4rem 6rem; /* Aggressively reduced top padding */
    text-align: center;
    background: #fdfaf5;
}
.cat-grid {
    max-width: 1600px;
    margin: 6rem auto 10rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 4rem;
    padding: 0 4rem;
}

/* -------------------------------------------------------------------------- */
/* Product Detail Specific Styles */
/* -------------------------------------------------------------------------- */
.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 4rem; /* Aggressively reduced top padding */
}
.product-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 8rem;
    align-items: center;
    margin-bottom: 12rem;
}
.hero-image-box {
    position: relative;
    background: var(--accent-color);
    padding: 5rem;
    border-radius: 4px;
}
.hero-image-box img {
    width: 100%;
    height: auto;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
    transition: var(--transition);
}
.hero-image-box:hover img { transform: scale(1.02); }

.hero-text-box .category-tag {
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}
.hero-text-box h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 3rem;
    font-weight: 300;
}
.sidebar-consult {
    border-top: 1px solid #eee;
    padding-top: 4rem;
    margin-top: 4rem;
}

.detail-sections {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6rem;
    border-top: 1px solid #eee;
    padding-top: 8rem;
}
.detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 400;
}
.detail-card p, .detail-card li {
    color: var(--muted-color);
    line-height: 2;
    font-size: 1.05rem;
}
.detail-card ul { list-style: none; padding: 0; }
.detail-card li { margin-bottom: 1.2rem; display: flex; align-items: baseline; }
.detail-card li::before { content: "▪"; color: var(--secondary-color); margin-right: 15px; font-weight: bold; }

/* -------------------------------------------------------------------------- */
/* Dynamic Page Styles (CMS Pages) */
/* -------------------------------------------------------------------------- */
.page-header {
    padding: 15rem 2rem 8rem;
    background: #fdfaf6;
    text-align: center;
}

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

.elegant-text {
    line-height: 2.2;
    font-size: 1.15rem;
    color: var(--muted-color);
}

.elegant-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 5rem 0 2rem;
    font-weight: 300;
}

.elegant-text h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 3rem 0 1.5rem;
    font-weight: 400;
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
}

.elegant-text p {
    margin-bottom: 2.5rem;
}

.elegant-text ul, .elegant-text ol {
    margin: 2rem 0 4rem 2rem;
}

.elegant-text li {
    margin-bottom: 1.5rem;
}

.elegant-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* -------------------------------------------------------------------------- */
/* Contact Page Refinement */
/* -------------------------------------------------------------------------- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    max-width: 1400px;
    margin: 15rem auto;
    padding: 0 4rem;
}

.info-item {
    margin-bottom: 4rem;
}

.info-item label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.info-item p {
    font-size: 1.4rem;
    color: var(--primary-color);
}
.floating-back {
    position: fixed;
    top: 15rem;
    left: 4rem;
    z-index: 100;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.75rem;
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}
.floating-back:hover { color: var(--primary-color); transform: translateY(-10px); }

/* Anchor links colors */
a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary-color); }

/* -------------------------------------------------------------------------- */
/* Informative Page Specific Styles (Privacy, Terms, FAQ) */
/* -------------------------------------------------------------------------- */
.page-header {
    height: 500px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.page-content {
    max-width: 1000px;
    margin: -100px auto 100px;
    background: #fff;
    padding: 8rem;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
    line-height: 2.2;
    position: relative;
    z-index: 10;
}
.page-content h2 {
    color: var(--primary-color);
    margin: 4rem 0 1.5rem;
    font-size: 2.2rem;
    font-weight: 300;
}
.page-content p { margin-bottom: 2rem; color: var(--muted-color); }
.page-content ul { margin: 2rem 0; padding-left: 2rem; color: var(--muted-color); }
.page-content li { margin-bottom: 1rem; }

/* -------------------------------------------------------------------------- */
/* News Detail Specific Styles */
/* -------------------------------------------------------------------------- */
.news-header { padding: 12rem 4rem 4rem; text-align: center; }
.news-header span { text-transform: uppercase; color: var(--secondary-color); letter-spacing: 4px; font-size: 0.8rem; font-weight: bold; }
.news-header h1 { font-size: 3.5rem; margin-top: 1.5rem; max-width: 1000px; margin-left: auto; margin-right: auto; line-height: 1.2; font-weight: 300; }
.news-main-img { width: 100%; max-width: 1400px; height: 700px; object-fit: cover; margin: 4rem auto; display: block; border-radius: 4px; }
.news-body { max-width: 900px; margin: 0 auto 12rem; line-height: 2.2; font-size: 1.15rem; color: #444; }
.back-link { text-align: center; margin-bottom: 8rem; }

/* -------------------------------------------------------------------------- */
/* Contact Page Specific Styles */
/* -------------------------------------------------------------------------- */
.contact-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    max-width: 1400px; margin: 12rem auto; padding: 0 4rem;
}
.contact-info { padding-right: 4rem; }
.contact-info h1 { font-size: 3.5rem; margin-bottom: 3rem; font-weight: 300; }

.info-item { margin-bottom: 3rem; }
.info-item label { text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem; color: var(--secondary-color); font-weight: 600; }
.info-item p { font-size: 1.3rem; margin-top: 0.8rem; color: var(--text-color); font-weight: 300; }

.contact-form { 
    background: var(--accent-color); 
    padding: 5rem; 
    border: 1px solid rgba(0,0,0,0.02);
}
.contact-form h2 { margin-bottom: 3rem; font-size: 2rem; font-weight: 300; }
.form-row { margin-bottom: 2rem; }
.form-row label { display: block; margin-bottom: 0.8rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }
.form-row input, .form-row textarea { 
    width: 100%; padding: 1.2rem 0; border: none; border-bottom: 1px solid #ddd; background: transparent; outline: none; transition: var(--transition); 
    font-family: var(--font-body);
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--secondary-color); }

/* -------------------------------------------------------------------------- */
/* Responsive Design / RWD - FINAL OVERRIDES */
/* -------------------------------------------------------------------------- */

/* Large Desktop (1600px+) */
@media (min-width: 1601px) {
    .nav-container { padding: 2.5rem 8rem; }
}

/* Tablet / Mobile Standard RWD */
@media (max-width: 1024px) {
    header { height: 80px; }
    .nav-container { padding: 0 30px; }
    .nav-links { gap: 1.5rem; }
    .nav-links a { font-size: 11px; }
}

@media (max-width: 768px) {
    header { height: 70px; }
    .nav-container { padding: 0 20px; }
    
    /* Global Menu & Logo */
    .nav-links { display: none !important; }
    .menu-toggle { display: block; }
    .logo-text { font-size: 22px; letter-spacing: 4px; }
    
    section { padding: 60px 20px; }
    .section-title { font-size: 24px; margin-bottom: 30px; }
    
    /* Hero/Slider */
    .slide-content { top: 50%; left: 0%; width: 100%; text-align: center; padding: 20px; background: transparent; }
    .slide-content h2 { font-size: 26px; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }
    .slide-content p { font-size: 13px; margin-bottom: 25px; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
    
    /* Grids */
    .products-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .cat-grid { grid-template-columns: 1fr; gap: 30px; padding: 0 20px; }
    .news-grid { grid-template-columns: 1fr; gap: 30px; }
    
    /* Experience Section Stack */
    .experience { flex-direction: column; }
    .exp-half { width: 100%; min-height: 350px; }
    .exp-content { padding: 60px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; }
    
    /* Dynamic/CMS Pages */
    .page-header { height: 350px; padding-top: 120px; }
    .page-header h1 { font-size: 24px !important; }
    .page-container { padding: 40px 20px; }
    .elegant-text { font-size: 15px; }
    
    /* Product Detail Page */
    .editorial-container { padding: 60px 20px; max-width: 100%; overflow: hidden; }
    .product-hero { grid-template-columns: 1fr; gap: 30px; margin-bottom: 40px; }
    .hero-image-box { padding: 15px; }
    .hero-image-box img { max-width: 100%; }
    .hero-text-box h1 { font-size: 26px !important; margin-bottom: 15px; }
    .hero-text-box p { font-size: 14px !important; line-height: 1.6 !important; }
    .detail-sections { grid-template-columns: 1fr; gap: 30px; padding-top: 30px; }
    
    /* Contact Page */
    .contact-container { grid-template-columns: 1fr; gap: 40px; margin: 80px auto; padding: 0 20px; }
    .contact-info { padding-right: 0; margin-bottom: 30px; }
    .contact-info h1 { font-size: 28px; margin-bottom: 20px; }
    .contact-form { padding: 30px 20px; }
    
    /* About Page */
    .about-section { padding: 60px 20px; }
    .about-section h2 { font-size: 26px; margin-bottom: 30px; line-height: 1.4; }
    .about-img { height: 350px; margin: 30px 0; }
    .quote { font-size: 20px; margin: 40px 0; padding: 0; line-height: 1.6; }
    
    .hero-title { font-size: 24px !important; letter-spacing: 4px !important; line-height: 1.4; }
    .hero-subtitle { font-size: 13px; letter-spacing: 2px; }

    /* Footer & Overlay */
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .mobile-overlay {
        display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: #fff; z-index: 5000; flex-direction: column; align-items: center; justify-content: center;
    }
    .mobile-overlay.active { display: flex; }
    .mobile-nav li { margin-bottom: 2rem; }
    .overlay-close { position: absolute; top: 20px; right: 20px; font-size: 30px; }
    
    /* Utilities */
    .floating-back { display: none; }
}



/* Small Mobile (480px) */
@media (max-width: 480px) {
    .slide-content h2 { font-size: 24px; }
    .products-grid { grid-template-columns: 1fr; }
}

/* Section golden dividers */
.brand-story::after,
#discover::after,
#news::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--secondary-color);
    margin: 6rem auto 0;
    opacity: 0.5;
}

/* Hero scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.4);
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Broken image graceful fallback */
img {
    font-size: 0.8rem;
    color: #bbb;
}
.product-img-wrapper img,
.category-card img,
.news-img img {
    background: var(--accent-color);
}

/* Form success/error messages */
.msg-success {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: #f0f9f0;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
    border-radius: 4px;
    text-align: center;
}
.msg-error {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: #fff3f0;
    border-left: 4px solid #e53935;
    color: #c62828;
    border-radius: 4px;
    text-align: center;
}

/* Breadcrumb styling */
.breadcrumb {
    max-width: 1400px;
    margin: 12rem auto 0;
    padding: 0 4rem;
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 1px;
}
.breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: var(--secondary-color);
}
.breadcrumb span.current {
    color: #555;
}

/* Related products section */
.related-section {
    padding: 8rem 2rem;
    background: var(--accent-color);
}
.related-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 1rem;
}
.related-section .divider {
    height: 1px;
    width: 50px;
    background: var(--secondary-color);
    margin: 0 auto 4rem;
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .page-load-cover { display: none; }
    .reveal, .reveal-left { opacity: 1; transform: none; }
}

/* Fine-tune Large Logo display */
.logo img {
    height: 100px !important;
    width: auto !important;
    max-width: 170px;
    object-fit: contain;
    transition: var(--transition);
}

.nav-container {
    align-items: center !important;
}

@media (max-width: 768px) {
    .logo img { height: 100px !important; }
}
