/* Product Pages Shared Styles */

.product-hero {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 120px 2rem 80px;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.product-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}

.product-hero p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-hero-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(241, 27, 63, 0.3);
}

.product-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 2rem;
}

.product-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.product-info p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-features {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.product-features h3 {
    margin-bottom: 1.5rem;
    color: var(--black);
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666666;
    display: flex;
    align-items: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.features-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.features-list li:nth-child(2) {
    animation-delay: 0.15s;
}

.features-list li:nth-child(3) {
    animation-delay: 0.2s;
}

.features-list li:nth-child(4) {
    animation-delay: 0.25s;
}

.features-list li:nth-child(n+5) {
    animation-delay: 0.3s;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 900;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.product-sidebar {
    position: sticky;
    top: 120px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    margin: 1rem 0;
}

.price-details {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.gallery-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border);
}

.gallery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--light-gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.cta-section {
    background: var(--black);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-section p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-store {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-store:hover {
    background: #e01030;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(241, 27, 63, 0.4);
}

/* Service Card Container */
.service-card-container {
    display: flex;
    justify-content: center;
    padding: 2rem;
    background: var(--light-gray);
    margin-top: -2rem;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 3rem 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(241, 27, 63, 0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.card-price {
    font-size: 3.5rem;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.card-description {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (max-width: 968px) {
    .product-hero-content {
        grid-template-columns: 1fr;
    }

    .product-details {
        grid-template-columns: 1fr;
    }

    .product-sidebar {
        position: relative;
        top: 0;
    }

    .product-hero h1 {
        font-size: 3rem;
    }
}
