/* Product Page Details */
.product-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 90vh;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.back-link {
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    transition: color 0.3s;
    font-weight: 500;
}

.back-link:hover {
    color: var(--accent-color);
}

.product-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

@media (max-width: 900px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
}

/* Gallery */
.main-image {
    height: 400px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-thumbnails {
    display: flex;
    gap: 15px;
}

.thumb {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.thumb:hover,
.thumb.active {
    border-color: var(--accent-color);
}

/* Product Info */
.product-tag {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.1;
    margin: 10px 0 20px;
    color: #fff;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.product-description {
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-description h3 {
    margin-bottom: 15px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.tech-used {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tech-used span {
    background: #1e293b;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-used span i {
    color: var(--text-muted);
}

.action-buttons {
    display: flex;
    gap: 20px;
}

.order-btn {
    flex: 1;
    padding: 20px;
    background: var(--accent-color);
    border: none;
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: var(--font-main);
    text-decoration: none;
}


/* Pricing Section */
.pricing-category {
    margin-bottom: 80px;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--accent-color);
}

.pricing-delay {
    text-align: center;
    font-weight: 700;
    color: #fff;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.badge-green {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.badge-blue {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.badge-yellow {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.badge-red {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 5px;
    border-left: 2px solid var(--accent-color);
}

.service-item-row span {
    color: #fff;
    font-weight: 600;
}

.service-price {
    color: var(--accent-color);
    font-weight: 700;
}