/* ============================================
   CORE SILICONE RINGS - SHOP PAGE
   Hero, Filters, Products Grid
============================================ */

/* SHOP HERO */
.shop-hero {
    position: relative;
    padding: 120px 48px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=800&fit=crop&q=80') center/cover;
    margin-bottom: 80px;
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.shop-hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.shop-hero p {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 24px;
}

.shop-hero .btn-secondary {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 8px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
}

.shop-hero .btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* SHOP CONTROLS */
.shop-controls {
    padding: 0 48px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.controls-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--light-gray);
}

/* FILTER GROUP */
.filter-group {
    display: flex;
    gap: 12px;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover {
    border-color: var(--dark-gray);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--maroon);
    color: var(--white);
    border-color: var(--maroon);
}

/* SORT GROUP */
.sort-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-select {
    padding: 12px 16px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all var(--transition-base);
}

.sort-select:hover {
    border-color: var(--dark-gray);
}

.sort-select:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(139,0,0,0.1);
}

/* PRODUCTS SECTION */
.products-section {
    padding: 0 48px 80px;
}

.products-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* CATEGORY SECTIONS */
.category-section {
    margin-bottom: 80px;
}

.category-section:last-of-type {
    margin-bottom: 40px;
}

.category-title {
    font-family: 'Anton', sans-serif;
    font-size: 40px;
    color: var(--black);
    letter-spacing: 2px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--maroon);
    display: inline-block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* PRODUCT CARD */
.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--maroon);
    color: var(--white);
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.product-price {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    color: var(--maroon);
    letter-spacing: 0.5px;
}

/* RESULTS COUNT */
.results-count {
    text-align: center;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 14px;
    color: var(--mid-gray);
    font-weight: 600;
    padding: 24px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .controls-container {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .filter-group {
        flex-wrap: wrap;
    }

    .sort-group {
        justify-content: flex-end;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .shop-hero {
        padding: 80px 24px;
        margin-bottom: 60px;
    }

    .shop-controls,
    .products-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .filter-group {
        width: 100%;
    }

    .filter-btn {
        flex: 1;
        padding: 10px 12px;
        font-size: 12px;
    }

    .sort-select {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
/* MAIN FOOTER CONTAINER */
.main-footer {
    background: var(--black);
    color: var(--white);
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
}

/* FOOTER STATEMENT - HERO SECTION */
.footer-statement {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-statement h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.footer-statement p {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* FOOTER CONTENT - NAVIGATION GRID */
.footer-content {
    padding: 80px 48px;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
}

/* FOOTER BRAND SECTION */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--maroon);
    transform: translateY(-4px);
}

/* FOOTER LINKS GRID */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all var(--transition-base);
    font-weight: 600;
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

/* FOOTER BOTTOM - LEGAL */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 32px 48px;
}

.footer-bottom-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.footer-legal-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-legal-links a {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color var(--transition-base);
    font-weight: 600;
}

.footer-legal-links a:hover {
    color: rgba(255,255,255,0.9);
}

.footer-legal-links span {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

.footer-country {
    text-align: right;
}

.footer-country span {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal-links,
    .footer-country {
        justify-content: center;
    }
    
    .footer-country {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer-statement {
        padding: 60px 24px;
    }
    
    .footer-content {
        padding: 60px 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        padding: 24px;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-legal-links span {
        display: none;
    }
}
