:root{
    --dark:#3C4350;
    --accent:#E27C33;
    --gray-l:#FBFBFB;
    --gray:#F4F4F4;
    --gray-d:#A6A6A6;
    --gray-sd:#7B7B7B;
    --text:#333;
}

a{
  color: black;
  text-decoration: none;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 14px;
}
body{
    font-family: "Inter",sans-serif;
    font-weight: 400;
    color: var(--text);
    min-width: 340px;
    
}
.container{
    width: 100%;
    max-width: 1320px;
    padding: 0 15px;
    
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.top-header{
    background: radial-gradient(circle at center,
    #1b2a3a 0%,
    #0f1a26 35%,
    #0a121c 60%,
    #05080d 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    align-content: center;
    height: 50px;
    
   
}
.top-header.container{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;

}
.top-header-top{
    display: flex;
    align-items: center;
    align-content: center;
    height: 100%;
}
.social-media{
    display: flex;
    align-items: center;
    align-content: center;
    padding-right: 35px;
    border-right: 1px solid #636973;
}
.top-header a{
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.main-account{
    display: flex;
    align-items: center;
    align-content: center;

}
.user-account{
    display: flex;
    align-items: center;
    align-content: center;
}
.social-media-1,
.social-media-2{
    padding-left: 35px;
    padding-right: 35px;
    border-right: 1px solid #636973;
}
.social-media-1-icon{
    margin-left: 15px;
}
.phone{
    display: flex;
    align-items: center;
}
.main-adresse{
    display: flex;
    align-items: center;
}
.phone-number{
    margin-right: 15px;
    margin-left: 15px;
}
.adresse-icon{
    margin-right: 15px;
    margin-left: 15px;

}
.user-account_icons{
    margin-right: 5px;
    margin-left: 15px;
}

.fast-search{
    display: flex;
    align-items: center;
    padding: 15px 35px;
    
    
}
.fast-search_input {
    display: flex;
    align-items: center;
    position: relative;
    
}
.fast-search_input input{
    

    
    width: 600px;
    
    height: 50px;
    background-color: var(--gray-l);
    border: 1px solid var(--gray);
    padding: 0 15px;
    
    border-radius: 5px;

}
.ml-action{
    display: flex;
    align-items: center;
    padding-left: 35px;
    gap: 30px;
}
.fast-search_icon{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
}
.main-menu-container{
    display: flex;
    align-items: stretch;
    height: 100%;
}
.main-menu{
    background-color: var(--gray);
    display: flex;
    align-items: stretch;
    height: 50px;
    
}
.main-menu ul{
    list-style: none;
}
.main-menu a{
    color: var(--text);
    text-decoration: none;
}
.main-menu-list{
    display: flex;
    align-content: stretch;
    
    
    
    
    height: 100%;
}
.main-menu-cat{
    position: relative;
    
}
.main-menu-cat-list{
    position: absolute;
    width: 100%;
    background-color: black;
    z-index: 2;
}

.main-menu-cat-list.hidden{
  display: none;
}

.list-cat-list-link{
    padding: 10px 15px;
    display: block;
    border-bottom: 1px solid #E2E2E2;
    opacity: 0.8;
    background-color: white;

}

.main-menu-cat-text{
    font-size:1.5rem;
}
.main-menu-cat-main{
    background-color: darkred;
    display: flex;
align-items: center;
    
    height: 100%;
    padding-left: 15px;
    padding-right: 113px;
    cursor: pointer;
    
    
}

.main-menu-cat-icon{
    margin-right: 15px;
}
.main-menu-item{
    border: 1px solid #E2E2E2;
    padding: 0 30px;
    display: flex;
    align-items: center;

}
.main-menu-link{
    font-size: 1.2rem;
  
}








.section-one {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 40px 20px;
    background-color: #fff;
    gap: 20px;
  }
  
  .category {
    text-align: center;
    max-width: 300px;
    flex: 1 1 300px;
  }
  
  .category img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .category h3 {
    font-size: 18px;
    margin-top: 15px;
    color: #333;
    font-weight: bold;
  }
  
  .shop-now {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
  }
  
  .shop-now:hover {
    border-bottom: 1px solid #666;
    color: #000;
  }
  
  /* Responsive pentru telefon */
  @media (max-width: 768px) {
    .section-one {
      flex-direction: column;
      align-items: center;
    }
  
  
    .category {
      width: 90%;
      max-width: 400px;
    }
  }
  .section-2 {
    background: #f8f8f8;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .section-2 .container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    gap: 40px;
  }
  
  .text-column {
    flex: 1 1 45%;
  }
  
  .text-column h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
  }
  
  .text-column h2 span {
    font-weight: bold;
  }
  
  .text-column p {
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .text-column .signature {
    font-family: 'Cursive', sans-serif;
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .contact-box {
    background-color: #000;
    color: #fff;
    padding: 20px;
    max-width: 250px;
    text-align: center;
  }
  
  .contact-box h4 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 1px;
  }
  
  .contact-box p {
    margin: 5px 0;
    font-size: 14px;
  }
  
  .image-column {
    flex: 1 1 45%;
  }
  
  .image-column img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .section-2 .container {
      flex-direction: column;
      text-align: center;
    }
  
    .text-column, .image-column {
      flex: 1 1 100%;
    }
  
    .contact-box {
      margin: auto;
    }
  }
  .section-4 {
    padding: 60px 20px;
    background: #f7f7f7;
    font-family: 'Arial', sans-serif;
  }
  
  .section-4 .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
  }
  
  /* LEFT SIDE */
  .left-column {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .left-column img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 4px;
  }
  
  .right-column h2 {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
  }
  
  .right-column .btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 12px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 14px;
    text-align: center;
    
  }
  
  
  
  .right-column {
    flex: 1 1 35%;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom right, #fffaf0, #f5e8e4);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
  
  .testimonial-box {
    background-color: #111;
    color: #fff;
    padding: 40px 30px;
    text-align: center;
    width: 100%;
  }
  
  
  
  .testimonial-box .quote {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
  }
  
  .testimonial-box .author {
    font-size: 12px;
    letter-spacing: 1px;
    color: #ccc;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .section-4 .container {
      flex-direction: column;
    }
   
  
    .left-column,
    .right-column {
      flex: 1 1 100%;
      text-align: center;
    }
  
    .left-column img {
      margin: 0 auto 20px;
    }
  }
  .section-6 {
    padding: 60px 20px;
    background-color: #fafafa;
    font-family: 'Arial', sans-serif;
    text-align: center;
    
  }
  
  
  .section-6 .title {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #333;
  }
  
  .products {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .product-card {
    flex: 1 1 22%;
    background: none;
    padding: 10px;
    text-align: center;
  }
  
  .product-card img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
  }
  
  .product-card h3 {
    font-size: 16px;
    color: #222;
    margin-bottom: 8px;
    height: 30px;
  }
  
  .product-card .price {
    font-size: 14px;
    color: #0b0000;
    margin-bottom: 12px;
    margin-top: 40px;
  }
  
  .product-card .add-to-cart {
    background: none;
    border: none;
    color: #222;
    letter-spacing: 2px;
    font-size: 12px;
    cursor: pointer;
    text-transform: uppercase;
  }
  
  .product-card .add-to-cart:hover {
    text-decoration: underline;
  }
  
  .more-products {
    margin-top: 40px;
  }
  
  .btn-more {
    
  
    display: inline-block;
    padding: 12px 24px;
    background: #c0392b;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-more:hover {
    background: #a93226;
}
  
  /* Responsive */
  @media (max-width: 992px) {
    .product-card {
      flex: 1 1 45%;
    }
  }
  
  @media (max-width: 600px) {
    .product-card {
      flex: 1 1 100%;
    }
  }
  .section-7 {
    background-color: #f2f2f2;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .section-7 .container {
    max-width: 1320px;
    margin: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .text-content {
    flex: 1 1 50%;
    color: #333;
  }
  
  .text-content h2 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  
  .text-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
  }
  
  .read-more {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #999;
    color: #333;
    text-decoration: none;
    
    letter-spacing: 2px;
    background: transparent;
    transition: 0.3s;
  }
  
  .read-more:hover {
    background: #000;
    color: #fff;
    border-color: #000;
  }
  
  .image-content {
    flex: 1 1 45%;
  }
  
  .image-content img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .section-7 .container {
      flex-direction: column;
      text-align: center;
    }
  
    .text-content, .image-content {
      flex: 1 1 100%;
    }
  
    .text-content h2 {
      font-size: 2.5rem;
    }
  }
  /* Section 9 - Instagram Follow */
.section-9 {
    padding: 60px 20px 30px;
    text-align: center;
    background-color: #f8f8f8;
  }
  
  .section-9 h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #333;
  }
  
  .section-9 h2 span {
    font-weight: bold;
    color: #000;
  }
  
  .btn-instagram {
    display: inline-block;
    background-color: #111;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    
    letter-spacing: 2px;
    transition: 0.3s;
  }
  
  .btn-instagram:hover {
    background-color: #000;
  }
  @media (max-width: 768px) {
  .section-9 h2 {
    font-size: 1.2rem;
  }

  .btn-instagram {
    font-size: 14px;
    padding: 8px 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
    display: inline-block;
  }

  .section-9 {
    padding: 40px 10px 20px;
  }

  .section-9 .container {
    max-width: 100%;
  }
}
  /* Section 10 - Image Gallery */
  .section-10 {
    padding: 0 20px 60px;
    background-color: #f8f8f8;
  }
  
  .image-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .image-gallery img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .image-gallery {
      justify-content: center;
    }
  
    .image-gallery img {
      width: 45%;
      height: auto;
    }
  
    .btn-instagram {
      padding: 10px 20px;
      
    }
  }
  /* Section 11 - Signup + Map */
.section-11 {
    background-color: #f7f7f7;
    padding: 60px 20px;
  }
  
  .section-11 .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .signup-box {
    background-color: #111;
    color: #fff;
    padding: 30px;
    flex: 1 1 45%;
  }
  
  .signup-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .signup-form input[type="email"] {
    padding: 12px;
    border: 1px solid #ccc;
    width: 100%;
  }
  
  .signup-form button {
    padding: 12px;
    background-color: #111;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
  }
  
  .signup-form .checkbox {
    
    color: #ccc;
  }
  
  .signup-form .checkbox input {
    margin-right: 5px;
  }
  
  .signup-form a {
    color: #fff;
    text-decoration: underline;
  }
  
  .map-box {
    flex: 1 1 45%;
  }
  
  /* Section 12 - Contact Info */
  .section-12 {
    background-color: #f2f2f2;
    padding: 40px 20px;
    text-align: center;
  }
  
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
  }
  
  .info-box {
    flex: 1 1 30%;
  }
  
  .info-box h4 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color:black;
    margin-bottom: 10px;
  }
  
  .info-box p {
    font-size: 14px;
    color: #222;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .section-11 .container,
    .contact-info {
      flex-direction: column;
      align-items: center;
    }
  
    .signup-box, .map-box, .info-box {
      width: 100%;
    }
  }.site-footer {
  background: radial-gradient(circle at center,
    #1b2a3a 0%,
    #0f1a26 35%,
    #0a121c 60%,
    #05080d 100%);
  color: #fff;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-column {
  margin-top: 5px;
  flex: 1 1 30%;
  min-width: 250px;
}

.footer-column h4 {
  

  font-size: 1.3rem;
  color: #fff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: #ccc;
  text-decoration: none;
  
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  
  color: #aaa;
}

.footer-bottom a {
  color: #bbb;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ✅ Responsive design */
@media (max-width: 1024px) {
  .footer-column {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .site-footer .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-column {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-links a,
  .footer-contact a {
    font-size: 1rem;
  }

  .footer-column h4 {
    font-size: 1.4rem;
  }

  .footer-bottom {
    
    padding: 10px;
  }
}
 
  
 
  /* Left Side: Signup Form */
  .left-box {
    background-color: #111;
    color: #fff;
    padding: 30px;
    flex: 1 1 45%;
  }
  
  .left-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .signup-form input[type="email"] {
    padding: 12px;
    border: 1px solid #ccc;
    width: 100%;
  }
  
  .signup-form button {
    padding: 12px;
    background-color: #111;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    text-transform: uppercase;
    
    letter-spacing: 2px;
  }
  
  .signup-form .checkbox {
    
    color: #ccc;
  }
  
  .signup-form a {
    color: #fff;
    text-decoration: underline;
  }
  
  
  .right-box {
    flex: 1 1 45%;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.right-box:hover {
    transform: translateY(-5px);
}

.right-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
}

.right-box p {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 20px;
}

.voucher-img {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.voucher-img img {
    max-width: 200px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.voucher-img button {
    background-color: #b30000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.voucher-img button:hover {
    background-color: #8c0000;
}
  
  /* Responsive */
  @media (max-width: 768px) {
    .section-5 .container {
      flex-direction: column;
    }
  
    .left-box, .right-box {
      flex: 1 1 100%;
      text-align: center;
    }
  }

  .hidden{
    display: none;
  }
 

.list-cat-list-link:hover {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
  
    transition: background 0.4s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6), 0 0 20px rgba(212, 175, 55, 0.4);
}
.main-menu-link:hover
 {
    color: gold;
    
    
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    z-index: 999;
    max-height: 300px;
    overflow-y: auto;
}
.search-results-dropdown a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
}
.search-results-dropdown a:hover {
    background-color: #f7f7f7;
}

.search-results-dropdown {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    z-index: 999;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.search-results-dropdown a {
    display: block;
    padding: 8px;
    border-bottom: 1px solid #eee;
    color: #000;
    text-decoration: none;
}
.search-results-dropdown a:hover {
    background-color: #f0f0f0;
}
.hidden {
    display: none;
}
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.product-card h3 {
    font-size: 16px;
    margin-top: 10px;
}

.product-card .price {
    font-weight: bold;
    margin-bottom: 10px;
}

.add-to-cart {
    padding: 8px 16px;
    background: #000;
    color: #fff;
    border: 1px solid white;
    border-radius: 4px;
    cursor: pointer;
}
.site-footer {
     background: radial-gradient(circle at center,
    #1b2a3a 0%,
    #0f1a26 35%,
    #0a121c 60%,
    #05080d 100%);
    color: #ccc;
    padding: 40px 20px 20px;
    font-size: 14px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #ccc;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #888;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 0;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 14px;
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: #ccc;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #ccc;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    font-weight: bold;
}









@media (max-width: 1024px) {
  .row {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}


 @media (max-width: 1024px) 
 { 

.product-grid { grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 768px)
 { 

.product-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 480px) { .product-grid { grid-template-columns: repeat(2, 1fr); }}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 1066px) {
  .header-desktop { display: none !important; }
  .header-mobile { display: block;margin: auto; }
  .middle-line{display: none;}
  .main-menu-container{display:none}
  
}

/* Ascunde mobil pe desktop */
@media (min-width: 1067px) {
  .header-mobile { display: none !important; }
}
@media (min-width: 1200px) {
  .header-mobile { display: none !important; }
}

/* Badge stil simplu */
.badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: red;
  color: white;
  font-size: 5px;
  border-radius: 50%;
  padding: 1px 2px;
  text-align: center;
}

/* Clasa ascuns */
.hidden {
  display: none !important;
}

.header-mobile a {
  color: black;
  text-decoration: none;
}
/* Stil pentru formularul de căutare */
.header-mobile .search-form {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    margin-top: -150px;
    justify-content: center; /* opțional, dacă vrei centrat */
}

.header-mobile .search-input {
    flex: 1;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
    max-width: 300px;
    background-color: white;
}

.header-mobile .search-button {
    padding: 6px 14px;
    background-color: darkred;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.middle-line{ background: radial-gradient(circle at center,
    #1b2a3a 0%,
    #0f1a26 35%,
    #0a121c 60%,
    #05080d 100%);
    margin-bottom: 30px;
    margin-top:30px;
    
}
.vezi-btn {
    font-size: 22px;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    background-color: red; /* sau culoarea dorită */
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.vezi-btn:hover {
    background-color: #444;
}

@media (max-width: 768px) {
    #reparatii-form {
        padding: 20px !important;
    }

    #reparatii-form input,
    #reparatii-form textarea,
    #reparatii-form button {
        font-size: 16px !important;
    }
}


.formular-section {
    background-image: url('/images/fundal-formular.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-circle{
    
    margin-right: 1px;
}
.logo-circle:hover {
    transform: scale(1.05); /* mic efect de zoom la hover */
}
:root {
  --nf-red: #c00000;
  --nf-red-600: #a80000;
  --nf-gold:linear-gradient(135deg,#faf6f0 0%,#ffffff 50%,#f1e3cf 100%)
  ;
  --nf-text: #1e1e1e;
  --nf-muted: #6b6b6b;
  --nf-radius: 14px;
  --nf-shadow: 0 6px 16px rgba(0,0,0,.08);
}

/* secțiune */
.nf-section {
  padding: 30px 16px;
}
.nf-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px; /* spațiu alb între coloane */
}
@media (min-width: 992px) {
  .nf-grid { grid-template-columns: 1fr 1fr; }
}

/* carduri stânga/dreapta cu fundal auriu */
.nf-left, .nf-right {
  background: var(--nf-gold);
  border-radius: var(--nf-radius);
  box-shadow: var(--nf-shadow);
  padding: 24px;
}

/* titluri */
.nf-h2, .nf-form-title {
  margin: 0 0 16px;
  font-size: clamp(20px,2.4vw,26px);
  color: var(--nf-text);
  font-weight: 800;
}

/* lista cu bife */
.nf-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nf-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 600;
  color: var(--nf-text);
}
.nf-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--nf-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

/* săgeată */
.nf-arrow {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.nf-arrow-line { background: var(--nf-red); border-radius: 3px; }
@keyframes nfPulse { 0%,100%{opacity:.6} 50%{opacity:1} }
/* desktop: dreapta */
@media (min-width: 992px) {
  .nf-arrow-line { width:120px; height:4px; animation:nfPulse 1.5s infinite; }
  .nf-arrow-head {
    border-top:10px solid transparent;
    border-bottom:10px solid transparent;
    border-left:16px solid var(--nf-red);
  }
}
/* mobil: jos */
@media (max-width: 991px) {
  .nf-arrow-line { width:4px; height:80px; animation:nfPulse 1.5s infinite; }
  .nf-arrow-head {
    border-left:none; border-right:none;
    border-top:16px solid var(--nf-red);
  }
}

/* câmpuri formular */
.nf-input, .nf-textarea, .nf-file {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
}
.nf-textarea { min-height: 110px; resize: vertical; }

/* butoane – mereu unul sub altul */
.nf-actions {
  display: flex;
  flex-direction: column; /* vertical, mereu */
  gap: 12px;
  margin-top: 14px;
}
.nf-btn {
  width: 100%;
  height: 50px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
}
.nf-btn-red {  background: radial-gradient(circle at center,
    #1b2a3a 0%,
    #0f1a26 35%,
    #0a121c 60%,
    #05080d 100%); color: #fff; border-color: black; }
.nf-btn-red:hover { background: var(--nf-red-600); }
.nf-btn-ghost { background: #fff; color:black; border-color: black; }
.nf-btn-ghost:hover { background: var(--nf-red); color: #fff; }

/* telefon sub buton */
.nf-phone-text { text-align: center; font-weight: 600; margin-top: 6px; }
.nf-phone-text a { color: black; text-decoration: none; }
.nf-phone-text a:hover { text-decoration: underline; }


.top-categorii {
  padding: 60px 20px;
  background: #fafafa;
}
.top-categorii .container {
  max-width: 1300px;
  margin: auto;
}
.categorie-box {
  margin-bottom: 60px;
  text-align: center;
}
.categorie-box h2 {
  font-size: 28px;
  color: #800000;
  margin-bottom: 10px;
}
.categorie-box p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}
.exemple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.exemplu-card {
  border: 1px solid #ddd;
  padding: 10px;
  background: #fff;
  transition: transform 0.2s ease;
}
.exemplu-card:hover {
  transform: scale(1.05);
}
.exemplu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.exemplu-card h4 {
  font-size: 15px;
  margin-top: 8px;
  color: #333;
}
.btn-more {
  display: inline-block;
  padding: 10px 20px;
  background: #800000;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}
.btn-more:hover {
  background: #a00000;
}

/* ==== Review-uri ==== */
.review-clienti {
  background: #fdfdfd;
  padding: 60px 20px;
}
.review-clienti h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #800000;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.review {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
  font-style: italic;
  position: relative;
}
.review span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #444;
}
.title-section {
  text-align: center;
  font-size: 34px;
  color: #800000;
  margin-bottom: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ====== Top Categorii ====== */
.top-categorii {
  padding: 70px 20px;
  background: #fafafa;
}

.categorie-box {
  margin-bottom: 60px;
  text-align: center;
}

.categorie-box h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #222;
}

.categorie-box p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
}

.exemple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.exemplu-card {
  border: 1px solid #ddd;
  padding: 12px;
  background: #fff;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exemplu-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.exemplu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

.exemplu-card h4 {
  font-size: 15px;
  margin-top: 10px;
  color: #333;
}

.btn-more {
  display: inline-block;
  padding: 12px 25px;
  background: #800000;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-more:hover {
  background: #a00000;
}

/* ====== Review-uri slider ====== */
.review-clienti {
  background: #fff;
  padding: 70px 20px;
  text-align: center;
}

.review-slider {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: auto;
}

.review-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review {
  min-width: 300px;
  max-width: 300px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 20px;
  margin: 0 10px;
  flex-shrink: 0;
}

.review .stars {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 10px;
}

.slide-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #800000;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 22px;
  border-radius: 50%;
}
.slide-btn.prev { left: 0; }
.slide-btn.next { right: 0; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .exemple {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .review { min-width: 260px; }
}

@media (max-width: 768px) {
  .title-section {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .exemplu-card img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .categorie-box h3 {
    font-size: 20px;
  }
  .exemplu-card img {
    height: 140px;
  }
  .review { min-width: 240px; }
}
.categorie-full {
  padding: 80px 20px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.categorie-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.categorie-content {
  flex: 1 1 55%;
}

.categorie-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #800000;
}

.categorie-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.categorie-content .btn-more {
  display: inline-block;
  margin-bottom: 30px;
  padding: 12px 24px;
  background: #800000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}
.categorie-content .btn-more:hover {
  background: #a00000;
}

.subcategorii {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.subcat-card {
  background: #fafafa;
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
  border-radius: 6px;
  transition: box-shadow 0.3s;
}
.subcat-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.subcat-card img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 4px;
}
.subcat-card h4 {
  margin: 10px 0;
  font-size: 14px;
  color: #333;
}

.categorie-image {
  flex: 1 1 40%;
  
}
.categorie-image1 {
  flex: 1 1 40%;
  
}
.categorie-image img {
  width: 100%;
  border-radius: 10px;
}
.categorie-image1 img {
  width: 100%;
  border-radius: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .categorie-flex {
    flex-direction: column;
    text-align: center;
  }
  .categorie-content { flex: 1 1 100%; }
  .categorie-image { flex: 1 1 100%; }
  .categorie-image1 { flex: 1 1 100%; }
  .subcategorii {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
.title-section {
    text-align: center;
    font-size: 2rem;
    margin: 40px 0;
    color: #222;
    font-weight: 600;
}

/* ===== CONTAINERE CATEGORII ===== */
.categorie-full {
    margin: 60px 0;
}

.categorie-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.categorie-content {
    flex: 1;
    min-width: 300px;
}

.categorie-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #222;
}

.categorie-content p {
    margin-bottom: 15px;
    color: #555;
}

.categorie-content .btn-more {
    display: inline-block;
    padding: 10px 20px;
    background: red; /* auriu */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s;
}

.categorie-content .btn-more:hover {
    background: #8b6508;
}

.categorie-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.categorie-image1 {
    flex: 1;
    min-width: 300px;
    text-align: center;
}
.categorie-image2 {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.categorie-image img {
    max-width: 100%;
    border-radius: 10px;
}
.categorie-image1 img {
    max-width: 100%;
    border-radius: 10px;
}

/* ===== PRODUSE ===== */
.subcategorii {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

/* ===== SCROLL ORIZONTAL PE MOBIL ===== */
.scroll-x {
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    padding-bottom: 10px;
}

.scroll-x::-webkit-scrollbar {
    height: 8px;
}

.scroll-x::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

/* ===== CARD PRODUS ===== */
.subcat-card {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
    transition: transform 0.2s ease-in-out;
}

.subcat-card:hover {
    transform: translateY(-5px);
}

.subcat-card img {
    max-width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 10px;
}

.subcat-card h4 {
    font-size: 0.95rem;
    color: #333;
}

/* ===== RESPONSIVITATE ===== */
@media(max-width: 768px) {
    .categorie-flex {
        flex-direction: column;
        text-align: center;
    }
    .categorie-image img {
        margin-top: 15px;
    }
}
.title-section {
    text-align: center;
    font-size: 2rem;
    margin: 40px 0;
    color: #222;
    font-weight: 600;
}

/* ===== CONTAINERE CATEGORII ===== */
.categorie-full {
    margin: 60px 0;
}

.categorie-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Fundal elegant pentru banere */
.banner-box {
    background: #f9f6f1; /* bej deschis */
    padding: 30px;
    border-radius: 10px;
}

.categorie-content {
    flex: 1;
    min-width: 300px;
}

.categorie-content h2 {
    font-size: 3.8rem;
    margin-bottom: 50px;
    color: #222;
}

.categorie-content p {
    margin-bottom: 15px;
    color: #555;
}

.categorie-content .btn-more {
    display: inline-block;
    padding: 10px 20px;
    background: red; /* auriu */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s;
}

.categorie-content .btn-more:hover {
    background: #8b6508;
}

/* ===== Banner imagine mai mic ===== */
.categorie-image img {
    max-height: 200px;  /* imagine ajustată */
    width: auto;
    object-fit: contain;
}
.categorie-image1 img {
    max-height: 200px;  /* imagine ajustată */
    width: auto;
    object-fit: contain;
}
.categorie-image2 img {
    max-height: 200px;  /* imagine ajustată */
    width: auto;
    object-fit: contain;
}
/* ===== Produse pe un singur rând ===== */
.row-products {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    overflow-x: auto; /* scroll orizontal */
    padding-bottom: 10px;
}

.row-products::-webkit-scrollbar {
    height: 6px;
}

.row-products::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

/* Card produs */
.subcat-card {
    flex: 0 0 auto; /* rămâne pe un rând */
    width: 180px;
    text-align: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
    transition: transform 0.2s ease-in-out;
}

.subcat-card:hover {
    transform: translateY(-5px);
}

.subcat-card img {
    max-width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 10px;
}

.subcat-card h4 {
    font-size: 0.95rem;
    color: #333;
}

/* ===== RESPONSIVITATE ===== */
@media(max-width: 768px) {
    .categorie-flex {
        flex-direction: column;
        text-align: center;
    }

    .categorie-image img {
        max-height: 150px;
        margin-top: 15px;
    }

    .subcat-card {
        width: 160px;
    }
    
}
@media (max-width: 496px) {
    .subcat-cardt img {
        object-fit: contain;
    }
    
}
.row-products {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* fix 6 coloane */
    gap: 20px;
    margin-top: 25px;
}

/* Card produs */
.subcat-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.subcat-card:hover {
    transform: translateY(-5px);
}

.subcat-card img {
    max-width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 10px;
}

.subcat-card h4 {
    font-size: 0.95rem;
    color: #333;
}

/* ===== Responsivitate ===== */
@media (max-width: 1024px) {
    .row-products {
        grid-template-columns: repeat(3, 1fr); /* tabletă: 3 pe rând */
    }
}

@media (max-width: 768px) {
    /* pe mobil trecem la scroll orizontal */
    .row-products {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 15px;
        padding-bottom: 10px;
    }

    .row-products::-webkit-scrollbar {
        height: 6px;
    }

    .row-products::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 5px;
    }

    .subcat-card {
        flex: 0 0 auto;
        width: 160px; /* fiecare card are lățime fixă */
    }
}
.scroll-x {
    display: flex;
    overflow-x: auto;      /* 🔹 scroll orizontal */
    flex-wrap: nowrap;     /* 🔹 nu se rup pe mai multe rânduri */
    gap: 15px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory; /* scroll magnetic */
}

.scroll-x::-webkit-scrollbar {
    height: 6px;
}
.scroll-x::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

/* Card produs */
.subcat-card {
    flex: 0 0 auto;       /* 🔹 fiecare card ocupă spațiu fix */
    width: 180px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    scroll-snap-align: start;
}

.subcat-card img {
    max-width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 10px;
}

.subcat-card h4 {
    font-size: 0.95rem;
    color: #333;
}

/* ===== Desktop ===== */
@media(min-width: 1024px) {
    .scroll-x {
        display: grid;
        grid-template-columns: repeat(6, 1fr); /* 🔹 fix 6 produse pe un rând */
        overflow-x: hidden; /* 🔹 ascundem scroll pe desktop */
    }
}
.scroll-x {
    display: flex;
    overflow-x: auto;       /* scroll orizontal */
    flex-wrap: nowrap;      /* un singur rând */
    gap: 15px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory; /* scroll magnetic */
}

.scroll-x::-webkit-scrollbar {
    height: 6px;
}
.scroll-x::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

/* Card produs - stil general */
.subcat-card {
    flex: 0 0 auto;
    width: 180px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    scroll-snap-align: start;
    transition: transform 0.2s ease-in-out;
}

.subcat-card:hover {
    transform: translateY(-5px);
}

.subcat-card img {
    max-width: 100%;
    height: 160px;
    object-fit: cover;
    margin-bottom: 10px;
}

.subcat-card h4 {
    font-size: 0.95rem;
    color: #333;
}

/* ===== Desktop ===== */
@media(min-width: 1024px) {
    .scroll-x {
        display: grid;
        grid-template-columns: repeat(6, 1fr); /* 6 produse pe un rând */
        overflow-x: hidden; /* ascundem scroll pe desktop */
    }

    .subcat-card {
        width: auto; /* ocupă toată celula din grid */
    }
}

/* ===== Mobil ===== */
@media(max-width: 768px) {
    .subcat-card {
        width: 70%;  /* fiecare card ocupă ~70% din lățimea ecranului */
        margin-right: 10px;
    }
}
.review-title {
    text-align: center;
    margin-bottom: 30px;
}

.review-title h2 {
    font-size: 2rem;
    color: #222;
    font-weight: 600;
    margin-bottom: 10px;
}

.review-title .stars {
    font-size: 22px;
    color: #b8860b; /* auriu */
}

/* Slider container */
.review-slider {
    overflow: hidden;
}

/* Track */
.review-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
}

.review-track::-webkit-scrollbar {
    height: 6px;
}
.review-track::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

/* Card review */
.review {
    flex: 0 0 auto;
    width: 300px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.review .stars {
    color: #b8860b;
    font-size: 18px;
    margin-bottom: 10px;
}

.review p {
    font-style: italic;
    margin-bottom: 10px;
    color: #444;
}

.review span {
    font-weight: bold;
    color: #222;
}

/* Responsivitate */
@media (min-width: 1024px) {
    .review { width: 300px; }
}
@media (max-width: 1024px) and (min-width: 769px) {
    .review { width: 45%; }
}
@media (max-width: 768px) {
    .review { width: 80%; }
}

.categorie-image {
    width: 100%;
    height: 400px; /* ajustezi cât de mare vrei bannerul */
    background-image: url("/images/inel.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px; /* opțional */
}
.categorie-image1 {
    width: 100%;
    height: 400px; /* ajustezi cât de mare vrei bannerul */
    background-image: url("/images/verighete/verighete-245.jpeg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px; /* opțional */
}
.categorie-image2 {
    width: 100%;
    height: 400px; /* ajustezi cât de mare vrei bannerul */
    background-image: url("/images/set.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px; /* opțional */
}




.product-card  img {
     width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease-in-out;
}

.product-card1 img:hover {
    transform: scale(1.1);
}
  @media (max-width: 496px) {
    .product-card img {
        object-fit: cover;
    }
.diamond-video {
  width: 100%;
  height: auto;
  max-width: 600px; /* poți regla dimensiunea maximă */
  border-radius: 10px;
  display: block;
  margin: 0 auto; /* centrează video */
  object-fit: cover;
}

/* Pe ecrane mici, îl micșorăm și mai mult */
@media (max-width: 768px) {
  .diamond-video {
    max-width: 90%;
    height: auto;
  }
}


.whatsapp_btn {
  background-color: darkblue !important; /* verde oficial WhatsApp */
  color: #fff;
}





/* ===== NOBLIS HERO SLIDER (nj-*) ===== */

.nj-hero{
  width: 100%;
  margin: 0;
  padding: 0;
}

/* IMPORTANT: folosește vh sigur pentru mobile */
.nj-slider{
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
  background: #070a12;
}

.nj-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms ease, transform 1200ms ease;
}

.nj-slide.is-active{
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.nj-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.38) 45%,
    rgba(0,0,0,0.10) 100%);
  z-index: 1;
}

.nj-content{
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 0 24px;
  margin-left: clamp(16px, 6vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.nj-kicker{
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
}

.nj-title{
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 500;
  margin: 12px 0;
}

.nj-text{
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.92;
  max-width: 560px;
}

.nj-actions{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.nj-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nj-btn-primary{
  background: rgba(120, 20, 30, 0.95);
  color: #fff;
}

.nj-btn-ghost{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
}

.nj-sub{
  margin-top: 14px;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Nav buttons */
.nj-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.nj-prev{ left: 14px; }
.nj-next{ right: 14px; }

/* Dots */
.nj-dots{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6;
}

.nj-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  cursor: pointer;
}

.nj-dot.is-active{
  background: rgba(255,255,255,0.85);
}

/* Mobile */
@media (max-width: 768px){
  .nj-slider{ height: 70vh; min-height: 520px; }
  .nj-content{ margin-left: 16px; margin-right: 16px; }
  .nj-nav{ display: none; } /* pe mobil doar dots */
}
/* ===== FIX DESKTOP: NOBLIS HERO (nj-*) ===== */

  /* ================= MOBILE (NU SCHIMBĂM) ================= */
.nj-slider{
  height: 70vh;
  min-height: 520px;
}

@media (max-width: 768px){
  .nj-nav{ display: none; }
}

/* ================= DESKTOP PREMIUM ================= */
@media (min-width: 769px){

  .nj-slider{
    height: 85vh;          /* FIX */
    min-height: 720px;
  }

  .nj-content{
    max-width: 820px;
    margin-left: 80px;     /* aer, lux */
  }

  .nj-title{
    font-size: 3.2rem;
    letter-spacing: 0.04em;
  }

  .nj-text{
    font-size: 1.15rem;
  }

  .nj-nav{
    display: flex;         /* săgeți DOAR pe desktop */
  }
}
/* =========================
   MOBIL (<=496px): slider OK
   ========================= */
@media (max-width: 496px){
  .nj-slider{ height: 70vh; min-height: 520px; }
  .nj-slide{ position: absolute; inset: 0; }
  .nj-dots{ display: flex; }  /* dacă le vrei pe mobil */
}


@media (min-width: 497px){

  .nj-slider{
    height: 520px;
    min-height: 520px;
    position: relative;
    overflow: hidden;
  }

  /* ascundem toate slide-urile */
  .nj-slider .nj-slide{
    display: none !important;
  }

  /* arătăm doar primul slide real */
  .nj-slider .nj-slide:first-of-type{
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* ascundem navigarea */
  .nj-dots, .nj-nav{
    display: none !important;
  }
}
     .graff-header {
    position: relative;
    font-family: 'Trajan Pro', 'Times New Roman', serif;
    color: #fff;
    
}
/* ===== HERO IMAGE ONLY ===== */
.hero-image{
    position: relative;
    width: 100%;
    height: 88vh;        /* desktop */
    min-height: 520px;
    overflow: hidden;
    background: #050a14;
}

.hero-image-img{
    width: 100%;
    height: 100%;
    object-fit: cover;          /* CHEIA */
    object-position: center  ;    /* NU se rupe */
    display: block;
}

/* ===== MOBILE ===== */
@media (max-width: 768px){
    .hero-image{
        height: 62vh;
        min-height: 420px;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 420px){
    .hero-image{
        height: 55vh;
    }
}
@media (min-width: 441px){
    .hero-image{
        height: 100vh;
    }
}
@media (min-width: 500px){
    .hero-image{
        height: 100vh;
        
    }
    .hero-image-img{
        object-position: center bottom;
    }
}
@media (min-width: 550px){
    .hero-image{
        height: 65vh;
        
    }
    .hero-image-img{
        object-position: center 82%;
        object-fit: cover;
    }
}
@media (min-width: 768px){
    .hero-image{
        height: 100vh;
        
    }
    .hero-image-img{
        object-position: 50% 75%;
        object-fit: cover;
    }
}

.graff-hero--split{
    min-height: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #05080d;
    overflow: hidden;
}

.graff-hero-top{
    position: relative;
    z-index: 3;
    padding: 90px 24px 28px;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.graff-title{
    font-size: clamp(22px, 3.2vw, 44px);
    line-height: 1.15;
    letter-spacing:  .4px;
    margin: 10px 0 12px;
    
}
/* ===== HERO ===== */
.graff-hero {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}/* ===== HEADER SLIDER ===== */
.header-carousel__slide {
    width: 100%;
    min-height: 100vh;              /* desktop full hero */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* ===== DESKTOP ===== */
@media (min-width: 1024px) {
    .header-carousel__slide {
        min-height: 70vh;           /* Gff style – nu chiar 100% */
        background-position: center ;
    }
}

/* ===== TABLET ===== */
@media (max-width: 1023px) {
    .header-carousel__slide {
        min-height: 70vh;
        background-position: center ;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .header-carousel__slide {
        min-height: 60vh;
        background-position: center top; /* ca sa nu taie produsul */
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    .header-carousel__slide {
        min-height: 55vh;
    }
}

.graff-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* IMPORTANT: NU TĂIEM IMAGINEA */
    display: block;
    object-position: center 25%;

    
    
    
}

.graff-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, #1b2a3a 0%, #0f1a26 45%, #05080d 100%);
    opacity: .55;
}

.graff-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.graff-eyebrow {
    letter-spacing: 3px;
    font-size: 18px;
    color: rgba(255,255,255,.7);
    margin-bottom: 16px;
    
}

.graff-hero-content h1 {
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.2;
}

.graff-hero-content h1 strong {
    font-weight: 600;
}

.graff-hero-actions {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.graff-btn-primary,
.graff-btn-secondary {
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .4px;
}

.graff-btn-primary {
    background: #fff;
    color: #000;
}

.graff-btn-secondary {
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
}

/* ===== NAV ===== */
.graff-topbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
    font-size: 12px;
    background: rgba(0,0,0,.35);
}

.graff-container {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
}

.graff-nav {
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 3;
}

.graff-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.graff-logo img {
    width: 180px;
    height: 100px;
}

.graff-menu {
    display: flex;
    gap: 22px;
}

.graff-menu a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: 13px;
}

/* ===== BURGER ===== */
.graff-burger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
}

.graff-burger span {
    width: 22px;
    height: 2px;
    background: #fff;
}

/* ===== MOBILE ===== */
.graff-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #05080d;
    z-index: 10;
    padding: 80px 24px;
}

.graff-mobile-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 16px 0;
    font-size: 18px;
}

@media (max-width: 900px) {
    .graff-menu { display: none; }
    .graff-burger { display: flex; }
    .header-mobile{display: none};
}
.graff-subtitle{
  margin: 0 0 18px;
  color: rgba(255,255,255,.80);
  font-size: 15px;
}

/* BOTTOM (imagine) */
.graff-hero-bottom{
  position: relative;
  width: 100%;
  
 
      /* important: să existe zonă de imagine */
  overflow: hidden;
  
}



.graff-hero-overlay{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #1b2a3a 0%, #0f1a26 45%, #05080d 100%);
  opacity: .55;     
  pointer-events: none;
}

/* Mobile tuning */
@media (max-width: 600px){
  .graff-hero-top{ padding-top: 78px; }
  .graff-hero-bottom{ min-height: 46vh; }
}
.graff-header {
    position: relative;
    font-family: 'Trajan Pro', 'Times New Roman', serif;
    color: #fff;
}

/* ===== HERO ===== */
.graff-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.graff-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* IMPORTANT: NU TĂIEM IMAGINEA */
    background: #05080d;
    object-position: center bottom;
    display: block;
}

.graff-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, #1b2a3a 0%, #0f1a26 45%, #05080d 100%);
    opacity: .55;
}

.graff-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.graff-eyebrow {
    letter-spacing: 3px;
    font-size: 12px;
    color: rgba(255,255,255,.7);
    margin-bottom: 16px;
}

.graff-hero-content h1 {
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.2;
}

.graff-hero-content h1 strong {
    font-weight: 600;
}

.graff-hero-actions {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.graff-btn-primary,
.graff-btn-secondary {
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .4px;
}

.graff-btn-primary {
    background: #fff;
    color: #000;
}

.graff-btn-secondary {
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
}

/* ===== NAV ===== */
.graff-topbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
    font-size: 12px;
    background: rgba(0,0,0,.35);
}

.graff-container {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
}

.graff-nav {
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 3;
}

.graff-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.graff-logo img {
    width: 140px;
}

.graff-menu {
    display: flex;
    gap: 22px;
}

.graff-menu a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: 13px;
}

/* ===== BURGER ===== */
.graff-burger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
}

.graff-burger span {
    width: 22px;
    height: 2px;
    background: #fff;
}

/* ===== MOBILE ===== */
.graff-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #05080d;
    z-index: 10;
    padding: 80px 24px;
}

.graff-mobile-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 16px 0;
    font-size: 18px;
}

@media (max-width: 900px) {
    .graff-menu { display: none; }
    .graff-burger { display: flex; }
}

:root{
  --bg:#fff;
  --ink:#0b0f1a;
  --muted:rgba(11,15,26,.62);
  --line:rgba(11,15,26,.10);
  --soft:rgba(11,15,26,.04);
  --shadow:0 18px 50px rgba(11,15,26,.10);
  --max:1180px;
  --radius:18px;
}

.categories{
  background:var(--bg);
  color:var(--ink);
  padding:64px 0 72px;
}

.cat-wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

.cat-title{
  text-align:center;
  margin:0 0 34px;
  font-size:34px;
  letter-spacing:.28em;
  font-weight:500;
}

/* Layout grid like the photo: left / center / right */
.cat-grid{
  display:grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap:26px;
  align-items:center;
}

/* Columns */
.cat-col{
  display:grid;
  gap:26px;
}

/* Single category item */
.cat-item{
  display:grid;
  place-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
  padding:14px 10px;
  border-radius:16px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  border:1px solid transparent;
}

.cat-item:hover{
  transform: translateY(-2px);
  background:var(--soft);
  border-color:var(--line);
}

/* Icon box */
.cat-icon{
  width:180px;
  height:110px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(11,15,26,.02), rgba(11,15,26,.00));
  box-shadow: 0 10px 28px rgba(11,15,26,.06);
  overflow:hidden;
}

.cat-icon img{
  max-width:92%;
  max-height:92%;
  object-fit:contain;
  opacity:.92;
  filter: grayscale(100%);
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}

.cat-item:hover .cat-icon img{
  filter: grayscale(30%);
  opacity:1;
  transform: scale(1.02);
}

.cat-label{
  font-size:14px;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:rgba(11,15,26,.75);
}

/* Center photo */
.cat-center{
  position:relative;
  display:block;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
  background:#fff;
  transform: translateY(6px);
}

.cat-center-img{
  width:100%;
  height:460px;
  object-fit:cover;
  object-position:center;
  display:block;
  transition: transform .35s ease;
}

.cat-center:hover .cat-center-img{
  transform: scale(1.03);
}

/* Subtle frame like luxury */
.cat-center-frame{
  position:absolute;
  inset:14px;
  border:1px solid rgba(255,255,255,.55);
  pointer-events:none;
  border-radius:14px;
}

/* ====== Responsive ====== */

/* Laptop / small desktop */
@media (max-width: 1100px){
  .cat-icon{ width:160px; height:102px; }
  .cat-center-img{ height:420px; }
  .cat-title{ font-size:30px; }
}

/* Tablet */
@media (max-width: 900px){
  .cat-grid{
    grid-template-columns: 1fr;
    gap:18px;
  }

  .cat-center{
    order:1;
    transform:none;
  }

  .cat-col--left{ order:2; }
  .cat-col--right{ order:3; }

  .cat-col{
    grid-template-columns: 1fr 1fr;
    gap:16px;
  }

  .cat-icon{
    width:100%;
    height:110px;
  }

  .cat-center-img{
    height:360px;
  }
}

/* Mobile */
@media (max-width: 520px){
  .categories{ padding:46px 0 56px; }
  .cat-title{ font-size:24px; letter-spacing:.22em; margin-bottom:22px; }

  .cat-col{
    grid-template-columns: 1fr;
    gap:12px;
  }

  .cat-item{ padding:12px 10px; }
  .cat-icon{ height:104px; }
  .cat-center-img{ height:280px; }
  .cat-label{ font-size:13px; letter-spacing:.24em; }
}
.graff-hero--compact{
  background: transparent !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 14px 0 10px !important;
}

/* dacă ai overlay / pseudo-element care face negru */
.graff-hero--compact::before,
.graff-hero--compact::after{
  display:none !important;
}

/* doar ca siguranță */
.graff-hero--compact .hero-image{
  display:none !important;
}

/* opțional: ca să arate premium pe alb */
.graff-hero--compact .graff-eyebrow{
  color:#111 !important;
}

.graff-hero--compact .graff-btn-primary,
.graff-hero--compact .graff-btn-secondary{
  border-color: rgba(0,0,0,.25) !important;
  color:#111 !important;
  background: transparent !important;
}


