
        :root {
    --primary-color: #0081e4ff;
    --secondary-color: #f5b31b;
    --accent-color: #48bb78;
    --dark-color: #1a202c;
    --light-color: #f7fafc;
    --text-color: #2d3748;
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --danger-color: #f56565;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --gradient-1: linear-gradient(135deg, #0081e4ff 0%, #f5b31b 100%);
    --gradient-2: linear-gradient(45deg, #0081e4ff, #f5b31b);
    --gradient-3: linear-gradient(45deg, #0081e4ff, #f5b31b);
    --gradient-4: linear-gradient(45deg, #0081e4ff, #f5b31b);
    --gradient-5: linear-gradient(135deg, #0081e4ff 0%, #f5b31b 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--gradient-1);
    min-height: 100vh;
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Main wrapper to ensure proper layout */
.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Simplified Header Styles */
header {
    background: linear-gradient(135deg, #0081e4ff, #f5b31b);
    backdrop-filter: blur(15px);
    color: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(rgb(255, 255, 255), #f5b31b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-3px);
}

.logo i {
    margin-right: 15px;
    font-size: 2rem;
    background: linear-gradient(rgb(255, 255, 255), #f5b31b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.logo:hover i {
    transform: rotate(10deg);
}

.search-bar {
    flex-grow: 1;
    max-width: 600px;
    margin: 0 30px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 18px 55px 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.search-bar input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 15px rgba(240, 147, 251, 0.2);
}

.search-bar button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #f5b31b, #0081e4ff);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.search-bar button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 5px 15px rgba(240, 147, 251, 0.3);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.header-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header-icon i {
    font-size: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cart-count, .wishlist-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(45deg, #f5b31b, #0081e4ff);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.header-icon:hover .cart-count,
.header-icon:hover .wishlist-count {
    transform: scale(1.1);
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 90px;
    z-index: 999;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 18px 25px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f5b31b, #0081e4ff);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.05);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-radius: 8px;
    overflow: hidden;
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.05);
    transition: all 0.2s ease;
}

.dropdown a:hover {
    padding-left: 25px;
    background: rgba(102, 126, 234, 0.05);
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    display: none;
}

.breadcrumb.active {
    display: block;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-item {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-separator {
    color: #a0aec0;
}

/* Main Content Area */
.main-content {
    display: block;
    min-height: calc(100vh - 90px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.main-content.hidden {
    display: none;
}

/* Page Content */
.page-content {
    display: none;
    min-height: calc(100vh - 90px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.page-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 50px 20px;
    background: linear-gradient(135deg, #0081e4ff, #f5b31b);
    color: white;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.page-body {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-body h2 {
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-size: 1.8rem;
    position: relative;
    padding-left: 15px;
}

.page-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    border-radius: 2px;
}

.page-body h3 {
    color: var(--dark-color);
    margin: 25px 0 12px;
    font-size: 1.4rem;
}

.page-body p {
    line-height: 1.7;
    margin-bottom: 18px;
    color: var(--text-color);
    font-size: 1.05rem;
}

.page-body ul {
    margin-left: 25px;
    margin-bottom: 18px;
}

.page-body li {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 1.05rem;
}

/* Blog Styles */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    color: #718096;
    font-size: 0.9rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-meta-item i {
    color: var(--primary-color);
}

.blog-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

.blog-content h3 {
    color: var(--dark-color);
    margin: 25px 0 12px;
    font-size: 1.4rem;
}

.blog-content p {
    margin-bottom: 18px;
}

.blog-content blockquote {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #4a5568;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.blog-tag {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.blog-tag:hover {
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    color: white;
    transform: translateY(-2px);
}

/* Latest Blogs Section */
.latest-blogs {
    padding: 50px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.latest-blogs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.latest-blogs-header {
    text-align: center;
    margin-bottom: 40px;
}

.latest-blogs-header h2 {
    font-size: 2.2rem;
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.latest-blogs-header p {
    color: var(--text-color);
    font-size: 1.05rem;
}

.latest-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #718096;
    margin-bottom: 12px;
    line-height: 1.5;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #a0aec0;
    font-size: 0.85rem;
}

.blog-card-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-card-read-more:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 15px;
    padding: 35px;
    margin-top: 35px;
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.submit-btn {
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    display: block;
    margin: 25px auto 0;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Hero Section */


.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(45deg, #f5b31b, #0081e4ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Product Categories */
.categories {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    background: linear-gradient(#0081e4ff, #f5b31b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #f5b31b, #0081e4ff);
    border-radius: 2px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.category-image {
    height: 180px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-info {
    padding: 20px;
    text-align: center;
}

.category-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.category-info p {
    color: var(--text-color);
    margin-bottom: 15px;
}

/* Category Page Styles */
.category-page {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-header p {
    font-size: 1.1rem;
    color: var(--text-color);
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(45deg, #f5b31b, #0081e4ff);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 1;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-actions {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.action-btn.wishlist-btn:hover {
    background: linear-gradient(45deg, #f5b31b, #0081e4ff);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--dark-color);
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.original-price {
    font-size: 1rem;
    color: #a0aec0;
    text-decoration: line-through;
    margin-left: 10px;
}

/* Improved Slide to Add */
.slide-to-add {
    position: relative;
    height: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-radius: 25px;
    overflow: hidden;
    margin-top: 15px;
    border: 2px solid rgba(102, 126, 234, 0.15);
    cursor: pointer;
    touch-action: none;
    transition: all 0.3s ease;
}

.slide-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.slide-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: var(--text-color);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.slide-handle {
    width: 42px;
    height: 42px;
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    border-radius: 50%;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    cursor: grab;
    z-index: 2;
}

.slide-handle:active {
    cursor: grabbing;
    transform: translateY(-50%) scale(1.05);
}

.slide-to-add.sliding .slide-handle {
    left: calc(100% - 46px);
    background: linear-gradient(45deg, #48bb78, #38a169);
}

.slide-to-add.sliding .slide-text {
    opacity: 0;
}

.slide-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    width: 0;
    transition: width 0.1s linear;
    border-radius: 25px;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: linear-gradient(135deg, #0081e4ff, #f5b31b);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.3rem;
}

.cart-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark-color);
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    color: white;
    border-color: transparent;
}

.quantity-value {
    width: 45px;
    text-align: center;
    font-weight: 600;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    margin-left: 12px;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.cart-item-remove:hover {
    transform: scale(1.1);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    background: rgba(102, 126, 234, 0.05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-color);
}

.cart-total span:last-child {
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Product to Cart Animation */
.product-to-cart {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    z-index: 1003;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

/* Celebration Popup */
.celebration-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.celebration-popup.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.celebration-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, #48bb78, #38a169);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.celebration-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.celebration-close {
    padding: 10px 25px;
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.celebration-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Wishlist Animation */
.wishlist-animation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    background: linear-gradient(45deg, #f5b31b, #0081e4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.wishlist-animation.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Unsubscribe Page Styles */
.unsubscribe-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.unsubscribe-icon {
    font-size: 3.5rem;
    color: var(--danger-color);
    text-align: center;
    margin-bottom: 18px;
}

.unsubscribe-options {
    margin: 25px 0;
}

.unsubscribe-option {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 12px;
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.unsubscribe-option:hover {
    border-color: var(--primary-color);
    background: rgba(102, 126, 234, 0.05);
}

.unsubscribe-option input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
}

.unsubscribe-option label {
    flex: 1;
    cursor: pointer;
}

.feedback-section {
    margin-top: 25px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a202c, #2d3748);
    color: white;
    padding: 60px 0 25px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-column p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    transition: width 0.2s ease;
}

.footer-column ul li a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-column ul li a:hover::before {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: linear-gradient(45deg, #0081e4ff, #f5b31b);
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .search-bar {
        order: 3;
        width: 100%;
        margin: 20px 0 0;
        max-width: none;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .latest-blogs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(102, 126, 234, 0.05);
    }

    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .latest-blogs-grid {
        grid-template-columns: 1fr;
    }
}











/* HERO  */
.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:80px 12%;
    height:100vh;
    position:relative;
    background:radial-gradient(circle, #0081e4ff, #f5b31b);
}

/* GLOW LIGHT BEHIND PRODUCT */
.glow{
    position:absolute;
    width:520px;
    height:520px;
    background:radial-gradient(circle, #ff2d5c, #b3002d, #0a0a0e);
    border-radius:50%;
    right:8%;
    top:50%;
    transform:translateY(-50%);
    filter:blur(120px);
    animation:pulse 5s infinite alternate;
    z-index:-1;
}
@keyframes pulse{
    0%{transform:translateY(-50%) scale(1);}
    100%{transform:translateY(-50%) scale(1.3);}
}

/* TEXT SECTION */
.hero-content{
    max-width:600px;
}
.hero-content h1{
    font-size:4rem;
    font-weight:800;
    line-height:1.15;
    color: white;
}
.hero-content p{
    margin:20px 0 30px;
    font-size:1.15rem;
    opacity:0.85;
    color: white;
}
.cta{
    padding:14px 45px;
    background:#ff003c;
    color:#fff;
    border-radius:40px;
    font-weight:700;
    cursor:pointer;
    font-size:1rem;
    transition:0.4s;
}
.cta:hover{
    transform:translateY(-5px);
    box-shadow:0px 10px 45px rgba(255,0,60,0.45);
}

/* PRODUCT 3D CONTAINER */
.product-scene{
    perspective:1400px;
}
.product-box{
    width:500px;
    height:560px;
    background:rgba(255,255,255,0.08);
    border-radius:22px;
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.25);
    display:flex;
    align-items:center;
    justify-content:center;
    transform-style:preserve-3d;
    transition:transform 0.2s ease-out;
    cursor:pointer;
    position:relative;
}
.product-box img{
    width:80%;
    transform:translateZ(140px);
    transition:0.5s;
    filter:drop-shadow(0 30px 50px rgba(0,0,0,0.6));
}
.product-box:hover img{
    transform:translateZ(200px) scale(1.09);
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero{
    flex-direction:column;
    height:auto;
    text-align:center;
    padding-top:120px;
  }
  .product-scene{
    margin-top:40px;
  }
}







/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-container {
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        z-index: 1000;
    }
    
    .nav-menu.active {
        max-height: 600px;
        transition: max-height 0.5s ease-in;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
    }
    
    .dropdown {
        position: static;
        box-shadow: none;
        width: 100%;
        display: none;
        background-color: #f9f9f9;
    }
    
    .dropdown.show {
        display: block;
    }
    
    .dropdown a {
        padding-left: 40px !important;
        font-size: 0.9rem;
        color: #666;
    }
    
    .nav-menu li > a i.fa-chevron-down {
        float: right;
        transition: transform 0.3s;
    }
    
    .nav-menu li.dropdown-active > a i.fa-chevron-down {
        transform: rotate(180deg);
    }
}







/* Search Results Styles */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f9f9f9;
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.search-result-info h4 {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    color: #333;
}

.search-result-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

.search-result-price {
    margin-left: auto;
    font-weight: bold;
    color: var(--primary-color, #0081e4ff);
}

.search-no-results {
    padding: 15px;
    text-align: center;
    color: #666;
}

.search-loading {
    padding: 15px;
    text-align: center;
    color: #666;
}

.search-bar {
    position: relative;
}

/* Mobile Search */
@media (max-width: 768px) {
    .search-bar {
        display: none;
    }
    
    .search-bar.mobile-active {
        display: block;
        position: absolute;
        top: 70px;
        left: 15px;
        right: 15px;
        z-index: 1001;
    }
    
    .search-bar input {
        width: 100%;
    }
    
    .mobile-search-toggle {
        display: block !important;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
        padding: 10px;
    }
}




.mobile-search-toggle{
    display: none;
}



/* Add these styles to your CSS file */
.slide-to-add .slide-handle {
    transition: none !important;
}

.slide-to-add .slide-progress {
    transition: none !important;
}

.slide-to-add.sliding .slide-handle {
    transition: left 0.3s ease !important;
}

.slide-to-add.sliding .slide-progress {
    transition: width 0.3s ease !important;
}

/* Search results styles */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.search-results.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-result-item:hover {
    background: rgba(102, 126, 234, 0.05);
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.search-result-info {
    flex-grow: 1;
}

.search-result-info h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    color: #2d3748;
}

.search-result-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #718096;
}

.search-result-price {
    font-weight: bold;
    color: var(--primary-color);
}

.search-loading {
    padding: 20px;
    text-align: center;
    color: #718096;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #718096;
}

/* Mobile search toggle */
.mobile-search-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .mobile-search-toggle {
        display: block;
    }
    
    .search-bar.mobile-active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}