@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Sen:wght@400;500;600;700;800&display=swap');

/* CSS VARIABLES - DESIGN SYSTEM */
:root {
  --primary: #ED1B24;
  --primary-hover: #F60D12D0;
  --dark: #000000;
  --dark-slate: #1A202C;
  --dark-bg: #111111;
  --light-bg: #F7F7F7;
  --white: #FFFFFF;
  --cream-bg: #F0EDE6;
  
  --text-dark: #222222;
  --text-light: #FFFFFF;
  --text-muted: #666666;
  
  --font-main: 'Barlow', sans-serif;
  --font-title: 'Sen', sans-serif;
  
  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  --container-width: 1200px;
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--white);
}

body {
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--dark-slate);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* UTILITIES */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 35px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(237, 27, 36, 0.2);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
  border-radius: 30px;
}

.btn-outline-dark:hover {
  background-color: var(--text-dark);
  color: var(--white);
}

/* NAVIGATION HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  transition: var(--transition-normal);
}

.site-header.scrolled .header-container {
  height: 75px;
}

.header-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.header-nav.left-nav {
  justify-content: flex-end;
  flex: 1;
}

.header-nav.right-nav {
  justify-content: flex-start;
  flex: 1;
}

.header-nav li a {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  padding: 10px 0;
  position: relative;
}

.site-header.scrolled .header-nav li a {
  color: var(--text-dark);
}

.header-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.header-nav li a:hover {
  color: var(--primary);
}

.header-nav li a:hover::after {
  width: 100%;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
}

.logo-wrap img {
  height: 45px;
  transition: var(--transition-normal);
}

.site-header.scrolled .logo-wrap img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(85%) saturate(5412%) auto; /* Keep brand colors or adapt filter */
  /* Since brand logo is white with red 'S', we might want to invert brightness so text is black but logo 'S' is still correct. Or we can just use the natural logo version. In this implementation we will filter the white logo so it's visible on white header: we can invert the white parts to dark while keeping red, or just apply filter */
  filter: invert(1); /* Simplest transition: white logo turns black */
}

/* MOBILE TOGGLE */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
}

.site-header.scrolled .mobile-toggle {
  color: var(--text-dark);
}

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: var(--dark-bg);
  z-index: 1001;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition-normal);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.drawer-logo {
  max-width: 150px;
  margin: 0 auto;
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-menu a {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 500;
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-menu a:hover {
  color: var(--primary);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

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

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 32, 44, 0.65); /* dark slate overlay matching elementor */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  color: var(--white);
  margin-top: 50px;
}

.hero-logo {
  max-width: 180px;
  margin: 0 auto 30px auto;
  animation: fadeIn 1s ease-out;
}

.hero-content h1 {
  color: var(--white);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content p {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-content .btn {
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* SECTION BASE STYLE */
.section-padding {
  padding: 90px 0;
}

/* ACCORDION & PRODUCT GRID SECTION */
.products-section {
  background-color: var(--white);
}

.products-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.products-left h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.products-left h2 span {
  color: var(--primary);
  display: block;
  margin-top: 5px;
}

.products-left > p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 500px;
}

/* ACCORDION */
.accordion {
  border-top: 1px solid #EAEAEA;
}

.accordion-item {
  border-bottom: 1px solid #EAEAEA;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
}

.accordion-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-slate);
  transition: var(--transition-fast);
}

.accordion-icon {
  font-size: 20px;
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.accordion-header:hover .accordion-title {
  color: var(--primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.accordion-content-inner {
  padding-bottom: 25px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.accordion-content-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.accordion-content-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* OPEN STATE */
.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-item.active .accordion-title {
  color: var(--primary);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

/* RIGHT PRODUCT GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-card {
  position: relative;
  height: 290px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 70%);
  z-index: 1;
  transition: var(--transition-fast);
}

.product-card-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition-normal);
}

.product-card:hover .product-card-image-overlay {
  transform: scale(1.08);
}

.product-card:hover::before {
  background: linear-gradient(to top, rgba(237, 27, 36, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.product-card-title {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* OUTLET SECTION */
.outlet-section {
  background-color: var(--cream-bg);
}

.outlet-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.outlet-left h2 {
  font-size: 38px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.outlet-left p {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.7;
}

/* IMAGE SLIDER */
.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background-color: #DDD;
}

.slider-wrapper {
  display: flex;
  transition: transform var(--transition-normal);
}

.slide-item {
  min-width: 100%;
  flex-shrink: 0;
  height: 400px;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: var(--primary);
  border: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.slider-nav:hover {
  transform: translateY(-50%) scale(1.2);
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #CCCCCC;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* CONTACT & GET IN TOUCH SECTION */
.contact-section {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 100px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

/* FORM CARD */
.contact-form-card {
  background-color: var(--white);
  border-radius: 4px;
  padding: 50px;
  color: var(--text-dark);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-form-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 35px;
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.form-group-full {
  grid-column: span 2;
}

.form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 0;
  font-family: var(--font-main);
  font-size: 16px;
  background-color: transparent;
  outline: none;
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: #888888;
}

.form-input:focus {
  border-bottom-color: var(--primary);
}

.form-textarea {
  width: 100%;
  border: 1px solid #EAEAEA;
  background-color: #F8F8F8;
  padding: 15px;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 16px;
  resize: vertical;
  min-height: 120px;
  outline: none;
  transition: var(--transition-fast);
}

.form-textarea:focus {
  border-color: #CCCCCC;
  background-color: var(--white);
}

.contact-form-card .btn {
  margin-top: 15px;
}

/* GET IN TOUCH INFO */
.contact-info h2 {
  color: var(--white);
  font-size: 38px;
  margin-bottom: 40px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-text h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-text p {
  color: #CCCCCC;
  font-size: 16px;
  line-height: 1.5;
}

.info-text a {
  color: #CCCCCC;
}

.info-text a:hover {
  color: var(--primary);
}

/* SITE FOOTER */
.site-footer {
  background-color: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a:hover {
  color: var(--white);
}

/* FLOATING WIDGETS */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
  cursor: pointer;
}

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

.float-whatsapp {
  background-color: #25D366;
}

.float-scroll-top {
  background-color: var(--primary);
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
}

.float-scroll-top.show {
  opacity: 1;
  visibility: visible;
}

/* STICKY CATALOGUE TRIGGER */
.sticky-catalogue-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 25px;
  border: none;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition-fast);
}

.sticky-catalogue-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
}

/* MODAL REQUEST CATALOGUE */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  padding: 20px;
}

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

.modal-content {
  background-color: var(--white);
  border-radius: 4px;
  width: 100%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-normal);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--dark-slate);
}

.modal-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 25px;
}

.modal-form-group {
  margin-bottom: 20px;
}

.modal-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  cursor: pointer;
}

.checkbox-item input {
  width: 17px;
  height: 17px;
  cursor: pointer;
  accent-color: var(--primary);
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVENESS */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .logo-wrap {
    padding: 0;
  }
  
  .header-container {
    justify-content: space-between;
  }
  
  .hero-content h1 {
    font-size: 38px;
  }
  
  .hero-content p {
    font-size: 17px;
  }
  
  .products-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .outlet-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-form-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .slide-item {
    height: 300px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .sticky-catalogue-btn {
    bottom: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .floating-widgets {
    bottom: 20px;
    right: 20px;
  }
}
