/*!
Theme Name: aqua-patches
Theme URI: http://aqua-patches/
Author: aqua-patches
Author URI: http://aqua-patches/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: aqua-patches
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

aqua-patches is based on aqua-patches https://aqua-patches/, (C) 2012-2020 Automattic, Inc.
aqua-patches is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

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

body {
  font-family: "Calibri", "Roboto", Arial, serif;
  background-color: #f7f8fa;
}


/* compute height dynamically via JS below */
:root { --nav-h: 0px; }

.max-container{
  max-width: min(65vw, 1300px); 
  margin: 0 auto;
  width: 100%;
}
.navbar-bg{
  background-color: #171719;
  z-index: 9999;
}

.top-header{
  background-color: #f2f2f2;
  padding: 5px 0;
  color: #333;
}
.sign-in img{
  width: 40px;
}
.top-header-inside{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tel-and-email{
  display: flex;
  gap: 14px;
}
.tel{
  display: flex;
  align-items: center;
  gap: 14px;
}
.tel a{
  text-decoration: none;
  color: #333;
}
.inner-top{
  display: flex;
  align-items: center;
  gap: 5px;
}
.sign-in{
  display: flex;
  align-items: center;
  gap: 15px;
}
/* default (not scrolled) */
.navbar{
  position: relative;              /* normal flow initially */
  z-index: 1000;
  transition: box-shadow .3s ease, background-color .3s ease, transform .2s ease;
  /* padding: 10px max(calc(57% - 666px), 1.5vw); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

/* when scrolled: fix to top */
/* stick the whole header */
.site-header.is-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

/* offset the page by header height */
body.has-fixed-header {
  padding-top: var(--header-h);
}


.logo a img {
  width: 84px;
}
/* Cart Icon with Count Badge */
.cart-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cart-icon-wrapper:hover {
    transform: scale(1.1);
}

.cart-icon-wrapper i {
    font-size: 18px;
    color: #333;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ff5722;
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease;
}

.cart-count.hidden {
    display: none;
}

.cart-count.updated {
    animation: bounce 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* Make cart clickable */
.cart-icon-wrapper {
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cart-count {
        top: -6px;
        right: -8px;
        min-width: 16px;
        height: 16px;
        font-size: 10px;
    }
}

.logo a img {
  width: 210px;
}

.cart-btn {
  display: none;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  z-index: 1001;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  z-index: 1001;
}



.nav-menu {
  display: flex;
  list-style: none;
  gap: 38px;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  display: block;
  transition: 0.1s ease-in-out;
}

.nav-menu li a:hover {
  color: #d4af37;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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


/* Mobile Menu Styles - Bottom Slide */
.mobile-menu {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 80vh;
  background-color: #fff;
  z-index: 999;
  transition: bottom 0.4s ease;
  overflow: hidden;
  /* border-radius: 20px 20px 0 0; */
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu a {
  color: #333 !important;
  text-decoration: none !important;
}

.mobile-menu.active {
  bottom: 0;
}

/* Main menu content wrapper */
.mobile-menu-main-content {
  height: 100%;
  overflow-y: auto;
  position: relative;
  transition: opacity 0.2s ease;
}

/* Hide main menu content when submenu is active */
.mobile-menu.submenu-open .mobile-menu-main-content {
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}

.mobile-menu-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-back-btn {
  background: none;
  border: none;
  color: #333;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.mobile-close-btn {
  background: none;
  border: none;
  color: #333;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Mobile Menu Top Bar */
.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  border-bottom: 1px solid #e0e0e0;
  background: #f9f9f9;
}

.mobile-menu-currency {
  display: flex;
  gap: 15px;
  align-items: center;
}

.mobile-currency-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #666;
  text-decoration: none;
}

.mobile-currency-item img {
  width: 20px;
  height: 15px;
  object-fit: contain;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#mainMobileMenu > li {
  border-bottom: 1px solid #e0e0e0;
}

#mainMobileMenu > li > a,
#mainMobileMenu > li > button.mobile-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  color: #333 !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

#mainMobileMenu > li > a:hover,
#mainMobileMenu > li > button.mobile-menu-item:hover {
  background-color: #f5f5f5;
  color: #333 !important;
}

#mainMobileMenu > li > button.mobile-menu-item i {
  color: #999;
  font-size: 16px;
}

/* Mobile Submenu Styles */
.mobile-submenu-container {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 10;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-submenu-container.active {
  left: 0;
}

/* Hide main menu content when submenu is active */
.mobile-menu.submenu-open > ul,
.mobile-menu.submenu-open > .mobile-menu-top,
.mobile-menu.submenu-open > .mobile-menu-bottom {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mobile-submenu-content {
  padding: 0;
  height: calc(100% - 61px);
  overflow-y: auto;
}

.mobile-submenu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-submenu-content li {
  border-bottom: 1px solid #e0e0e0;
}

.mobile-submenu-content li a,
.mobile-submenu-content li button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: background-color 0.3s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.mobile-submenu-content li a:hover,
.mobile-submenu-content li button:hover {
  background-color: #f5f5f5;
}

.mobile-submenu-content li a i,
.mobile-submenu-content li button i {
  color: #999;
  font-size: 14px;
}

/* Mobile Menu Bottom */
.mobile-menu-bottom {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
  margin-top: auto;
}

.mobile-menu-bottom a {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: #fff;
  color: #025fc7;
  text-decoration: none;
  border: 2px solid #025fc7;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

/* Mega Menu Styles */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 54%;
  transform: translateX(-50%);
  background-color: #f5f5f5;
  min-width: 900px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 15px;
  display: flex;
  gap: 40px;
}

.nav-menu li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.mega-menu-content {
  flex: 1;
}

.mega-menu-header h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.mega-menu-header p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.mega-menu-categories {
  flex: 0 0 450px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.category-item {
  text-align: center;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.category-image {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 10px;
  filter: brightness(1.2) contrast(1.2);
}

.category-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

/* Loading State */
.loading {
  text-align: center;
  padding: 20px;
  color: #666;
}

/* Mobile Patches Grid */
.mobile-submenu-description {
  padding: 20px 25px 15px;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-submenu-description p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.mobile-patches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 20px 25px;
}

.mobile-patch-item {
  text-align: center;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid #e0e0e0;
}

.mobile-patch-item:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.mobile-patch-item img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 5px;
}

.mobile-patch-item h4 {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

.no-patches-message {
  text-align: center;
  padding: 40px 25px;
  color: #999;
  font-size: 14px;
}

/* Hide submenu toggle for desktop */
@media (min-width: 769px) {
  .mobile-menu-item,
  .mobile-submenu-container {
    display: none !important;
  }
}


.newsletter-section {
  grid-column: span 1;
}

.newsletter-section p {
  color: #ccc;
  font-size: 13px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  background: #3a3a3a;
  border: 1px solid #4a4a4a;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #888;
}

.newsletter-form button {
  padding: 12px 25px;
  background: #fff;
  color: #2a2a2a;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #e0e0e0;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  background: #3a3a3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #4a4a4a;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
.payment-icon_new{
      height: 2.75em;
    object-fit: contain;
    background: #1f1f23;
    border-radius: 0.15em;
}
.payment-icon_new img{
      height: auto;
    max-height: 100%;
    max-width: 100%;
    min-height: 100%;
    -o-object-fit: inherit;
    object-fit: inherit;
    -o-object-position: inherit;
    object-position: inherit;
    width: 100%;
}



.contact-info {
  margin-top: 20px;
}

.contact-info p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-info a {
  color: white;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 0;
}

.form-container {
  /* display: grid; */
  /* grid-template-columns: 1fr 600px; */
  display: flex;
  gap: 70px;
  align-items: start;
  padding: 0 30px;
}


/* Form Column */
.form-column {
  border-radius: 8px;
  backdrop-filter: blur(10px);
  width: 65%;
}

@media (max-width: 1024px) {
  .form-container {
      /* grid-template-columns: 1fr;
      gap: 20px; */
      flex-direction: column;
  }
  .summary-column{
    width: 100% !important;
  }
  .form-column {
    width: 100% !important;
  }

}
.section {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  background: white;
  transition: all 0.3s ease;
}

.section h3 {
  color: black;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  position: relative;
}
.top-heading{
  text-align: center;
  font-weight: 600 !important;  
  font-size: 18px !important;
}
.step-number {
  color: #0276cd;
  font-weight: 600;
}

.section.required h3::before {
  content: "* ";
  color: #0276cd;
  font-weight: 600;
}

.section p {
  color: #546e7a;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}

/* Summary Column */
.summary-column {
  position: sticky;
  top: 160px;
  width: 35%;
}

.summary-container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: -8px 0 10px -10px rgba(0, 0, 0, .25);
}

.summary-container h3 {
  margin-bottom: 25px;
  font-size: 1.4em;
  font-weight: 600;
}

#selection-summary {
  /* min-height: 200px; */
  margin-bottom: 25px;
}

.no-selection {
  color: #90a4ae;
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 8px;
  border: 1px dashed #9f9f9f;
  font-size: 1em;
}

.selection-item {
  margin-bottom: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.selection-item:hover {
  transform: translateY(-1px);
}

.selection-item h4 {
  color: #0276cd;
  font-size: 1em;
  margin-bottom: 8px;
  font-weight: 500;
}

.selection-item p {
  color: #546e7a;
  font-size: 0.95em;
  margin-bottom: 5px;
}

.selection-price {
  color: #4caf50;
  font-weight: 600;
  font-size: 1rem;
}

.price-summary {
  border-top: 1px solid #e1e1e1;
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.order-summary-badges {
  margin: 20px 0;
  display: flex;
  gap: 80px;
}

.total-price {
  text-align: center;
  font-size: 1.2em;
  color: black;
  font-weight: 600;
  padding: 15px;
  background: #f2f5f7;
  border-radius: 8px;
}

/* Form Actions */
.form-actions {
  text-align: center;
  padding: 30px 20px;
  /* border-top: 1px solid #ffede0; */
  margin-top: 40px;
}

/* Alerts */
.alert {
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 8px;
  font-weight: 500;
  border: 1px solid;
}

.alert-success {
  background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
  color: #2e7d32;
  border-color: #4caf50;
}

.alert-error {
  background: linear-gradient(135deg, #ffebee 0%, #fce4ec 100%);
  color: #c62828;
  border-color: #f44336;
}

.alert-info {
  background: linear-gradient(135deg, #ffede0 0%, #fffbf8 100%);
  color: #b83d00;
  border-color: #0276cd;
}

/* Loading states */
.loading {
  text-align: center;
  padding: 60px;
  color: #90a4ae;
  font-size: 1em;
}

.loading::after {
  content: "...";
  animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {

  0%,
  20% {
    content: ".";
  }

  40% {
    content: "..";
  }

  60%,
  100% {
    content: "...";
  }
}

/* Smooth animations */
* {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 1500px) {
   .max-container{
    max-width: 1300px !important;
    width: 100%;
  }

}

@media screen and (max-width: 950px) {
  .mobile-section {
    display: block;
  }
  .max-container{
   max-width: unset !important;
  }

  .navbar {
    padding: 30px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .cart-btn {
    display: inline-flex;
    align-items: center;
  }

  .nav-menu {
    display: none;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    /* ensure true centering */
  }

  .hamburger {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .cart-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}
/* Mega Menu Base Styles */
/* Mega Menu Base Styles */
.nav-menu {
    position: relative;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li.has-mega-menu > a::after {
    display: none;
}

/* Bridge gap between menu item and mega menu */
.nav-menu > li.has-mega-menu::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 20px;
    z-index: 9998;
}

/* Mega Menu Wrapper */
.mega-menu-wrapper {
    position: fixed;
    top: 8%;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    pointer-events: none;
    padding: 0;
}

.nav-menu > li:hover .mega-menu-wrapper,
.mega-menu-wrapper:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Base Mega Menu Styles */
.mega-menu {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    margin: 0 auto;
    padding: 30px;
    box-sizing: border-box;
    max-width: calc(100vw - 40px);
    width: 100%;
}

.about-mega-menu {
    max-width: min(1213px, calc(100vw - 40px));
}

.help-mega-menu {
    max-width: min(1150px, calc(100vw - 40px));
}

.design-mega-menu {
    max-width: min(1100px, calc(100vw - 40px));
}

.mega-menu-content {
    width: 100%;
    overflow: hidden;
}

.mega-menu-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.help-mega-menu .mega-menu-row {
    margin-bottom: 0;
}

.mega-menu-col {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.mega-menu-main {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.help-mega-menu .mega-menu-main {
    align-items: center;
    background: #f2f2f2;
    border: 1px solid #f2f2f2;
    min-height: 296px;
    /* padding: 20px; */
    border-radius: 8px;
}

.mega-menu-main img {
    width: 290px;
    max-width: 100%;
    height: 334px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.help-mega-menu .mega-menu-main img {
    max-width: 100%;
    height: 100%;
}

.mega-menu-text {
    max-width: 280px;
    flex: 1;
    min-width: 0;
}

.mega-menu-text h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mega-menu-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.features-list-mega-menu {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.features-list-mega-menu li {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
}

.mega-menu-btn {
    display: inline-block !important;
    padding: 10px 25px;
    background: transparent !important;
    color: #0061c8 !important;
    border: 2px solid #0061c8 !important;
    border-radius: 25px;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mega-menu-btn:hover {
    background: #0061c8 !important;
    color: #fff !important;
}

.mega-menu-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.blogs-area {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.sidebar-box {
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.sidebar-box:hover {
    transform: translateY(-5px);
}

.sidebar-box h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding: 15px;
    margin: 0;
    text-transform: uppercase;
}

.sidebar-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mega-menu-brands {
    padding-top: 10px;
}

.mega-menu-brands h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
/* 
.brand-logo:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
} */

.brand-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.help-mega-menu .mega-menu-sidebar > p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.chart-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
}

.chart-link {
    font-size: 14px;
    color: #ff6b35 !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.chart-link:hover {
    color: #e55a25 !important;
}

.mega-menu-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    border-top: 1px solid #e0e0e0;
}

.bottom-box {
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.bottom-box:hover {
    transform: translateY(-5px);
}

.bottom-box h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding: 15px;
    margin: 0;
}

.bottom-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.design-mega-menu .mega-menu-content h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.design-mega-menu .mega-menu-content > p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.design-items-grid {
    display: flex;
    align-items: center;
    gap: 20px;
}

.design-item {
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.design-item:hover {
    transform: translateY(-5px);
}

.design-item img {
    width: 80%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.design-item h4 {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

@media (max-width: 1399px) {
    .mega-menu {
        padding: 30px;
        max-width: calc(100vw - 30px);
    }
    
    .about-mega-menu {
        max-width: min(1100px, calc(100vw - 30px));
    }
    
    .help-mega-menu {
        max-width: min(1000px, calc(100vw - 30px));
    }
    
    .design-mega-menu {
        max-width: min(1000px, calc(100vw - 30px));
    }
}

@media (max-width: 1199px) {
    .mega-menu {
        padding: 25px;
        max-width: calc(100vw - 20px);
    }
    
    .mega-menu-row {
        gap: 20px;
    }
    
    .mega-menu-main {
        gap: 15px;
    }
    
    .mega-menu-main img {
        width: 200px;
        height: 240px;
    }
    
    .help-mega-menu .mega-menu-main img {
        width: 220px;
        height: 220px;
    }
    
    .design-items-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .mega-menu {
        padding: 20px;
    }
    
    .mega-menu-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .mega-menu-main {
        flex-direction: column;
    }
    
    .mega-menu-main img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .help-mega-menu .mega-menu-main img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .mega-menu-text {
        max-width: 100%;
    }
    
    .blogs-area {
        flex-direction: column;
    }
    
    .sidebar-box {
        min-width: 100%;
    }
    
    .mega-menu-bottom {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .design-items-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 767px) {
    .mega-menu-wrapper {
        display: none !important;
    }
    
    .mega-menu {
        display: none !important;
    }
    
    /* .tel-and-email, .sign-in p, .inner-top:nth-child(2){
      display: none;
    } */
     .tel-and-email, .inner-top:nth-child(2){
      display: none;
    }
    .hide-on-mob{
      display: none;
    }
    .top-header{
      padding: 4px 10px;
    }

   
}

body {
    overflow-x: hidden;
}

#page {
    overflow-x: hidden;
}

@media (max-width: 950px) {
  .nav-menu {
      display: none;
    }
}


/* ========================================
   FOOTER STYLES
   ======================================== */

.footer {
    background: #000;
    color: #fff;
    padding: 50px 20px 30px;
}

.footer-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER COLUMNS
   ======================================== */

.footer-column {
    flex: 1 1 250px;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: 0;
    text-transform: uppercase;
    color: #fff;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.footer-contact {
    flex: 1 1 280px;
    min-width: 250px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #e0e0e0;
}

.contact-info strong {
    color: #fff;
    font-weight: 600;
}

/* ========================================
   LINKS SECTION
   ======================================== */

.footer-links-column {
    flex: 1 1 300px;
    min-width: 250px;
}

.footer-links-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links-group-column {
    flex: 1 1 140px;
    min-width: 140px;
}

.footer-links-group {
    margin-bottom: 20px;
}

.footer-links-group h3 {
    margin-bottom: 15px;
}

.footer-links-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-group ul li {
    margin-bottom: 8px;
}

.footer-links-group ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links-group ul li a:hover {
    color: #fff;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */

.footer-newsletter {
    flex: 1 1 350px;
    min-width: 280px;
    max-width: 400px;
}

.footer-newsletter p {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.6;
    margin-top: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background: #3a3a3a;
    border: 1px solid #4a4a4a;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #fff;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    padding: 12px 25px;
    background: #fff;
    color: #2a2a2a;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #e0e0e0;
}

/* ========================================
   SOCIAL ICONS
   ======================================== */

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: #3a3a3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #fff;
    color: #000;
}

/* ========================================
   PAYMENT ICONS
   ======================================== */

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
}

.payment-icon {
    height: 38px;
    width: auto;
    background: #1f1f23;
    border-radius: 4px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon img {
    height: 100%;
    width: auto;
    max-width: 50px;
    object-fit: contain;
}

/* ========================================
   FOOTER LOCATIONS
   ======================================== */

.footer-locations {
    margin-top: 30px;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #888;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-locations p {
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-column {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .footer-contact {
        flex: 1 1 100%;
    }

    .footer-links-column {
        flex: 1 1 100%;
    }

    .footer-links-wrapper {
        gap: 20px;
    }

    .footer-links-group-column {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }

    .footer-newsletter {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .footer-column h3 {
        font-size: 15px;
        margin-bottom: 15px;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    .footer {
        padding: 30px 15px 20px;
    }

    .footer-container {
        gap: 25px;
    }

    .footer-links-group-column {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .payment-icons {
        gap: 6px;
    }

    .payment-icon {
        height: 32px;
        padding: 3px 6px;
    }

    .payment-icon img {
        max-width: 40px;
    }

    .footer-locations {
        font-size: 12px;
        padding: 15px 0;
    }

    .contact-info p {
        font-size: 13px;
    }

    .footer-links-group ul li a {
        font-size: 13px;
    }
}

/* Large Mobile - 600px and below */
@media (max-width: 600px) {
    .footer-column h3 {
        font-size: 14px;
    }

    .social-icons a {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }
}



.category-price {
    margin: 4px 0 8px;
    /* font-size: 0.95rem; */
    font-size: 14px;
    color: #555; /* base text color */
}

.category-price span.price-value {
    color: #0276cd;      /* orange price color */
    font-weight: 700;    /* bold for emphasis */
}
