.elementor-1504 .elementor-element.elementor-element-c61764b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1504 .elementor-element.elementor-element-e8ef0f8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1504 .elementor-element.elementor-element-d95941c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1504 .elementor-element.elementor-element-85cc828{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1504 .elementor-element.elementor-element-58e006d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1504 .elementor-element.elementor-element-5a86eb9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1504 .elementor-element.elementor-element-e7b1908{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1504 .elementor-element.elementor-element-2040c3c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1504 .elementor-element.elementor-element-fb35f07{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1504 .elementor-element.elementor-element-5bd3138{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1504 .elementor-element.elementor-element-5d15a0c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1504 .elementor-element.elementor-element-9538ac7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1504 .elementor-element.elementor-element-2520ad4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1504 .elementor-element.elementor-element-efb151f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1504 .elementor-element.elementor-element-6e19fed{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}body.elementor-page-1504:not(.elementor-motion-effects-element-type-background), body.elementor-page-1504 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for html, class: .elementor-element-7737c12 *//* ================================
   UNIQUE WORLD HERO SLIDER
================================ */

.uwe-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: linear-gradient(135deg, #002b50, #00a0d2);
  border-radius: 14px;
}

.uwe-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease-in-out;
}

.uwe-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.uwe-slide-text {
  max-width: 520px;
  color: #fff;
}

.uwe-slide-text h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.uwe-slide-text p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 22px;
}

.uwe-btn {
  display: inline-block;
  background: #ffe600;
  color: #002b50;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.uwe-slide-img {
  max-width: 420px;
  animation: floatImg 5s ease-in-out infinite;
}

@keyframes floatImg {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* ARROWS */
.uwe-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.6);
  color: #ffe600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.uwe-arrow-left { left: 20px; }
.uwe-arrow-right { right: 20px; }

/* MOBILE */
@media (max-width: 768px) {
  .uwe-hero {
    height: auto;
    padding: 20px 0;
  }

  .uwe-slide {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .uwe-slide-img {
    max-width: 260px;
    margin-top: 20px;
  }

  .uwe-slide-text h2 {
    font-size: 26px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-586b0e3 *//* ================================
   UWE TRUST STRIP
================================ */

.uwe-trust-strip {
  background: #f7f9fc;
  border-bottom: 1px solid #e6e9ef;
}

.uwe-trust-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 20px;
  padding: 18px 16px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.uwe-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 220px;
}

.uwe-trust-item i {
  font-size: 26px;
  color: #00a0d2; /* brand accent */
}

.uwe-trust-item strong {
  display: block;
  font-size: 14px;
  color: #002b50;
  font-weight: 600;
}

.uwe-trust-item span {
  font-size: 12px;
  color: #6b7280;
}

/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {
  .uwe-trust-container {
    gap: 14px;
  }

  .uwe-trust-item {
    flex: 1 1 50%;
  }
}

@media (max-width: 480px) {
  .uwe-trust-item {
    flex: 1 1 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5b9f68b *//* ================================
   MID PAGE OFFER BANNER – PRO
================================ */

.uwe-mid-offer {
  background: linear-gradient(135deg, #002b50, #005f8f);
  margin: 50px 0;
  border-radius: 16px;
}

.uwe-mid-offer-inner {
  max-width: 1300px;
  margin: auto;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.uwe-offer-text {
  flex: 1;
  color: #fff;
}

.uwe-offer-badge {
  display: inline-block;
  background: #00a0d2;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.uwe-offer-text h2 {
  font-size: 30px;
  margin-bottom: 12px;
  color: #ffffff;
}

.uwe-offer-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #e5eef5;
  max-width: 520px;
}

.uwe-offer-actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
}

/* BUTTONS */
.uwe-btn-primary {
  background: #00a0d2;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.uwe-btn-primary:hover {
  background: #0089b5;
}

.uwe-btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.uwe-btn-outline:hover {
  background: #ffffff;
  color: #002b50;
}

/* IMAGE */
.uwe-offer-image {
  flex: 1;
  text-align: right;
}

.uwe-offer-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ================================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {
  .uwe-mid-offer-inner {
    flex-direction: column;
    text-align: center;
  }

  .uwe-offer-text p {
    margin: auto;
  }

  .uwe-offer-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .uwe-offer-image {
    text-align: center;
    margin-top: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-37eaa75 *//* ===============================
   CUSTOMER REVIEWS
================================ */
.uwe-reviews {
  padding: 50px 15px;
  background: #f8f9fa;
}

.uwe-section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 30px;
}

.uwe-review-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.uwe-review-card {
  min-width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.uwe-review-card p {
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.uwe-review-card strong {
  display: block;
  font-size: 14px;
}

.uwe-review-card span {
  font-size: 12px;
  color: #666;
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-8a58f8c *//* =====================================================
   WHAT’S NEW – HEADING ONLY BACKGROUND
===================================================== */

/* REMOVE FULL SECTION BACKGROUND */
.uwe-whats-new {
  background: transparent !important;
  padding: 30px 0;
  margin: 40px 0;
}

/* HEADING STRIP BACKGROUND */
.uwe-whats-new .uwe-section-head {
  background: linear-gradient(135deg, #002b50, #00a0d2);
  padding: 18px 24px;
  border-radius: 14px;
  margin: 0 20px 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* HEADING TEXT */
.uwe-whats-new .uwe-section-head h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

/* SLIDER AREA – CLEAN WHITE */
.uwe-whatsnew-swiper {
  background: transparent;
  padding: 10px 20px 40px;
}

/* KEEP PRODUCT CARDS SAME */
.uwe-whatsnew-swiper .swiper-slide {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .uwe-whats-new .uwe-section-head {
    margin: 0 14px 24px;
    padding: 16px 18px;
  }

  .uwe-whats-new .uwe-section-head h2 {
    font-size: 22px;
  }
}
/* =====================================================
   WHAT’S NEW – USE SAME CARD STYLE AS POPULAR PRODUCTS
===================================================== */

/* SLIDER WRAPPER */
.uwe-whatsnew-swiper .swiper-wrapper {
  display: flex;
  gap: 20px;
}

/* SLIDE WIDTH (IMPORTANT) */
.uwe-whatsnew-swiper .swiper-slide {
  width: 280px !important;
}

/* PRODUCT CARD */
.uwe-whatsnew-swiper .uwe-card,
.uwe-whatsnew-swiper .product,
.uwe-whatsnew-swiper .swiper-slide > div {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  text-align: center;
  height: 100%;
}

/* PRODUCT IMAGE */
.uwe-whatsnew-swiper img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 14px;
}

/* PRODUCT TITLE */
.uwe-whatsnew-swiper h2,
.uwe-whatsnew-swiper h3,
.uwe-whatsnew-swiper h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #111;
  margin: 10px 0;
}

/* PRICE STYLE */
.uwe-whatsnew-swiper .price {
  font-size: 15px;
  font-weight: 700;
  color: #e10600;
}

.uwe-whatsnew-swiper del {
  color: #888;
  font-weight: 400;
  margin-right: 6px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .uwe-whatsnew-swiper .swiper-slide {
    width: 240px !important;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0f74f13 *//* ===============================
   MID PAGE OFFER – PRO
================================ */
.uwe-offer-banner {
  background: linear-gradient(135deg, #002b50, #00a0d2);
  margin: 70px 0;
}

.uwe-offer-content {
  max-width: 1300px;
  margin: auto;
  padding: 60px 20px;
  color: #fff;
}

.uwe-offer-badge {
  display: inline-block;
  background: #ffd500;
  color: #000;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.uwe-offer-text h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.uwe-offer-text p {
  max-width: 600px;
  font-size: 16px;
  opacity: 0.95;
}

.uwe-offer-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.uwe-btn {
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.uwe-btn.primary {
  background: #25d366;
  color: #000;
}

.uwe-btn.outline {
  border: 2px solid #fff;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .uwe-offer-text h2 {
    font-size: 26px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1cdb7d1 *//* ======================================================
   UNIQUE WORLD ELECTRONICS LLC — FINAL GLASS CAROUSEL
====================================================== */

.uwe-brand-tile-carousel {
    width: 100%;
    overflow: hidden;
    padding: 25px 0;
    background: transparent;
}

.uwe-brand-tile-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: uweTileScroll 32s linear infinite;
}

/* 🔷 GLASS PILL */
.uwe-tile-pill {
    padding: 16px 36px;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
    color: #ffffff;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);

    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

/* HOVER EFFECT */
.uwe-tile-pill:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.22);
    color: #ffffff;
    border-color: rgba(255,255,255,0.6);
    box-shadow: 0 10px 25px rgba(0,160,210,0.45);
}

/* Shine */
.uwe-tile-pill::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    width: 70px;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-25deg);
    opacity: 0;
    transition: 0.4s;
}

.uwe-tile-pill:hover::after {
    left: 200px;
    opacity: 1;
}

/* Auto scroll */
@keyframes uweTileScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-55%); }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-251a845 *//* Title */
.uwe-section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #003d5c;
}

/* Carousel Wrapper */
.uwe-recent-carousel {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px;
    overflow-x: auto !important;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}
.uwe-recent-carousel::-webkit-scrollbar {
    display: none;
}

/* Product Card */
.uwe-recent-carousel li.product {
    min-width: 180px;
    max-width: 180px;
    flex: 0 0 auto;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-495dbe4 *//* ===============================
   FINAL MEGA CTA
================================ */
.uwe-mega-cta {
  padding: 60px 15px;
  background: linear-gradient(135deg, #002b50, #00a0d2);
  text-align: center;
  color: #fff;
}

.uwe-mega-cta h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.uwe-mega-cta p {
  font-size: 15px;
  margin-bottom: 25px;
}

.uwe-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.uwe-btn {
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  background: #ffe600;
}

.uwe-btn.call {
  background: #fff;
}

.uwe-btn:hover {
  opacity: 0.9;
}/* End custom CSS */