.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-f2a15aa *//* --- HEADER BASE --- */
.site-header {
  width: 100%;
  position: relative;
  background: transparent;
  font-family: inherit;
  margin: 0;
  padding: 0;
}

.header-container {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 4px; /* Minimal padding so items touch the very edges of Elementor's box */
  box-sizing: border-box !important;
}

/* --- 1. LOGO STYLES (FORCED TO FILL EMPTY LEFT SPACE) --- */
.header-logo {
  flex: 1; /* This forces the left zone to take up all empty space */
  display: flex;
  justify-content: flex-start; /* Pushes the logo to the absolute left corner */
}
.header-logo a {
  text-decoration: none;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Ensures SARGODHA aligns left directly under AT BRAND */
}
.brand-name {
  font-size: 32px;
  font-weight: bold;
  font-family: serif; 
  letter-spacing: 2px;
  line-height: 1;
  white-space: nowrap; 
}
.logo-subtitle {
  font-size: 11px;
  color: #c9a063;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 5px;
  font-family: sans-serif;
  font-weight: normal;
  white-space: nowrap;
}

/* --- 2. DESKTOP NAV (PERFECTLY CENTERED NO WRAPPING) --- */
.desktop-nav {
  flex: 0 0 auto; /* Ensures it stays dead center, balancing the left and right */
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.desktop-nav a {
  text-decoration: none;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  white-space: nowrap !important;
}
.desktop-nav a:hover, 
.desktop-nav a.active { 
  color: #c9a063 !important; 
}

/* --- 3. ICONS & HAMBURGER (FORCED FULL RIGHT) --- */
.header-actions {
  flex: 1; /* Takes up the exact same amount of space as the logo zone on the left */
  display: flex;
  justify-content: flex-end; /* Pushes everything to the absolute right corner */
  align-items: center;
  gap: 15px; 
}

.header-icon, .menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* LIGHTER COLOR FIX: Changed from #000000 to a softer, lighter gray #666666 */
  color: #666666; 
  position: relative;
  transition: all 0.3s ease;
}
.header-icon {
  width: 26px;
  height: 26px;
}
.menu-toggle {
  width: 30px;
  height: 30px;
  margin-left: 5px; 
}

.header-icon svg, .menu-toggle svg { 
  width: 100%; 
  height: 100%; 
  fill: currentColor; 
}

.header-icon:hover, 
.menu-toggle:hover { 
  color: #c9a063 !important; 
}
.header-icon:hover svg, 
.menu-toggle:hover svg { 
  fill: #c9a063 !important; 
}

/* Cart Counter Bubble */
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #c9a063 !important; 
  color: #ffffff !important;
  font-size: 11px;
  font-weight: bold;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* --- RESPONSIVE BEHAVIOR --- */
@media (max-width: 1150px) {
  .desktop-nav { 
    display: none !important; 
  }
  .brand-name { font-size: 26px; }
  .logo-subtitle { font-size: 9px; letter-spacing: 4px; }
}

@media (max-width: 480px) {
  .header-actions { gap: 10px; }
  .brand-name { font-size: 22px; }
}

/* --- POP-UP SIDEBAR MENU (UNCHANGED) --- */
.sidebar-nav {
  position: fixed;
  top: 0;
  left: -320px; 
  width: 300px;
  height: 100vh;
  background: #ffffff;
  box-shadow: 4px 0 15px rgba(0,0,0,0.1);
  z-index: 9999;
  transition: left 0.3s ease-in-out;
  padding: 80px 30px 30px;
  display: flex;
  flex-direction: column;
}
.sidebar-nav ul { list-style: none; padding: 0; margin: 0; }
.sidebar-nav li { margin-bottom: 25px; }
.sidebar-nav a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s ease;
  letter-spacing: 1px;
}
.sidebar-nav a:hover, .sidebar-nav a.active { color: #c9a063 !important; }

.close-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #000000;
  transition: color 0.3s ease;
}
.close-menu:hover { color: #c9a063 !important; }

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.site-header.nav-open .sidebar-nav { left: 0; }
.site-header.nav-open .nav-overlay { opacity: 1; visibility: visible; }
/* --- TOP ANNOUNCEMENT BAR --- */
.top-announce-bar {
  background-color: #000000;
  color: #ffffff;
  padding: 8px 15px;
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important; 
  box-sizing: border-box;
  font-family: inherit;
}

.announce-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.announce-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Light Golden Accent for Top Icons */
.announce-item svg {
  width: 16px;
  height: 16px;
  fill: #c9a063; 
}

/* --- RESPONSIVE LOGIC FOR ANNOUNCEMENT BAR --- */

/* Tablet (Hides Returns, Shows 2 Items) */
@media (max-width: 1024px) {
  .hide-tab-mobile {
    display: none !important;
  }
  .announce-container {
    justify-content: space-around;
  }
}

/* Mobile (Hides Returns & Cash on Delivery, Shows 1 Item Centered) */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  .announce-container {
    justify-content: center;
  }
  .announce-item span {
    font-size: 10px; /* Slightly smaller for mobile */
  }
}/* End custom CSS */