/* Root CSS */ p{font-family: var(--para_font);} h1{font-family: var(--h1_font);} h2{font-family: var(--h2_font);} h3{font-family: var(--h3_font);} h4{font-family: var(--h4_font);} h4{font-size: 20px;} h5{font-family: var(--h5_font);} h6{font-family: var(--h6_font);} a{font-family: var(--link_font);} button{font-family: var(--button_font);} a{text-decoration:none;color:black;} a:hover{color: var(--primary_color);} body{background-color:#ffffff;font-size:13px;-webkit-font-smoothing: antialiased;-webkit-font-size:13px;} li{text-decoration: none;list-style: none;} li a{text-decoration: none;color: black;font-family: var(--link_font);font-size: 15px;line-height: 2;} /* Builder css */ /* Parallax Banner Component CSS */ .parallax-banner-section { position: relative; width: 100%; background: #000; display: flex; align-items: center; justify-content: center; } @media (min-width: 769px) { .parallax-banner-section { height: 500px; } } .parallax-banner-container { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; z-index: 2; } .parallax-bg-wrapper { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; background-position: center; background-repeat: no-repeat; background-size: cover; background-attachment: fixed; } .parallax-bg-image { display: none; /* Hide img tag, use CSS background instead */ } .parallax-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%); z-index: 2; } .parallax-content { position: relative; z-index: 3; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; } .parallax-text-content { text-align: center; color: #fff; padding: 0 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; } .parallax-heading { line-height: 1.2; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); letter-spacing: -0.5px; animation: fadeInUp 1s ease-out; } .parallax-text { font-weight: 300; line-height: 1.6; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); animation: fadeInUp 1s ease-out 0.2s both; } .parallax-btn { display: inline-block; padding: 15px 40px; background: transparent; color: #eaeaea; text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border: 1px solid #fff; transition: all 0.3s ease; animation: fadeInUp 1s ease-out 0.4s both; } .parallax-btn:hover { background: white; color: #000000; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); } /* Animations */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } /* Placeholder styles */ .parallax-banner-placeholder { min-height: 400px; background: #f8f9fa; border: 2px dashed #dee2e6; display: flex; align-items: center; justify-content: center; } .parallax-banner-placeholder .container { color: #6c757d; } .parallax-subheading { font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; animation: fadeInUp 1s ease-out; } .parallax-text-content { max-width: 800px; margin: 0 auto; } [data-text-align="left"] .parallax-text-content { margin: 0; } [data-text-align="right"] .parallax-text-content { margin: 0 0 0 auto; } /* Responsive Design */ @media (max-width: 1200px) { .parallax-banner-container { height: 500px; } .parallax-heading { /* font-size: 3rem; */ } } @media (max-width: 992px) { .parallax-banner-container { height: 450px; } } @media (max-width: 768px) { .parallax-banner-section { height: auto; min-height: 320px; } .parallax-banner-container { height: auto; min-height: 320px; } .parallax-heading { margin-bottom: 1rem; } .parallax-text { margin-bottom: 1.5rem; } .parallax-btn { padding: 12px 30px; font-size: 0.9rem; } /* .parallax-banner-section { height: auto; } */ } @media (max-width: 576px) { .parallax-banner-container { height: 350px; } .parallax-btn { padding: 10px 25px; font-size: 0.85rem; } .parallax-text-content { padding: 0 15px; } } @media (max-width: 768px) { .parallax-banner-container { /* height: 400px; */ padding: 0 20px; } .parallax-text-content { padding: 0 15px; max-width: 100%; } .parallax-heading { text-align: center; } .parallax-text { text-align: center; } } @media (max-width: 400px) { .parallax-banner-container { height: 300px; padding: 0 15px; } .parallax-content { padding: 0 10px; } .parallax-text-content { padding: 0 10px; max-width: 100%; } .parallax-heading { text-align: center; } .parallax-text { text-align: center; } } .parallax-bg-image { backface-visibility: hidden; perspective: 1000px; } /* Smooth scrolling support */ html { scroll-behavior: smooth; } /* Reduced motion support */ @media (prefers-reduced-motion: reduce) { .parallax-bg-image, .parallax-bg-wrapper { transition: none; animation: none; transform: none !important; } .parallax-heading, .parallax-text, .parallax-btn { animation: none; } } /* 4 Column Product Box Component CSS */ .four-col-product-box-section { background: #fff; padding: 20px 30px; overflow: visible; position: relative; } /* Section Header Styling */ .four-col-product-box-section .section-header { margin-bottom: 2rem; } .four-col-product-box-section .section-title { color: #333; margin-bottom: 0.5rem; text-align: center; } .four-col-product-box-section .section-subtitle { color: #666; margin-bottom: 0; } /* 4 Column Product Grid Layout */ .four-col-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 15px 20px; } /* Responsive design for grid layout */ @media (max-width: 1200px) { .four-col-product-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; } } @media (max-width: 992px) { .four-col-product-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } } @media (max-width: 768px) { .four-col-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 10px 15px; } } @media (max-width: 576px) { .four-col-product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 5px 15px; } } /* Force all badges to bottom left in four_col_product_box */ .four-col-product-grid .product-badges, .four-col-product-grid .ribbon { position: absolute !important; bottom: 10px !important; left: 10px !important; top: auto !important; right: auto !important; z-index: 10 !important; } .four-col-product-grid .badge, .four-col-product-grid .ribbon { display: inline-block; padding: 4px 8px; font-size: 11px; font-weight: 600; text-transform: uppercase; border-radius: 4px; margin-bottom: 4px; background: #e74c3c; color: #fff; } /* View All Button Styling */ .four-col-view-all-btn, .four-col-view-all-btn-light { background-color: var(--primary_color); color: #fff; border-radius: 4px; border: 1px solid var(--primary_color); transition: all 0.3s ease; } .four-col-view-all-btn:hover, .four-col-view-all-btn-light:hover { background-color: #ffffff; color: #000000; border: 1px solid #000; }/* Product List With Image Component Styles - Image + Products Layout */ .product_list_with_image-wrapper { position: relative; } /* Utility Classes */ .rounded-lg { border-radius: 12px !important; } .shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; } /* Category Image Styles */ .category-image-wrapper { position: relative; width: 100%; height: 100%; min-height: 400px; overflow: hidden; border-radius: 12px; display: flex; } .category-link-wrapper { display: block; width: 100%; height: 100%; } .category-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; will-change: transform; } .category-image-wrapper:hover .category-image { transform: scale(1.05); } /* Product Grid Styles */ .product-grid-container { width: 100%; } .product-grid-container .product-box-1, .product-grid-container .product-box-2, .product-grid-container .product-box-3 { height: 100%; margin-bottom: 0 !important; } .no-products { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; min-height: 300px; background: #f9fafb; border-radius: 12px; border: 2px dashed #e5e7eb; } /* Tablet & Mobile Layouts */ @media (max-width: 991px) { .category-image-wrapper { min-height: 350px; margin-bottom: 0; } .product_list_with_image-wrapper .row.g-4 { flex-direction: column !important; } .col-lg-8, .col-lg-4 { width: 100% !important; } } @media (max-width: 576px) { .category-image-wrapper { min-height: 250px; } } @media (max-width: 576px) { .product_list_with_image-section { padding: 10px 0; } .product_list_with_image-heading { font-size: 28px; } .product_list_with_image-subheading { font-size: 13px; } .product-grid { gap: 10px; } .product-item { flex: 1; min-height: 0; } .product-name { font-size: 11px; min-height: 2.4em; display: -webkit-box; display: -moz-box; display: box; -webkit-line-clamp: 2; -moz-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; -moz-box-orient: vertical; box-orient: vertical; overflow: hidden; text-overflow: ellipsis; } .product-price { font-size: 13px; } .product-info { padding: 8px; } .star { font-size: 11px; } } .category-item-large .category-link { display: flex; flex-direction: column; justify-content: flex-end; height: 100%; text-decoration: none; position: relative; overflow: hidden; } .category-item-large .category-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .category-item-large:hover { box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); } .category-item-large .category-content { padding: 30px; background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%); color: #fff; text-align: center; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 10px; } .category-item-large .category-title { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: 2px; display: inline-block; } .category-item-large .category-arrow { display: inline-flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease; animation: arrowPulse 2s infinite; } .category-item-large:hover .category-arrow { animation: none; } @keyframes arrowPulse { 0% { transform: translateX(-50%); } 50% { transform: translateX(-50%) scale(1.1); } } .category-item-large:hover .category-arrow { animation: none; } /* Small Category Items (Right Column) */ .category-item-small { height: 240px; background-color: #f8f9fa; } .category-item-small .category-link { display: flex; align-items: center; height: 100%; text-decoration: none; position: relative; overflow: hidden; padding: 20px; } .category-item-small .category-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; } .category-item-small:hover { box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08); } .category-item-small .category-content { position: relative; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 2; color: #fff; text-align: center; background: rgba(0, 0, 0, 0.6); padding: 15px 20px; border-radius: 5px; backdrop-filter: blur(5px); min-width: 150px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 10px; } .category-item-small .category-arrow { display: inline-block; margin-top: 5px; font-size: 14px; transition: transform 0.3s ease; } .category-item-small:hover .category-arrow { transform: translateX(3px); } .category-item-small .category-price { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 400; margin: 0; opacity: 0.9; } .category-item-small .category-arrow { display: inline-block; margin-left: 8px; font-size: 14px; transition: transform 0.3s ease; } .category-item-small:hover .category-arrow { transform: translateX(3px); } /* Empty State Styles */ .category-empty { display: flex; align-items: center; justify-content: center; height: 100%; background-color: #f8f9fa; color: #6c757d; font-family: 'Montserrat', sans-serif; font-size: 16px; text-align: center; padding: 20px; } /* Responsive Design */ @media (max-width: 768px) { .product_list_with_image-heading { font-size: 28px; } .category-item-large { height: 350px; margin-bottom: 15px; } .category-item-small { height: 200px; margin-bottom: 15px; } .category-item-large .category-content { padding: 20px; } .category-item-large .category-name { font-size: 20px; } .category-item-small .category-content { padding: 12px 15px; } .category-item-small .category-name { font-size: 16px; } } @media (max-width: 576px) { .product_list_with_image-section { padding: 40px 0; } .product_list_with_image-heading { font-size: 24px; } .category-item-large { height: 280px; } .category-item-small { height: 160px; } .category-item-large .category-content { padding: 15px; } .category-item-large .category-name { font-size: 18px; } .category-item-small .category-name { font-size: 14px; } .category-item-small .category-price { font-size: 14px; } } /* Select2 Dropdown Styles */ .product_list_with_image-container .select2-container { z-index: 9999 !important; } .product_list_with_image-container .select2-selection { z-index: 9998 !important; } .product_list_with_image-container .select2-dropdown { z-index: 9999 !important; } .product_list_with_image-container .select2-results { z-index: 9998 !important; } /* Ensure dropdowns are above other content */ .product_list_with_image-container .select2-container--above { z-index: 10000 !important; } .product_list_with_image-container .form-control { position: relative !important; z-index: 1 !important; } /* Ensure Select2 dropdowns are clickable */ .select2-container--default .select2-selection--multiple { background-color: white !important; border: 1px solid #ced4da !important; cursor: pointer !important; pointer-events: auto !important; } .select2-container--default .select2-selection--multiple:hover { border-color: #80bdff !important; } /* Fix modal overlay issues */ .modal .select2-container { z-index: 1050 !important; } .modal .select2-dropdown { z-index: 1051 !important; } /* Ensure dropdown appears above modal backdrop */ .select2-container { position: relative !important; z-index: 10000 !important; } .select2-dropdown { position: absolute !important; z-index: 10001 !important; background: white !important; border: 1px solid #aaa !important; border-radius: 4px !important; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important; } /* Fix pointer events */ .select2-selection { pointer-events: auto !important; cursor: pointer !important; } .select2-selection__rendered { pointer-events: auto !important; } .select2-search__field { pointer-events: auto !important; } /* Ensure dropdown items are clickable */ .select2-results__option { pointer-events: auto !important; cursor: pointer !important; } .select2-results__option:hover { background-color: #f8f9fa !important; } /* Loading State */ .category-loading { display: flex; align-items: center; justify-content: center; height: 100%; background-color: #f8f9fa; color: #6c757d; font-family: 'Montserrat', sans-serif; font-size: 14px; } .category-loading::after { content: ''; width: 20px; height: 20px; margin-left: 10px; border: 2px solid #dee2e6; border-top: 2px solid #007bff; border-radius: 50%; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }/* Video Banner Component Styles */ .video-banner-section { position: relative; width: 100%; overflow: hidden; padding: 60px 0; } .video-banner-wrapper { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background-color: transparent; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); } .video-banner-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; transition: all 0.3s ease; } .video-banner-video { width: 100%; height: 100%; display: block; object-fit: cover; } /* Play Button Overlay */ .video-play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 4; cursor: pointer; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); } .video-play-button:hover { transform: translate(-50%, -50%) scale(1.1); } .video-play-button circle { fill: rgba(255, 255, 255, 0.95); transition: fill 0.3s ease; } .video-play-button:hover circle { fill: #ffffff; } .video-play-button path { fill: #1a1a1a; } /* Dark Mode Variants */ .video-banner-section.dark-version { background-color: #0f172a; } .video-banner-section.dark-version .video-banner-wrapper { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); } /* Responsive Adjustments */ @media (max-width: 991px) { .video-banner-section.py-4 { padding: 60px 0; } } @media (max-width: 768px) { .video-banner-section.py-4 { padding: 40px 0; } .video-banner-wrapper { border-radius: 12px; } .video-play-button svg { width: 60px; height: 60px; } } @media (max-width: 576px) { .video-banner-section.py-4 { padding: 30px 0; } .video-banner-wrapper { border-radius: 8px; } .video-play-button svg { width: 50px; height: 50px; } } .video-banner-wrapper iframe { width: 100%; height: 100%; border: none; display: block; } /* Section Header Styles */ .video-banner-section .section-title { color: var(--text-color); } .video-banner-section .section-subtitle { margin-left: auto; margin-right: auto; color: var(--text-color); }/* Partners Grid - Core Color Styles Only */ .partners-section .section-title, .partners-section .section-subtitle, .partners-section .partner-title, .partners-section .partner-description { color: var(--text-color) !important; } .partners-section .partner-logo-text { color: var(--text-color) !important; letter-spacing: 0.1em; } .partners-img{ height: 150px; width: 100%; } /* Product Box 2 Styles */ @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Outfit:wght@300;400;600&display=swap'); .product-box-2 { transition: all 0.3s ease; background: transparent; } .product-box-2 .productimage { position: relative; background-color: #f3f3f3; aspect-ratio: 1 / 1.1; display: flex; align-items: center; justify-content: center; overflow: hidden; } .product-box-2 .product-link { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; } .product-box-2 .slide-image { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); } .product-box-2:hover .slide-image { transform: scale(1.05); } /* Quick View Bar */ .product-box-2 .quick-view-bar { position: absolute; bottom: -50px; left: 0; width: 100%; background: #4a5746; color: #fff; text-align: center; padding: 12px; font-size: 11px; font-weight: 600; letter-spacing: 2px; cursor: pointer; transition: bottom 0.3s ease; z-index: 5; } .product-box-2:hover .quick-view-bar { bottom: 0; } /* Wishlist Overlay */ .product-box-2 .floating-wishlist { position: absolute; top: 15px; right: 15px; opacity: 0; transition: opacity 0.3s ease; z-index: 6; } .product-box-2:hover .floating-wishlist { opacity: 1; } .product-box-2 .floating-wishlist i { font-size: 18px; color: #333; cursor: pointer; transition: transform 0.2s; } .product-box-2 .floating-wishlist i:hover { transform: scale(1.2); color: #ff4747; } .product-box-2 .floating-wishlist i.active { color: #ff4747; } /* Product Info */ .product-box-2 .productname { font-size: 17px; color: #1a1a1a !important; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 5px; transition: color 0.3s; } .product-box-2 .price-action-container { position: relative; height: 30px; overflow: hidden; } .product-box-2 .product-price, .product-box-2 .add-to-cart-toggle { position: absolute; width: 100%; left: 0; transition: all 0.3s ease; } .product-box-2 .product-price { top: 0; opacity: 1; } .product-box-2 .add-to-cart-toggle { top: 30px; opacity: 0; } .product-box-2:hover .product-price { top: -30px; opacity: 0; } .product-box-2:hover .add-to-cart-toggle { top: 0; opacity: 1; } .product-box-2 .sale-pri { font-size: 16px; color: #666; } .product-box-2 .cart-trigger { font-size: 13px; font-weight: 500; color: #1a1a1a; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; display: block; } .product-box-2 .cart-trigger:hover { color: var(--primary_color); } @media (max-width: 768px) { .product-box-2 .productname { font-size: 16px; } .product-box-2 .quick-view-bar { bottom: 0; padding: 8px; opacity: 0.9; } .product-box-2 .floating-wishlist { opacity: 1; } } /* Post css */