/* Shop Page Specific Styles */

.shop-hero {
    margin-top: 90px;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.shop-hero .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.shop-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.shop-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.feature i {
    font-size: 1.2rem;
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.device-categories {
    padding: 4rem 0;
}

.device-categories h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-card.featured {
    border: 2px solid var(--primary-color);
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 1;
}

.category-image {
    background: var(--secondary-color);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.device-visual {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.device-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.1) 100%);
    border-radius: 20px;
}

.device-visual i {
    position: relative;
    z-index: 1;
}

.device-visual.iphone {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
}

.device-visual.samsung {
    background: linear-gradient(135deg, #1428A0 0%, #3ddc84 100%);
}

.device-visual.laptop {
    background: linear-gradient(135deg, #6B73FF 0%, #000DFF 100%);
}

.device-visual.google {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
}

.device-visual.tablet {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
}

.device-visual.gaming {
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.price-range {
    text-align: center;
    padding: 1rem;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.from {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.2rem;
}

.price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.why-buy-section {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.why-buy-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.benefit-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.buying-process {
    padding: 4rem 0;
}

.buying-process h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.step-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.5;
}

.services-included {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.services-included h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.5;
}

.contact-section {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.contact-benefit i {
    color: var(--primary-color);
}

.contact-options {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-options h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--primary-color);
    color: var(--white);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.contact-method:hover i {
    color: var(--white);
}

.contact-method h4 {
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.contact-method:hover h4 {
    color: var(--white);
}

.contact-method p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-method:hover p {
    color: var(--white);
}

.visit-us {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    text-align: center;
}

.visit-us h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.visit-us p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-hero h1 {
        font-size: 2.5rem;
    }

    .shop-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        gap: 0.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .shop-hero h1 {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        justify-content: center;
    }

    .category-content {
        padding: 1.5rem;
    }

    .device-visual {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }
}