:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    background-color: white !important;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-link {
    color: var(--primary-color);
    font-weight: 500;
    margin-left: 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.search-bar {
    position: relative;
    width: 300px;
}

.search-bar input {
    border-radius: 25px;
    padding-left: 2.5rem;
    border: 1px solid #ddd;
}

.search-bar i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.currency-selector {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0.4rem 1rem;
    margin-left: 1rem;
    cursor: pointer;
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    margin-bottom: 100px;
}

.banner-slide {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.banner-slide-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.banner-slide-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.banner-content {
    text-align: center;
    color: white;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Features Tile */
.features-tile {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

@media (max-width: 768px) {
    .features-tile {
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }
}

.feature-item {
    padding: 1.5rem;
    text-align: center;
    border-right: 1px solid #eee;
}

.feature-item:last-child {
    border-right: none;
}

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

.feature-item h6 {
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.feature-item p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: left;
}

.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.product-img {
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Carousel Navigation */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Tailored Exclusives */
.exclusive-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.exclusive-card:hover {
    transform: scale(1.03);
}

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

.exclusive-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
}

.exclusive-overlay h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.exclusive-overlay p {
    margin-bottom: 1rem;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

footer a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--secondary-color);
}

.section-spacing {
    padding: 3rem 0 4rem;
}

.main-image {
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.zoom-image {
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.main-image:hover .zoom-image {
    transform: scale(1.5);
}

.thumbnail {
    cursor: pointer;
    flex: 0 0 80px;
}

.thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    transition: border-color 0.3s;
}

.thumbnail:hover img,
.thumbnail.active img {
    border-color: #007bff;
    border-width: 2px;
}

.product-title {
    font-size: 2rem;
    font-weight: 600;
}

.quantity-selector input::-webkit-inner-spin-button,
.quantity-selector input::-webkit-outer-spin-button {
    opacity: 1;
}

.cart-items {
    margin-bottom: 30px;
}

.cart-item {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.item-price {
    color: #666;
    font-size: 16px;
}

.total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 20px;
}

.empty-cart {
    text-align: center;
    padding: 50px;
    color: #666;
}