/**
 * UltraFresh Theme - Main Styles
 * Sections are styled for use inside Elementor widgets.
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Default font: SetarLTrial (add font files to assets/fonts/) */
@font-face {
  font-family: "SetarLTrial";
  src: url("../fonts/SetarLTrial.woff2") format("woff2"),
    url("../fonts/SetarLTrial.woff") format("woff"),
    url("../fonts/SetarLTrial.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "SetarLTrial", sans-serif;
  overflow-x: hidden;
  background: #fff;
}

/* ========== Navigation / Header ========== */
.ultrafresh-header-wrapper {
  position: fixed;
  top: 15px;
  left: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}

.ultrafresh-header {
  background: #1a3a5c;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  border-radius: 8px;
  overflow: visible;
  width: calc(100% - 130px);
  position: relative;
  flex-direction: row-reverse;
}

.ultrafresh-logo-wrapper {
  position: fixed;
  top: 8px;
  right: 20px;
  z-index: 1001;
}

.ultrafresh-logo-container {
  display: flex;
  align-items: flex-start;
  padding: 0;
}

.ultrafresh-logo-svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  max-width: 100px;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.ultrafresh-nav-menu {
  display: flex;
  gap: 0;
  list-style: none;
  height: 100%;
  align-items: center;
  margin-right: 0;
  direction: rtl;
}

.ultrafresh-nav-menu li {
  height: 100%;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.ultrafresh-nav-menu li:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.ultrafresh-nav-menu li:last-child {
  border-left: none;
}

.ultrafresh-nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  transition: background 0.3s;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
}

.ultrafresh-nav-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Multi-level submenus (WordPress) */
.ultrafresh-nav-menu .menu-item-has-children {
  position: relative;
}

.ultrafresh-nav-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  background: #1a3a5c;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[dir="rtl"] .ultrafresh-nav-menu .sub-menu {
  right: auto;
  left: 0;
}

.ultrafresh-nav-menu li:hover > .sub-menu,
.ultrafresh-nav-menu li.menu-item-has-children.ultrafresh-submenu-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ultrafresh-nav-menu .sub-menu li {
  height: auto;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ultrafresh-nav-menu .sub-menu li:last-child {
  border-bottom: none;
}

.ultrafresh-nav-menu .sub-menu a {
  padding: 12px 18px;
  height: auto;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

/* Nested submenus (3rd level+) */
.ultrafresh-nav-menu .sub-menu .menu-item-has-children > .sub-menu {
  top: 0;
  right: 100%;
  left: auto;
}

[dir="rtl"] .ultrafresh-nav-menu .sub-menu .menu-item-has-children > .sub-menu {
  right: auto;
  left: 100%;
}

.ultrafresh-nav-menu .sub-menu .sub-menu {
  margin-top: 0;
}

/* Submenu toggle arrow (mobile) */
.ultrafresh-nav-menu .menu-item-has-children > a {
  padding-inline-end: 28px;
}

.ultrafresh-submenu-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.2s;
}

[dir="rtl"] .ultrafresh-submenu-toggle {
  right: auto;
  left: 8px;
}

.ultrafresh-nav-menu .menu-item-has-children.ultrafresh-submenu-open > .ultrafresh-submenu-toggle {
  transform: translateY(-50%) rotate(180deg);
}

/* Hamburger – hidden on desktop */
.ultrafresh-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0 10px;
  border: none;
  background: transparent;
  color: white;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.ultrafresh-hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ultrafresh-hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ultrafresh-hamburger[aria-expanded="true"]
  .ultrafresh-hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ultrafresh-hamburger[aria-expanded="true"]
  .ultrafresh-hamburger-line:nth-child(2) {
  opacity: 0;
}

.ultrafresh-hamburger[aria-expanded="true"]
  .ultrafresh-hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ultrafresh-nav-wrap {
  display: flex;
  align-items: center;
}

.ultrafresh-cart-icon {
  position: relative;
  color: #fff !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
}

/* Cart SVG: stroke so it inherits link color */
.ultrafresh-cart-icon svg {
  stroke: currentColor !important;
  fill: none !important;
  width: 22px !important;
  height: 22px !important;
  display: block;
  flex-shrink: 0;
}

.ultrafresh-cart-badge {
  position: absolute;
  top: 8px;
  right: 12px;
  background: #f4a020;
  color: #1a3a5c;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ========== Hero Section ========== */
.ultrafresh-hero {
  background: linear-gradient(180deg, #1a3a5c 0%, #1e4a6e 50%, #1a3a5c 100%);
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 5% 0;
  overflow: hidden;
}

.ultrafresh-hero-bg-top,
.ultrafresh-hero-bg-bottom {
  position: absolute;
  height: auto;
  z-index: 1;
}

.ultrafresh-hero-bg-top {
  top: 60px;
  left: 0;
  width: 350px;
  opacity: 0.9;
}

.ultrafresh-hero-bg-bottom {
  bottom: 80px;
  right: 0;
  width: 200px;
  opacity: 0.85;
}

.ultrafresh-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ultrafresh-hero-text {
  color: white;
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.ultrafresh-hero-text h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.ultrafresh-hero-text p {
  font-size: 1.5rem;
  opacity: 0.95;
  margin-top: 15px;
}

.ultrafresh-hero-products {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ultrafresh-hero-products img {
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* Hero: image only layout – full width & height */
.ultrafresh-hero--image_only {
  padding: 0;
  min-height: 100%;
  height: 100%;
}

.ultrafresh-hero--image_only .ultrafresh-hero-content {
  justify-content: center;
  align-items: stretch;
  max-width: none;
  width: 100%;
  height: 100%;
}

.ultrafresh-hero--image_only .ultrafresh-hero-products,
.ultrafresh-hero--image_only .ultrafresh-hero-slider {
  width: 100%;
  height: 100%;
}

.ultrafresh-hero--image_only .ultrafresh-hero-products img {
  width: 100%;
  height: 100%;

  max-height: none;
  object-fit: cover;
  object-position: center;
}

.ultrafresh-hero--image_only .ultrafresh-hero-slider img {
  width: 100%;
  height: 100%;

  max-height: none;
  object-fit: cover;
  object-position: center;
}

/* Hero: image slider */
.ultrafresh-hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.ultrafresh-hero-slider-track {
  position: relative;
  width: 100%;
  min-height: 280px;
}

.ultrafresh-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ultrafresh-hero-slide--active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.ultrafresh-hero-slide img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  border-radius: 15px;
}

/* Image-only slider: full width & height */
.ultrafresh-hero--image_only .ultrafresh-hero-slider {
  max-width: none;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.ultrafresh-hero--image_only .ultrafresh-hero-slider-track {
  min-height: 100vh;
  height: 100%;
}

.ultrafresh-hero--image_only .ultrafresh-hero-slide {
  min-height: 100vh;
  height: 100%;
}

.ultrafresh-hero--image_only .ultrafresh-hero-slide img {
  border-radius: 0;
  filter: none;
  min-height: 100vh;
}

.ultrafresh-hero-slider-prev,
.ultrafresh-hero-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.ultrafresh-hero-slider-prev:hover,
.ultrafresh-hero-slider-next:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.ultrafresh-hero-slider-prev {
  left: 15px;
}

.ultrafresh-hero-slider-next {
  right: 15px;
}

.ultrafresh-hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 10;
}

.ultrafresh-hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
}

.ultrafresh-hero-slider-dot:hover {
  border-color: rgba(255, 255, 255, 0.9);
}

.ultrafresh-hero-slider-dot--active {
  background: #fff;
  border-color: #fff;
}

/* ========== About Section ========== */
.ultrafresh-about-section {
  padding: 100px 5% 120px;
  background: #f5f6f7;
  position: relative;
  z-index: 10;
  overflow: hidden;
  /* Diagonal bottom (slope down L→R) */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 95%);
  padding-bottom: 140px;
}

.ultrafresh-about-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: auto;
  opacity: 0.15;
  z-index: 1;
}

.ultrafresh-about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center;
  flex-direction: row;
  position: relative;
  z-index: 2;
}

.ultrafresh-about-logo {
  flex-shrink: 0;
}

.ultrafresh-about-logo-svg {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.ultrafresh-about-logo-svg svg {
  max-width: 100%;
  height: auto;
}

.ultrafresh-about-text {
  flex: 1;
  text-align: center;
}

.ultrafresh-about-text h2 {
  font-size: 2rem;
  color: #1a3a5c;
  margin-bottom: 20px;
  font-weight: 700;
}

.ultrafresh-about-text p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 30px;
  font-size: 15px;
}

.ultrafresh-btn-primary {
  background: #1a5c2e;
  color: white;
  padding: 12px 35px;
  border: none;
  border-radius: 25px;
  font-family: "SetarLTrial", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}

.ultrafresh-btn-primary:hover {
  background: #145224;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 92, 46, 0.3);
  color: white;
}

/* ========== About Features (Who We Are) ========== */
.ultrafresh-about-features-section {
  background: #f5f5f5;
  padding: 0;
  direction: rtl;
  font-family: "SetarLTrial", sans-serif;
  margin-top: -80px;
  overflow: hidden;
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Heading area – different background from features */
.ultrafresh-about-features-header {
  background: #f7f7f7 !important;
  padding: 90px 5% 45px;
}

.ultrafresh-about-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Subheading "من نحن" – smaller, dark grey, centered */
.ultrafresh-about-features-main-title {
  font-size: 0.9375rem;
  color: #333;
  margin: 0 0 12px 0;
  font-weight: 400;
}

/* Main title – larger, bold, black, centered */
.ultrafresh-about-features-subtitle {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  font-weight: 700;
  line-height: 1.25;
}

/* Intro paragraph – centered, max-width, dark grey */
.ultrafresh-about-features-intro {
  max-width: 720px;
  margin: 0 auto;
  color: #444;
  line-height: 1.9;
  font-size: 15px;
}

/* Features (cards) area – sits on section background */
.ultrafresh-about-features-cards-wrap {
  padding: 0 5% 100px;
  padding-top: 45px;
}

.ultrafresh-about-features-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
  align-items: stretch;
}

/* Cards – white, rounded, soft drop shadow */
.ultrafresh-about-features-card {
  background: #fff;
  border-radius: 10px;
  padding: 65px 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: box-shadow 0.3s ease;
}

.ultrafresh-about-features-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Number badge – top center, yellowish-beige circle, dark blue number */
.ultrafresh-about-features-card-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 700;
  color: #2f4858;
  margin: 0 auto 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  margin-right: 0 !important;
}

.ultrafresh-about-features-card h3 {
  font-size: 1.25rem;
  color: #2f4858;
  margin: 0 0 14px 0;
  font-weight: 700;
  text-align: right;

  padding-top: 10px;
  padding-bottom: 15px;
}

.ultrafresh-about-features-card p {
  color: #676767;
  line-height: 1.85;
  font-size: 14px;
  margin: 0;
  text-align: right;
}

@media (max-width: 992px) {
  .ultrafresh-about-features-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .ultrafresh-about-features-subtitle {
    font-size: 1.75rem;
  }
  .ultrafresh-about-features-section {
    padding: 60px 5% 80px;
  }
}

/* ========== Contact Form (Shortcode) ========== */
.ultrafresh-contact-form-section {
  background: #fff;
  padding: 80px 5% 100px;
  direction: rtl;
  font-family: "SetarLTrial", sans-serif;
}

.ultrafresh-contact-form-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ultrafresh-contact-form-title {
  font-size: 2rem;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  font-weight: 700;
}

.ultrafresh-contact-form-desc {
  color: #444;
  line-height: 1.8;
  font-size: 15px;
  margin: 0 0 32px 0;
}

.ultrafresh-contact-form-wrap {
  text-align: right;
  margin-top: 24px;
}

.ultrafresh-contact-form-wrap .forminator-form,
.ultrafresh-contact-form-wrap form {
  text-align: right;
}

.ultrafresh-contact-form-placeholder {
  color: #888;
  font-size: 14px;
  padding: 20px;
  border: 1px dashed #ccc;
  border-radius: 8px;
}

/* ========== Angled Section Base (Juices) ========== */
/* Diagonal slope: down from left to right. All sections use clip-path for angled edges. */
.ultrafresh-angled-section {
  position: relative;
  padding: 120px 5% 150px;
  overflow: hidden;
}

.ultrafresh-juices-section {
  background: linear-gradient(135deg, #1a5c2e 0%, #228b22 100%);
  color: white;
  margin-top: -80px;
  overflow: hidden;
  /* Diagonal top and bottom */
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
  padding-top: 140px;
  padding-bottom: 120px;
}

.ultrafresh-section-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
}

.ultrafresh-section-text {
  max-width: 450px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ultrafresh-section-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Custom title (HTML / SVG) – replaces h2 */
.ultrafresh-section-title-custom {
  margin-bottom: 20px;
  display: block;
  line-height: 0;
}

.ultrafresh-section-title-custom svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.ultrafresh-section-text p {
  line-height: 1.9;
  opacity: 0.95;
  font-size: 14px;
}

.ultrafresh-section-image img {
  max-height: 350px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.ultrafresh-decoration-img {
  position: absolute;
  opacity: 0.7;
}

.ultrafresh-orange-1 {
  width: 120px;
  bottom: 5%;
  left: 8%;
  transform: rotate(-15deg);
}
.ultrafresh-orange-2 {
  width: 80px;
  top: 15%;
  left: 20%;
  transform: rotate(20deg);
}

/* ========== Hot Beverages Section ========== */
.ultrafresh-hot-beverages-section {
  background: #d4c4a8;
  color: #4a3728;
  padding: 100px 5% 120px;
  position: relative;
  overflow: hidden;
  margin-top: -80px;
  /* Diagonal top and bottom */
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
  padding-top: 120px;
  padding-bottom: 120px;
}

.ultrafresh-hot-beverages-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: auto;
  opacity: 0.2;
  z-index: 1;
}

.ultrafresh-hot-beverages-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ultrafresh-hot-beverages-text {
  max-width: 450px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ultrafresh-hot-beverages-text h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #4a3728;
  font-style: italic;
}

.ultrafresh-hot-beverages-text p {
  line-height: 1.9;
  font-size: 15px;
  color: #5d4a3a;
}

.ultrafresh-hot-beverages-image img {
  max-height: 400px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.ultrafresh-coffee-bean {
  position: absolute;
  width: 40px;
  height: 25px;
  background: #3d2b1f;
  border-radius: 50%;
  opacity: 0.7;
}

.ultrafresh-bean-1 {
  top: 10%;
  right: 15%;
  transform: rotate(25deg);
  width: 50px;
  height: 30px;
}
.ultrafresh-bean-2 {
  top: 25%;
  right: 8%;
  transform: rotate(-15deg);
  width: 35px;
  height: 20px;
}
.ultrafresh-bean-3 {
  top: 40%;
  left: 25%;
  transform: rotate(45deg);
  width: 45px;
  height: 28px;
}
.ultrafresh-bean-4 {
  bottom: 30%;
  left: 10%;
  transform: rotate(-30deg);
  width: 38px;
  height: 22px;
}
.ultrafresh-bean-5 {
  bottom: 15%;
  right: 20%;
  transform: rotate(60deg);
  width: 42px;
  height: 26px;
}
.ultrafresh-bean-6 {
  top: 60%;
  right: 30%;
  transform: rotate(-45deg);
  width: 30px;
  height: 18px;
}

/* ========== Biscuits Section ========== */
.ultrafresh-biscuits-section {
  background: linear-gradient(180deg, #4a5568 0%, #5a6a80 100%);
  color: white;
  padding: 140px 5% 160px;
  position: relative;
  margin-top: -80px;
  overflow: hidden;
  /* Diagonal top and bottom (same angle as others) */
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
  padding-top: 160px;
  padding-bottom: 160px;
}

.ultrafresh-biscuits-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ultrafresh-biscuits-image img {
  max-height: 380px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.ultrafresh-biscuits-text {
  max-width: 500px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ultrafresh-biscuits-text h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 700;
  font-style: italic;
}

.ultrafresh-biscuits-text p {
  line-height: 1.9;
  font-size: 15px;
  opacity: 0.95;
}

/* ========== Desserts Section ========== */
.ultrafresh-desserts-section {
  background: linear-gradient(180deg, #b8860b 0%, #d4a528 50%, #c9922a 100%);
  color: white;
  padding: 140px 5% 120px;
  position: relative;
  margin-top: -80px;
  overflow: hidden;
  /* Diagonal top and bottom */
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
  padding-top: 160px;
  padding-bottom: 140px;
}

.ultrafresh-desserts-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ultrafresh-desserts-text {
  max-width: 450px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ultrafresh-desserts-text h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 25px;
  font-weight: 700;
  font-style: italic;
}

.ultrafresh-desserts-text p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.9;
  font-size: 15px;
}

.ultrafresh-desserts-image img {
  max-height: 400px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ========== Newsletter Section ========== */
.ultrafresh-newsletter-section {
  background: #f5f6f7;
  padding: 50px 5%;
  color: #333;
  position: relative;
  margin-top: -80px;
  overflow: hidden;
  /* Diagonal top only (last angled section) */
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  padding-top: 100px;
}

.ultrafresh-newsletter-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

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

.ultrafresh-newsletter-text h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #1a5c2e;
}

.ultrafresh-newsletter-text p {
  color: #666;
  font-size: 13px;
  max-width: 380px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

.ultrafresh-newsletter-left {
  display: flex;
  align-items: center;
  gap: 20px;
  direction: ltr;
}

.ultrafresh-newsletter-form {
  display: flex;
  gap: 0;
  align-items: center;
  background: white;
  border-radius: 30px;
  padding: 5px;
  border: 1px solid #ddd;
}

.ultrafresh-newsletter-form input {
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  width: 250px;
  font-family: "SetarLTrial", sans-serif;
  font-size: 14px;
  background: transparent;
  outline: none;
}

.ultrafresh-newsletter-form button {
  background: #1a5c2e;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-family: "SetarLTrial", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 14px;
}

.ultrafresh-newsletter-form button:hover {
  background: #145224;
}

.ultrafresh-social-icons {
  display: flex;
  gap: 10px;
  flex-direction: row;
  justify-content: center;
}

.ultrafresh-social-icons a {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background: #4a5568;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  font-size: 18px;
}

/* Elementor icon wrapper – don’t hide/shrink the icon */
.ultrafresh-social-icons a .elementor-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: inherit !important;
  font-size: inherit;
}

/* Font Awesome webfont (i): icon is in ::before, needs color and display */
.ultrafresh-social-icons a i {
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  line-height: 1;
}

/* Elementor/FA SVG output: size and color */
.ultrafresh-social-icons a svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  color: #fff !important;
  flex-shrink: 0;
}
.ultrafresh-social-icons a svg path,
.ultrafresh-social-icons a svg use {
  fill: currentColor !important;
  stroke: currentColor !important;
}

.ultrafresh-social-icons a:hover {
  background: #2d3748;
  color: #fff !important;
}

/* ========== Footer ========== */
.ultrafresh-footer {
  background: #1a2f2a;
  color: white;
  padding: 60px 5% 0;
}

.ultrafresh-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
  gap: 50px;
  direction: rtl;
}

.ultrafresh-footer-column {
  text-align: right;
}

.ultrafresh-footer-column h4 {
  font-size: 1rem;
  margin-bottom: 25px;
  font-weight: 600;
  color: white;
}

.ultrafresh-footer-column p,
.ultrafresh-footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  transition: color 0.3s;
}

.ultrafresh-footer-column a:hover {
  color: white;
}

.ultrafresh-footer-logo-img,
.ultrafresh-footer-logo-wrap {
  max-height: 50px;
  max-width: 140px;
  height: auto;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.ultrafresh-footer-logo-wrap svg {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.ultrafresh-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.ultrafresh-footer-social a {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background: #3d5a50;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none;
  margin-bottom: 0;
  font-size: 18px;
  transition: background 0.3s, color 0.3s;
}

.ultrafresh-footer-social a:hover {
  background: #4a6b5f;
  color: #fff !important;
}

/* Elementor icon wrapper in footer */
.ultrafresh-footer-social a .elementor-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: inherit !important;
  font-size: inherit;
}

/* Font Awesome webfont (i) in footer */
.ultrafresh-footer-social a i {
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  line-height: 1;
}

/* Elementor/FA SVG in footer */
.ultrafresh-footer-social a svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  color: #fff !important;
  flex-shrink: 0;
}
.ultrafresh-footer-social a svg path,
.ultrafresh-footer-social a svg use {
  fill: currentColor !important;
  stroke: currentColor !important;
}

.ultrafresh-contact-item {
  display: flex;
  align-items: center;

  gap: 10px;
  margin-bottom: 12px;
}

.ultrafresh-contact-item svg {
  color: #4caf50;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  min-height: 18px;
  display: block;
}

.ultrafresh-contact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.ultrafresh-footer-divider {
  max-width: 1200px;
  margin: 40px auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4caf50, transparent);
}

.ultrafresh-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.ultrafresh-footer-bottom a {
  color: #4caf50;
  text-decoration: none;
}

/* Float animation */
@keyframes ultrafresh-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.ultrafresh-float-animation {
  animation: ultrafresh-float 4s ease-in-out infinite;
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .ultrafresh-header-wrapper {
    left: 10px;
    right: 10px;
    top: 10px;
  }
  .ultrafresh-logo-wrapper {
    right: 10px;
    top: 5px;
  }
  .ultrafresh-logo-wrapper .ultrafresh-logo-svg {
    width: 90px;
    height: 60px;
  }
  .ultrafresh-header {
    width: calc(100% - 100px);
    flex-wrap: wrap;
    overflow: visible;
  }
  .ultrafresh-cart-icon {
    order: 0;
  }
  /* Show hamburger on mobile */
  .ultrafresh-hamburger {
    display: flex;
    order: 1;
  }
  /* Nav wrap: full width below header row when open */
  .ultrafresh-nav-wrap {
    order: 3;
    width: 100%;
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }
  .ultrafresh-header.ultrafresh-header--menu-open .ultrafresh-nav-wrap {
    max-height: 80vh;
    opacity: 1;
    overflow-y: auto;
  }
  .ultrafresh-nav-menu {
    display: flex;
    flex-direction: column;
    height: auto;
    background: rgba(26, 58, 92, 0.98);
    border-radius: 8px;
    margin-top: 4px;
    padding: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  .ultrafresh-header:not(.ultrafresh-header--menu-open) .ultrafresh-nav-menu {
    display: none;
  }
  .ultrafresh-header.ultrafresh-header--menu-open .ultrafresh-nav-menu {
    display: flex;
  }
  .ultrafresh-nav-menu li {
    height: auto;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .ultrafresh-nav-menu li:first-child {
    border-right: none;
  }
  .ultrafresh-nav-menu li:last-child {
    border-bottom: none;
  }
  .ultrafresh-nav-menu a {
    padding: 14px 20px;
    height: auto;
    justify-content: flex-start;
  }
  /* Mobile: submenus collapsed, show toggle */
  .ultrafresh-submenu-toggle {
    display: flex;
  }
  .ultrafresh-nav-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.15);
    margin-right: 12px;
    margin-left: 12px;
    margin-bottom: 4px;
  }
  [dir="rtl"] .ultrafresh-nav-menu .sub-menu {
    margin-right: 12px;
    margin-left: 12px;
  }
  .ultrafresh-nav-menu .menu-item-has-children.ultrafresh-submenu-open > .sub-menu {
    max-height: 800px;
  }
  .ultrafresh-nav-menu .sub-menu .sub-menu {
    margin-right: 12px;
    margin-left: 12px;
  }
  .ultrafresh-nav-menu .sub-menu .menu-item-has-children > .sub-menu {
    right: auto;
    left: auto;
  }
  .ultrafresh-hero-content,
  .ultrafresh-section-content,
  .ultrafresh-hot-beverages-content,
  .ultrafresh-desserts-content,
  .ultrafresh-biscuits-content {
    flex-direction: column;
    text-align: center;
  }
  /* Hot beverages: image above text on mobile (DOM is text then image) */
  .ultrafresh-hot-beverages-image {
    order: -1;
  }
  .ultrafresh-about-content {
    flex-direction: column;
    text-align: center;
  }
  .ultrafresh-biscuits-section {
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    padding: 100px 5% 120px;
  }
  .ultrafresh-desserts-section {
    clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 100%);
    padding: 100px 5% 80px;
  }
  .ultrafresh-biscuits-text,
  .ultrafresh-desserts-text {
    text-align: center;
  }
  .ultrafresh-about-logo {
    order: -1;
  }
  .ultrafresh-about-bg-decoration {
    width: 150px;
    opacity: 0.1;
  }
  .ultrafresh-hero-text,
  .ultrafresh-section-text,
  .ultrafresh-desserts-text,
  .ultrafresh-about-text,
  .ultrafresh-hot-beverages-text,
  .ultrafresh-biscuits-text {
    max-width: 100%;
    text-align: center;
  }
  .ultrafresh-hero-products {
    margin-top: 40px;
  }
  .ultrafresh-hero-slider-prev,
  .ultrafresh-hero-slider-next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .ultrafresh-hero-slider-prev {
    left: 8px;
  }
  .ultrafresh-hero-slider-next {
    right: 8px;
  }
  .ultrafresh-hero-bg-top {
    width: 200px;
    top: 80px;
  }
  .ultrafresh-hero-bg-bottom {
    width: 100px;
  }
  .ultrafresh-footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Nav menu visibility controlled by JS (hamburger toggle) – see .ultrafresh-header--menu-open above */
  .ultrafresh-hero-text h1 {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .ultrafresh-hero-text h1 {
    font-size: 2.2rem;
  }
  .ultrafresh-newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  .ultrafresh-newsletter-form input {
    width: 100%;
  }
  .ultrafresh-footer-content {
    grid-template-columns: 1fr;
  }
  .ultrafresh-newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  .ultrafresh-newsletter-text {
    text-align: center;
  }
}

.ultrafresh-product-main {
  display: flex !important;
  flex-direction: row-reverse !important;
}

.ultrafresh-price-row,
.ultrafresh-meta-row {
  justify-content: flex-start !important;
}

.ultrafresh-share {
  flex-direction: row-reverse !important;
}
