body {
    font-family: "Roboto", sans-serif;
    background-color: #ffffff;
}

.header-container {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
}

.top-header {
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.2em;
    margin-bottom: 0.25rem;
    text-decoration: none;
}

.logo-tagline {
    font-size: 0.75rem;
    color: #666666;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.search-container {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid #d1d5db;
    border-radius: 25px;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: #000000;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666666;
    font-size: 1.125rem;
}

.utility-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.utility-icon {
    color: #000000;
    font-size: 1.75rem;
    text-decoration: none;
    transition: color 0.2s;
}

.utility-icon:hover {
    color: #7e64a7;
}

.navigation-menu {
    padding: 0;
}

.navigation-menu .nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.navigation-menu .nav-item {
    position: relative;
}

.navigation-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    color: #000000;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.navigation-menu .nav-link:hover {
    color: #7e66b0;
}

.navigation-menu .nav-link.active {
    color: #7e64a4;
}

.navigation-menu .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #7e64a4;
}

.dropdown-icon {
    margin-left: 0.5rem;
    font-size: 0.75rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #000000;
}

.hero-slide {
    position: relative;
    height: 50vh;
    /* min-height: 600px; */
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.cta-button {
    background-color: transparent;
    color: white;
    padding: 15px 40px;
    border: 2px solid #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.cta-button:hover {
    background-color: rgba(20, 20, 20, 0.95);
    color: white;
    transform: translateY(-2px);
}

.hero-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
}

.hero-carousel .owl-prev,
.hero-carousel .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-carousel .owl-prev,
.hero-carousel .owl-next {
    font-size: 28px !important;
}

.hero-carousel .owl-prev:hover,
.hero-carousel .owl-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-carousel .owl-prev {
    left: 30px;
}

.hero-carousel .owl-dots .owl-dot span {
    width: 30px;
    height: 8px;
    border: 1px solid #fff;
    background: none !important;
}

.hero-carousel .owl-dots .owl-dot.active span {
    background: #fff !important;
    width: 35px;
    height: 8px;
}

.hero-carousel .owl-next {
    right: 30px;
}

.hero-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 30px;
}

.hero-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-product-1 {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    border: 1px solid #ccc;
    position: relative;
    overflow: hidden;
}

.card-product-1 img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s;
}

.absolute-text-middle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    padding: 7px 20px;
    background-color: #0000006f;
    color: #fff;
    font-weight: 600;
    text-wrap-mode: nowrap;
    font-size: 20px;
}

.card-product-1 .arrow {
    position: absolute;
    display: inline-flex;
    bottom: 10px;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #ffffff;
    left: 20px;
    color: #851087;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: rgb(0 0 0 / 18%) 0px 3px 8px;
}

.card-product-1:hover img {
    transform: scale(1.1);
}

.stories-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title-1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0px;
    letter-spacing: 2px;
}

.stories-carousel {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.story-card {
    position: absolute;
    width: 350px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    cursor: pointer;
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 20px;
    transition: all 0.5s ease;
}

.explore-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.explore-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.story-card:nth-child(1) {
    transform: translateX(-200px) rotateY(15deg) scale(0.9);
    z-index: 1;
}

.story-card:nth-child(2) {
    transform: translateX(-100px) rotateY(8deg) scale(0.95);
    z-index: 2;
}

.story-card:nth-child(3) {
    transform: translateX(0) rotateY(0deg) scale(1);
    z-index: 3;
}

.story-card:nth-child(4) {
    transform: translateX(100px) rotateY(-8deg) scale(0.95);
    z-index: 2;
}

.story-card:nth-child(5) {
    transform: translateX(200px) rotateY(-15deg) scale(0.9);
    z-index: 1;
}

.story-card:nth-child(3) .story-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.story-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.story-card:nth-child(3):hover {
    transform: translateX(0) rotateY(0deg) scale(1.05);
}

.trusted-stories-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.section-title-story {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.product-carousel {
    position: relative;
    padding: 0 60px;
}

.product-card {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 10px;
    margin: 0 0px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-container-1 {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 0px;
    background: linear-gradient(135deg, #f7d8fe 0%, #f6f3fc 100%);
    padding: 15px;
}

.product-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8B5A96 0%, #6B4E9B 100%);
    padding: 15px;
}


.product-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.action-btn i {
    color: #6B4E9B;
    font-size: 16px;
}

.product-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #FFA500;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badge i {
    color: #ffffff;
    font-size: 18px;
}

.product-info {
    text-align: left;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    height: 60px;
    overflow: hidden;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 15px;
    background: #6B4E9B;
    color: #ffffff;
    display: inline-block;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    background: #5a3f82;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 78, 155, 0.4);
}

#productCarousel .owl-stage-outer {
    padding: 20px 0px;

}

#productCarousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
}

#productCarousel .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #6B4E9B;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

#productCarousel .owl-nav button:hover {
    background: #5a3f82;
    transform: scale(1.1);
}

#productCarousel .owl-nav .owl-prev {
    left: -25px;
}

#productCarousel .owl-nav .owl-next {
    right: -25px;
}

#productCarousel .owl-nav button span {
    font-size: 24px;
    font-weight: bold;
}

#productCarousel .owl-dots {
    text-align: center;
}

#productCarousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#productCarousel .owl-dot.active {
    background: #6B4E9B;
    transform: scale(1.2);
}

#productCarousel .owl-dot span {
    background: transparent !important;
}

#productCarousel.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
}

.section8-company-logo {
    height: 80px;
    opacity: 1;
    transition: all 0.3s ease;
}

.bestsellers-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title-3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
    margin: 0;
}

.card-different {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1),
        0 4px 6px -4px rgb(0 0 0 / .1);
    padding: 2rem;
    text-align: center;
    color: #fff;
    background-image: linear-gradient(to bottom right, #3b82f6,
            #06b6d4);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.red-gradient {
    background-image: linear-gradient(to bottom right, #a855f7,
            #ec4899);
}

.green-gradient {
    background-image: linear-gradient(to bottom right, #22c55e,
            #10b981);
}

.card-icon-mid {
    padding: 1rem;
    backdrop-filter: blur(4px);
    background-color: #fff3;
    border-radius: 9999px;
}

.card-icon-mid svg {
    width: 2.5rem;
    height: 2.5rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}

.footer-section {
    background-color: rgb(17 24 39);
    padding: 40px 0;
}

.footer-link-wrap {
    padding-left: 25px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.footer-links li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.contact-foot-link {
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #9ca3af;
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: #ffffff;
}

.view-all-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all-link:hover {
    color: #333;
}

.product-image-container {
    position: relative;
    background: linear-gradient(135deg, #d8b4fe 0%, #c084fc 100%);
    padding: 40px 20px;
    text-align: center;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 120px;
    height: 180px;
    object-fit: contain;
    mix-blend-mode: darken;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-bestseller {
    background-color: rgba(255, 255, 255, 0.9);
    color: #8b5cf6;
}

.badge-sale {
    background-color: #dc2626;
    color: white;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background: white;
    transform: scale(1.1);
}

.product-info {
    padding: 25px 0px 15px 0px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.product-categories {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.size-options {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 6px 16px;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover,
.size-btn.active {
    background: #333;
    color: white;
    border-color: #333;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating {
    background: #f59e0b;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-count {
    color: #666;
    font-size: 0.85rem;
}

.discount-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: inline-block;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.add-to-cart-btn {
    width: 100%;
    background: #8b5cf6;
    color: white;
    border: none;
    display: inline-block;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.product_type_simple {
    width: 100%;
    background-color: #8b5cf6 !important;
    color: white !important;
    border: none;
    display: inline-block;
    padding: 15px !important;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cart-icon-wrapper {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc2626;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.product_type_simple:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.products-carousel.owl-carousel .owl-item {
    padding: 0 10px;
}

.products-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.products-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-carousel .owl-dot.active span {
    background: #333 !important;
    width: 30px;
    border-radius: 6px;
}

.products-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.products-carousel .owl-dots .owl-dot {
    background-color: transparent;
}

.products-carousel .owl-dots span {
    width: 30px;
    height: 7px;
    border: 1px solid #000;
    background: none !important;
    margin: 0px !important;
}

.products-carousel .owl-stage-outer {
    padding: 10px 0px;
}

.partner-card-img {
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 0px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.partner-card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-card-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===========================
   SECTION WRAPPER
=========================== */
.xs-contact-wrapper {
    padding: 60px 0;
    background: #f5f6f8;
}

/* ===========================
   LEFT INFO PANEL
=========================== */
.xs-contact-info {
    background: linear-gradient(135deg, #5e1f8d, #6c2bd9);
    color: #fff;
    padding: 50px 40px;
    border-radius: 25px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.xs-contact-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.xs-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.xs-info-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.xs-info-item h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.xs-info-item p {
    margin: 0;
    opacity: 0.9;
}

.xs-working-hours {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    opacity: 0.85;
}

/* ===========================
   FORM CARD
=========================== */
.xs-contact-form-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.xs-form-control {
    height: 55px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    padding-left: 18px;
    font-size: 15px;
}

.xs-form-control:focus {
    box-shadow: none;
    border-color: #6c2bd9;
}

.xs-textarea {
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    padding: 15px 18px;
    font-size: 15px;
    resize: none;
}

.xs-textarea:focus {
    box-shadow: none;
    border-color: #6c2bd9;
}

/* ===========================
   BUTTON
=========================== */
.xs-submit-btn {
    height: 55px;
    border-radius: 15px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(90deg, #7b2ff7, #9d4edd);
    transition: 0.3s ease;
}

.xs-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 47, 247, 0.4);
}

.search-container {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    display: none;
    max-height: 350px;
    overflow-y: auto;
}

.search-item {
    padding: 10px 15px;
    border-bottom: 1px solid #f1f1f1;
}

.search-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
}

.search-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.search-item:hover {
    background: #f9f9f9;
}

.no-product {
    padding: 15px;
    text-align: center;
    color: #999;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-grid .product-card {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.product-grid .product-card h3 {
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
}

.slider-testimonial .owl-stage-outer {
    padding: 20px 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 10px 30px 30px 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 10px 5px;
    border-top: 3px solid #8b5cf6;
}

.stars-icons {
    color: #fbbf24;
    display: inline-flex;
    gap: 5px;
}

.quotes-icon {
    font-size: 40px;
    color: #8b5cf6;
    opacity: 0.4;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    font-size: 15px;
}

.btn-subscribe {
    padding: 12px 25px;
    background: #8b5cf6;
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    line-height: 120%;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.current-price del bdi {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d70e0e;
}

/* ===========================
   RESPONSIVE
=========================== */
@media(max-width:991px) {
    .xs-contact-info {
        margin-bottom: 30px;
    }
}

@media(max-width:576px) {
    .xs-contact-wrapper {
        padding: 40px 15px;
    }

    .xs-contact-info,
    .xs-contact-form-card {
        padding: 30px 20px;
    }
}

/* =================Media Css================== */
@media (max-width: 1200px) {
    .story-card {
        width: 300px;
        height: 400px;
    }

    .story-card:nth-child(1) {
        transform: translateX(-150px) rotateY(15deg) scale(0.85);
    }

    .story-card:nth-child(2) {
        transform: translateX(-75px) rotateY(8deg) scale(0.9);
    }

    .story-card:nth-child(4) {
        transform: translateX(75px) rotateY(-8deg) scale(0.9);
    }

    .story-card:nth-child(5) {
        transform: translateX(150px) rotateY(-15deg) scale(0.85);
    }
}

@media (max-width: 991px) {
    .top-header {
        padding: 0.75rem 0;
    }

    .logo-main {
        font-size: 1.25rem;
    }

    .logo-tagline {
        font-size: 0.6875rem;
    }


    .utility-icons {
        gap: 1rem;
    }

    .utility-icon {
        font-size: 1.125rem;
    }

    .navigation-menu .nav-list {
        gap: 1.5rem;
    }

    .navigation-menu .nav-link {
        font-size: 0.875rem;
    }

    .stories-carousel {
        height: 400px;
    }

    .story-card {
        width: 250px;
        height: 350px;
    }

    .story-card:nth-child(1),
    .story-card:nth-child(5) {
        display: none;
    }

    .story-card:nth-child(2) {
        transform: translateX(-100px) rotateY(10deg) scale(0.85);
    }

    .story-card:nth-child(4) {
        transform: translateX(100px) rotateY(-10deg) scale(0.85);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        height: auto;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.8rem;
    }

    .hero-carousel .owl-prev,
    .hero-carousel .owl-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-carousel .owl-prev {
        left: 15px;
    }

    .hero-carousel .owl-next {
        right: 15px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .search-container {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }

    .utility-icons {
        order: 2;
    }

    .navigation-menu {
        display: none;
    }

    .navigation-menu.show {
        display: block;
    }

    .navigation-menu .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .navigation-menu .nav-link {
        padding: 0.75rem 0;
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .stories-carousel {
        height: 350px;
    }

    .story-card {
        width: 220px;
        height: 300px;
    }

    .story-card:nth-child(2),
    .story-card:nth-child(4) {
        display: none;
    }

    .story-card:nth-child(3) {
        transform: translateX(0) rotateY(0deg) scale(1);
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .product-carousel {
        padding: 0 20px;
    }

    .product-image {
        height: 250px;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    #productCarousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    #productCarousel .owl-nav .owl-prev {
        left: -10px;
    }

    #productCarousel .owl-nav .owl-next {
        right: -10px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .product-image-container-1 {
        padding: 30px 15px;
        height: 240px;
    }

    .product-image-container {
        padding: 30px 15px;
        height: 240px;
    }

    .product-image {
        width: 100px;
        height: 150px;
    }

    .product-info {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 0 15px;
    }

    .logo-main {
        font-size: 1rem;
        white-space: nowrap;
    }

    .logo-tagline {
        font-size: 0.625rem;
        white-space: nowrap;
    }

    .utility-icons {
        gap: 0.75rem;
    }

    .utility-icon {
        font-size: 1rem;
    }

    .stories-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stories-carousel {
        height: 320px;
    }

    .story-card {
        width: 200px;
        height: 280px;
    }

    .story-overlay {
        padding: 30px 15px;
    }

    .explore-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .trusted-stories-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-image {
        height: 200px;
    }

    .product-description {
        height: 50px;
    }

    .section-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .bestsellers-section {
        padding: 40px 0;
    }
}