@charset "UTF-8";

/* Shop Hero Section */
.shop-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
    background: 
        linear-gradient(135deg, rgba(156, 39, 176, 0.3), rgba(13, 16, 33, 0.95)),
        radial-gradient(ellipse at 50% 0%, rgba(156, 39, 176, 0.25), transparent 60%),
        linear-gradient(180deg, #0d1021 0%, #1a1f3a 50%, #2c3454 100%);
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    background: 
        linear-gradient(180deg, rgba(13, 16, 33, 0.95), rgba(26, 31, 58, 0.95)),
        radial-gradient(circle at 10% 20%, rgba(156, 39, 176, 0.1), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 189, 33, 0.1), transparent 40%);
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.products-grid .product-card {
    max-width: 350px;
    width: 100%;
}

/* Product Card */
.product-card {
    background: 
        linear-gradient(145deg, rgba(52, 62, 94, 0.95), rgba(36, 44, 68, 0.92));
    border: 3px solid rgba(156, 39, 176, 0.4);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(156, 39, 176, 0.2);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(156, 39, 176, 0.8);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(156, 39, 176, 0.5),
        0 0 25px rgba(255, 215, 0, 0.3);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff8c1a, #ffbd21);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.5);
    text-transform: uppercase;
}

.product-badge.legendary {
    background: linear-gradient(135deg, #ffd700, #ffbd21);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 215, 0, 0.9);
    }
}

/* Product Image */
.product-image {
    position: relative;
    height: 250px;
    background: 
        linear-gradient(180deg, rgba(80, 177, 254, 0.1) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgba(156, 39, 176, 0.3);
    overflow: hidden;
}

.product-gallery {
    width: 100%;
    height: 100%;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.4s ease;
}

.product-img.active {
    opacity: 1;
    z-index: 1;
}

.product-card:hover .product-img.active {
    transform: scale(1.05);
}

/* Gallery Navigation Buttons */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(156, 39, 176, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.product-card:hover .gallery-btn {
    opacity: 1;
}

.gallery-btn:hover {
    background: rgba(156, 39, 176, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.6);
}

.gallery-btn.prev {
    left: 10px;
}

.gallery-btn.next {
    right: 10px;
}

.gallery-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Gallery Dots */
.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(156, 39, 176, 0.6);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: rgba(156, 39, 176, 1);
    border-color: rgb(255, 255, 255);
    transform: scale(1.3);
}

.product-placeholder {
    font-size: 6rem;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6))
            drop-shadow(0 8px 16px rgba(0, 0, 0, 0.8));
}

/* Product Content */
.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #c7d0e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-specs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.spec {
    background: rgba(156, 39, 176, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border: 1px solid rgba(156, 39, 176, 0.3);
}

/* Product Footer */
.product-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(156, 39, 176, 0.3);
}

.product-price {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700, #ffbd21);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.5));
}

.product-footer .btn-visualize,
.product-footer .btn-buy {
    width: 100%;
    max-width: 280px;
}

/* Visualize Button */
.btn-visualize {
    background: linear-gradient(180deg, #50b1fe 0%, #2e8bc0 50%, #1976a3 100%);
    color: #fff;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 0 #0d5a8f,
        0 5px 8px rgba(0, 0, 0, 0.3);
}

.btn-visualize:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 #0d5a8f,
        0 8px 15px rgba(80, 177, 254, 0.5);
    filter: brightness(1.1);
}

.btn-visualize:active {
    transform: translateY(2px);
    box-shadow: 
        0 2px 0 #0d5a8f,
        0 3px 5px rgba(0, 0, 0, 0.3);
}

/* Buy Button */
.btn-buy {
    background: linear-gradient(180deg, #b366ff 0%, #9c27b0 50%, #7b1fa2 100%);
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 0 #4a148c,
        0 5px 8px rgba(0, 0, 0, 0.3);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 #4a148c,
        0 8px 15px rgba(156, 39, 176, 0.5);
    filter: brightness(1.1);
}

.btn-buy:active {
    transform: translateY(2px);
    box-shadow: 
        0 2px 0 #4a148c,
        0 3px 5px rgba(0, 0, 0, 0.3);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(80, 177, 254, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
    transition: all 0.3s ease;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: #ff4444;
    transform: rotate(90deg) scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(80, 177, 254, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(80, 177, 254, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(80, 177, 254, 0.8);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.lightbox-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(80, 177, 254, 0.6);
}

.lightbox-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.lightbox-dots .dot.active {
    background: rgba(80, 177, 254, 1);
    border-color: rgb(255, 255, 255);
    transform: scale(1.3);
}

/* Shop Info Section */
.shop-info {
    background: 
        linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 189, 33, 0.1));
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 
        0 8px 30px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.shop-info h3 {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    background: rgba(52, 62, 94, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.info-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.info-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.info-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    background: 
        linear-gradient(145deg, rgba(52, 62, 94, 0.8), rgba(36, 44, 68, 0.8));
    border: 2px solid rgba(80, 177, 254, 0.4);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
}

.contact-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .shop-hero {
        height: 50vh;
    }

    .products {
        padding: 4rem 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-image {
        height: 200px;
    }

    .product-placeholder {
        font-size: 4rem;
    }

    .product-footer .btn-visualize,
    .product-footer .btn-buy {
        max-width: 100%;
        padding: 0.8rem 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .shop-info {
        padding: 2rem 1rem;
    }

    .shop-info h3 {
        font-size: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: -40px;
        font-size: 2.5rem;
    }

    #lightbox-img {
        max-width: 95vw;
        max-height: 80vh;
    }
}
