/* ========================================
   LTS - Sections Styles
   ======================================== */

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: transparent;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.breadcrumb {
    display: inline-flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    padding: 8px 20px;
    background: transparent;
    color: var(--text-primary);
    border-radius: 8px;
    margin-top: 15px;
}

.breadcrumb a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-rosa);
}

.breadcrumb span {
    color: var(--text-light);
    opacity: 0.8;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-negro);
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-new {
    padding: 60px 0;
    background: var(--color-crema);
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

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

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-negro);
}

.feature-item h3 i {
    margin-right: 8px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Categories Section */
.categories-new {
    padding: 80px 0;
    background: var(--off-white);
}

.categories-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card-new {
    position: relative;
    height: 350px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.category-card-new:hover {
    transform: translateY(-10px);
}

.category-overlay-new {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.category-overlay-new h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: var(--white);
}

.category-overlay-new p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.category-subcategories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.category-subcategories span {
    font-size: 12px;
    background: rgba(232, 161, 178, 0.3);
    padding: 4px 12px;
    border-radius: 20px;
}

.view-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-negro);
}

.view-link i {
    margin-left: 5px;
}

/* Products Section */
.products-new {
    padding: 80px 0;
    background: var(--white);
}

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card-new {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.product-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image-new {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--color-crema);
}

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

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

.product-badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-negro);
    color: var(--white);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
}

.product-info-new {
    padding: 20px;
}

.product-category-new {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title-new {
    font-size: 16px;
    margin: 8px 0;
    color: var(--text-primary);
}

.product-price-new {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-negro);
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

/* Shop Section */
.shop-section {
    padding: 60px 0;
    background: var(--off-white);
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.shop-filters {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: fit-content;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #000000 !important;
    font-weight: 700;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list a {
    color: #000000 !important;
    font-size: 14px;
    display: block;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    font-weight: 600;
}

.filter-list a:hover,
.filter-list a.active {
    background: var(--color-rosa) !important;
    color: #ffffff !important;
}

.shop-products {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.products-count {
    color: var(--text-secondary);
}

.sort-select {
    padding: 10px 20px;
    border: 1px solid var(--gray-border);
    border-radius: var(--border-radius);
    font-size: 14px;
    cursor: pointer;
}

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

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--color-crema);
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-negro);
    color: var(--white);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
}

.product-actions-new {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.9);
    transition: bottom var(--transition-normal);
}

.product-card:hover .product-actions-new {
    bottom: 0;
}

.action-btn-new {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--color-negro);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.action-btn-new:hover {
    background: var(--color-crema);
    color: var(--color-negro);
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
}

.product-title {
    font-size: 16px;
    margin: 8px 0;
    color: var(--text-primary);
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-rosa);
}

.product-sizes {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.size-tag {
    font-size: 11px;
    padding: 3px 8px;
    background: var(--color-crema);
    border-radius: 4px;
}

/* Product Detail */
.product-detail-section {
    padding: 60px 0;
    background: var(--off-white);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.main-image {
    height: 500px;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--color-rosa);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 2px solid #2B2B2B;
}

.product-category-detail {
    font-size: 12px;
    color: #2B2B2B;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.product-title-detail {
    font-size: 32px;
    margin: 10px 0;
    color: #2B2B2B;
    font-weight: 700;
    line-height: 1.2;
}

.product-price-detail {
    font-size: 32px;
    font-weight: 700;
    color: #2B2B2B;
    margin-bottom: 15px;
}

.sku-text {
    font-size: 13px;
    margin-bottom: 25px;
    color: #2B2B2B;
    font-weight: 600;
    padding: 8px 15px;
    background: #f0f0f0;
    border-radius: 4px;
    display: inline-block;
}

.product-description-detail {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #2B2B2B;
}

.product-description-detail p {
    line-height: 1.8;
    color: #2B2B2B;
    font-size: 15px;
    font-weight: 500;
}

.product-stock-detail h4,
.size-selector-detail h4 {
    font-size: 14px;
    margin-bottom: 15px;
    color: #2B2B2B;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stock-list {
    margin-bottom: 30px;
}

.stock-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 2px solid #2B2B2B;
}

.stock-item span:first-child {
    color: #2B2B2B;
    font-weight: 700;
    font-size: 14px;
}

.stock-count {
    font-weight: 700;
    color: #2B2B2B;
    font-size: 15px;
}

.size-options-detail {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.size-btn-detail {
    width: 50px;
    height: 50px;
    border: 2px solid #2B2B2B;
    background: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 700;
    transition: all var(--transition-fast);
    color: #2B2B2B;
    font-size: 13px;
}

.size-btn-detail:hover,
.size-btn-detail.active {
    border-color: #000000;
    background: #2B2B2B;
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(43, 43, 43, 0.4);
}

.add-to-cart-btn-detail {
    width: 100%;
    padding: 20px;
    background: #2B2B2B;
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #2B2B2B;
}

.add-to-cart-btn-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(43, 43, 43, 0.4);
    background: #000000;
    border-color: #000000;
}

.product-meta-detail {
    padding-top: 20px;
    border-top: 3px solid #2B2B2B;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-item strong {
    color: #2B2B2B;
    font-weight: 700;
}

.meta-item span {
    color: #2B2B2B;
    font-weight: 600;
}

/* Related Products */
.related-products-section {
    padding: 60px 0;
    background: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-filters {
        order: 2;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid-new {
        grid-template-columns: 1fr;
    }

    .products-grid-new {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
