/* Shop Page Styles */

/* Hero Section */
.shop-hero {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d4c4 100%);
    padding: 60px 20px;
}

.shop-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.shop-hero__content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.shop-hero__lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.shop-hero__actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.shop-hero__badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-hero__image-wrapper {
    position: relative;
}

.shop-hero__image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Collections Section */
.shop-collections {
    padding: 80px 20px;
    background-color: #fff;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.collection-card {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.collection-card__image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.collection-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-card__image {
    transform: scale(1.05);
}

.collection-card__overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-card:hover .collection-card__overlay {
    opacity: 1;
}

.collection-card__content {
    padding: 20px;
}

.collection-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2d2d2d;
}

.collection-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Bestsellers Section */
.shop-bestsellers {
    background-color: #f9f6f3;
    padding: 80px 20px;
}

.shop-bestsellers__inner {
    display: grid;
    grid-template-columns: 1fr;
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.bestsellers-image {
    position: relative;
}

.bestsellers-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.bestsellers-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bestseller-item {
    padding: 25px;
}

.bestseller-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}

.bestseller-header h3 {
    font-size: 1.1rem;
    color: #2d2d2d;
    margin: 0;
}

.bestseller-rating {
    font-size: 0.9rem;
    color: #d4a574;
    margin: 10px 0;
}

/* New Arrivals Section */
.shop-new-arrivals {
    padding: 80px 20px;
    background-color: #fff;
}

.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.new-arrival-card {
    display: flex;
    flex-direction: column;
}

.card__image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.new-arrival-card:hover .card__image {
    transform: scale(1.05);
}

.card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card__title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2d2d2d;
}

.card__description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.card__price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #d4a574;
    margin: 15px 0;
}

/* Gifts Section */
.shop-gifts {
    background-color: #f9f6f3;
    padding: 80px 20px;
}

.shop-gifts__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.gift-list li {
    margin-bottom: 16px;
}

.gift-list strong {
    color: #2d2d2d;
}

.seasonal-offers {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.seasonal-offer {
    border-left: 4px solid #d4a574;
    padding-left: 15px;
}

.seasonal-offer h4 {
    color: #2d2d2d;
    margin-bottom: 5px;
}

.seasonal-offer p {
    color: #666;
    font-size: 0.95rem;
}

/* Reviews Section */
.shop-reviews {
    padding: 80px 20px;
    background-color: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    padding: 30px;
}

.review-rating {
    font-size: 1.3rem;
    color: #d4a574;
    margin-bottom: 15px;
}

.review-card h3 {
    font-size: 1.1rem;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.review-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
    color: #8b8b8b;
    font-size: 0.9rem;
}

/* Why Us Section */
.shop-why-us {
    background-color: #f9f6f3;
    padding: 80px 20px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.why-us-list li {
    margin-bottom: 25px;
}

.why-us-list h3 {
    color: #2d2d2d;
    margin-bottom: 8px;
    font-size: 1rem;
}

.why-us-list p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #d4a574;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Newsletter Section */
.shop-newsletter {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-inner h2 {
    font-size: 1.8rem;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.newsletter-inner > p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.form-group {
    flex-grow: 1;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8d4c4;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #d4a574;
    background-color: #fffaf5;
}

.newsletter-notice {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-hero__inner {
        grid-template-columns: 1fr;
    }

    .shop-hero__content h1 {
        font-size: 1.8rem;
    }

    .shop-hero__actions {
        flex-direction: column;
    }

    .bestsellers-grid,
    .shop-gifts__inner,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.w-full {
    width: 100%;
}

.section-heading {
    text-align: center;
    margin-bottom: 20px;
}

.section-heading h2 {
    font-size: 2rem;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.section-heading p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.section-heading-center {
    text-align: center;
}
