/* Products Hero Section */
.products-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1445205170230-053b83016050?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.products-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.products-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Product Categories Navigation */
.product-categories {
    padding: 2rem 0;
    background: var(--light-gray);
    border-bottom: 1px solid #eee;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 5px;
    font-weight: 500;
}

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

.sort-options {
    text-align: right;
}

#sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: var(--white);
}

/* Featured Products Grid */
.featured-products {
    padding: 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-overlay button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.quick-view {
    background: var(--white);
    color: var(--text-color);
}

.add-to-cart {
    background: var(--secondary-color);
    color: var(--white);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
}

.price {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category {
    background: var(--light-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.rating {
    color: #ffd700;
}

/* Product Features */
.product-features {
    padding: 4rem 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Product Showcase Carousel */
.product-showcase {
    padding: 4rem 0;
    background: var(--light-gray);
}

.product-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.showcase-carousel {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
    padding: 0 40px;
}

.showcase-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.showcase-item {
    flex: 0 0 300px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-content {
    position: relative;
    height: 400px;
}

.showcase-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-content img {
    transform: scale(1.05);
}

.showcase-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.showcase-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.showcase-info p {
    font-size: 1rem;
    opacity: 0.9;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.carousel-prev i,
.carousel-next i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .product-showcase h2 {
        font-size: 2rem;
    }

    .showcase-item {
        flex: 0 0 250px;
    }

    .showcase-content {
        height: 300px;
    }

    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .showcase-item {
        flex: 0 0 200px;
    }

    .showcase-content {
        height: 250px;
    }
}

/* Product CTA Section */
.product-cta {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Product Reviews */
.product-reviews {
    padding: 4rem 0;
    background: var(--light-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
}

.subscribe-btn {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-hero {
        height: 300px;
    }

    .products-hero h1 {
        font-size: 2rem;
    }

    .category-filters {
        flex-wrap: wrap;
    }

    .filter-btn {
        flex: 1 1 calc(50% - 1rem);
    }

    .product-overlay {
        opacity: 1;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        flex: 1 1 100%;
    }

    .product-image {
        height: 250px;
    }
}

/* Premium Fashion CTA Section */
.premium-fashion-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.premium-fashion-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

/* Sports & Activewear CTA Section */
.sports-activewear-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3436 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.sports-activewear-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
    pointer-events: none;
}

/* Common CTA Styles */
.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: #e77b3c;
    margin-bottom: 2rem;
    font-weight: 500;
}

.cta-description {
    margin-bottom: 2.5rem;
}

.cta-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.fashion-features,
.sports-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fashion-features li,
.sports-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.fashion-features i,
.sports-features i {
    color: #e77b3c;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: #e77b3c;
    color: white;
    box-shadow: 0 4px 15px rgba(231, 123, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 123, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #e77b3c;
    border: 2px solid #e77b3c;
}

.btn-secondary:hover {
    background: #e77b3c;
    color: white;
}

.cta-images {
    position: relative;
    z-index: 1;
}

.image-container {
    position: relative;
    height: 500px;
}

.image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.main-image {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    transform: perspective(1000px) rotateY(0deg);
}

.floating-image {
    width: 60%;
    height: 60%;
    top: 20%;
    right: -10%;
    transform: perspective(1000px) rotateY(15deg);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-card:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

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

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

/* Sports & Activewear Specific Styles */
.sports-activewear-cta .cta-text h2,
.sports-activewear-cta .cta-subtitle,
.sports-activewear-cta .cta-description p,
.sports-activewear-cta .fashion-features li,
.sports-activewear-cta .sports-features li {
    color: white;
}

.sports-activewear-cta .btn-secondary {
    color: white;
    border-color: white;
}

.sports-activewear-cta .btn-secondary:hover {
    background: white;
    color: #1a1a1a;
}

/* Responsive Styles for CTA Sections */
@media (max-width: 1200px) {
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-images {
        order: -1;
    }

    .image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .premium-fashion-cta,
    .sports-activewear-cta {
        padding: 4rem 0;
    }

    .cta-text h2 {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .image-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .cta-text h2 {
        font-size: 2rem;
    }

    .image-container {
        height: 250px;
    }
}

/* Featured Collections Section */
.featured-collections {
    padding: 6rem 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.featured-collections .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
}

.featured-collections .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.featured-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.featured-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.featured-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.featured-carousel-slide {
    flex: 0 0 350px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-carousel-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-slide-content {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.featured-slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-carousel-slide:hover .featured-slide-content img {
    transform: scale(1.1);
}

.featured-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.featured-carousel-slide:hover .featured-slide-info {
    transform: translateY(0);
}

.featured-slide-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.featured-slide-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.featured-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.featured-carousel-btn.prev {
    left: 0;
}

.featured-carousel-btn.next {
    right: 0;
}

.featured-carousel-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.featured-carousel-btn i {
    font-size: 1.2rem;
}

@media (max-width: 1200px) {
    .featured-carousel-slide {
        flex: 0 0 300px;
    }

    .featured-slide-content {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .featured-collections {
        padding: 4rem 0;
    }

    .featured-collections .section-title {
        font-size: 2rem;
    }

    .featured-carousel-container {
        padding: 0 40px;
    }

    .featured-carousel-slide {
        flex: 0 0 280px;
    }

    .featured-slide-content {
        height: 350px;
    }

    .featured-carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .featured-carousel-slide {
        flex: 0 0 250px;
    }

    .featured-slide-content {
        height: 300px;
    }

    .featured-slide-info h3 {
        font-size: 1.5rem;
    }

    .featured-slide-info p {
        font-size: 1rem;
    }
} 