/*! CSS Used from: http://localhost:5500/autoflash.css */

:root {
  --af-primary: #c41e2a;
  --af-primary-dark: #a01822;
  --af-primary-light: #e84550;
  --af-secondary: #1a1a2e;
  --af-dark: #0f0f1a;
  --af-light: #f8f9fa;
  --af-gray: #6c757d;
  --af-gray-light: #e9ecef;
  --af-gold: #d4a843;
  --af-white: #ffffff;
  --af-shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --af-shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --af-shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --af-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --af-radius: 20px;
  --af-radius-sm: 12px;
  --af-radius-lg: 24px;
  --af-radius-xl: 50px;
}



.af-gap-5 {
  gap: 40px;
}
.af-grid {
  display: grid;
}
.af-grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.af-stats {
  background: #1a1a2e;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.af-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.af-stat-item {
  text-align: center;
  color: var(--af-white);
  position: relative;
  z-index: 1;
}
.af-stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #c41e2a;
  margin-bottom: 8px;
}
.af-stat-label {
  font-size: 15px;
  opacity: 0.8;
  color: white;
}
@media (max-width: 1024px) {
  .af-grid-cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .af-grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}


/*  */

/*! CSS Used from: https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css */
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}
.fas {
  font-family: "Font Awesome 6 Free";
}
.fa-lock:before {
  content: "\f023";
}
.fa-shield-alt:before {
  content: "\f3ed";
}
.fa-shipping-fast:before {
  content: "\f48b";
}
.fas {
  font-weight: 900;
}
/*! CSS Used from: http://localhost:5500/autoflash.css */

.af-gap-4 {
  gap: 24px;
}
.af-grid {
  display: grid;
}
.af-grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.af-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  background: #ffffff;
  border-radius: 10px;
  transition: var(--af-transition);
}
.af-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--af-shadow-md);
}
.af-feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    #c41e2a 0%,
    #e84550 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
}
.af-feature-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.af-feature-desc {
  font-size: 14px;
  color: var(--af-gray);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .af-grid-cols-3 {
    grid-template-columns: 1fr;
  }
}
/*! CSS Used fontfaces */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2)
      format("woff2"),
    url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.ttf)
      format("truetype");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2)
      format("woff2"),
    url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.ttf)
      format("truetype");
}


.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


/* testimonial css */

/*! CSS Used from: http://127.0.0.1:5500/autoflash.css */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.af-gap-3 {
  gap: 16px;
}
.af-grid {
  display: grid;
}
.af-grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.af-section-subtitle {
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--af-primary);
  margin-bottom: 12px;
}
.af-section-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--af-secondary);
  margin-bottom: 16px;
}
.af-section-desc2 {
  font-size: 16px;
  color: var(--af-gray);
  max-width: 600px;
  margin: 0 auto;
}
.af-testimonials {
  /*background: linear-gradient(*/
  /*  135deg,*/
  /*  var(--af-secondary) 0%,*/
  /*  var(--af-dark) 100%*/
  /*);*/
  background: #ffffff;
  color: black;
  /*padding: 80px 0;*/
  position: relative;
  overflow: hidden;
  margin-top: -50px;
}
.af-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.af-testimonial-card {
  background: rgb(121 79 79 / 5%);

  backdrop-filter: blur(10px);
  border-radius: var(--af-radius);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--af-transition);
  position: relative;
  z-index: 1;
}
.af-testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}
.af-testimonial-quote {
  font-size: 48px;
  color: var(--af-primary);
  line-height: 1;
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
}
.af-testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.9;
}
.af-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.af-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--af-primary) 0%,
    var(--af-primary-light) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--af-white);
}
.af-author-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.af-author-info span {
  font-size: 13px;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .af-grid-cols-3 {
    grid-template-columns: 1fr;
  }
}
/*! CSS Used fontfaces */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}


/* cta */

/*! CSS Used from: https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css */
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}
.fas {
  font-family: "Font Awesome 6 Free";
}
.fa-headset:before {
  content: "\f590";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-map-marker-alt:before {
  content: "\f3c5";
}
.fas {
  font-weight: 900;
}
/*! CSS Used from: http://127.0.0.1:5500/autoflash.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.af-gap-3 {
  gap: 16px;
}
.af-grid {
  display: grid;
}
.af-grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.af-py-4 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.af-promo-card {
  border-radius: var(--af-radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 40px;
  text-decoration: none;
  color: inherit;
  transition: var(--af-transition);
}
.af-promo-card:hover {
  transform: scale(1.02);
}
.af-promo-red {
  background: linear-gradient(135deg, #c41e2a 0%, #8b1320 100%);
  color: var(--af-white);
}
.af-promo-dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  color: var(--af-white);
}
.af-promo-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: var(--af-radius-xl);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}
.af-promo-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.af-promo-desc {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.5;
}
.af-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--af-white);
  color: var(--af-secondary);
  padding: 12px 24px;
  border-radius: var(--af-radius-xl);
  font-weight: 600;
  font-size: 14px;
  transition: var(--af-transition);
}
.af-promo-btn:hover {
  transform: translateX(4px);
}
.af-promo-img {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 45%;
  z-index: 1;
}
.af-promo-img img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .af-grid-cols-2 {
    grid-template-columns: 1fr;
  }
}
/*! CSS Used fontfaces */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2)
      format("woff2"),
    url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.ttf)
      format("truetype");
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2)
      format("woff2"),
    url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.ttf)
      format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2)
    format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2)
    format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2)
    format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}



/* category styles */

.category-card{
    background: var(--af-white);
    border-radius: var(--af-radius);
    overflow: hidden;
    box-shadow: var(--af-shadow-sm);
    transition: var(--af-transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.category-image-wrapper{
    height: 160px;
    background: linear-gradient(135deg, #f8f5f2 0%, #e8e0d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.category-title{
    padding: 20px 0px;
    text-align: center;
}

.af-section-title{
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--af-secondary);
    margin-bottom: 16px;
}

.af-section-desc {
    font-size: 16px;
    color: var(--af-gray);
    max-width: 600px;
    /*margin: 0 auto;*/
}



.af-section-header {
    /*text-align: center;*/
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}

.af-section-header2{
    /*text-align: center;*/
    /*margin-bottom: 40px;*/
      margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .af-section-header {
         margin-bottom: 40px;
        display: flex;
        justify-content: space-between;
        /*margin-top: 70px;*/
        /*flex-direction: column;*/
    }
    
    .af-section-header2 {
         margin-bottom: 40px;
        display: flex;
        justify-content: space-between;
        margin-top: 70px;
        flex-direction: column;
    }
    
    .product-section {
        max-width: 1450px !important;
        /* margin: auto; */
        padding: 0px 20px !important;
    }
    
    .af-section-subtitle{
        font-size: 15px;

    }
    
   
}

/* full width section  */

/*.nx-full-banner-section{*/
/*    position:relative;*/
/*    width:100%;*/
/*    min-height:700px;*/
/*    display:flex;*/
/*    align-items:center;*/
/*    padding:120px 7%;*/
/*    overflow:hidden;*/
/*    background:*/
/*    linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),*/
/*    url('https://images.unsplash.com/photo-1556911220-bff31c812dba?q=80&w=1600&auto=format&fit=crop') center center/cover no-repeat;*/
/*    border-radius:0;*/
/*}*/

/*.nx-full-banner-overlay{*/
/*    position:absolute;*/
/*    inset:0;*/
/*    background:linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 100%);*/
/*    z-index:1;*/
/*}*/

/*.nx-full-banner-content{*/
/*    position:relative;*/
/*    z-index:2;*/
/*    max-width:650px;*/
/*    color:#fff;*/
/*}*/

/*.nx-banner-tag{*/
/*    display:inline-block;*/
/*    padding:10px 18px;*/
/*    background:rgba(255,255,255,0.12);*/
/*    border:1px solid rgba(255,255,255,0.18);*/
/*    backdrop-filter:blur(10px);*/
/*    border-radius:50px;*/
/*    font-size:14px;*/
/*    font-weight:600;*/
/*    letter-spacing:1px;*/
/*    margin-bottom:25px;*/
/*}*/

/*.nx-full-banner-content h1{*/
/*    font-size:72px;*/
/*    line-height:1.1;*/
/*    font-weight:800;*/
/*    margin:0 0 25px;*/
/*    letter-spacing:-2px;*/
/*}*/

/*.nx-full-banner-content p{*/
/*    font-size:18px;*/
/*    line-height:1.8;*/
/*    color:rgba(255,255,255,0.88);*/
/*    max-width:550px;*/
/*    margin-bottom:35px;*/
/*}*/

/*.nx-banner-buttons{*/
/*    display:flex;*/
/*    gap:18px;*/
/*    flex-wrap:wrap;*/
/*}*/

/*.nx-btn-primary,*/
/*.nx-btn-secondary{*/
/*    text-decoration:none;*/
/*    padding:16px 32px;*/
/*    border-radius:60px;*/
/*    font-size:15px;*/
/*    font-weight:700;*/
/*    transition:0.3s ease;*/
/*    display:inline-flex;*/
/*    align-items:center;*/
/*    justify-content:center;*/
/*}*/

/*.nx-btn-primary{*/
/*    background:#ffffff;*/
/*    color:#111;*/
/*}*/

/*.nx-btn-primary:hover{*/
/*    transform:translateY(-3px);*/
/*}*/

/*.nx-btn-secondary{*/
/*    border:1px solid rgba(255,255,255,0.35);*/
/*    color:#fff;*/
/*    background:rgba(255,255,255,0.08);*/
/*    backdrop-filter:blur(8px);*/
/*}*/

/*.nx-btn-secondary:hover{*/
/*    background:#fff;*/
/*    color:#111;*/
/*}*/

/*@media(max-width:991px){*/

/*    .nx-full-banner-section{*/
/*        min-height:600px;*/
/*        padding:90px 6%;*/
/*    }*/

/*    .nx-full-banner-content h1{*/
/*        font-size:54px;*/
/*    }*/

/*    .nx-full-banner-content p{*/
/*        font-size:16px;*/
/*    }*/
/*}*/

/*@media(max-width:767px){*/

/*    .nx-full-banner-section{*/
/*        min-height:520px;*/
/*        padding:80px 20px;*/
/*        text-align:center;*/
/*        justify-content:center;*/
/*    }*/

/*    .nx-full-banner-content{*/
/*        max-width:100%;*/
/*    }*/

/*    .nx-full-banner-content h1{*/
/*        font-size:38px;*/
/*        line-height:1.2;*/
/*        letter-spacing:-1px;*/
/*    }*/

/*    .nx-full-banner-content p{*/
/*        font-size:15px;*/
/*        line-height:1.7;*/
/*        margin-bottom:28px;*/
/*    }*/

/*    .nx-banner-buttons{*/
/*        justify-content:center;*/
/*        gap:14px;*/
/*    }*/

/*    .nx-btn-primary,*/
/*    .nx-btn-secondary{*/
/*        width:100%;*/
/*        padding:15px 20px;*/
/*    }*/
/*}*/

.zr-mini-banner-wrap{
    position:relative;
    width:100%;
    height: 350px;
    overflow:hidden;
    border-radius:24px;
    background:
    linear-gradient(rgba(0,0,0,0.20),rgba(0,0,0,0.20)),
    url('https://autoflash.extest.in/public/uploads/20260522/aa608d599973e03357fe50d04d15733c.jpeg') center center/contain no-repeat;
}

.zr-mini-banner-overlay{
    position:absolute;
    inset:0;
    /*background:linear-gradient(90deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.05) 100%);*/
}

@media(max-width:991px){

    .zr-mini-banner-wrap{
        height:260px;
        border-radius:18px;
    }
}

@media(max-width:767px){

    .zr-mini-banner-wrap{
        height: 100px;
        border-radius:14px;
    }
}


/* half widht banner */

.vx-half-banner-main{
    width:100%;
    display:flex;
    align-items:center;
    overflow:hidden;
    border-radius:28px;
    background: #7a0a22;
    min-height:420px;
}

.vx-half-banner-left{
    width:50%;
    padding:60px;
    color:#fff;
}

.vx-mini-tag{
    display:inline-block;
    font-size:13px;
    letter-spacing:2px;
    color:#cfcfcf;
    margin-bottom:18px;
}

.vx-half-banner-left h2{
    font-size: 30px;
    line-height:1.05;
    font-weight:800;
    margin:0 0 22px;
}

.vx-half-banner-left p{
    font-size:18px;
    line-height:1.8;
    color:#cfcfcf;
    max-width:520px;
    margin-bottom:32px;
}

.vx-banner-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.vx-banner-btns a{
    text-decoration:none;
    padding:16px 34px;
    border-radius:60px;
    font-size:15px;
    font-weight:700;
    transition:0.3s ease;
}

.vx-banner-btns a:first-child{
    background:#fff;
    color:#111;
}

.vx-banner-btns a:last-child{
    border:1px solid rgba(255,255,255,0.15);
    background: #5f5f65;
    color:#fff;
}

.vx-banner-btns a:hover{
    transform:translateY(-3px);
}

.vx-half-banner-right{
    width:50%;
    height:420px;
}

.vx-half-banner-right img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

@media(max-width:991px){

    .vx-half-banner-main{
        flex-direction:column;
    }

    .vx-half-banner-left,
    .vx-half-banner-right{
        width:100%;
    }

    .vx-half-banner-left{
        padding:45px 30px;
    }

    .vx-half-banner-left h2{
        font-size:42px;
    }

    .vx-half-banner-right{
        height:320px;
    }
}

@media(max-width:767px){

    .vx-half-banner-left{
        padding:35px 22px;
    }

    .vx-half-banner-left h2{
        font-size:32px;
        line-height:1.2;
    }

    .vx-half-banner-left p{
        font-size:15px;
        line-height:1.7;
    }

    .vx-banner-btns{
        gap:12px;
    }

    .vx-banner-btns a{
        width:100%;
        text-align:center;
        padding:14px 20px;
    }

    .vx-half-banner-right{
        height:240px;
    }
}

/* product media query for mobile device */


/* =========================
   Mobile Responsive CSS
   ========================= */

@media only screen and (max-width: 767px){

.product-card{
    border-radius:16px;
    overflow:hidden;
}

.product-image-wrapper{
    position:relative;
    padding:10px;
}

.product-image{
    width:100%;
    height:220px;
    object-fit:contain;
    display:block;
}

.product-badges{
    position:absolute;
    top:10px;
    left:10px;
    display:flex;
    gap:6px;
    z-index:2;
}

.product-badge{
    font-size:10px;
    padding:4px 8px;
    border-radius:20px;
    line-height:1;
}

.product-actions{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:8px;
}

.action-btn{
    width:34px;
    height:34px;
    border-radius:50%;
    font-size:14px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-content{
    padding:12px;
}

.product-category{
    font-size:11px;
    margin-bottom:6px;
}

.product-title{
    font-size:14px;
    line-height:1.4;
    margin-bottom:8px;
    min-height:40px;
}

.product-rating{
    font-size:12px;
    margin-bottom:10px;
}

.product-rating span{
    font-size:11px;
}

.product-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    /*flex-direction: column;*/
}

.product-price{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.new-price{
    font-size:16px;
    font-weight:700;
}

.old-price{
    font-size:12px;
    text-decoration:line-through;
    opacity:0.6;
}

.buy-btn{
    padding:8px 14px;
    font-size:13px;
    border-radius:8px;
    white-space:nowrap;
}

/*.swiper-slide{*/
/*    width:100% !important;*/
/*}*/

.af-testimonials{
    margin-top: 1px;
}

}



.red-btn{
    background: #9b090f;
    color:#ffffff;
    border:none;
    padding:12px 24px;
    border-radius: 12px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:0.3s ease;
}

.red-btn:hover{
    background:#d90000;
}
