/* Shop Specific Styles */

/* Hero Section */
.hero-shop {
    padding: 120px 20px 60px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(14, 63, 67, 0.15) 0%, transparent 70%);
}

.hero-shop h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-shop p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Product Card */
.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    position: relative;
}

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

.product-image-wrap {
    display: block;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-alt);
    position: relative;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h2 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.product-info .price {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent);
}

/* Coming Soon State */
.coming-soon .product-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
}

.coming-soon .product-image-wrap span {
    font-family: var(--font);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--bg);
}

.coming-soon .product-info {
    opacity: 0.6;
}

/* Filters */
.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filters button {
    background: transparent;
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    color: var(--muted);
}

.filters button:hover,
.filters button[aria-pressed="true"] {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

/* Product Page Layout */
.product-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .product-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-alt);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-details {
    position: sticky;
    top: 100px;
}

.product-details h1 {
    font-size: 2.5rem;
    margin: 10px 0 20px;
    line-height: 1.1;
}

.product-details .price {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 30px;
}

.product-details .description {
    color: var(--muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.tech-specs {
    background: var(--bg-alt);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid var(--border);
}

.tech-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-specs li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 10px;
}

.tech-specs li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--ink);
}

.info-item p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--ink);
    color: var(--bg);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}