/* ====================================
   PIXELPERFECT OVERRIDES - Figma -> Live
   Theme: somyh | Ovanap/Perkutelefona
   Figma File: gI6ZiXWdc2tQ4qqVEip2rI
   ==================================== */

/* ======== NEW 2-ROW HEADER ======== */

/* Row 1: Logo + Search + Phone */
.header-row-1 {
  background: #fff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.header-row-1.scrolled {
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header-row-1-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-row-1 .logo {
  flex-shrink: 0;
}

.header-row-1 .logo img {
  height: 36px;
  width: auto;
}

/* Search bar - Figma: 479x48, r:60, border #e8e8e8 */
.header-search {
  flex: 1;
  max-width: 479px;
}

.header-search-form {
  display: flex;
  align-items: center;
  border: 1px solid #e8e8e8;
  border-radius: 60px;
  padding: 4px 20px 4px 4px;
  background: #fff;
  height: 48px;
  transition: border-color 0.2s ease;
}

.header-search-form:focus-within {
  border-color: #f26739;
}

.header-search-btn {
  background: none;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.header-search-btn img {
  width: 18px;
  height: 18px;
  opacity: 0.5;
}

.header-search-input {
  border: none;
  outline: none;
  width: 100%;
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background: transparent;
}

.header-search-input::placeholder {
  color: #999;
}

/* Phone - Figma: icon + number */
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-phone-icon {
  width: 40px;
  height: 40px;
  background: #f26739;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-phone-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.header-phone-number {
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #191c1e;
  white-space: nowrap;
}

/* Row 2: Navigation + Icons */
.header-row-2 {
  background: #fff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 80px;
  z-index: 999;
}

.header-row-2-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-list > li {
  margin: 0;
}

.header-nav-list > li > a {
  display: block;
  padding: 18px 20px;
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.header-nav-list > li > a:hover,
.header-nav-list > li.current-menu-item > a {
  color: #f26739;
}

/* Bold for key items */
.header-nav-list > li:first-child > a {
  font-weight: 600;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-icon-search-mobile {
  display: none;
}

.header-icon-cart {
  position: relative;
  display: flex;
  align-items: center;
}

.header-icon-cart img {
  width: 24px;
  height: 24px;
}

.header-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #f26739;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 50px;
  line-height: 1;
  min-width: 16px;
  text-align: center;
}

/* Hamburger - hidden on desktop */
.header-icon-menu {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
}

.menu-btn-new span,
.menu-btn-new span::before,
.menu-btn-new span::after {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #000;
  display: block;
  left: 50%;
  margin-left: -12px;
  transition: all 0.3s ease;
}

.menu-btn-new span {
  top: 50%;
  margin-top: -1px;
}

.menu-btn-new span::before {
  content: '';
  top: -7px;
}

.menu-btn-new span::after {
  content: '';
  top: 7px;
}

.menu-btn-new.active-menu span {
  background: transparent;
}

.menu-btn-new.active-menu span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-btn-new.active-menu span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile nav dropdown */
.mobile-nav-dropdown {
  display: none;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: absolute;
  width: 100%;
  z-index: 998;
}

.mobile-nav-dropdown.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.mobile-nav-list li {
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-list li:last-child {
  border-bottom: none;
}

.mobile-nav-list li a {
  display: block;
  padding: 14px 0;
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.mobile-nav-list li a:hover {
  color: #f26739;
}

/* Mobile search */
#mobile-search-wrapper {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
}

.mobile-search-form {
  display: flex;
  align-items: center;
  border: 1px solid #e8e8e8;
  border-radius: 60px;
  padding: 4px 4px 4px 16px;
  height: 44px;
}

.mobile-search-input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  background: transparent;
}

.mobile-search-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.mobile-search-btn img {
  width: 18px;
  height: 18px;
}

/* Hide old header elements */
.headre_top,
.menu_top,
.menu_mob,
.cart-search-wrapper,
.search_icon,
#search-form-wrapper {
  /* These are replaced by new header structure */
}

/* ======== CATEGORY CARDS ======== */
.category-cards-section {
  padding: 40px 0;
  background: #fff;
}

.category-cards-grid {
  display: flex;
  gap: 21px;
  justify-content: center;
}

.category-card {
  width: 239px;
  min-height: 157px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.category-card:hover {
  background: #f26739;
  border-color: #f26739;
  box-shadow: 1px 1px 20px rgba(242, 103, 57, 0.3);
  transform: translateY(-2px);
}

.category-card:hover h3 {
  color: #fff;
}

.category-card:hover .category-card-icon {
  filter: brightness(0) invert(1);
}

.category-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: filter 0.3s ease;
}

.category-card-icon img {
  max-width: 50px;
  max-height: 50px;
}

.category-card h3 {
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-align: center;
  transition: color 0.3s ease;
  margin: 0;
}

/* ======== HERO SECTION ======== */
.top_info_block {
  background-color: #000;
  background-size: cover;
  background-position: center;
  padding: 40px 0 0 0;
}

.slider_center h1 {
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-top: 10px;
}

.slider_center p {
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin-top: 12px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Hero CTA Buttons - Figma: border-radius 100px */
.left_link {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-radius: 100px;
  background: #fff;
  color: #000;
  padding: 14px 28px;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.left_link:hover {
  background: transparent;
  color: #fff;
}

.right_link {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-radius: 100px;
  padding: 14px 28px;
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
  transition: all 0.3s ease;
}

.right_link:hover {
  background: #fff;
  color: #000;
}

.two_ink {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======== PRODUCT CARDS ======== */
.big_shop {
  background: #f5f5f5;
  padding: 40px 0 60px 0;
}

.produkt_show {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.produkt_show:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.category_produkt {
  font-size: 12px;
  color: #a3a3a3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.produkt_show h3 {
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
  margin-bottom: 10px;
  height: auto;
  min-height: 42px;
}

.produkt_show button,
.click_prodat {
  background: #f26739;
  border-radius: 9999px;
  border: none;
  padding: 10px 30px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  float: right;
  cursor: pointer;
  transition: background 0.3s ease;
}

.produkt_show button:hover,
.click_prodat:hover {
  background: #d85a2f;
}

/* ======== HOW IT WORKS ======== */
.info_block {
  margin: 60px 0;
}

.info_block_left img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  margin-right: 40px;
}

.info_block_right h2 {
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.list_block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  overflow: visible;
}

.list_block_number {
  width: 45px;
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f26739;
  font-size: 18px;
  font-weight: 600;
  line-height: 45px;
  text-align: center;
  color: #fff;
  float: none;
  flex-shrink: 0;
}

.list_block_text {
  width: auto;
  float: none;
  flex: 1;
}

.list_block_text h4 {
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* ======== BANNER ======== */
.slider_bloc_3 {
  background: #f26739;
  padding: 60px 0;
}

.slider_bloc_3_left h2 {
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-top: 15px;
}

.slider_bloc_3_left a {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 30px;
  transition: background 0.3s ease;
  width: auto;
  height: auto;
  line-height: 1;
}

.slider_bloc_3_left a:hover {
  background: #333;
  color: #fff;
}

/* ======== TRADE-IN BANNER ======== */
.big_slider_2 {
  margin: 0 0 60px 0;
}

.big_slider_2_fon {
  border-radius: 20px;
  padding: 80px 0;
}

.big_slider_2_center p {
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}

/* ======== TESTIMONIALS ======== */
.reiwe_block {
  margin: 60px 0;
}

.reiwe_block_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  overflow: visible;
}

.reiwe_block_title h2 {
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 30px;
  font-weight: 700;
  float: none;
}

.tov_google {
  float: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.start_rew_slider {
  background: #f5f5f5;
  padding: 24px 30px;
  border-radius: 20px;
}

.info_rev {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: visible;
}

.info_rev img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  float: none;
  margin-right: 0;
}

.name_stars {
  float: none;
}

.text_rev {
  margin-top: 15px;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

/* ======== NEWSLETTER ======== */
.full_subsc {
  background: #000;
  padding: 50px 0;
}

.subscr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}

.subscr_left h3 {
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.subscr_left p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.input_subscr {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 12px 20px;
  color: #fff;
  background: transparent;
}

.input_submin {
  background: #f26739;
  border: none;
  border-radius: 100px;
  padding: 12px 30px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.input_submin:hover {
  background: #d85a2f;
}

/* ======== FOOTER ======== */
.full_footer {
  background: #f26838;
  padding: 50px 0;
}

.top_footer_full h3 {
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.footer_right_menu1 a,
.footer_right_menu2 a,
.footer_right_menu3 a,
.footer_right_menu4 a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
}

.footer_right_menu1 a:hover,
.footer_right_menu2 a:hover,
.footer_right_menu3 a:hover,
.footer_right_menu4 a:hover {
  color: #fff;
}

.bottom_menu {
  background: #f26838;
  padding: 0 0 30px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.bottom_menu .rekviz,
.bottom_menu .copiryng {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* ======== MEGA MENU ======== */
header .big_menu {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.left_menu a {
  font-family: 'Poppins', Poppins-Regular, sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.right_menu li a {
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.right_menu li a:hover {
  background: #f26739;
  color: #fff;
}

/* ======== MOBILE RESPONSIVE ======== */
@media (max-width: 1279px) {
  /* Header mobile */
  .header-search {
    display: none;
  }
  
  .header-phone {
    display: none;
  }
  
  .header-icon-search-mobile {
    display: flex;
  }
  
  .header-icon-menu {
    display: flex;
  }
  
  .header-nav {
    display: none;
  }
  
  .header-row-2 {
    display: none;
  }
  
  .header-row-1-inner {
    justify-content: space-between;
  }
  
  .header-icons {
    gap: 12px;
  }
  
  /* Move icons to row 1 on mobile */
  .header-row-1 .header-icons-mobile {
    display: flex;
  }

  /* Category cards */
  .category-cards-grid {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .category-card {
    width: calc(50% - 6px);
    min-height: 120px;
  }

  /* Hero */
  .slider_center h1 {
    font-size: 32px;
  }
  
  .two_ink {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Sections */
  .info_block .conteiner {
    flex-direction: column;
  }
  
  .info_block_left,
  .info_block_right,
  .slider_bloc_3_left,
  .slider_bloc_3_right,
  .subscr_left,
  .subscr_right {
    width: 100%;
  }
  
  .info_block_left {
    margin-bottom: 30px;
  }
  
  .info_block_left img {
    margin-right: 0;
    max-width: 100%;
  }

  .slider_bloc_3 .conteiner {
    flex-direction: column;
    text-align: center;
  }
  
  .slider_bloc_3_left {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .slider_bloc_3_left h2 {
    font-size: 28px;
    text-align: center;
  }

  .subscr {
    flex-direction: column;
    text-align: center;
  }
  
  .subscr_left {
    float: none;
    margin-bottom: 20px;
  }

  .top_footer_full.full_flex {
    flex-direction: column;
    gap: 30px;
  }
  
  .reiwe_block_title {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .bottom_menu .conteiner {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .slider_center h1 {
    font-size: 26px;
  }

  .category-card h3 {
    font-size: 16px;
  }
  
  .category-card {
    min-height: 100px;
    padding: 15px;
  }

  .info_block_right h2 {
    font-size: 22px;
  }
  
  .slider_bloc_3_left h2 {
    font-size: 24px;
  }
  
  .reiwe_block_title h2 {
    font-size: 24px;
  }
}

@media (max-width: 440px) {
  .slider_center h1 {
    font-size: 22px;
  }
  
  .category-cards-grid {
    gap: 8px;
  }
  
  .category-card {
    min-height: 90px;
    padding: 12px;
  }
  
  .category-card-icon {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  
  .category-card h3 {
    font-size: 14px;
  }
  
  .produkt_show {
    padding: 15px;
  }
  
  .produkt_show button {
    padding: 8px 20px;
    font-size: 11px;
  }
}
