/* ==================== Marquee Section ==================== */
.marquee-section {
    background: var(--dark);
    padding: 1.5rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light);
    margin: 0 2rem;
}

.marquee-content .dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================== Section Styles ==================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.light {
    color: var(--light);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
}

/* ==================== Collections Section ==================== */
.collections-section {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--dark);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--dark);
    color: var(--light);
}

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

.product-card {
    position: relative;
    background: var(--gray-light);
    overflow: hidden;
    transition: var(--transition);
}

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

.product-image {
    position: relative;
    padding: 2rem;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(-5deg);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--light);
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-actions {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    background: var(--dark);
    color: var(--light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.action-btn:hover {
    background: var(--primary);
}

.product-info {
    padding: 1.5rem;
    background: var(--light);
}

.product-info h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-current {
    font-size: 1.1rem;
    font-weight: 600;
}

.price-old {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
}

.collection-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--dark);
    padding: 1rem 2.5rem;
    border: 2px solid var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--light);
}

/* ==================== About Section ==================== */
.about-section {
    padding: 8rem 3rem;
    background: var(--gray-light);
}

.about-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img.main {
    width: 80%;
}

.about-img.main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img.secondary {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 50%;
    border: 8px solid var(--gray-light);
}

.about-img.secondary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.about-content .lead {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.value-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.85rem;
    margin: 0;
}

/* ==================== Featured Section ==================== */
.featured-section {
    padding: 8rem 3rem;
    background: var(--dark);
    color: var(--light);
}

.featured-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.featured-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.featured-header p {
    color: var(--gray);
}

.featured-showcase {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.showcase-main {
    position: relative;
    overflow: hidden;
}

.showcase-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.showcase-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 3rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    width: 100%;
}

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

.showcase-info p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.showcase-grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
}

.showcase-item {
    position: relative;
    overflow: hidden;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.showcase-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.showcase-overlay span {
    color: var(--primary);
    font-weight: 500;
}
