/* ==========================================================================
   GRAVITAS ARABIC CUSTOM ELEMENTOR WIDGETS STYLES (FULL MOBILE RESPONSIVE)
   ========================================================================== */

/* Typography Tokens & Brand Variables */
:root {
  --orvano-font-heading: 'Cairo', 'Barlow Condensed', sans-serif;
  --orvano-font-body: 'Tajawal', 'Inter', sans-serif;
  --orvano-color-primary: #a42325;
  --orvano-color-dark: #000000;
  --orvano-color-maroon: #a42325;
  --orvano-color-bg-light: #f7f7f7;
  --orvano-color-text-white: #ffffff;
  --orvano-color-text-subdued: #cccccc;
  --orvano-color-border: rgba(255, 255, 255, 0.15);
}

/* Global Widget Reset & Utility */
.orvano-widget-container {
  font-family: var(--orvano-font-body);
  color: #333333;
  box-sizing: border-box;
  direction: rtl;
  text-align: right;
}

.orvano-widget-container * {
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   1. ANNOUNCEMENT BAR & COUNTDOWN TIMER
   -------------------------------------------------------------------------- */
.orvano-announcement-bar {
  background-color: #000000;
  color: #ffffff;
  padding: 6px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--orvano-font-body);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  direction: rtl;
}

.orvano-announcement-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.orvano-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
}

.orvano-timer-unit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.orvano-timer-val {
  font-family: var(--orvano-font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
}

.orvano-timer-lbl {
  font-size: 10px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: var(--orvano-font-body);
  line-height: 1;
  margin-top: 2px;
}

.orvano-timer-sep {
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
}

.orvano-announcement-btn {
  background-color: #ffffff;
  color: #000000;
  padding: 4px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.orvano-announcement-btn:hover {
  background-color: var(--orvano-color-primary);
  color: #ffffff;
}

@media (max-width: 768px) {
  .orvano-announcement-bar {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   2. HEADER & NAVIGATION WIDGET
   -------------------------------------------------------------------------- */
.orvano-header-wrapper {
  background-color: var(--orvano-color-maroon);
  color: #ffffff;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  direction: rtl;
  border-top: none !important;
  border: none !important;
  outline: none !important;
  margin-top: 0 !important;
}

.orvano-mobile-menu-trigger {
  display: none;
}

.orvano-hamburger-btn,
.orvano-hamburger-btn:hover,
.orvano-hamburger-btn:focus,
.orvano-hamburger-btn:active {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: #ffffff !important;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.orvano-header-logo a {
  font-family: var(--orvano-font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

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

.orvano-header-nav a {
  font-family: var(--orvano-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff !important;
  opacity: 0.9;
  text-decoration: none;
  transition: all 0.2s ease;
}

.orvano-header-nav a:hover,
.orvano-header-nav a.active {
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.orvano-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.orvano-header-icon {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  position: relative;
}

.orvano-cart-badge {
  position: absolute;
  top: -5px;
  left: -8px;
  background-color: var(--orvano-color-primary);
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .orvano-header-wrapper {
    padding: 10px 16px;
    position: relative;
  }

  .orvano-mobile-menu-trigger {
    display: flex;
    align-items: center;
    z-index: 5;
  }

  .orvano-header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
  }

  .orvano-header-logo a {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .orvano-header-actions {
    z-index: 5;
  }

  .orvano-header-nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: var(--orvano-color-maroon);
    padding: 15px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 9999;
  }

  .orvano-header-nav.active-mobile {
    display: block;
  }

  .orvano-header-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .orvano-header-nav a {
    font-size: 16px;
    display: block;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   3. HERO BANNER WIDGET
   -------------------------------------------------------------------------- */
.orvano-hero-section {
  position: relative;
  width: 100%;
  min-height: 55vh;
  max-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  direction: rtl;
}

.orvano-hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.orvano-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.orvano-hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 25px 15px;
}

.orvano-hero-title {
  font-family: var(--orvano-font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.orvano-hero-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  padding: 10px 28px;
  font-family: var(--orvano-font-heading);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
  border-radius: 4px;
}

.orvano-hero-btn:hover {
  background-color: transparent;
  color: #ffffff;
}

@media (max-width: 768px) {
  .orvano-hero-section {
    min-height: 280px !important;
    height: 38vh !important;
    max-height: 320px !important;
  }

  .orvano-hero-content {
    padding: 15px 10px !important;
  }

  .orvano-hero-title {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }

  .orvano-hero-btn {
    padding: 7px 20px !important;
    font-size: 13px !important;
  }
}

/* --------------------------------------------------------------------------
   4. MARQUEE TICKER WIDGET
   -------------------------------------------------------------------------- */
.orvano-marquee-wrapper {
  background-color: var(--orvano-color-maroon);
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.orvano-marquee-track {
  display: inline-flex;
  animation: orvanoMarquee 25s linear infinite;
}

.orvano-marquee-item {
  font-family: var(--orvano-font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  padding: 0 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 20px;
}

.orvano-marquee-item::after {
  content: '•';
  color: var(--orvano-color-primary);
  font-size: 14px;
}

@keyframes orvanoMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   5. PRODUCT GRID WIDGET
   -------------------------------------------------------------------------- */
.orvano-products-section {
  padding: 40px 30px;
  background-color: #ffffff;
  direction: rtl;
}

.orvano-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  border-bottom: 2px solid #111111;
  padding-bottom: 10px;
}

.orvano-products-title {
  font-family: var(--orvano-font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #111111;
  margin: 0;
}

.orvano-view-all-btn {
  background-color: #000000;
  color: #ffffff;
  padding: 7px 20px;
  font-family: var(--orvano-font-heading);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.orvano-view-all-btn:hover {
  background-color: var(--orvano-color-primary);
}

.orvano-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
}

@media (max-width: 1024px) {
  .orvano-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .orvano-products-section {
    padding: 25px 15px;
  }

  .orvano-products-header {
    margin-bottom: 16px;
    align-items: flex-start;
  }

  .orvano-products-title {
    font-size: 15px;
    max-width: 55%;
    line-height: 1.35;
  }

  .orvano-view-all-btn {
    padding: 6px 14px;
    font-size: 12px;
    white-space: nowrap;
  }

  .orvano-products-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 14px !important;
    padding-bottom: 15px !important;
    width: 100% !important;
    -webkit-overflow-scrolling: touch;
  }

  .orvano-product-card {
    flex: 0 0 72% !important;
    min-width: 210px !important;
    max-width: 270px !important;
    scroll-snap-align: start;
  }
}

.orvano-product-card {
  background-color: #ffffff;
  color: #111111;
  border-radius: 0px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease;
}

.orvano-badge-discount {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--orvano-color-primary);
  color: #ffffff;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  z-index: 10;
  direction: ltr;
}

.orvano-product-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background-color: #ffffff;
}

.orvano-product-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.orvano-product-img-wrapper img.secondary-img {
  opacity: 0;
}

.orvano-product-card:hover .orvano-product-img-wrapper img.primary-img {
  opacity: 0;
}

.orvano-product-card:hover .orvano-product-img-wrapper img.secondary-img {
  opacity: 1;
}

.orvano-product-details {
  padding: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: right;
}

.orvano-product-name {
  font-family: var(--orvano-font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #111111;
  margin: 0 0 4px 0;
  text-transform: uppercase;
}

.orvano-product-name a {
  color: #111111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.orvano-product-name a:hover {
  color: var(--orvano-color-primary);
}

.orvano-product-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.orvano-price-current {
  color: var(--orvano-color-primary);
  font-weight: 800;
  font-size: 13px;
  font-family: var(--orvano-font-heading);
}

.orvano-price-compare {
  color: #999999;
  text-decoration: line-through;
  font-size: 12px;
  font-family: var(--orvano-font-heading);
}

.orvano-product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  width: 100%;
}

.orvano-btn-add-cart {
  background-color: #f2f2f2;
  color: #111111;
  border: none;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border-radius: 0px;
  transition: background 0.2s ease;
  font-family: var(--orvano-font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.orvano-btn-add-cart:hover {
  background-color: #e5e5e5;
  color: #000000;
}

.orvano-btn-buy-now {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border-radius: 0px;
  transition: background 0.2s ease;
  font-family: var(--orvano-font-body);
  display: flex;
  align-items: center;
  justify-content: center;
}

.orvano-btn-buy-now:hover {
  background-color: var(--orvano-color-primary);
}

/* --------------------------------------------------------------------------
   6. DRIVE STYLE BANNER WIDGET
   -------------------------------------------------------------------------- */
.orvano-drive-banner {
  position: relative;
  width: 100%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 35px 40px;
  color: #ffffff;
  direction: rtl;
}

.orvano-drive-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.15) 100%);
}

.orvano-drive-banner-content {
  position: relative;
  z-index: 2;
  text-align: right;
  max-width: 500px;
}

.orvano-drive-banner-title {
  font-family: var(--orvano-font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  margin: 0 0 8px 0;
  line-height: 1.15;
}

.orvano-drive-banner-subtitle {
  font-family: var(--orvano-font-body);
  font-size: 16px;
  font-weight: 500;
  color: #e0e0e0;
  margin: 0;
}

@media (max-width: 768px) {
  .orvano-drive-banner {
    padding: 25px 20px;
    min-height: 240px;
  }
}

/* --------------------------------------------------------------------------
   7. FEATURE GRID WIDGET
   -------------------------------------------------------------------------- */
.orvano-features-section {
  padding: 35px 30px;
  background-color: #ffffff;
  direction: rtl;
}

.orvano-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 20px;
}

@media (max-width: 768px) {
  .orvano-features-section {
    padding: 25px 15px;
  }

  .orvano-features-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.orvano-feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 10px;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.orvano-feature-card:hover {
  transform: translateY(-3px);
}

.orvano-feature-icon-minimal {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #111111;
  transition: transform 0.2s ease, color 0.2s ease;
}

.orvano-feature-card:hover .orvano-feature-icon-minimal {
  transform: scale(1.1);
  color: var(--orvano-color-primary);
}

.orvano-feature-icon-minimal svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.orvano-feature-title {
  font-family: var(--orvano-font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #111111;
  margin: 0 0 6px 0;
}

.orvano-feature-desc {
  font-family: var(--orvano-font-body);
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}

/* --------------------------------------------------------------------------
   8. CUSTOMER REVIEWS WIDGET (IMAGES CAROUSEL)
   -------------------------------------------------------------------------- */
.orvano-reviews-section {
  padding: 40px 30px;
  background-color: #ffffff;
  text-align: center;
  direction: rtl;
}

.orvano-reviews-title {
  font-family: var(--orvano-font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--orvano-color-primary);
  margin-bottom: 25px;
}

.orvano-reviews-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 12px;
}

.orvano-reviews-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 5px 20px 5px;
  width: 100%;
}

.orvano-reviews-carousel-track::-webkit-scrollbar {
  display: none;
}

.orvano-review-image-card {
  flex: 0 0 240px;
  height: auto;
  align-self: flex-start;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  background: #ffffff;
  border: 1px solid #eeeeee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.orvano-review-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.orvano-review-image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.orvano-review-arrow {
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  flex-shrink: 0;
  transition: all 0.2s ease;
  z-index: 10;
}

.orvano-review-arrow:hover {
  background: var(--orvano-color-primary);
  color: #ffffff;
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .orvano-reviews-section {
    padding: 25px 10px !important;
  }

  .orvano-reviews-title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .orvano-review-arrow {
    display: none !important;
  }

  .orvano-reviews-carousel-wrapper {
    gap: 0 !important;
  }

  .orvano-reviews-carousel-track {
    gap: 12px !important;
    padding: 5px 10px 15px 10px !important;
  }

  .orvano-review-image-card {
    flex: 0 0 78% !important;
    max-width: 280px !important;
  }
}

/* --------------------------------------------------------------------------
   9. FAQ ACCORDION WIDGET
   -------------------------------------------------------------------------- */
.orvano-faq-section {
  padding: 35px 30px;
  background-color: #ffffff;
  direction: rtl;
}

.orvano-faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

@media (max-width: 768px) {
  .orvano-faq-section {
    padding: 25px 15px;
  }

  .orvano-faq-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.orvano-faq-column-title {
  font-family: var(--orvano-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 12px;
}

.orvano-faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 6px;
}

.orvano-faq-header {
  font-family: var(--orvano-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  padding: 10px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.orvano-faq-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.orvano-faq-item.active .orvano-faq-icon {
  transform: rotate(45deg);
}

.orvano-faq-content {
  display: none;
  padding: 0 0 12px 0;
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   10. FOOTER WIDGET
   -------------------------------------------------------------------------- */
.orvano-footer-wrapper {
  background-color: var(--orvano-color-maroon);
  color: #ffffff;
  padding: 30px 30px 20px 30px;
  font-family: var(--orvano-font-body);
  direction: rtl;
  text-align: right;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.orvano-footer-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 25px;
  margin-bottom: 25px;
}

.orvano-footer-col h4 {
  font-family: var(--orvano-font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.orvano-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.orvano-footer-col ul li {
  margin-bottom: 5px;
}

.orvano-footer-col ul a {
  color: #ffffff;
  opacity: 0.85;
  text-decoration: none;
  font-size: 13px;
  font-family: var(--orvano-font-body);
  transition: opacity 0.2s ease;
}

.orvano-footer-col ul a:hover {
  opacity: 1;
  text-decoration: underline;
}

.orvano-newsletter-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 6px;
  margin-top: 8px;
  background: transparent !important;
  background-color: transparent !important;
}

.orvano-newsletter-input-wrapper input {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #ffffff !important;
  font-size: 13px;
  font-family: var(--orvano-font-body);
  width: 100%;
  padding: 2px 0;
  outline: none !important;
}

.orvano-newsletter-input-wrapper input:-webkit-autofill,
.orvano-newsletter-input-wrapper input:-webkit-autofill:hover, 
.orvano-newsletter-input-wrapper input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px #a42325 inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

.orvano-newsletter-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  opacity: 1;
}

.orvano-newsletter-input-wrapper button {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 18px;
  cursor: pointer;
  padding: 0 5px;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.orvano-newsletter-input-wrapper button:hover {
  opacity: 1;
  transform: translateX(-3px);
}

.orvano-footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.orvano-footer-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.orvano-footer-legal-links span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
}

.orvano-footer-legal-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s ease;
}

.orvano-footer-legal-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.orvano-footer-social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.orvano-footer-social-icons a {
  color: rgba(255, 255, 255, 0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.orvano-footer-social-icons a:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .orvano-footer-wrapper {
    padding: 22px 18px 16px 18px !important;
  }

  .orvano-footer-top-grid {
    grid-template-columns: 1fr;
    gap: 16px !important;
    margin-bottom: 20px !important;
  }

  .orvano-footer-bottom-row {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 12px !important;
    padding-top: 15px !important;
  }

  .orvano-footer-legal-links {
    justify-content: center;
    text-align: center;
  }
}
