/* Hero Banner */
.hero {
    width: 100%;
    height: 70vh;
    min-height: 600px;
    background: url('/static/images/hero-main.jpg') center/cover no-repeat;
    background-color: #f8f8f8;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 80px;
    color: var(--color-secondary);
    text-align: center;
    margin: 0;
    margin-bottom: var(--spacing-3xl);
}

.hero__brand {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__content p {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-light);
    color: var(--color-secondary);
    opacity: 1;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 1px 10px rgba(0, 0, 0, 0.6);
}

/* Sale Button */
.sale-section {
    text-align: center;
    margin: var(--spacing-4xl) 0;
}

.sale-btn {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(135deg, #d4145a 0%, #fbb034 100%);
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 20, 90, 0.4);
    font-family: 'Playfair Display', serif;
}

.sale-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbb034 0%, #d4145a 100%);
    transition: all 0.4s ease;
    z-index: 0;
}

.sale-btn:hover::before {
    left: 0;
}

.sale-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(212, 20, 90, 0.6);
}

.sale-btn span {
    position: relative;
    z-index: 1;
}

/* Catalog Button */
.catalog-section {
    text-align: center;
    margin: var(--spacing-md) 0 var(--spacing-lg);
}

.catalog-btn {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    color: white;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(26, 26, 26, 0.3);
    font-family: 'Playfair Display', serif;
    text-decoration: none;
}

.catalog-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a4a4a 0%, #1a1a1a 100%);
    transition: all 0.4s ease;
    z-index: 0;
}

.catalog-btn:hover::before {
    left: 0;
}

.catalog-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.5);
}

.catalog-btn span {
    position: relative;
    z-index: 1;
}

/* Content Banner */
.content-banner {
    width: 100%;
    height: 400px;
    background: var(--color-background-alt);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
    margin: var(--spacing-4xl) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.content-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: inherit;
    background-position: inherit;
    filter: blur(0.5px);
    z-index: 0;
}

.content-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.content-banner__text {
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: var(--font-weight-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: white;
    font-family: 'Playfair Display', serif;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 1px 10px rgba(0, 0, 0, 0.6);
}

.content-banner:hover .content-banner__text {
    transform: translateY(-5px);
    letter-spacing: 0.25em;
}

@media (max-width: 768px) {
    .content-banner__text {
        letter-spacing: 0.1em;
    }
}

/* Products Grid - 4 per row */
.products-section {
    margin: var(--spacing-4xl) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-4xl);
}

.product-card {
    display: block;
    text-decoration: none;
    color: var(--color-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
}

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

.product-card__image {
    position: relative;
    padding-bottom: 133.33%; /* 3:4 ratio */
    overflow: hidden;
    background: var(--color-background-alt);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease;
}

.product-card:hover .product-card__image {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card__name {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover .product-card__name {
    color: #666;
}

.product-card__price {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.product-card__price-old {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
    font-size: 13px;
}

/* Footer */
.footer-new {
    background: var(--color-primary);
    padding: var(--spacing-4xl) 0;
    margin-top: var(--spacing-4xl);
}

.footer-new__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-new__section h4 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
}

.footer-new__section ul {
    list-style: none;
}

.footer-new__section li {
    margin-bottom: var(--spacing-sm);
}

.footer-new__section a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-new__section a:hover {
    color: var(--color-secondary);
}

.footer-new__bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-new__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    .footer-new__grid {
        grid-template-columns: 1fr;
    }
    .hero {
        height: 50vh;
        min-height: 400px;
    }
