header, salla-advertisement, .breadcrumbs, footer.store-footer {
    display: none;
}
.container {
    max-width: inherit !important;
}

.container >div>.content {
    width: 100%;
}
.container >div>.content>h1 {
    display:none;
}
:root {
     --honey-gold: #FFB800;
     --honey-dark: #D4940C;
     --honey-light: #FFF4D6;
     --dark: #1A1A1A;
     --gray: #666666;
     --light-gray: #F5F5F5;
     --white: #FFFFFF;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Tajawal', sans-serif;
     color: var(--dark);
     line-height: 1.8;
     overflow-x: hidden;
 }

 /* Modern Navigation */
 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     padding: 1rem 0;
     z-index: 1000;
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
     transition: all 0.3s;
 }

 .navbar.scrolled {
     padding: 0.5rem 0;
     box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
 }

 .nav-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-size: 1.8rem;
     font-weight: 800;
     color: var(--honey-gold);
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .logo-icon {
     font-size: 2rem;
 }

 .nav-links {
     display: flex;
     gap: 2.5rem;
     list-style: none;
 }

 .nav-links a {
     color: var(--dark);
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s;
     position: relative;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--honey-gold);
     transition: width 0.3s;
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .cta-btn {
     background: var(--honey-gold);
     color: var(--dark);
     padding: 0.8rem 2rem;
     border-radius: 50px;
     font-weight: 700;
     text-decoration: none;
     transition: all 0.3s;
     box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
 }

 .cta-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 25px rgba(255, 184, 0, 0.4);
 }

 /* Mobile Menu Toggle */
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     gap: 5px;
     background: none;
     border: none;
     cursor: pointer;
     padding: 5px;
 }

 .mobile-menu-toggle span {
     width: 25px;
     height: 3px;
     background: var(--dark);
     transition: all 0.3s;
     border-radius: 3px;
 }

 .mobile-menu-toggle.active span:nth-child(1) {
     transform: rotate(45deg) translate(8px, 8px);
 }

 .mobile-menu-toggle.active span:nth-child(2) {
     opacity: 0;
 }

 .mobile-menu-toggle.active span:nth-child(3) {
     transform: rotate(-45deg) translate(7px, -7px);
 }

 /* Hero Section - Modern Split Design */
 .hero {
     min-height: 100vh;
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     gap: 4rem;
     padding: 8rem 2rem 4rem;
     max-width: 1400px;
     margin: 0 auto;
     position: relative;
 }

 .hero-content {
     padding: 2rem;
 }

 .hero-badge {
     display: inline-block;
     background: var(--honey-light);
     color: var(--honey-dark);
     padding: 0.5rem 1.5rem;
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 1.5rem;
 }

 .hero-title {
     font-size: 4rem;
     font-weight: 800;
     line-height: 1.2;
     margin-bottom: 1.5rem;
     color: var(--dark);
 }

 .hero-title .highlight {
     color: var(--honey-gold);
     position: relative;
     display: inline-block;
 }

 .hero-description {
     font-size: 1.2rem;
     color: var(--gray);
     margin-bottom: 2.5rem;
     line-height: 1.8;
 }

 .hero-buttons {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .btn-primary {
     background: var(--honey-gold);
     color: var(--dark);
     padding: 1.2rem 3rem;
     border-radius: 50px;
     font-weight: 700;
     font-size: 1.1rem;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.3s;
     box-shadow: 0 8px 30px rgba(255, 184, 0, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 40px rgba(255, 184, 0, 0.4);
 }

 .btn-secondary {
     background: transparent;
     color: var(--dark);
     padding: 1.2rem 3rem;
     border: 2px solid var(--dark);
     border-radius: 50px;
     font-weight: 700;
     font-size: 1.1rem;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     transition: all 0.3s;
 }

 .btn-secondary:hover {
     background: var(--dark);
     color: var(--white);
 }

 .hero-image {
     position: relative;
     height: 600px;
 }

 .hero-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 30px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
 }

 .floating-badge {
     position: absolute;
     background: white;
     padding: 1.5rem 2rem;
     border-radius: 20px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     font-weight: 700;
 }

 .floating-badge-1 {
     top: 10%;
     right: -10%;
     animation: float 3s ease-in-out infinite;
 }

 .floating-badge-2 {
     bottom: 15%;
     left: -10%;
     animation: float 4s ease-in-out infinite 1s;
 }

 .badge-icon {
     font-size: 2rem;
     margin-bottom: 0.5rem;
 }

 .badge-text {
     font-size: 0.9rem;
     color: var(--gray);
 }

 /* Stats Section */
 .stats {
     background: var(--dark);
     color: white;
     padding: 4rem 2rem;
 }

 .stats-container {
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 3rem;
     text-align: center;
 }

 .stat-item {
     padding: 2rem;
 }

 .stat-number {
     font-size: 3.5rem;
     font-weight: 800;
     color: var(--honey-gold);
     margin-bottom: 0.5rem;
 }

 .stat-label {
     font-size: 1.1rem;
     color: rgba(255, 255, 255, 0.8);
 }

 /* Features Section - Modern Cards */
 .features {
     padding: 6rem 2rem;
     background: var(--light-gray);
 }

 .section-header {
     text-align: center;
     max-width: 700px;
     margin: 0 auto 4rem;
 }

 .section-badge {
     display: inline-block;
     background: var(--honey-light);
     color: var(--honey-dark);
     padding: 0.5rem 1.5rem;
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 1rem;
 }

 .section-title {
     font-size: 3rem;
     font-weight: 800;
     margin-bottom: 1rem;
     color: var(--dark);
 }

 .section-description {
     font-size: 1.2rem;
     color: var(--gray);
 }

 .features-grid {
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
 }

 .feature-card {
     background: white;
     padding: 3rem;
     border-radius: 25px;
     transition: all 0.3s;
     border: 1px solid transparent;
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
     border-color: var(--honey-gold);
 }

 .feature-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--honey-gold), var(--honey-dark));
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
     margin-bottom: 1.5rem;
     color: white;
 }

 .feature-title {
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
 }

 .feature-description {
     color: var(--gray);
     line-height: 1.8;
 }

 /* Product Showcase */
 .product-showcase {
     padding: 6rem 2rem;
     background: white;
 }

 .showcase-container {
     max-width: 1400px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
 }

 .showcase-images {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
 }

 .showcase-image {
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
 }

 .showcase-image img {
     width: 100%;
     height: 300px;
     object-fit: cover;
     transition: transform 0.5s;
 }

 .showcase-image:hover img {
     transform: scale(1.1);
 }

 .showcase-image.large {
     grid-column: span 2;
 }

 .showcase-image.large img {
     height: 400px;
 }

 .showcase-content h2 {
     font-size: 2.5rem;
     font-weight: 800;
     margin-bottom: 1.5rem;
 }

 .showcase-content p {
     font-size: 1.1rem;
     color: var(--gray);
     margin-bottom: 2rem;
     line-height: 1.8;
 }

 .benefits-list {
     list-style: none;
     margin-bottom: 2rem;
 }

 .benefits-list li {
     padding: 1rem 0;
     display: flex;
     align-items: center;
     gap: 1rem;
     font-size: 1.1rem;
 }

 .benefits-list li i {
     color: var(--honey-gold);
     font-size: 1.5rem;
 }

 /* Testimonials - Modern Slider */
 .testimonials {
     padding: 6rem 2rem;
     background: var(--honey-light);
 }

 .testimonials-container {
     max-width: 1400px;
     margin: 0 auto;
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
     margin-top: 3rem;
 }

 .testimonial-card {
     background: white;
     padding: 2.5rem;
     border-radius: 25px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
     transition: all 0.3s;
 }

 .testimonial-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
 }

 .testimonial-header {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .testimonial-avatar {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     object-fit: cover;
 }

 .testimonial-author h4 {
     font-weight: 700;
     margin-bottom: 0.25rem;
 }

 .testimonial-author p {
     color: var(--gray);
     font-size: 0.9rem;
 }

 .testimonial-rating {
     color: var(--honey-gold);
     font-size: 1.2rem;
     margin-bottom: 1rem;
 }

 .testimonial-text {
     color: var(--gray);
     line-height: 1.8;
 }

 /* Checkout Section - Keep Original Widget */
 .checkout-section {
     padding: 6rem 2rem;
     background: white;
 }

 .checkout-container {
     max-width: 800px;
     margin: 0 auto;
 }

 .checkout-header {
     text-align: center;
     margin-bottom: 3rem;
 }

 .checkout-header h2 {
     font-size: 2.5rem;
     font-weight: 800;
     margin-bottom: 1rem;
 }

 .checkout-header p {
     font-size: 1.2rem;
     color: var(--gray);
 }

 .product-card {
     background: var(--light-gray);
     padding: 2.5rem;
     border-radius: 25px;
     margin-bottom: 2rem;
 }

 .product-info {
     display: flex;
     gap: 2rem;
     align-items: center;
     margin-bottom: 2rem;
 }

 .product-image {
     width: 150px;
     height: 150px;
     border-radius: 20px;
     object-fit: cover;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .product-details h3 {
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
 }

 .product-rating {
     color: var(--honey-gold);
     margin-bottom: 0.5rem;
 }

 .product-price {
     font-size: 2rem;
     font-weight: 800;
     color: var(--honey-gold);
 }

 .product-price-old {
     font-size: 1.2rem;
     color: var(--gray);
     text-decoration: line-through;
     margin-right: 1rem;
 }

 .product-form {
     margin-bottom: 2rem;
 }

 .quantity-selector {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 1rem;
     margin-bottom: 2rem;
 }

 .quantity-selector label {
     font-weight: 700;
     font-size: 1.1rem;
 }

 /* Salla Components Styling */
 .s-quantity-input-container {
     display: flex;
     border: 2px solid var(--honey-gold);
     border-radius: 50px;
     overflow: hidden;
     background: white;
 }

 .s-quantity-input-button {
     width: 45px;
     height: 45px;
     border: none;
     background: var(--honey-gold);
     color: var(--dark);
     cursor: pointer;
     font-weight: 700;
     font-size: 1.2rem;
     transition: all 0.3s;
 }

 .s-quantity-input-button:hover {
     background: var(--honey-dark);
     color: white;
 }

 .s-quantity-input-input {
     width: 80px;
     height: 45px;
     border: none;
     text-align: center;
     font-weight: 700;
     font-size: 1.1rem;
 }

 .payment-methods {
     text-align: center;
     margin-top: 2rem;
 }

 .payment-methods h4 {
     font-size: 1.1rem;
     margin-bottom: 1rem;
     color: var(--gray);
 }

 .s-payments-list {
     display: flex;
     justify-content: center;
     gap: 1rem;
     flex-wrap: wrap;
     list-style: none;
 }

 .s-payments-list-item {
     width: 70px;
     height: 70px;
     border: 2px solid var(--light-gray);
     border-radius: 15px;
     padding: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: white;
     transition: all 0.3s;
     cursor: pointer;
 }

 .s-payments-list-item:hover {
     border-color: var(--honey-gold);
     transform: translateY(-3px);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 .s-payments-list-item img {
     width: 100%;
     height: 100%;
     object-fit: contain;
 }

 /* Footer */
 .footer {
     background: var(--dark);
     color: white;
     padding: 3rem 2rem;
     text-align: center;
 }

 .footer-content {
     max-width: 1400px;
     margin: 0 auto;
 }

 .footer-logo {
     font-size: 2rem;
     font-weight: 800;
     color: var(--honey-gold);
     margin-bottom: 1rem;
 }

 .footer-text {
     color: rgba(255, 255, 255, 0.7);
     margin-bottom: 2rem;
 }

 .social-links {
     display: flex;
     justify-content: center;
     gap: 1.5rem;
     margin-bottom: 2rem;
 }

 .social-links a {
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     transition: all 0.3s;
 }

 .social-links a:hover {
     background: var(--honey-gold);
     color: var(--dark);
     transform: translateY(-3px);
 }

 /* Animations */
 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .animate-on-scroll {
     opacity: 0;
     animation: fadeInUp 0.8s forwards;
 }

 /* Responsive Design */

 /* Tablet (1024px and below) */
 @media (max-width: 1024px) {
     .nav-container {
         padding: 0 1.5rem;
     }

     .hero {
         grid-template-columns: 1fr;
         text-align: center;
         padding: 6rem 1.5rem 3rem;
         gap: 2rem;
     }

     .hero-content {
         padding: 1rem;
     }

     .hero-title {
         font-size: 3rem;
     }

     .hero-description {
         font-size: 1.1rem;
     }

     .hero-buttons {
         justify-content: center;
     }

     .hero-image {
         height: 450px;
     }

     .floating-badge {
         display: none;
     }

     .stats-container {
         grid-template-columns: repeat(2, 1fr);
         gap: 2rem;
     }

     .features-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 1.5rem;
     }

     .showcase-container {
         grid-template-columns: 1fr;
         gap: 3rem;
     }

     .testimonials-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 1.5rem;
     }

     .section-title {
         font-size: 2.5rem;
     }

     .feature-card {
         padding: 2rem;
     }
 }

 /* Mobile Large (768px and below) */
 @media (max-width: 768px) {
     .mobile-menu-toggle {
         display: flex;
     }

     .nav-links {
         position: fixed;
         top: 70px;
         right: -100%;
         width: 100%;
         max-width: 300px;
         height: calc(100vh - 70px);
         background: white;
         flex-direction: column;
         padding: 2rem;
         gap: 1.5rem;
         box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
         transition: right 0.3s;
         z-index: 999;
     }

     .nav-links.active {
         right: 0;
     }

     .nav-links a::after {
         display: none;
     }

     .cta-btn {
         padding: 0.7rem 1.5rem;
         font-size: 0.95rem;
     }

     .logo {
         font-size: 1.5rem;
     }

     .logo-icon {
         font-size: 1.7rem;
     }

     .hero {
         padding: 5rem 1rem 2rem;
         min-height: auto;
     }

     .hero-title {
         font-size: 2.5rem;
         line-height: 1.3;
     }

     .hero-description {
         font-size: 1rem;
         margin-bottom: 2rem;
     }

     .hero-image {
         height: 350px;
     }

     .btn-primary,
     .btn-secondary {
         padding: 1rem 2rem;
         font-size: 1rem;
         width: 100%;
         justify-content: center;
     }

     .hero-buttons {
         width: 100%;
     }

     .stats {
         padding: 3rem 1rem;
     }

     .stats-container {
         grid-template-columns: repeat(2, 1fr);
         gap: 1.5rem;
     }

     .stat-item {
         padding: 1rem;
     }

     .stat-number {
         font-size: 2.5rem;
     }

     .stat-label {
         font-size: 0.95rem;
     }

     .features {
         padding: 4rem 1rem;
     }

     .features-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }

     .feature-card {
         padding: 2rem;
     }

     .section-title {
         font-size: 2rem;
     }

     .section-description {
         font-size: 1rem;
     }

     .product-showcase {
         padding: 4rem 1rem;
     }

     .showcase-content h2 {
         font-size: 2rem;
     }

     .showcase-content p {
         font-size: 1rem;
     }

     .benefits-list li {
         font-size: 1rem;
     }

     .testimonials {
         padding: 4rem 1rem;
     }

     .testimonials-grid {
         grid-template-columns: 1fr;
     }

     .checkout-section {
         padding: 4rem 1rem;
     }

     .checkout-header h2 {
         font-size: 2rem;
     }

     .checkout-header p {
         font-size: 1rem;
     }

     .product-card {
         padding: 1.5rem;
     }

     .product-info {
         flex-direction: column;
         text-align: center;
         gap: 1rem;
     }

     .product-image {
         width: 120px;
         height: 120px;
     }

     .product-details h3 {
         font-size: 1.3rem;
     }

     .product-price {
         font-size: 1.7rem;
     }

     .footer {
         padding: 2rem 1rem;
     }
 }

 /* Mobile Small (480px and below) */
 @media (max-width: 480px) {
     .nav-container {
         padding: 0 1rem;
     }

     .logo {
         font-size: 1.3rem;
     }

     .logo-icon {
         font-size: 1.5rem;
     }

     .cta-btn {
         padding: 0.6rem 1.2rem;
         font-size: 0.9rem;
     }

     .hero {
         padding: 4rem 1rem 2rem;
     }

     .hero-badge {
         font-size: 0.85rem;
         padding: 0.4rem 1rem;
     }

     .hero-title {
         font-size: 2rem;
         margin-bottom: 1rem;
     }

     .hero-description {
         font-size: 0.95rem;
         margin-bottom: 1.5rem;
     }

     .hero-image {
         height: 300px;
     }

     .hero-image img {
         border-radius: 20px;
     }

     .btn-primary,
     .btn-secondary {
         padding: 0.9rem 1.5rem;
         font-size: 0.95rem;
     }

     .stats-container {
         grid-template-columns: 1fr;
         gap: 1rem;
     }

     .stat-item {
         padding: 0.8rem;
     }

     .stat-number {
         font-size: 2rem;
     }

     .stat-label {
         font-size: 0.9rem;
     }

     .section-badge {
         font-size: 0.85rem;
         padding: 0.4rem 1rem;
     }

     .section-title {
         font-size: 1.7rem;
         margin-bottom: 0.8rem;
     }

     .section-description {
         font-size: 0.95rem;
     }

     .feature-card {
         padding: 1.5rem;
     }

     .feature-icon {
         width: 60px;
         height: 60px;
         font-size: 2rem;
         border-radius: 15px;
         margin-bottom: 1rem;
     }

     .feature-title {
         font-size: 1.3rem;
     }

     .feature-description {
         font-size: 0.95rem;
     }

     .showcase-images {
         gap: 1rem;
     }

     .showcase-image img {
         height: 250px;
     }

     .showcase-image.large img {
         height: 300px;
     }

     .showcase-content h2 {
         font-size: 1.7rem;
     }

     .showcase-content p {
         font-size: 0.95rem;
         margin-bottom: 1.5rem;
     }

     .benefits-list li {
         font-size: 0.95rem;
         padding: 0.8rem 0;
     }

     .benefits-list li i {
         font-size: 1.3rem;
     }

     .testimonial-card {
         padding: 1.5rem;
     }

     .testimonial-avatar {
         width: 50px;
         height: 50px;
     }

     .testimonial-text {
         font-size: 0.95rem;
     }

     .checkout-header h2 {
         font-size: 1.7rem;
     }

     .checkout-header p {
         font-size: 0.95rem;
     }

     .product-card {
         padding: 1rem;
     }

     .product-image {
         width: 100px;
         height: 100px;
     }

     .product-details h3 {
         font-size: 1.1rem;
     }

     .product-price {
         font-size: 1.5rem;
     }

     .product-price-old {
         font-size: 1rem;
     }

     .quantity-selector {
         flex-direction: column;
         gap: 0.5rem;
     }

     .s-payments-list-item {
         width: 60px;
         height: 60px;
     }

     .footer-logo {
         font-size: 1.7rem;
     }

     .social-links a {
         width: 45px;
         height: 45px;
         font-size: 1.3rem;
     }
 }