.elementor-22 .elementor-element.elementor-element-e0b236e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-c2a1c7b *//* Google Font Import */
@import url('https://googleapis.com');

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Header Styling */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Area */
.logo-area {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.site-logo {
    max-height: 45px;
    width: auto;
    display: block;
    /* Jab aap apni logo image lagayein gi to ye set rhaiga */
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0.5px;
    margin-left: 10px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-item {
    text-decoration: none;
    color: #666666;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-item:hover, .nav-item.active {
    color: #ff6b81; /* Brand Cute Pink/Coral Color */
}

/* Hover Line Effect */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b81;
    transition: width 0.3s ease;
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

/* Cute Cart Button */
.cute-cart-btn {
    background: linear-gradient(135deg, #ff6b81, #ff4757);
    color: white;
    border: none;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(255, 107, 129, 0.3);
    transition: all 0.3s transform ease, cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cute-cart-btn i {
    font-size: 16px;
}

.cute-cart-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 107, 129, 0.4);
}

.cute-cart-btn:active {
    transform: translateY(1px);
}

/* Cart Counter Badge */
.cart-count {
    background-color: #ffffff;
    color: #ff4757;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobile menu handles this, keeping it simple for now */
    }
    
    .header-container {
        padding: 0 15px;
    }
}/* End custom CSS */