/** Shopify CDN: Minification failed

Line 360:0 All "@import" rules must come first
Line 1442:36 Expected ":"
Line 1554:1 Expected "}" to go with "{"

**/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root{
    --primary:#00cfff;
    --primary-dark:#0066ff;
    --dark:#0f172a;
    --text:#5b6475;
    --bg:#f5fbff;
    --white:#ffffff;
    --border:#dbeafe;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--dark);
}

/* HEADER */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(0,0,0,0.04);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 7%;
    z-index:999;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
    font-size:2rem;
    font-weight:800;
    color:var(--dark);
}

.logo span{
    color:var(--primary);
}

.logo-icon{
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo-icon svg{
    width:100%;
}

.wind-line{
    fill:none;
    stroke:url(#windGradient);
    stroke-width:4;
    stroke-linecap:round;
}

.line1{
    animation:windMove 3s ease-in-out infinite;
}

.line2{
    animation:windMove 4s ease-in-out infinite;
}

.line3{
    animation:windMove 5s ease-in-out infinite;
}

@keyframes windMove{
    0%{transform:translateX(0);}
    50%{transform:translateX(8px);}
    100%{transform:translateX(0);}
}

.nav{
    display:flex;
    gap:40px;
}

.nav a{
    text-decoration:none;
    color:var(--dark);
    font-weight:600;
    transition:0.3s;
}

.nav a:hover{
    color:var(--primary);
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:160px 7% 100px;
    gap:80px;
}

.hero-left{
    flex:1;
}

.hero-badge{
    display:inline-flex;
    padding:14px 24px;
    border-radius:999px;
    background:#e0f7ff;
    color:#009dff;
    font-weight:600;
    margin-bottom:30px;
}

.hero h1{
    font-size:5rem;
    line-height:1.05;
    font-weight:800;
    margin-bottom:30px;
}

.hero h1 span{
    background:linear-gradient(90deg,var(--primary),var(--primary-dark));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    font-size:1.2rem;
    color:var(--text);
    line-height:1.8;
    max-width:760px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:50px;
}

.btn-primary{
    padding:18px 34px;
    border-radius:18px;
    background:linear-gradient(90deg,var(--primary),var(--primary-dark));
    color:white;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 15px 40px rgba(0,174,255,0.25);
    transition:0.35s;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    padding:18px 34px;
    border-radius:18px;
    background:white;
    border:1px solid var(--border);
    color:var(--dark);
    text-decoration:none;
    font-weight:700;
}

.hero-stats{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
}

.stat-card{
    background:white;
    border-radius:24px;
    padding:26px 30px;
    min-width:180px;
    box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

.stat-card h3{
    color:var(--primary-dark);
    font-size:2rem;
    margin-bottom:6px;
}

.stat-card p{
    margin:0;
    font-size:1rem;
}

/* HERO RIGHT */

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
    position:relative;
}

.hero-circle{
    width:540px;
    height:540px;
    border-radius:50%;
    background:radial-gradient(circle,#e9fbff,#dff6ff);
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.hero-device{
    width:420px;
    height:250px;
    background:white;
    border-radius:34px;
    position:relative;
    z-index:2;
    box-shadow:0 30px 80px rgba(0,0,0,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-device::before{
    content:'';
    width:160px;
    height:160px;
    border:12px solid var(--primary);
    border-radius:50%;
    position:absolute;
}

.hero-device::after{
    content:'';
    width:220px;
    height:10px;
    background:#94a3b8;
    border-radius:20px;
    position:absolute;
    bottom:45px;
}

/* SECTION */

.section{
    padding:120px 7%;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading span{
    display:inline-flex;
    padding:12px 22px;
    border-radius:999px;
    background:#e0f7ff;
    color:#009dff;
    font-weight:600;
    margin-bottom:24px;
}

.section-heading h2{
    font-size:4rem;
    margin-bottom:20px;
}

.section-heading p{
    color:var(--text);
    font-size:1.15rem;
}

/* BRANDS */

.brand-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:34px;
}

.brand-card{
    background:white;
    border-radius:34px;
    padding:40px;
    border:1px solid rgba(0,0,0,0.05);
    transition:0.4s;
    text-decoration:none;
    color:inherit;
}

.brand-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,0.08);
}

.brand-card img{
    width:140px;
    height:60px;
    object-fit:contain;
    margin-bottom:34px;
    filter:grayscale(100%);
    opacity:0.7;
    transition:0.4s;
}

.brand-card:hover img{
    filter:none;
    opacity:1;
    transform:scale(1.05);
}

.brand-card h3{
    font-size:2rem;
    margin-bottom:20px;
}

.brand-card p{
    color:var(--text);
    line-height:1.8;
    margin-bottom:28px;
}

.brand-card span{
    color:var(--primary-dark);
    font-weight:700;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

.hero {
  min-height: 90vh;
  padding: 130px 7% 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  background:
    radial-gradient(circle at 12% 20%, rgba(196,230,255,0.55), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(190,245,255,0.7), transparent 32%),
    linear-gradient(120deg, #fbf7ff 0%, #ffffff 50%, #e4fbff 100%);
}

.hero-badge {
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(0,174,234,0.10);
  border: 1px solid rgba(0,174,234,0.24);
  color: #008bbd;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: -3px;
  margin: 0;
  font-weight: 900;
  color: #111827;
}

.hero h1 span {
  background: linear-gradient(90deg, #00bcd4, #0057ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 650px;
  margin: 30px 0;
  color: #64748b;
  font-size: 19px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 17px 32px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #00b8d9;
  color: white;
  box-shadow: 0 16px 38px rgba(0,184,217,0.32);
}

.btn-secondary {
  background: white;
  color: #111827;
  border: 1px solid #dbeafe;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
}

.hero-right {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #e3faff 62%, rgba(0,184,217,0.14) 100%);
  border: 1px solid rgba(0,174,234,0.18);
  box-shadow: 0 45px 120px rgba(0,174,234,0.18);
}

.hero-device {
  position: relative;
  width: 320px;
  height: 240px;
  border-radius: 36px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(199,237,247,0.95);
  box-shadow: 0 35px 90px rgba(15,23,42,0.16);
  animation: airflowFloat 4s ease-in-out infinite;
}

.hero-device::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 15px solid #00b8d9;
  top: 70px;
  left: calc(50% - 60px);
  box-shadow: inset 0 0 0 8px rgba(255,255,255,0.9);
}

.hero-device::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 7px;
  background: #94a3b8;
  border-radius: 999px;
  top: 124px;
  left: calc(50% - 80px);
}

@keyframes airflowFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 90px 6% 70px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-right {
    height: 340px;
  }

  .hero-circle {
    width: 320px;
    height: 320px;
  }

  .hero-device {
    width: 250px;
    height: 190px;
  }
}.airflow-section {
  padding: 110px 7%;
  background: #f5fbff;
}

.airflow-services {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 184, 217, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.06);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(0, 184, 217, 0.14);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #e0f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #0f172a;
}

.service-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}/* PREMIUM HEADER */

.shopify-section-group-header-group {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}

.header {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

.header__heading-link,
.header__heading {
  font-weight: 900 !important;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.header__heading-link {
  font-size: 28px !important;
  color: #0f172a !important;
  text-decoration: none !important;
}

.header__heading-link::first-letter {
  color: #00b8d9;
}

.header__menu-item {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #334155 !important;
  text-decoration: none !important;
}

.header__menu-item:hover {
  color: #00b8d9 !important;
}

.header__icons svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 900px) {
  .header__heading-link {
    font-size: 22px !important;
  }
}.airflow-why {
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: linear-gradient(180deg, #ffffff, #f7fcff);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.05);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(0, 184, 217, 0.13);
}

.why-card h3 {
  font-size: 42px;
  color: #00b8d9;
  margin-bottom: 18px;
  font-weight: 900;
}

.why-card h4 {
  font-size: 21px;
  color: #0f172a;
  margin-bottom: 12px;
}

.why-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}.airflow-contact {
  background:
    radial-gradient(circle at top right, rgba(0,184,217,0.10), transparent 30%),
    #f8fcff;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.contact-left h2 {
  font-size: 58px;
  line-height: 1.05;
  margin: 22px 0;
  color: #0f172a;
  max-width: 700px;
}

.contact-left p {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  max-width: 650px;
}

.contact-buttons {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 16px 30px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.primary-btn {
  background: #00b8d9;
  color: white;
  box-shadow: 0 20px 45px rgba(0,184,217,0.25);
}

.primary-btn:hover {
  transform: translateY(-4px);
}

.secondary-btn {
  background: white;
  color: #0f172a;
  border: 1px solid rgba(15,23,42,0.08);
}

.secondary-btn:hover {
  transform: translateY(-4px);
}

.contact-card {
  background: white;
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 24px 70px rgba(15,23,42,0.08);
  border: 1px solid rgba(15,23,42,0.06);
}

.contact-card h3 {
  font-size: 32px;
  margin-bottom: 34px;
  color: #0f172a;
}

.contact-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.contact-info strong {
  color: #0f172a;
  margin-bottom: 6px;
}

.contact-info span {
  color: #64748b;
}

@media (max-width: 950px) {
  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-left h2 {
    font-size: 42px;
  }
}.airflow-footer {
  padding: 80px 7% 30px;
  background: #0f172a;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 18px;
}

.footer-brand h2 span {
  color: #00b8d9;
}

.footer-brand p {
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 380px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-col a:hover {
  color: #00d4ff;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #94a3b8;
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}.airflow-specs-section {
  padding: 100px 7%;
  background: #ffffff;
}

.specs-container {
  max-width: 1180px;
  margin: 0 auto;
}

.specs-heading {
  text-align: center;
  margin-bottom: 54px;
}

.specs-heading h2 {
  font-size: 48px;
  line-height: 1.1;
  color: #0f172a;
  margin: 18px 0 14px;
}

.specs-heading p {
  color: #64748b;
  font-size: 17px;
}

.specs-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}

.spec-card {
  background: #f8fcff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.spec-card span {
  font-size: 30px;
  display: block;
  margin-bottom: 14px;
}

.spec-card h3 {
  font-size: 28px;
  color: #00a8d8;
  margin-bottom: 8px;
  font-weight: 900;
}

.spec-card p {
  color: #64748b;
  font-size: 15px;
}

.specs-table {
  background: #f8fafc;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.07);
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row strong {
  color: #0f172a;
}

.spec-row span {
  color: #475569;
}

@media (max-width: 900px) {
  .specs-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs-heading h2 {
    font-size: 36px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .specs-cards {
    grid-template-columns: 1fr;
  }
}/* PREMIUM PRODUCT PAGE */

.product {
  padding: 80px 7% 60px !important;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,184,217,0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.product__media-wrapper {
  background: #ffffff;
  border-radius: 36px;
  padding: 34px;
  box-shadow: 0 28px 80px rgba(15,23,42,0.08);
  border: 1px solid rgba(15,23,42,0.06);
}

.product__media img {
  border-radius: 26px !important;
  object-fit: contain !important;
}

.product__info-wrapper {
  background: #ffffff;
  border-radius: 36px;
  padding: 42px !important;
  box-shadow: 0 28px 80px rgba(15,23,42,0.08);
  border: 1px solid rgba(15,23,42,0.06);
}

.product__title h1,
.product__title {
  font-size: 46px !important;
  line-height: 1.05 !important;
  font-weight: 900 !important;
  color: #0f172a !important;
  letter-spacing: -1.5px;
}

.price {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #00a8d8 !important;
}

.product-form__input legend,
.form__label {
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 12px !important;
}

.product-form__input input[type="radio"] + label {
  border-radius: 18px !important;
  border: 1px solid rgba(15,23,42,0.12) !important;
  padding: 16px 26px !important;
  font-weight: 800 !important;
  background: #ffffff !important;
  transition: 0.25s ease !important;
}

.product-form__input input[type="radio"]:checked + label {
  background: #0f172a !important;
  color: #ffffff !important;
  border-color: #0f172a !important;
  box-shadow: 0 16px 36px rgba(15,23,42,0.18);
}

.product-form__buttons .button,
.shopify-payment-button__button {
  border-radius: 18px !important;
  min-height: 58px !important;
  font-weight: 900 !important;
  font-size: 16px !important;
}

.product-form__submit {
  background: #00b8d9 !important;
  color: white !important;
  box-shadow: 0 20px 45px rgba(0,184,217,0.25);
}

.product__description {
  color: #475569 !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

.quantity {
  border-radius: 16px !important;
  overflow: hidden;
}

@media (max-width: 900px) {
  .product {
    padding: 45px 5% !important;
  }

  .product__title h1,
  .product__title {
    font-size: 34px !important;
  }

  .product__info-wrapper {
    padding: 28px !important;
  }
}/* Hide default product description */
.product__description {
  display: none !important;
}.airflow-product-details {
  padding: 100px 7%;
  background:
    radial-gradient(circle at top left, rgba(0,184,217,0.08), transparent 30%),
    #f8fcff;
}

.details-container {
  max-width: 1180px;
  margin: 0 auto;
}

.details-intro {
  max-width: 760px;
  margin-bottom: 54px;
}

.details-intro h2 {
  font-size: 52px;
  line-height: 1.08;
  color: #0f172a;
  margin: 18px 0;
  letter-spacing: -1px;
}

.details-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.detail-card {
  background: white;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(15,23,42,0.07);
  box-shadow: 0 22px 60px rgba(15,23,42,0.06);
  transition: 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(0,184,217,0.13);
}

.detail-card h3 {
  font-size: 21px;
  color: #0f172a;
  margin-bottom: 14px;
}

.detail-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 1000px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .details-intro h2 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
}.airflow-collection-hero {
  padding: 90px 7% 60px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0,184,217,0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.collection-hero-inner {
  max-width: 900px;
}

.collection-hero-inner h1 {
  font-size: 64px;
  line-height: 1.05;
  color: #0f172a;
  margin: 20px 0;
  letter-spacing: -2px;
}

.collection-hero-inner p {
  font-size: 19px;
  line-height: 1.8;
  color: #64748b;
  max-width: 720px;
}

@media (max-width: 700px) {
  .collection-hero-inner h1 {
    font-size: 42px;
  }
}.template-collection .collection {
  padding-top: 0 !important;
}

.template-collection .facets {
  background: white;
  padding: 18px 24px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  margin-bottom: 40px;
}

.template-collection .product-card-wrapper {
  transition: all 0.35s ease;
}

.template-collection .product-card-wrapper:hover {
  transform: translateY(-8px);
}

.template-collection .card {
  border-radius: 28px;
  overflow: hidden;
  background: white;
  box-shadow: 0 12px 40px rgba(15,23,42,0.06);
  padding: 20px;
}

.template-collection .card img {
  transition: all 0.4s ease;
}

.template-collection .card:hover img {
  transform: scale(1.05);
}

.template-collection .price {
  color: #00b8d9;
  font-weight: 800;
  font-size: 30px;
}

.template-collection .card__heading {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.template-collection .grid {
  gap: 34px !important;
}.hero-circle,
.hero-device {
  display: none !important;
}

.hero-ac-image {
  width: 100%;
  max-width: 620px;
  display: block;
  margin-left: auto;
  object-fit: cover;
  object-position: 72% center;
  aspect-ratio: 1.2 / 1;
  border-radius: 40px;
  filter: drop-shadow(0 35px 70px rgba(0, 184, 217, 0.22));
  animation: airflowFloat 5s ease-in-out infinite;
}.premium-hero {
  min-height: 760px;
  padding: 90px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  background:
    radial-gradient(circle at 78% 35%, rgba(0,184,217,0.22), transparent 32%),
    linear-gradient(115deg, #ffffff 0%, #f6fbff 45%, #dff8ff 100%);
  overflow: hidden;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(0,184,217,0.10);
  border: 1px solid rgba(0,184,217,0.25);
  color: #0099c8;
  font-weight: 800;
  margin-bottom: 34px;
}

.hero-left h1 {
  font-size: clamp(48px, 5vw, 86px);
  line-height: 0.95;
  letter-spacing: -3px;
  color: #0f172a;
  margin: 0 0 34px;
  font-weight: 950;
}

.hero-left p {
  max-width: 650px;
  font-size: 20px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 18px 30px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: #00b8d9;
  color: white;
  box-shadow: 0 18px 45px rgba(0,184,217,0.28);
}

.btn-secondary {
  background: white;
  color: #0f172a;
  border: 1px solid rgba(15,23,42,0.10);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-4px);
}

.hero-right {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,217,0.22), rgba(0,184,217,0.05), transparent 65%);
  border: 1px solid rgba(0,184,217,0.18);
}

.hero-ac-only {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  object-fit: cover;
  object-position: right center;
  aspect-ratio: 1.5 / 1;
  clip-path: inset(0 0 0 45%);
  transform: scale(1.55) translateX(-60px);
  filter: drop-shadow(0 40px 80px rgba(0,184,217,0.28));
  animation: airflowFloat 5s ease-in-out infinite;
}

@keyframes airflowFloat {
  0%, 100% { transform: scale(1.55) translateX(-60px) translateY(0); }
  50% { transform: scale(1.55) translateX(-60px) translateY(-14px); }
}

@media (max-width: 950px) {
  .premium-hero {
    grid-template-columns: 1fr;
    padding: 70px 6%;
    text-align: center;
  }

  .hero-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-ac-only {
    clip-path: inset(0 0 0 35%);
    transform: scale(1.35) translateX(-40px);
  }
}.hero-ac-only,
.hero-ac-image {
  display: none !important;
}
.hero-right {
  position: relative !important;
  min-height: 520px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.hero-circle {
  position: absolute !important;
  width: 560px !important;
  height: 560px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(0,184,217,0.18), rgba(0,184,217,0.05), transparent 70%) !important;
  border: 1px solid rgba(0,184,217,0.16) !important;
}

.hero-device {
  position: relative !important;
  z-index: 2 !important;
  width: 320px !important;
  height: 210px !important;
  border-radius: 34px !important;
  background: #f8fafc !important;
  box-shadow: 0 25px 70px rgba(15,23,42,0.12) !important;
}

.hero-device::before {
  content: "" !important;
  position: absolute !important;
  width: 135px !important;
  height: 135px !important;
  border: 16px 
  opacity:0.4;
  color:white;
}.shopify-policy__container{
  max-width: 1200px !important;
  width: 100% !important;
}

.shopify-policy__body{
  display:block !important;
}

.shopify-policy__body *{
  word-break: normal !important;
  white-space: normal !importan
  overflow-wrap: normal !important;t;
.footer__content-bottom {
  margin-top: -120px !important;
  padding-top: 0 !important;
}

.footer__content-bottom-wrapper {
  display: flex !important;
  flex-direction: column-reverse !important;
  align-items: flex-start !important;
  gap: 20px !important;
}

.footer__copyright {
  margin-top: 40px !important;
}.af-footer {
  background: #0f172a;
  color: white;
  padding: 90px 7% 36px;
}

.af-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 70px;
  max-width: 1500px;
  margin: 0 auto;
}

.af-footer h2 {
  font-size: 42px;
  margin: 0 0 22px;
  font-weight: 900;
}

.af-footer h2 span {
  color: #00b8d9;
}

.af-footer h3 {
  font-size: 22px;
  margin: 0 0 22px;
  font-weight: 800;
}

.af-footer p,
.af-footer a {
  display: block;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 10px;
}

.af-footer a:hover {
  color: #00b8d9;
}

.af-footer-policies {
  max-width: 1500px;
  margin: 60px auto 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.af-footer-policies a,
.af-footer-policies span {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  text-decoration: none;
}

.af-footer-policies a:hover {
  color: #00b8d9;
}

.af-footer-line {
  max-width: 1500px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 auto 24px;
}

.af-footer-bottom {
  max-width: 1500px;
  margin: 0 auto;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  text-align: center;
}

@media (max-width: 900px) {
  .af-footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .af-footer {
    padding: 65px 6% 32px;
  }

  .af-footer-policies {
    justify-content: flex-start;
  }

  .af-footer-bottom {
    text-align: left;
  }
}