/* 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 */ /* Hero Slider 1 Component Styles */ .hero-slider-section { position: relative; overflow: hidden; background: #F6F6F7; height: 500px; } /* Push hero content toward top of section — desktop only */ @media (min-width: 993px) { .hero-slider-section .row.align-items-center { align-items: flex-center !important; padding-top: 25px; } } .hero-slider-container { position: relative; width: 100%; height: 100%; } .hero-slider-wrapper { position: relative; width: 100%; height: 100%; } .hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); transform: translateX(100%); } .hero-slide.active { opacity: 1; visibility: visible; transform: translateX(0); } .hero-slide.prev { transform: translateX(-100%); } /* Content Column */ .hero-content-col { padding: 30px; display: flex; align-items: center; /* min-height: 100vh; */ } .hero-content-wrapper { max-width: 500px; animation: slideInLeft 1s ease-out 0.3s both; } .hero-slide.active .hero-content-wrapper { animation: slideInLeft 1s ease-out 0.3s both; } /* Offer Badge */ .hero-offer-badge { display: inline-block; background: #DADADD; color: #0A0A0A; padding: 8px 20px; border-radius: 25px; font-weight: 400; text-transform: capitalize; letter-spacing: 1px; margin-bottom: 20px; } .hero-offer-badge1 { display: inline-block; background: #0A0A0A; color: #fff; padding: 3px 10px; border-radius: 25px; margin-left: 5px; font-weight: 400; } /* Heading */ .hero-heading { font-weight: 700; color: #111; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; } /* Content */ .hero-content { color: #555; line-height: 1.6; margin-bottom: 35px; font-weight: 400; } /* Buttons */ .hero-buttons { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; } .hero-btn { display: inline-block; padding: 14px 40px; border-radius: 4px; text-decoration: none; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; transition: all 0.3s ease; border: 1px solid transparent; position: relative; } .hero-btn-primary { background: var(--primary_color); color: white; border: 1px solid var(--primary_color); } .hero-btn-primary:hover { background: var(--primary_color); color: white; border: 1px solid var(--primary_color); opacity: 0.8; text-decoration: none; transform: none; } .hero-btn-secondary { background: transparent; color: var(--primary_color); border: 1px solid var(--primary_color); } .hero-btn-secondary:hover { background: var(--primary_color); color: #fff; border: 1px solid var(--primary_color); text-decoration: none; transform: none; } /* Stats */ .hero-stats { display: flex; gap: 30px; flex-wrap: wrap; } .stat-item { text-align: center; } .stat-number { display: block; font-weight: 400; color: #0A0A0A; line-height: 1.2; } .stat-label { display: block; color: #818BA0; text-transform: capitalize; margin-top: 5px; } /* Image Column */ .hero-image-col { padding: 40px; display: flex; align-items: center; justify-content: center; } .hero-image-wrapper { position: relative; max-width: 600px; width: 100%; animation: slideInRight 1s ease-out 0.5s both; } .hero-slide.active .hero-image-wrapper { animation: slideInRight 1s ease-out 0.5s both; } .hero-main-image { width: 100%; height: 380px; border-radius: 20px; transition: transform 0.3s ease; } /* Image Overlay */ .hero-image-overlay { position: absolute; bottom: 25px; left: 0; right: 0; margin: 0 25px; background: rgba(255, 255, 255, 0.95); border-radius: 10px; padding: 20px; display: flex; justify-content: space-between; align-items: center; } .overlay-left { flex: 1; } .overlay-title { color: #818BA0; margin-bottom: 5px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.5px; } .overlay-product-name { color: #0A0A0A; font-weight: 600; line-height: 1.3; } .overlay-btn { display: inline-block; background: var(--primary_color); color: white; padding: 8px 16px; border-radius: 8px; text-decoration: none; font-weight: 500; transition: all 0.3s ease; text-transform: capitalize; border: 1px solid var(--primary_color); } .overlay-btn:hover { background: var(--primary_color); opacity: 0.8; transform: translateY(-2px); text-decoration: none; border: 1px solid var(--primary_color); color: #fff; } /* Slider Indicators */ .hero-slider-indicators { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; } .slider-indicator { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.5); background: transparent; cursor: pointer; transition: all 0.3s ease; } .slider-indicator.active { background: white; border-color: white; transform: scale(1.2); } .slider-indicator:hover { border-color: white; transform: scale(1.1); } /* Animations */ @keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } } @keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } } /* Responsive Design */ @media (max-width: 1200px) { .hero-content-col, .hero-image-col { padding: 40px 30px; } } @media (max-width: 992px) { .hero-slider-section, .hero-slider-container, .hero-slider-wrapper { height: auto !important; min-height: 100vh !important; overflow: visible !important; } .hero-slide { position: relative !important; height: auto !important; display: none; transform: none !important; opacity: 1 !important; visibility: visible !important; transition: none !important; top: 0 !important; left: 0 !important; } .hero-slide.active { display: block !important; } .hero-slide .row { flex-direction: column-reverse; } .hero-content-col, .hero-image-col { min-height: auto !important; padding: 30px 20px; } .hero-content-wrapper { max-width: 100%; text-align: center; } .hero-heading { margin-bottom: 15px; margin-top: 20px; } .hero-content { margin-bottom: 25px; } .hero-stats { justify-content: center; margin-top: 30px; } .hero-image-overlay { position: relative !important; margin: -40px auto 0 !important; width: 90% !important; max-width: none !important; background: #fff !important; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); z-index: 5; border-radius: 15px !important; } .hero-main-image { height: 350px !important; width: 100% !important; object-fit: cover !important; border-radius: 20px !important; } } /* Tablet-only: center-align hero content */ @media (min-width: 768px) and (max-width: 992px) { .hero-content-col { align-items: center; text-align: center; } .hero-content-wrapper { text-align: center; margin: 0 auto; } .hero-buttons { justify-content: center; } .hero-stats { justify-content: center; } } @media (max-width: 768px) { .hero-slider-section { min-height: 100vh !important; } .hero-image-col { padding-bottom: 0 !important; } .hero-content-col { padding-top: 0 !important; } .hero-image-col { min-height: 50vh !important; } .hero-main-image { height: 300px !important; max-height: 300px; object-fit: contain; } .hero-buttons { flex-direction: column; align-items: center; gap: 10px; } .hero-btn { width: 100%; max-width: 280px; text-align: center; padding: 12px 20px; } .hero-stats { gap: 15px; } .hero-slider-indicators { bottom: 10px; position: relative !important; margin-top: 20px; } } @media (max-width: 576px) { .hero-main-image { height: 250px !important; } .hero-offer-badge { padding: 6px 15px; } .hero-image-overlay { padding: 15px; flex-direction: column; text-align: center; gap: 10px; } .overlay-btn { width: 100%; } } /* Fix Select2 dropdown positioning in hero_slider_1 modals */ .modal .select2-container { z-index: 9999 !important; } .modal .select2-container--open { z-index: 9999 !important; } .modal .select2-dropdown { z-index: 10060 !important; pointer-events: auto !important; position: absolute !important; } .modal .select2-results { pointer-events: auto !important; } .modal .select2-results__option { cursor: pointer !important; pointer-events: auto !important; user-select: none; } .modal .select2-results__option--highlighted { cursor: pointer !important; pointer-events: auto !important; background-color: #5897fb !important; color: white !important; } /* Ensure Select2 search input is visible and functional */ .modal .select2-search--dropdown { padding: 4px; } .modal .select2-search__field { width: 100% !important; padding: 4px 8px !important; border: 1px solid #aaa !important; } /* Make sure the dropdown appears below the select */ .modal .select2-container--default .select2-selection--single { position: relative !important; } /* Specific fix for hero slider product dropdowns */ select[id^="builderProdHeroSlide"]+.select2-container { width: 100% !important; } select[id^="builderProdHeroSlide"]+.select2-container .select2-dropdown { width: 100% !important; position: absolute !important; top: 100% !important; left: 0 !important; }/* category_slider_without_bg - Clean category slider without background colors */ .category-slider-without-bg-section { background: transparent; padding: 30px 0; } .category-slider-heading { /* font-size: 32px; */ font-weight: 600; margin-bottom: 10px; color: #333; } .category-slider-subheading { /* font-size: 16px; */ color: #666; margin-bottom: 30px; } .category-slider-wrapper { position: relative; } .category-slider-without-bg-carousel { padding: 10px 2px; } .category-slider-without-bg-carousel .owl-stage-outer { padding-top: 10px; padding-bottom: 10px; /* margin-top: -10px; margin-bottom: -10px; */ } .category-slide-item { background: transparent !important; border: none !important; } .category-card { display: flex; flex-direction: column; align-items: center; text-decoration: none; transition: transform 0.3s ease; border: none !important; border-radius: 0 !important; overflow: visible !important; background: transparent !important; padding: 0 !important; box-shadow: none !important; } .category-card:hover { transform: translateY(-5px); text-decoration: none; } .category-content { width: 100%; text-align: center; background: transparent !important; border: none !important; padding: 0 !important; } .category-image-wrapper { width: 100%; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; position: relative; background: #fcfcfc; border: 1px solid #eee; border-radius: 12px; margin-bottom: 12px; padding: 15px; overflow: hidden; transition: border-color 0.3s ease; } .category-image { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.5s ease; } .category-card:hover .category-image { transform: scale(1.05); } .category-card:hover .category-image-wrapper { border-color: #ddd; } .category-name { font-size: 16px; font-weight: 500; color: #111; margin: 10px 0 0 0; line-height: 1.4; padding: 0; display: inline-block; position: relative; transition: color 0.3s ease; font-family: inherit; text-align: center; } .category-name::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -2px; background-color: #333; left: 50%; transform: translateX(-50%); transition: width 0.3s ease; } .category-card:hover .category-name { color: #333; } .category-card:hover .category-name::after { width: 100%; } /* Responsive */ @media (max-width: 991px) { .category-image-wrapper { padding: 10px; } } @media (max-width: 767px) { .category-slider-without-bg-section { padding: 40px 0; } .category-image-wrapper { margin-bottom: 10px; padding: 8px; } /* .category-name { font-size: 15px; } */ } /* 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 { /* font-size: 2rem; */ /* font-weight: 600; */ color: #333; margin-bottom: 0.5rem; text-align: center; } .four-col-product-box-section .section-subtitle { /* font-size: 1rem; */ color: #666; margin-bottom: 0; } /* 4 Column Product Grid */ .four-col-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 15px 20px; } /* Product box styling within grid */ .four-col-product-grid .product-box { border: 1px solid #e5e5e5; background: #fff; border-radius: 8px; overflow: hidden; transition: all 0.3s ease; height: 100%; } .four-col-product-grid .product-box:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); transform: translateY(-2px); } /* Product image styling */ .four-col-product-grid .product-image { width: 100%; height: 230px; object-fit: contain; transition: transform 0.3s ease; } .four-col-product-grid .product-box:hover .product-image { transform: scale(1.05); } /* Product name styling */ .four-col-product-grid .productname { color: #252525; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 14px; text-transform: capitalize; font-weight: 500; line-height: 1.4; margin-bottom: 8px; min-height: 20px; } /* Product price styling */ .four-col-product-grid .product_price { font-size: 16px; font-weight: 600; color: #333; text-align: center; margin-bottom: 4px; } .four-col-product-grid .pricedet { font-size: 14px; color: #999; text-decoration: line-through; } .four-col-product-grid .sale-pri { font-size: 14px; color: #e74c3c; font-weight: 600; } /* Responsive design */ @media (max-width: 1200px) { .four-col-product-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; } .four-col-product-grid .product-image { height: 180px; } } @media (max-width: 992px) { .four-col-product-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; } .four-col-product-grid .product-image { height: 160px; } .four-col-product-box-section .section-title { font-size: 1.5rem; } } @media (max-width: 768px) { .four-col-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 10px 15px; } .four-col-product-grid .product-image { height: 140px; } .four-col-product-box-section .section-title { font-size: 1.3rem; } } @media (max-width: 576px) { .four-col-product-box-section { padding: 20px 0; } .four-col-product-grid { grid-template-columns: repeat(1, 1fr); gap: 10px; padding: 0 5px 15px; } .four-col-product-grid .product-image { height: 200px; } .four-col-product-grid .productname { font-size: 13px; min-height: 18px; } .four-col-product-grid .product_price { font-size: 14px; } .four-col-product-box-section .section-title { font-size: 1.2rem; } } /* 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; } /* Video Banner Component Styles */ .video-banner-section { position: relative; width: 100%; overflow: hidden; background-color: #f5f5f5; padding-left: 30px; padding-right: 30px; } .video-banner-container { position: relative; width: 100%; height: 600px; overflow: hidden; } .video-banner-wrapper { position: relative; width: 100%; height: 100%; } .video-banner-video { width: 100%; height: 100%; object-fit: cover; display: block; } /* Video Overlay for text */ .video-banner-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%); display: flex; align-items: center; justify-content: center; z-index: 2; } .video-banner-overlay .container { position: relative; z-index: 3; } .video-banner-heading { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: #ffffff; margin-bottom: 20px; letter-spacing: 1px; text-transform: capitalize; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); } .video-banner-subheading { font-family: 'Montserrat', sans-serif; font-size: 18px; color: #ffffff; margin-bottom: 0; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); } /* Play Button Overlay */ .video-play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 4; cursor: pointer; transition: all 0.3s ease; } .video-play-button:hover { transform: translate(-50%, -50%) scale(1.1); } .video-play-button svg { filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3)); } /* Responsive Design */ @media (max-width: 991px) { .video-banner-container { height: 500px; } .video-banner-heading { font-size: 36px; } .video-banner-subheading { font-size: 16px; } } @media (max-width: 767px) { .video-banner-container { height: 400px; } .video-banner-heading { font-size: 28px; margin-bottom: 15px; } .video-banner-subheading { font-size: 14px; letter-spacing: 1px; } .video-play-button svg { width: 60px; height: 60px; } } @media (max-width: 576px) { .mobilev{ padding-top: 0% !important; } .video-banner-container { height: 300px; } .video-banner-heading { font-size: 24px; } .video-banner-subheading { font-size: 12px; } .video-play-button svg { width: 50px; height: 50px; } .video-banner-section { padding-left: 0; padding-right: 0; } } /* Loading state */ .video-banner-video[poster] { background-size: cover; background-position: center; background-repeat: no-repeat; } /* Ensure video maintains aspect ratio */ .video-banner-video { background-color: #000; } .newsletter-section { background: #f6f6f7; padding: 80px 0 !important; } .newsletter-heading { /* font-family: 'Playfair Display', serif; */ /* font-size: 42px; */ font-weight: 700; color: #111; margin-bottom: 15px; } .newsletter-subheading { /* font-family: 'Montserrat', sans-serif; */ /* font-size: 15px; */ color: #777; font-weight: 400; max-width: 600px; margin: 0 auto 30px; } .newsletter-input { width: 100%; padding: 16px 45px; border: 1px solid #ddd; border-radius: 0; /* font-family: 'Montserrat', sans-serif; */ /* font-size: 14px; */ outline: none; transition: border-color 0.3s ease; } .newsletter-input:focus { border-color: var(--primary_color); } .newsletter-btn { /* font-family: 'Montserrat', sans-serif; */ background: var(--primary_color); color: white; padding: 16px 45px; /* font-size: 11px; */ font-weight: 600; text-transform: uppercase; letter-spacing: 2px; border: none; border-radius: 0; transition: background 0.3s ease; } .newsletter-btn:hover { background: var(--primary_color); } @media (max-width: 991px) { .newsletter-section { padding: 50px 0 !important; } /* .newsletter-heading { font-size: 32px; } */ } @media (max-width: 768px) { .newsletter-section { padding: 40px 0 !important; } /* .newsletter-heading { font-size: 28px; } */ .newsletter-subheading { /* font-size: 14px; */ margin-bottom: 20px; } } @media (max-width: 576px) { .newsletter-section { padding: 30px 10px !important; } /* .newsletter-heading { font-size: 24px; } */ .newsletter-input { padding: 12px 15px; /* font-size: 13px; */ } .newsletter-btn { width: 100%; padding: 12px 30px; /* font-size: 12px; */ letter-spacing: 1px; } } /* Post css */