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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    height: 40px;
    transition: all 0.3s ease;
}

.logo img {
    height: 100%;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: calc(100vh - 80px);
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('used_images/lunora_hero_background.webp');
    background-size: cover;
    background-position: center 16%;
    background-repeat: no-repeat;
    position: relative;
    padding-left: 10%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}


.hero h1 {
    font-size: 4rem;
    font-weight: 100;
    letter-spacing: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-right: -15px;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.mobile-logo {
    display: none;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 50px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 300;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    padding-bottom: 3px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button:hover {
    opacity: 1;
    border-bottom-color: #fff;
    transform: translateY(-1px);
}

/* Product Section */
.products {
    padding: 120px 0;
    background: #000;
    color: #fff;
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 100;
    letter-spacing: 10px;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.product-card {
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    color: #fff !important;
}

.product-card:link,
.product-card:visited,
.product-card:hover,
.product-card:active,
.product-card:focus {
    color: #fff !important;
    text-decoration: none !important;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card * {
    color: inherit !important;
    text-decoration: none !important;
}

.product-card .product-name,
.product-card .product-description,
.product-card .product-price {
    color: #fff !important;
    text-decoration: none !important;
}

.product-image {
    width: 280px;
    height: 304px;
    background: linear-gradient(135deg, #333 0%, #666 100%);
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.product-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    z-index: 1;
}

.product-image.has-image::before {
    display: none;
}

.product-card:hover .product-image {
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.product-name {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-description {
    font-size: 0.9rem;
    opacity: 0.7;
    letter-spacing: 1px;
    margin-bottom: 20px;
    min-height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
}

.product-card .product-price {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    min-height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #f8f8f8;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 100;
    letter-spacing: 5px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-image {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

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

/* Gallery Section */
.gallery {
    padding: 0;
    background: #fff;
}

.gallery-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 60vh;
    min-height: 500px;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #f0f0f0 0%, #e8e8e8 100%);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 240px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 60px;
    z-index: 1;
}

.gallery-image.has-image::before {
    display: none;
}

/* Gallery overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
    text-decoration: none;
}

a.gallery-overlay {
    text-decoration: none;
    cursor: pointer;
}

a.gallery-overlay:hover {
    text-decoration: none;
}

.gallery-image:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.gallery-image a.gallery-overlay {
    color: #fff;
}

.gallery-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.gallery-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: #fff;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin-bottom: 18px;
}

.gallery-link {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.gallery-link:hover {
    opacity: 1;
    border-bottom-color: #fff;
}

/* Breadcrumb */
.breadcrumb {
    margin-top: 100px;
    padding: 30px 0;
    background: #f8f8f8;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.breadcrumb-nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #000;
}

.breadcrumb-nav span {
    color: #ccc;
}

/* Product Detail */
.product-detail {
    padding: 80px 0;
    background: #fff;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.product-images {
    position: sticky;
    top: 120px;
}

.main-image {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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


.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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


.thumbnail:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail.active {
    border: 2px solid #000;
}

/* Product Info */
.product-info {
    padding-top: 40px;
}

.product-title {
    font-size: 3rem;
    font-weight: 100;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.product-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 0.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.product-info .product-price {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.4s both;
    text-align: left;
    display: block;
}

/* Section Titles */
.section-title {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 50px;
    color: #333;
    animation: fadeInUp 0.8s ease 0.6s both;
    text-align: left;
}

/* Description Box */
.description-box {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.description-box p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-align: left;
}

.description-box p:last-child {
    margin-bottom: 0;
}

/* Notes Section */
.fragrance-notes {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.fragrance-notes h3 {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.note-category {
    text-align: center;
}

.note-category h4 {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.8;
}

.note-category p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
    letter-spacing: 1px;
}

/* Size Selection */
.size-selection {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 1s both;
}

.size-selection h3 {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.size-options {
    display: flex;
    gap: 15px;
}

.size-option {
    padding: 12px 20px;
    border: 1px solid #ccc;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.size-option:hover {
    border-color: #000;
}

.size-option.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Add to Cart */
.add-to-cart {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
}

.quantity-btn {
    background: transparent;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #f8f8f8;
}

.quantity-input {
    border: none;
    padding: 15px;
    width: 60px;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 1px;
}

.add-to-cart-btn {
    flex: 1;
    padding: 15px 40px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Product Details */
.product-details {
    animation: fadeInUp 0.8s ease 1.4s both;
}

.product-details h3 {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 400;
    opacity: 0.8;
}

.detail-value {
    opacity: 0.7;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    letter-spacing: 1px;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.5;
    letter-spacing: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll effects */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
    /* Header */
    .nav-links {
        display: none;
    }

    nav {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 6px;
        margin-right: -6px;
    }

    .logo img {
        height: 30px;
    }

    /* Hero Section */
    .hero {
        height: calc(100vh - 70px);
        margin-top: 70px;
        padding: 0 5%;
        background-position: 79% 30%;
        background-size: cover;
        justify-content: center;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.25);
        z-index: 0;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .hero-logo {
        max-width: 250px;
        margin-bottom: 20px;
    }

    .mobile-logo {
        display: none;
    }

    .hero h1 {
        display: none;
    }

    .hero p {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
        color: #fff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        opacity: 0.9;
    }

    .cta-button {
        font-size: 0.9rem;
        letter-spacing: 1px;
        color: #fff;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        border-bottom-color: rgba(255, 255, 255, 0.7);
    }

    .cta-button:hover {
        border-bottom-color: #fff;
    }

    /* Products Section */
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 5px;
        margin-bottom: 40px;
    }

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

    .product-image {
        width: 100%;
        max-width: 280px;
        height: 304px;
        margin: 0 auto 20px;
    }

    .product-name {
        font-size: 1.3rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .product-description {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .product-price {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    /* About Section */
    .about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2rem;
        letter-spacing: 3px;
        margin-bottom: 30px;
        text-align: center;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .about-image {
        height: 300px;
    }

    /* Gallery Section */
    .gallery-images {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
    }

    .gallery-image {
        height: 50vh;
        min-height: 300px;
    }

    .gallery-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .gallery-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .gallery-link {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    /* Footer */
    footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .footer-section h3 {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .footer-section p, .footer-section a {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .footer-bottom {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    /* Product Detail Page */
    .product-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .product-images {
        position: static;
    }

    .main-image {
        height: 400px;
    }

    .product-title {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .notes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .add-to-cart {
        flex-direction: column;
    }

    .breadcrumb-container {
        padding: 0 20px;
    }
}