/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.hero-title {
    font-family: "Crimson Text", "Garamond", "Georgia", "Didot", serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-family: "Source Sans Pro", "Helvetica Neue", "Helvetica", "Arial",
        sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Product Sections */
.section-title {
    font-family: "Crimson Text", "Garamond", "Georgia", serif;
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #2c1810;
    text-align: center;
    margin: 3rem 0 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.product-card {
    position: relative;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.2s;
}

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

.product-image {
    position: relative;
    padding-top: 100%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.product-image .hover-image {
    opacity: 0;
}

.product-card:hover .main-image {
    opacity: 0;
}

.product-card:hover .hover-image {
    opacity: 1;
}

.product-details {
    padding: 1rem;
}

.product-name {
    font-family: "Crimson Text", "Garamond", "Georgia", serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.product-price {
    font-family: "Source Sans Pro", "Helvetica Neue", "Arial", sans-serif;
    color: #8b4513;
    font-weight: 700;
}

.original-price {
    color: #9ca3af;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Featured Banner */
.featured-banner {
    margin: 4rem 0;
    text-align: center;
}

.featured-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}
