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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #FCF0E2;
}

header {
    background: #BE439D;
    padding: 1.5rem;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-width: 100%;
    height: auto;
}

.site-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

nav {
    background: #F2C4A0;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul li a {
    color: #BE439D;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #DB6849;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: #F2C4A0;
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.slider-container:hover img {
    transform: scale(1.05);
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
    background: rgba(190, 67, 157, 0.85);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.slider-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
}

.slider-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.featured-images {
    width: 100%;
    padding: 3rem 0;
    background: linear-gradient(135deg, #F2C4A0 0%, #BE439D 100%);
    margin-bottom: 2rem;
}

.featured-images h2 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 90%;
    margin: 0 auto;
    padding: 0 1rem;
}

.image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
}

.image-grid img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.product-card {
    border: none;
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #BE439D, #DB6849);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card h3 {
    color: #BE439D;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.product-card .price {
    font-size: 1.8rem;
    color: #DB6849;
    font-weight: bold;
    margin: 1rem 0;
}

.product-card .description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-card button {
    background: linear-gradient(to right, #BE439D, #DB6849);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(219, 104, 73, 0.3);
}

footer {
    background: linear-gradient(135deg, #BE439D 0%, #DB6849 100%);
    color: #fff;
    text-align: center;
    padding: 2rem;
    position: relative;
    margin-top: 4rem;
}

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

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #F2C4A0, #FFFFFF);
}

h2 {
    color: #BE439D;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.cart-container {
    width: 80%;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.cart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cart-header h1 {
    color: #BE439D;
    font-family: 'Poppins', sans-serif;
    margin: 1rem 0;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cart-table th {
    background: #BE439D;
    color: white;
    padding: 1rem;
    text-align: left;
}

.cart-table td {
    padding: 1rem;
    border-bottom: 1px solid #F2C4A0;
}

.cart-table tfoot td {
    font-weight: bold;
    background: #FCF0E2;
}

.cart-actions button {
    background: #DB6849;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 0.2rem;
    transition: background-color 0.3s ease;
}

.cart-actions button:hover {
    background: #BE439D;
}

.empty-cart {
    text-align: center;
    color: #BE439D;
    font-size: 1.2rem;
    padding: 2rem;
}

.empty-products {
    width: 100%;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.empty-products-content {
    max-width: 800px;
    margin: 0 auto;
}

.empty-products h2 {
    color: #BE439D;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.empty-products p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.empty-products-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-preview {
    background: #FCF0E2;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-preview:hover {
    transform: translateY(-5px);
    border-color: #BE439D;
    box-shadow: 0 4px 15px rgba(190, 67, 157, 0.2);
}

.category-preview h3 {
    color: #BE439D;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-preview p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}