/* PRODUCT PAGE STYLES */

body.product-page {
  background-color: #000;
  color: #fff;
  font-family: 'Merriweather', serif;
}

/* Header override for dark theme */
.product-page .glass-nav {
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.product-page .nav-logo,
.product-page .nav-link {
    color: #fff;
}
.product-page .nav-link:hover {
    color: #FF007F;
}
.product-page .nav-link:hover::after {
    background: #FF007F;
}

/* Hero Section */
.product-hero {
    position: relative;
    overflow: hidden;
    padding: 10rem 2rem 6rem;
    text-align: center;
    background-color: transparent;
}
.product-hero .max-w-3xl {
    position: relative;
    z-index: 2;
}
.product-hero-title {
    font-family: "Bodoni Moda", serif;
    font-size: 4rem;
    color: #fff;
}
.product-hero-subtitle {
    color: #ccc;
}

/* Services Section */
.product-services {
    padding: 4rem 2rem;
}
.product-card {
    background-color: #111;
    border: 1px solid #333;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 1rem;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FD349C, #FF007F, #FF77FF, #FD349C);
    background-size: 200% auto;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.product-card > * {
    position:relative;
    z-index: 2;
}

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

.product-card:hover::before {
    opacity: 1;
    animation: hologram-shine 2s linear infinite;
}

.product-card:hover .product-card-image-wrapper {
    background-color: transparent;
}

.product-card:hover h2,
.product-card:hover p,
.product-card:hover a {
    color: #000;
}
.product-card-image-wrapper {
    aspect-ratio: 16 / 9;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.product-card-image {
    width: 60%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}
.product-card .p-6 {
    border-top: 1px solid #333;
}
.product-card h2 {
    color: #fff;
}
.product-card p {
    color: #aaa;
}
.product-card a {
    color: #FF007F;
    font-weight: bold;
}
.product-card a:hover {
    text-decoration: underline;
}

/* CTA Section */
.product-cta {
    background-color: #000;
    border-top: 1px solid #333;
    color: #fff;
}
.product-cta h2,
.product-cta p {
    color: #fff;
}
.product-cta a {
    background-color: #FF007F;
    color: #fff;
    transition: all 0.3s ease;
}
.product-cta a:hover {
    background-color: #fff;
    color: #FF007F;
}
