:root {
  --yellow: #f5a800;
  --yellow-dark: #d89000;
  --black: #111111;
  --text: #222222;
  --muted: #666666;
  --soft: #fff7df;
  --border: #eeeeee;
  --white: #ffffff;
  --green: #25d366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* HEADER */

.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  min-width: 230px;
  color: var(--black);
  text-decoration: none;
  line-height: 1;
  display: inline-block;
}

.logo span,
.logo strong {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo strong {
  color: var(--yellow);
  margin-left: 6px;
}

.logo small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-left: auto;
  flex-wrap: nowrap;
}

.menu a {
  text-decoration: none;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: var(--yellow-dark);
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--yellow);
  color: var(--black);
  font-size: 26px;
  padding: 7px 13px;
  border-radius: 8px;
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.35)),
    url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  display: flex;
  align-items: center;
}

.hero-text {
  color: var(--white);
  max-width: 820px;
  background: rgba(0, 0, 0, 0.28);
  padding: 34px;
  border-radius: 24px;
}

.badge,
.section-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  padding: 8px 15px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-size: 14px;
}

.hero h1,
.coming-soon h1 {
  font-size: clamp(38px, 5.8vw, 74px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--white);
}

.hero p,
.coming-soon p {
  font-size: 20px;
  line-height: 1.65;
  max-width: 760px;
  color: #eeeeee;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.yellow {
  background: var(--yellow);
  color: var(--black);
}

.btn.yellow:hover {
  background: var(--yellow-dark);
}

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

.btn.dark:hover {
  background: #333333;
}

/* QUICK CONTACT */

.quick-contact {
  background: var(--yellow);
  padding: 22px 0;
}

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

.quick-grid a {
  background: var(--white);
  padding: 17px;
  border-radius: 12px;
  color: var(--black);
  text-decoration: none;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* GENERAL SECTIONS */

section {
  padding: 80px 0;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 22px;
  color: var(--black);
}

h3 {
  margin-top: 0;
  color: var(--black);
}

p {
  line-height: 1.75;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.info-card,
.contact-form-card,
.online-sale-box {
  background: var(--yellow);
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-card {
  background: var(--soft);
}

.info-card p,
.online-sale-box p {
  color: #333333;
}

/* WHY */

.why {
  background: var(--soft);
}

.why-grid,
.product-grid,
.gallery-grid,
.brand-grid {
  display: grid;
  gap: 18px;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.why-grid div,
.product-grid div,
.brand-grid span {
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

/* PRODUCTS */

.products{
    padding:90px 0;
    background:#fff;
    overflow:hidden;
}

.product-slider{
    width:100%;
    overflow:hidden;
}

.product-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:productScroll 35s linear infinite;
}

.product-slider:hover .product-track{
    animation-play-state:paused;
}

.product-card{

    width:220px;
    height:150px;

    margin:0 15px;

    background:#fff;

    border-radius:22px;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

    transition:.35s;

    border:2px solid #f3f3f3;

}

.product-card:hover{

    transform:translateY(-8px);

    border-color:#FDB813;

}

.product-card i{

    font-size:42px;

    color:#FDB813;

    margin-bottom:18px;

}

.product-card span{

    font-size:18px;

    font-weight:800;

    text-align:center;

    color:#111;

}

@keyframes productScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/* BRANDS */
.brands{

    background:#111;
    padding:90px 0;

    overflow:hidden;

}

.brands h2{

    color:#fff;
    text-align:center;

}

.brand-description{

    color:#bbb;
    text-align:center;
    margin-bottom:45px;

}

.brand-slider{

    width:100%;
    overflow:hidden;
    position:relative;

}

.brand-track{

    display:flex;
    align-items:center;

    width:max-content;

    animation:brandScroll 45s linear infinite;

}

.brand-track img{

    width:150px;
    height:80px;

    object-fit:contain;

    background:#fff;

    border-radius:16px;

    padding:20px;

    margin:0 18px;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

    transition:.35s;

}

.brand-track img:hover{

    transform:translateY(-6px) scale(1.05);

}

.brand-slider:hover .brand-track{

    animation-play-state:paused;

}

@keyframes brandScroll{

    0%{

        transform:translateX(0);

    }

    100%{

        transform:translateX(-50%);

    }

}
/* FORM */

.form-section {
  background: var(--soft);
}

.form-box {
  max-width: 780px;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 25px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245, 168, 0, 0.18);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  background: var(--yellow);
  color: var(--black);
  border: 0;
  padding: 17px;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background: var(--yellow-dark);
}

/* GALLERY */

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  transition: .35s ease;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: .5s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.gallery-item:hover{
    transform:translateY(-6px);
}

.gallery-item:hover img{
    transform:scale(1.08);
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT */

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 35px;
  align-items: start;
}

.contact a {
  color: var(--black);
  font-weight: 800;
}

.map-area {
  margin-top: 35px;
}

.map-area iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 24px;
}

/* COMING SOON PAGE */

.coming-soon {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.45)),
    url("https://images.unsplash.com/photo-1517524008697-84bbe3c3fd98?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.coming-box {
  max-width: 850px;
}

.coming-box p {
  color: #eeeeee;
}

/* FOOTER */

.footer {
  background: var(--black);
  padding: 26px;
  text-align: center;
}

.footer p {
  color: var(--white);
  margin: 0;
}

/* FLOAT WHATSAPP */

.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--green);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 120;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .logo {
    min-width: 190px;
  }

  .logo span,
  .logo strong {
    font-size: 30px;
  }

  .menu {
    gap: 13px;
  }

  .menu a {
    font-size: 12px;
  }
}

@media (max-width: 950px) {
  .nav {
    min-height: 82px;
  }

  .menu {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    font-size: 15px;
  }

  .menu-btn {
    display: block;
  }

  .quick-grid,
  .split,
  .why-grid,
  .product-grid,
  .gallery-grid,
  .contact-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 570px;
  }

  .hero-text {
    padding: 26px;
  }

  .product-grid div,
  .brand-grid span {
    text-align: left;
  }

  .map-area iframe {
    height: 320px;
  }

  .float-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 520px) {
  .container {
    width: 92%;
  }

  .logo {
    min-width: auto;
  }

  .logo span,
  .logo strong {
    font-size: 26px;
  }

  .logo small {
    font-size: 9px;
  }

  .hero h1,
  .coming-soon h1 {
    font-size: 36px;
  }

  .hero p,
  .coming-soon p {
    font-size: 17px;
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 58px 0;
  }

  .info-card,
  .contact-form-card,
  .online-sale-box {
    padding: 26px;
  }

  .quick-grid a {
    font-size: 14px;
  }
}
.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-item{

    background:#fff;

    border-radius:15px;

    padding:20px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    line-height:1.8;

}

.contact-item a{

    color:#111;

    text-decoration:none;

    font-weight:700;

}

.contact-item a:hover{

    color:#FDB813;

}
.contact-info-panel {
  background: #111;
  color: #fff;
  padding: 38px;
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(0,0,0,.14);
}

.contact-info-panel h2 {
  color: #fff;
}

.contact-lead {
  color: #d8d8d8;
  margin-bottom: 25px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  padding: 16px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
}

.contact-row span {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: #f5a800;
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.contact-row small {
  display: block;
  color: #bcbcbc;
  font-size: 12px;
  margin-bottom: 3px;
}

.contact-row strong {
  color: #fff;
  font-size: 15px;
}

.contact-row:hover {
  background: rgba(245,168,0,.16);
}

.social-buttons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-buttons a {
  flex: 1;
  text-align: center;
  background: #f5a800;
  color: #111;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
}

.social-buttons a:hover {
  background: #fff;
}
.contact-row span i{
    font-size:22px;
}

.social-buttons a{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    flex:1;

    text-decoration:none;

    padding:14px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;

}

.social-buttons a i{

    font-size:22px;

}

.instagram-btn{

    background:linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888);

    color:white;

}

.instagram-btn:hover{

    transform:translateY(-3px);

}

.facebook-btn{

    background:#1877F2;

    color:white;

}

.facebook-btn:hover{

    transform:translateY(-3px);

}
.gallery-slider{

    position:relative;

    width:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-top:45px;

}

.gallery-window{

    width:88%;

    overflow:hidden;

    border-radius:22px;

    box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.gallery-track {
  display: flex;
  transition: transform .45s ease;
}

.gallery-slide {
  min-width: 100%;
  height: 460px;
  background: #eee;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:62px;

    height:62px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#111;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    font-weight:bold;

    box-shadow:0 12px 35px rgba(0,0,0,.22);

    transition:.3s;

    z-index:100;

}

.gallery-btn:hover{

    background:#FDB813;

    transform:translateY(-50%) scale(1.08);

}

.gallery-btn.prev{

    left:-5px;

}

.gallery-btn.next{

    right:-5px;

}
@media(max-width:768px){

.gallery-window{

    width:100%;

}

.gallery-btn{

    width:46px;
    height:46px;

    font-size:26px;

}

.gallery-btn.prev{

    left:8px;

}

.gallery-btn.next{

    right:8px;

}

}