/* Color Palette based on premium elegant aesthetics */
:root {
    --bg-color: #faf9f6; /* Pearl/Off-white */
    --bg-color-alt: #f1efed; /* Soft gray */
    --text-color: #2b2927; /* Near black charcoal */
    --text-color-light: #6e6b68;
    --primary-color: #ab8e7b; /* Elegant muted taupe/rose */
    --primary-hover: #8f7260;
    --secondary-color: #c9b195; /* Soft gold/champagne */
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-weight: 600;
}

/* Typography elements */
h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--text-color-light); }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--white);
    border-top: 1px solid rgba(76, 58, 43, 0.05);
    border-bottom: 1px solid rgba(76, 58, 43, 0.05);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(171, 142, 123, 0.25);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-color);
    border-color: #e0dcd9;
}

.btn-secondary:hover {
    border-color: var(--text-color);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--text-color);
    border-color: var(--text-color);
    color: var(--white);
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background-color: rgba(247, 244, 236, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(76, 58, 43, 0.05);
}

.site-header.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    background-color: var(--white);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    max-width: 150px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

/* ── Hero Section ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #faf9f6 0%, #f7f0e8 40%, #f5ece0 100%);
}

/* Animated CSS floating rings */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(171, 142, 123, 0.15);
    animation: ringPulse 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-ring-1 {
    width: 600px; height: 600px;
    top: -100px; right: -200px;
    animation-delay: 0s;
    border-color: rgba(171, 142, 123, 0.12);
    background: radial-gradient(circle at center, rgba(201, 177, 149, 0.05) 0%, transparent 70%);
}

.hero-ring-2 {
    width: 400px; height: 400px;
    top: 100px; right: -50px;
    animation-delay: -3s;
    border-color: rgba(171, 142, 123, 0.18);
}

.hero-ring-3 {
    width: 900px; height: 900px;
    top: -200px; right: -400px;
    animation-delay: -5s;
    border-color: rgba(171, 142, 123, 0.07);
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.04) rotate(3deg); opacity: 1; }
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-animation-side {
    flex: 0 1 450px;
    display: flex;
    justify-content: center;
    animation: floatAnim 6s ease-in-out infinite;
}

.laser-anim-player {
    width: 100%;
    max-width: 450px;
    mix-blend-mode: multiply; /* Blends pure white background into nothingness */
    filter: brightness(1.05); /* Pushes off-white to pure white for better blending */
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-buttons, .hero-trust {
        justify-content: center;
    }
    .hero-animation-side {
        flex: 0 1 auto;
        width: 100%;
        max-width: 350px;
    }
}


.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-color-light);
    max-width: 520px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-outline {
    background: transparent;
    border: 1.5px solid var(--text-color);
    color: var(--text-color);
    padding: 1rem 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.btn-hero-outline:hover {
    background: var(--text-color);
    color: var(--white);
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    font-size: 0.82rem;
    color: var(--text-color-light);
    flex-wrap: wrap;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}


/* Features Component */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature {
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Product Grid Section */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cat-tab {
    background: transparent;
    border: 1px solid rgba(171, 142, 123, 0.3);
    color: var(--text-color-light);
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.cat-tab:hover {
    border-color: var(--primary-color);
    color: var(--text-color);
}

.cat-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(171, 142, 123, 0.3);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.05);
}

.product-image {
    position: relative;
    padding-top: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    background-color: var(--bg-color-alt);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fallback-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fallback-image .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    color: var(--text-color-light);
    font-style: italic;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(247, 244, 236, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.product-price {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.section-btn {
    text-align: center;
    margin-top: 3rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-frame {
    position: relative;
    padding-top: 80%;
    border-radius: 12px;
    background-color: var(--bg-color-alt);
}

.image-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    z-index: -1;
}

/* Footer Section */
.site-footer {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 5rem 0 2rem;
}

.site-footer h3, .site-footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.footer-col p {
    color: #a89a91;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: #a89a91;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
    border: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #a89a91;
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive Media Queries */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-actions {
        display: none; /* simple mobile hide for now */
    }
    .main-nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
