.elementor-1379 .elementor-element.elementor-element-9f30e80{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:100px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-de29116 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Elements */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.1), rgba(135, 206, 250, 1));
    animation: float 20s infinite ease-in-out;
}

.floating-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: -5s;
}

.floating-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
    background: linear-gradient(45deg, rgba(255, 182, 193, 0.1), rgba(221, 160, 221, 1));
}

.floating-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: -15s;
    background: linear-gradient(45deg, rgba(173, 216, 230, 0.1), rgba(255, 160, 122, 1));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-30px) rotate(90deg) scale(1.1); }
    50% { transform: translateY(-60px) rotate(180deg) scale(0.9); }
    75% { transform: translateY(-30px) rotate(270deg) scale(1.05); }
}

/* Main Container */
.shop-container {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 5;
}

/* Sidebar Styles */
.shop-sidebar {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    height: fit-content;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 40px;
    z-index: 99;
}

.sidebar-section {
    margin-bottom: 32px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.sidebar-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff69b4, #87ceeb);
    border-radius: 2px;
}

.cat-list {
    list-style: none;
}

.cat-list li {
    margin-bottom: 12px;
}

.cat-list a {
    display: block;
    padding: 12px 16px;
    color: #666;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cat-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 105, 180, 0.1), rgba(135, 206, 250, 0.1));
    transition: left 0.3s ease;
}

.cat-list a:hover::before {
    left: 0;
}

.cat-list a:hover {
    color: #333;
    transform: translateX(8px);
}

.cat-list a.active {
    background: linear-gradient(90deg, rgba(255, 105, 180, 0.2), rgba(135, 206, 250, 0.2));
    color: #333;
}

/* Filter Controls */
.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.filter-select, .filter-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-select:focus, .filter-input:focus {
    outline: none;
    border-color: #ff69b4;
    background: rgba(255, 255, 255, 0.9);
}

/* Product Grid */
.shop-products {
    min-height: 60vh;
    z-index: 99;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /*box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);*/
}

.products-title {
   font-family: 'Poppins', sans-serif !important;
          font-size: 3.4rem !important;
            font-weight: 500 !important;
          color: #3f2b27;
            margin-bottom: 20px;
            text-shadow: 0 4px 8px rgba(0,0,0,0.1);
            line-height: 1.2 !important;
}

.products-count {
    font-size: 16px;
    color: #666;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    padding: 0;
}

/* Product Card */
.product {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.product:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(45deg, #ff69b4, #87ceeb);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 24px;
}

.product-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #2d2d2d !important;
    margin-bottom: 8px;
    line-height: 1.4 !important;
}

.product-price {
    font-size: 20px;
    font-weight: 600;
    color: #ff6f6f;
    margin-bottom: 16px;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 12px;
    padding: 10px 20px;
}

.product-actions i{
    font-size: 20px;
    color: #4da7cc;
}
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
   background-color: #ff6f6f ;
    color: white !important;
    flex: 1;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #2c004a;
    /*box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);*/
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #666;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background:#ff6f6f;
    color: #333;
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 105, 180, 0.2);
    border-top: 4px solid #ff69b4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .shop-container {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .shop-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .products-title{
        font-size:40px !important;
    }

    .shop-sidebar {
        order: 2;
        position: static;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .products-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* No Products Found */
.no-products {
    text-align: center;
    padding: 80px 40px;
    color: #666;
}

.no-products h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #444;
}

.no-products p {
    font-size: 16px;
    line-height: 1.6;
}

/* Filter Reset Button */
.filter-reset {
    width: 100%;
    padding: 12px 16px;
    background-color: #2c004a !important;
    color: white !important;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.filter-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

/* Stagger animation for product cards */
.product:nth-child(1) { animation-delay: 0.1s; }
.product:nth-child(2) { animation-delay: 0.2s; }
.product:nth-child(3) { animation-delay: 0.3s; }
.product:nth-child(4) { animation-delay: 0.4s; }
.product:nth-child(5) { animation-delay: 0.5s; }
.product:nth-child(6) { animation-delay: 0.6s; }
.product:nth-child(7) { animation-delay: 0.7s; }
.product:nth-child(8) { animation-delay: 0.8s; }
.product:nth-child(9) { animation-delay: 0.9s; }
.product:nth-child(n+10) { animation-delay: 1s; }/* End custom CSS */