body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
}
.playfair {
    font-family: 'Playfair Display', serif;
}
img.logo {
    height: 45px;
    margin-right: 10px;
}
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('res/img/hero-image-05.png');
    background-size: cover;
    background-position: center;
    height: 950px;
}
.hero-section-small {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('res/img/hero-image-05.png');
    background-size: cover;
    background-position: center;
    height: 200px;
}
.category-card:hover .overlay {
    opacity: 1;
}
.product-card {
    transition: transform 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.size-btn.active {
    background-color: #d1a080;
    color: white;
}
.color-dot.active {
    transform: scale(1.2);
    box-shadow: 0 0 0 2px white, 0 0 0 3px #333;
}
.thumbnail-img.active {
    border: 2px solid #d1a080;
}
#cart-sidebar {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
#cart-sidebar.open {
    transform: translateX(0);
}
.newsletter-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://www.kalkifashion.com/blogs/wp-content/uploads/2023/07/10_Trending_Kurti_Designs_That_Are_Masterpieces_For_All_Your_Occasions.jpg');
    background-size: cover;
    background-position: center;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #d1a080;
    border-radius: 10px;
}
/* Accordion */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.accordion-content.active {
    max-height: 1000px;
}
/* Quick View Modal */
#quickViewModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}