/* Wedding Luxe Decor - Luxury Metal Candelabras Website Styles */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.6;
    color: #2c1810;
    background: #faf8f5;
    overflow-x: hidden;
}

/* Offset main content for fixed navbar */
main {
    padding-top: 100px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c1810;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #5d4e37;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-outline:hover {
    background: #d4af37;
    color: #fff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(250, 248, 245, 0.98);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 0.9rem;
    color: #8b7355;
    font-weight: 400;
    margin-top: -0.2rem;
}

/* Sitewide logo image replacement for nav and footer */
.logo .logo-text,
.footer-logo .logo-text {
    position: relative;
    width: 160px;
    height: 40px;
}

.logo .logo-text::before,
.footer-logo .logo-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/logo.png') no-repeat center left / contain;
}

.logo .logo-text .logo-main,
.logo .logo-text .logo-sub,
.footer-logo .logo-text .logo-main,
.footer-logo .logo-text .logo-sub {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0; border: 0; height: 1px; width: 1px; overflow: hidden;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #2c1810;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c1810;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 50%, #ede4d3 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(184, 134, 11, 0.05) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #2c1810;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #5d4e37;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    color: #b8860b;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-family: 'Inter', sans-serif;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.candelabra-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.element {
    position: absolute;
    background: rgba(212, 175, 55, 0.9);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: -15%;
    animation-delay: 0.7s;
}

.element-3 {
    bottom: 10%;
    left: -5%;
    animation-delay: 1.4s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Video Showcase Section */
.video-showcase-section {
    padding: 8rem 0;
    background: #2c1810;
    color: #faf8f5;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #faf8f5;
    margin-bottom: 1rem;
}

.showcase-header p {
    font-size: 1.2rem;
    color: #d4af37;
    max-width: 600px;
    margin: 0 auto;
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: #d4af37;
}

.video-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-card {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.detail-card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.detail-card h3 {
    color: #faf8f5;
    margin-bottom: 0.5rem;
}

.detail-card p {
    color: #d4af37;
    margin: 0;
}

/* Elegance Features Section */
.elegance-features-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f5f0e8 0%, #ede4d3 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #2c1810;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #5d4e37;
    max-width: 600px;
    margin: 0 auto;
}

.elegance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.elegance-card {
    background: #faf8f5;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.elegance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.elegance-card:hover::before {
    left: 100%;
}

.elegance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.elegance-card:hover .card-icon {
    transform: scale(1.1);
}

.elegance-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 1rem;
}

.elegance-card p {
    color: #5d4e37;
    line-height: 1.6;
    margin: 0;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.elegance-card:hover .card-accent {
    transform: scaleX(1);
}

/* Product Gallery Section */
.product-gallery-section {
    padding: 8rem 0;
    background: #faf8f5;
}

.gallery-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gallery-showcase {
    position: relative;
}

.main-display {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.gallery-main-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-main-image:hover {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(212, 175, 55, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-content {
    padding-left: 2rem;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: 'Inter', sans-serif;
}

.gallery-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c1810;
    margin-bottom: 1.5rem;
}

.gallery-content p {
    font-size: 1.1rem;
    color: #5d4e37;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.specifications h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 1.5rem;
}

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

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.spec-item i {
    color: #d4af37;
    font-size: 1.2rem;
}

.spec-item div {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.9rem;
    color: #8b7355;
    font-weight: 500;
}

.spec-value {
    font-size: 1rem;
    color: #2c1810;
    font-weight: 600;
}

.usage-scenarios h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 1.5rem;
}

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

.scenario-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #5d4e37;
    font-weight: 500;
    padding: 0.75rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.scenario-item i {
    color: #d4af37;
    font-size: 1.1rem;
}

/* Variations Section */
.variations-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ede4d3 0%, #e6d7c3 100%);
}

.variations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.variation-card {
    background: #faf8f5;
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.variation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.variation-card:hover::before {
    transform: scaleX(1);
}

.variation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.variation-card.featured {
    border-color: #d4af37;
    transform: scale(1.05);
}

.variation-card.featured::before {
    transform: scaleX(1);
}

.variation-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.variation-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.variation-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #b8860b;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.variation-badge.popular {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
}

.variation-image {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.variation-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.variation-card:hover .variation-image img {
    transform: scale(1.1);
}

.price-display {
    text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b7355;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c1810;
}

.cents {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b7355;
}

.variation-features {
    margin-bottom: 2rem;
}

.variation-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #5d4e37;
    font-family: 'Inter', sans-serif;
}

.variation-features .feature-item i {
    color: #48bb78;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2c1810 0%, #3d2817 100%);
    color: #faf8f5;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-glow {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #faf8f5;
}

.cta-text p {
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #d4af37;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.cta-benefits .benefit-item i {
    color: #d4af37;
    font-size: 1.2rem;
}

.cta-action {
    text-align: center;
}

.price-highlight {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #8b7355;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #d4af37;
    font-family: 'Inter', sans-serif;
}

.guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #8b7355;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.guarantee-text i {
    color: #48bb78;
}

/* Footer */
footer {
    background: #1a0f0a;
    color: #d4af37;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #faf8f5;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: #8b7355;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-section ul li a:hover {
    color: #faf8f5;
}

.social-links {
    display: none;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #8b7355;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

/* ------------------------------ */
/* Internal Pages & Shared Sections*/
/* ------------------------------ */

/* Generic page hero for inner pages */
.page-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, #f5f0e8 0%, #ede4d3 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: #8b7355;
    font-size: 1.1rem;
}

/* Legal pages (Cookies, Privacy, Terms) */
.legal-page {
    padding: 3rem 0 6rem;
}

.legal-header {
    margin-bottom: 2rem;
}

.legal-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
}

.legal-header .last-updated {
    color: #8b7355;
    font-size: 0.95rem;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legal-section h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.legal-section p,
.legal-section ul {
    color: #5d4e37;
}

.legal-section ul li {
    margin-left: 1.25rem;
    margin-bottom: 0.4rem;
}

/* Blog */
.blog-content-section {
    padding: 3rem 0 6rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #faf8f5;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.15);
}

.blog-card .blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card .blog-content {
    padding: 1.25rem 1.25rem 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 0.75rem;
    color: #8b7355;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-card h2 {
    font-size: 1.25rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

/* ------------------------------ */
/* Blog Post Detail Pages         */
/* ------------------------------ */
.post-hero {
    padding: 6rem 0 2rem;
    background: linear-gradient(135deg, #f5f0e8 0%, #ede4d3 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.post-hero h1 {
    font-size: 2.4rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    color: #8b7355;
    font-family: 'Inter', sans-serif;
}

.post-content {
    padding: 2rem 0 6rem;
}

.post-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2rem;
}

.post-article {
    background: #faf8f5;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
}

.post-article h2 { margin-top: 1.25rem; }
.post-article h3 { margin-top: 1rem; }
.post-article img { width: 100%; border-radius: 12px; margin: 1rem 0; box-shadow: 0 8px 25px rgba(212,175,55,0.15); }
.post-article ul { margin-left: 1.25rem; }
.post-article blockquote { margin: 1rem 0; padding: 1rem 1.25rem; border-left: 4px solid #d4af37; background: rgba(212,175,55,0.08); }
.post-article pre { background: #1a0f0a; color: #faf8f5; padding: 1rem; border-radius: 10px; overflow: auto; }
.post-article code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

.post-sidebar { position: sticky; top: 100px; height: fit-content; }
.post-card { background: #faf8f5; border: 1px solid rgba(212,175,55,0.15); border-radius: 12px; padding: 1rem; margin-bottom: 1rem; }
.post-card h4 { margin-bottom: 0.5rem; }

@media (max-width: 1024px) {
    .post-body { grid-template-columns: 1fr; }
    .post-sidebar { position: static; }
}

/* Contact */
.contact-content-section {
    padding: 3rem 0 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
}

.contact-form {
    background: #faf8f5;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: #fffdf9;
    font-family: 'Inter', sans-serif;
}

.checkbox-group .checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

/* Shop */
.product-hero-section {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, #f5f0e8 0%, #ede4d3 100%);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    color: #b8860b;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-info h1 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.product-subtitle {
    color: #5d4e37;
}

.thumbnail-gallery {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.thumbnail-gallery .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.detailed-specs-section {
    padding: 4rem 0;
}

.purchase-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c1810 0%, #3d2817 100%);
    color: #faf8f5;
}

.purchase-cta-section .cta-background,
.purchase-cta-section .cta-pattern {
    pointer-events: none;
}

/* Shop - decorative hero pattern */
.product-hero-section .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: radial-gradient(circle at 20% 40%, rgba(212,175,55,0.12), transparent 40%),
                radial-gradient(circle at 80% 30%, rgba(184,134,11,0.08), transparent 45%);
    pointer-events: none;
}

/* Shop - highlights */
.product-highlights { margin: 1.25rem 0 1.75rem; }
.highlight-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.highlight-item { display: flex; gap: 0.75rem; align-items: center; background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; padding: 0.75rem; }
.highlight-item i { color: #d4af37; font-size: 1.1rem; }
.highlight-item h3 { margin: 0; font-size: 1rem; }
.highlight-item p { margin: 0; font-size: 0.9rem; color: #8b7355; }

.product-pricing { margin-top: 1rem; }

/* Shop - specs cards */
.spec-item { display: flex; gap: 0.9rem; background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; padding: 1rem; }
.spec-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #d4af37, #b8860b); color: #fff; box-shadow: 0 6px 18px rgba(212,175,55,0.3); }
.spec-details h4 { margin: 0 0 0.25rem; font-size: 1rem; }
.spec-details p { margin: 0; }
.spec-note { color: #8b7355; font-size: 0.85rem; }

/* Shop - training/benefits and video */
.training-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 1rem 0; }
.benefit-card { background: #faf8f5; border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; padding: 1rem; text-align: center; box-shadow: 0 10px 30px rgba(212,175,55,0.08); }
.benefit-card i { color: #d4af37; font-size: 1.4rem; margin-bottom: 0.25rem; }

.video-section .video-container { margin-top: 1rem; }
.video-link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; border-radius: 999px; border: 1px solid rgba(212,175,55,0.3); color: #d4af37; text-decoration: none; }
.video-link i { color: #d4af37; }

/* Shop - purchase CTA pricing */
.final-pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.75rem; margin-bottom: 1.25rem; }
.pricing-option { background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.25); border-radius: 12px; padding: 0.9rem 1rem; text-align: center; }
.pricing-option.featured { background: rgba(212,175,55,0.16); border-color: #d4af37; }
.option-label { display: block; color: #8b7355; font-size: 0.9rem; }
.option-price { display: block; color: #faf8f5; font-size: 1.6rem; font-weight: 800; }
.option-badge { display: inline-block; margin-top: 0.25rem; background: #48bb78; color: #fff; border-radius: 999px; padding: 0.15rem 0.5rem; font-size: 0.75rem; font-weight: 700; }

/* Contact - info header and support features */
.info-header h2 { margin-bottom: 0.35rem; }
.info-header p { color: #8b7355; }
.support-features { margin-top: 1rem; }
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.75rem; }
.feature-item { display: flex; align-items: center; gap: 0.5rem; color: #5d4e37; }
.feature-item i { color: #48bb78; }

/* Contact - custom checkbox */
.checkbox-label { position: relative; padding-left: 28px; cursor: pointer; }
.checkbox-label input { position: absolute; opacity: 0; }
.checkbox-label .checkmark { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; border-radius: 4px; border: 2px solid rgba(212,175,55,0.5); background: #fffdf9; }
.checkbox-label input:checked + .checkmark { background: #d4af37; border-color: #d4af37; }
.checkbox-label .checkmark:after { content: ''; position: absolute; display: none; left: 4px; top: 0px; width: 6px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.checkbox-label input:checked + .checkmark:after { display: block; }

/* About helpers */
.about-text h2 { margin-top: 0.75rem; }
.about-text h3 { margin-top: 1rem; font-size: 1.1rem; }

/* Shop - Product main view and badges */
.main-product-view {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.main-product-view .main-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.badge.professional { background: #b8860b; }
.badge.organic { background: #48bb78; }

.price-options {
    display: flex;
    gap: 1rem;
    margin: 1rem 0 1.5rem;
}

.price-option {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    min-width: 160px;
    text-align: center;
}

.price-option .price-label { color: #8b7355; font-size: 0.9rem; }
.price-option .price-value { color: #2c1810; font-weight: 800; font-size: 1.4rem; }
.price-option.featured { border-color: #d4af37; background: rgba(212, 175, 55, 0.12); }

/* Shop - Specs tabs */
.specs-layout {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 2rem;
}

.specs-navigation h2 { margin-bottom: 0.75rem; }

.spec-tabs { display: flex; gap: 0.5rem; }
.spec-tab {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: #fffdf9;
    color: #8b7355;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.spec-tab.active { color: #2c1810; border-color: #d4af37; }

.spec-panel { display: none; }
.spec-panel.active { display: block; }

/* About page */
.about-content-section {
    padding: 3rem 0 6rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.about-visual .image-stack {
    position: relative;
}

.image-stack .stack-image.primary {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(212, 175, 55, 0.25);
}

.image-stack .stack-image.secondary {
    position: absolute;
    width: 60%;
    right: -10%;
    bottom: -10%;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(212, 175, 55, 0.2);
}

.stats-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(50%);
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.stat-item {
    background: rgba(250, 248, 245, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    text-align: center;
    min-width: 120px;
}

.stat-number { font-weight: 800; color: #2c1810; font-size: 1.3rem; }
.stat-label { color: #8b7355; font-size: 0.85rem; }

.values-section { padding: 6rem 0; background: linear-gradient(135deg, #f5f0e8 0%, #ede4d3 100%); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.value-card { background: #faf8f5; border: 1px solid rgba(212, 175, 55, 0.15); border-radius: 16px; padding: 1.5rem; box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08); }
.value-icon { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, #d4af37, #b8860b); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3); }

/* Hide About page right-side image (Our Story visual) */
.about-content-section .about-visual { display: none; }
.about-content-section .about-grid { grid-template-columns: 1fr; }

/* Contact - FAQ */
.faq-section { padding: 6rem 0; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.faq-item { border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 12px; background: #faf8f5; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; cursor: pointer; }
.faq-answer { display: none; padding: 0 1.25rem 1rem; color: #5d4e37; }
.faq-item.active .faq-answer { display: block; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .video-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-content {
        padding-left: 0;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .elegance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .scenario-list {
        grid-template-columns: 1fr;
    }
    
    .variations-grid {
        grid-template-columns: 1fr;
    }
    
    .variation-card.featured {
        transform: none;
    }
    
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Internal pages responsive */
    .contact-grid,
    .product-hero-grid {
        grid-template-columns: 1fr;
    }

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

    /* Shop responsive: hide large image, enable horizontal scroll thumbnails */
    .product-gallery .main-product-view {
        display: none;
    }

    .thumbnail-gallery {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .thumbnail-gallery .thumbnail {
        flex: 0 0 calc((100% - 1rem) / 3);
        width: calc((100% - 1rem) / 3);
        scroll-snap-align: start;
    }

    /* Specs: stack below tabs on mobile */
    .specs-layout {
        grid-template-columns: 1fr;
    }
    .specs-content { margin-top: 1rem; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .elegance-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .gallery-content h2 {
        font-size: 2rem;
    }
    
    .price-display .amount {
        font-size: 2.5rem;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* About, Shop, and Contact FAQ sections styles */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

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

.contact-faq-grid .faq-question {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-faq-grid .faq-answer {
    font-size: 1rem;
    margin-bottom: 1rem;
}