* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #e0e0e0;
    border-bottom: 1px solid #ccc;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    flex-grow: 1;
}

.search-icon {
    position: absolute;
    right: 2rem;
}

.search-icon img {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* Navigation styles */
nav {
    background-color: black;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 1.5rem;
}

nav ul li {
    color: white;
    font-size: 1.2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Content Container Styles */
.content-container {
    display: flex;
    padding: 2rem;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Recommendations Grid */
/* Remove the following CSS as the recommendations grid section is deleted:
.recommendations-grid, .grid-container, .grid-item, .item-image, .grid-link */

/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }
    
    .main-nav {
        flex-wrap: wrap;
    }

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

@media (min-width: 769px) and (max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer Styles */
footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

/* Carousel Section Styles */
.carousel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 3rem 0;
    position: relative;
}

.carousel-cards {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.carousel-card {
    width: 400px;
    height: 500px;
    border: 3px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #fff;
    position: relative;
    box-sizing: border-box;
    text-decoration: none;
    color: black;
}

.carousel-image {
    width: 100%;
    height: 85%;
    background: #fff;
    border-bottom: 1px solid #ccc;
}

.carousel-label {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: black;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border: 3px solid #000;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
    padding: 0;
}
.carousel-arrow span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}
.carousel-arrow.left {
    left: 2.5rem;
}
.carousel-arrow.right {
    right: 2.5rem;
}
.carousel-arrow:hover {
    background: #f0f0f0;
}

.carousel-dots {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e0e0e0;
    display: inline-block;
    transition: background 0.3s;
}
.dot.active {
    background: #888;
}

@media (max-width: 1100px) {
    .carousel-card {
        width: 220px;
        height: 260px;
    }
    .carousel-arrow {
        width: 48px;
        height: 48px;
        font-size: 2rem;
    }
}

@media (max-width: 800px) {
    .carousel-cards {
        gap: 1rem;
    }
    .carousel-card {
        width: 140px;
        height: 180px;
    }
    .carousel-label {
        font-size: 1.1rem;
    }
    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    .carousel-arrow.left {
        left: 0.5rem;
    }
    .carousel-arrow.right {
        right: 0.5rem;
    }
    .dot {
        width: 12px;
        height: 12px;
    }
}

.carousel-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 1.5px 6px rgba(0,0,0,0.15);
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1);
} 