:root {
  --bg-cream: #FEFBF3;
  --bg-sage: #E8F3EB;
  --bg-peach: #FFF0E6;
  --bg-blue: #EBF5FB;
  --primary: #E57373;
  --primary-dark: #D32F2F;
  --secondary: #81C784;
  --secondary-dark: #388E3C;
  --accent: #FFB74D;
  --text-dark: #2C3E50;
  --text-light: #546E7A;
  --white: #FFFFFF;
  --font-main: 'Poppins', sans-serif;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --wave-height: 110px;
}

@media (max-width: 768px) {
  :root {
    --wave-height: 85px;
  }
}

@media (max-width: 480px) {
  :root {
    --wave-height: 70px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

section {
  scroll-margin-top: var(--nav-offset, 120px);
  position: relative;
  overflow: visible;
}

.section-padding.has-wave-bottom {
  padding-bottom: calc(80px + var(--wave-height));
}

.section-padding .container {
  position: relative;
  z-index: 2;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.grid {
  display: grid;
  gap: 30px;
}

.highlight {
  color: var(--primary);
  font-weight: 700;
}

.bg-sage {
  background-color: var(--bg-sage);
}

.bg-peach {
  background-color: var(--bg-peach);
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  display: block;
  width: 50%;
  height: 4px;
  background: var(--primary);
  margin: 10px auto 0;
  border-radius: 2px;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border: 0;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--bg-peach);
  transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.navbar {
  background: transparent;
  backdrop-filter: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar .logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
  height: 80px;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.navbar.scrolled .hamburger {
  color: var(--text-dark);
}

@media (max-width: 992px) {
  .nav-whatsapp {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 1002;
  }

  .navbar.scrolled .hamburger {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 30px 40px;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1001;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
box-shadow: none;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-menu.active li:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-menu.active li:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-menu.active li:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-menu.active li:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-menu.active li:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-menu.active li:nth-child(7) {
    transition-delay: 0.4s;
  }

  .nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary);
  }

  .nav-link::after {
    display: none;
  }

  .nav-menu .btn {
    margin-top: 30px;
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
  }

  .logo-img {
    height: 60px;
    z-index: 1002;
    position: relative;
  }

  .navbar.scrolled .logo-img {
    height: 50px;
  }

  .nav-menu.active~.hamburger {
    color: var(--text-dark);
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.05);
  }
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.53);
  z-index: 2;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: translateZ(0);
}

.blob-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229, 115, 115, 0.15) 0%, rgba(254, 251, 243, 0) 70%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: pulseblob 8s infinite alternate;
  z-index: 1;
}

@keyframes pulseblob {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.hero-content {
  max-width: 800px;
  z-index: 3;
  color: var(--white);
  position: relative;
}

.hero-content h1 {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary-dark);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    margin-bottom: 40px;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

.wave-sep {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.wave-sep svg {
  display: block;
  width: calc(100% + 1px);
  height: var(--wave-height);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.wave-top {
  top: 0;
  transform: rotate(180deg);
}

.wave-bottom {
  bottom: -1px;
}

.wave-bottom svg {
  transform: translateY(1px) translateZ(0);
}

.hero .wave-sep {
  z-index: 2;
}

#prodotti {
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.card-tradition {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.card-tradition:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: var(--bg-peach);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.products-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 16px;
}

.products-arrows {
  display: flex;
  gap: 10px;
}

.products-grid {
  --products-card-w: 320px;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 14px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-padding-left: 12px;
  scroll-padding-right: 12px;
}

.products-grid::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .products-toolbar {
    justify-content: center;
    margin-bottom: 12px;
  }

  .products-grid {
    --products-card-w: min(84vw, 360px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    gap: 14px;
    padding: 6px calc((100vw - var(--products-card-w)) / 2) 10px;
    scroll-padding-left: calc((100vw - var(--products-card-w)) / 2);
    scroll-padding-right: calc((100vw - var(--products-card-w)) / 2);
  }

  .product-card {
    scroll-snap-align: center;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    --products-card-w: 360px;
  }

  .card-img-holder {
    height: 220px;
  }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  flex: 0 0 auto;
  width: var(--products-card-w);
  scroll-snap-align: start;
  /* Android: evita di "saltare" più card in un solo swipe */
  scroll-snap-stop: always;
  border: 1px solid #eee;
  opacity: 0;
  transform: translateY(20px);
}

.product-card.show {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img-holder {
  height: 200px;
  background: var(--bg-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-img-holder svg {
  width: 80px;
  height: 80px;
  opacity: 0.6;
  fill: var(--secondary-dark);
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: var(--text-dark);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 60px;
}

.chips {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  font-size: 0.65rem;
  padding: 4px 8px;
  background: #eee;
  border-radius: 999px;
  color: #555;
  font-weight: 600;
}

.product-meta{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
  font-size: 0.78rem;
  color: var(--text-dark);
}

.meta-item i{
  color: var(--primary-dark);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

@media (max-width:1100px){
  .gallery-grid{grid-template-columns:repeat(4,minmax(0,1fr));}
}

@media (max-width:900px){
  .gallery-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
}

@media (max-width:640px){
  .gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media (max-width:420px){
  .gallery-grid{grid-template-columns:repeat(1,minmax(0,1fr));}
}

.gallery-item{
  border-radius:var(--radius-md);
  overflow:hidden;
  cursor:zoom-in;
  position:relative;
  aspect-ratio:16/9;
  background:var(--white);
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:translateZ(0);
  transition:transform .35s;
  opacity:1;
  filter:none;
}

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

.reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
  scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  min-width: 300px;
  max-width: 300px;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-quote {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 15px;
}

.review-author {
  font-weight: 600;
  font-size: 0.9rem;
}

.slider-arrow {
  background: var(--primary);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.slider-arrow:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-box {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-weight: 600;
  color: var(--text-dark);
}

.contact-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .contact-modern-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card,
.contact-form-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3,
.contact-form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-peach);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.info-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.social-row {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-blue);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.clean-form .form-group {
  position: relative;
  margin-bottom: 25px;
}

.clean-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 10px;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: transparent;
}

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

.floating-label {
  position: absolute;
  left: 15px;
  top: 15px;
  color: #999;
  font-size: 1rem;
  pointer-events: none;
  transition: var(--transition);
  background: white;
  padding: 0 5px;
}

.clean-input:focus~.floating-label,
.clean-input:not(:placeholder-shown)~.floating-label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

.full-width {
  width: 100%;
  justify-content: center;
}

.map-section {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-sm);
}

.map-frame {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}

footer {
  background: #2C3E50;
  color: #ecf0f1;
  padding-top: 0;
  position: relative;
  font-size: 0.85rem;
}

footer .wave-top {
  color: #2C3E50;
  top: calc(-1 * var(--wave-height) + 1px);
  transform: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  padding: 50px 0 20px;
}

.footer-brand-col {
  padding-right: 10px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 600;
  opacity: 0.8;
}

.footer-col:nth-child(1) {
  text-align: left;
  align-items: flex-start;
}

.footer-col:nth-child(2) {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col:nth-child(3) {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-col:nth-child(3) .footer-contact-list li {
  justify-content: flex-end;
  text-align: right;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-2px);
  color: #fff;
}

.footer-links-list li {
  margin-bottom: 5px;
}

.footer-links-list a {
  color: #bdc3c7;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.footer-links-list a i {
  font-size: 0.6rem;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.footer-links-list a:hover {
  color: var(--primary);
  padding-left: 3px;
}

.footer-links-list a:hover i {
  opacity: 1;
  color: var(--primary);
}

.footer-contact-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  color: #bdc3c7;
  font-size: 0.85rem;
}

.footer-contact-list i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 3px;
}

.footer-contact-list li>div {
  line-height: 1.2;
}

.footer-contact-list strong {
  color: #fff;
  display: block;
  font-weight: 600;
}

.footer-contact-list a {
  color: #bdc3c7;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

.footer-contact-list a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-bottom: 0;
}

.footer-credit {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-credit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  
}

.footer-cybery-logo {
  height: 35px;
  
  width: auto;
  opacity: 1;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-col:nth-child(1),
  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer-col:nth-child(3) .footer-contact-list li,
  .footer-contact-list li {
    justify-content: center;
    text-align: center;
  }

  .footer-contact-list li>div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col h4::after {
    margin: 10px auto 0;
  }

  .footer-brand-col {
    padding-right: 0;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-links-list a {
    justify-content: center;
  }

  .footer-contact-list li {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--secondary-dark);
  color: var(--white);
  padding: 15px 25px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  z-index: 10000;
  transition: transform 0.4s;
}

.toast.active {
  transform: translateX(-50%) translateY(0);
}

.lightbox{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  padding:24px;
  background:rgba(0,0,0,.92);
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:var(--transition);
}

.lightbox.active{
  opacity:1;
  visibility:visible;
}

.lightbox-close{
  position:absolute;
  top:18px;
  right:22px;
  font-size:3rem;
  color:var(--white);
  background:transparent;
  padding:0;
  line-height:1;
  cursor:pointer;
  z-index:10000;
}

.lightbox-content{
  width:min(92vw,1200px);
  height:min(92vh,900px);
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  border-radius:12px;
}

.lightbox-content img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  opacity:1;
  filter:none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.reveal{opacity:0;transform:translateY(14px);transition:opacity .65s ease,transform .65s cubic-bezier(.2,.7,.2,1);}
.reveal.show{opacity:1;transform:none;}
@media (prefers-reduced-motion: reduce){html{scroll-behavior:auto;} .reveal{opacity:1;transform:none;transition:none;} .blob-bg{animation:none;} .product-card{transition:none;}}
