:root {
  --primary: #ff5a61;
  --dark: #050505;
  --dark-light: #0d0d0d;
  --text: #f5f5f5;
  --muted: #a8a8a8;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul, li, p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-80 {
  padding: 80px 0px;
}
a {
  text-decoration: none;
}
body {
  background: #000;
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
img {
  max-width: 100%;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}

.common-btn {
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  color: #fff !important;
  background: linear-gradient(to bottom, #ff5a61 0%, #ff767b 100%);
  padding: 12px 30px !important;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  height: 100%;
}

.common-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, #ff5a61 0%, #ff767b 100%);
  width: 100%;
  height: 0%;
  border-radius: 5px;
  z-index: -1;
  transition: all 0.3s;
}

.common-btn:hover::before {
  height: 100%;
  color: #fff;
}
.section-padding {
  padding: 100px 0;
}
html {
  scroll-behavior: smooth;
}
.section-title {
  font-size: 56px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
}

/* ================= HEADER ================= */
.header-area {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1021;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-area .navbar {
  padding: 10px 0;
  transition: all 0.4s ease;
}
.header-area {
  background: rgba(0, 0, 0, 0.15);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.brand-logo {
  font-size: 42px;
  color: var(--primary);
  margin-right: 12px;
}

.brand-text {
  font-size: 34px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
}

.header-area .navbar-nav .nav-link {
  color: #fff;
  margin: 0 14px;
  font-size: 15px;
  position: relative;
  transition: 0.3s ease;
}

.header-area .navbar-nav .nav-link:hover,
.header-area .navbar-nav .nav-link.active {
  color: var(--primary);
}

.btn-theme {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(255, 90, 97, 0.3);
}

.btn-theme:hover {
  background: white;
  color: #000;
  transform: translateY(-3px);
}

.btn-outline-theme {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 14px 30px;
  border-radius: 100px;
  transition: 0.4s ease;
}

.btn-outline-theme:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.header-area .navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.header-area .navbar-toggler i {
  color: white;
  font-size: 30px;
}
/* ================= GLASS OFFCANVAS ================= */
.offcanvas {
  background: rgba(5, 5, 5, 0.18) !important;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* make background visible */
.offcanvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  pointer-events: none;
}

/* darker transparent overlay */
.offcanvas-backdrop.show {
  background: rgba(0, 0, 0, 0.18) !important;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
/* remove solid bootstrap bg */
.offcanvas-header,
.offcanvas-body {
  background: transparent !important;
}
/* links */
.offcanvas .nav-link {
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  transition: all 0.3s ease;
}
.offcanvas .nav-link:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.offcanvas .nav-link:hover {
  color: #ff5a61;
  transform: translateX(8px);
}
/* ================= HERO ================= */

.hero-area {
  position: relative;
  min-height: 100vh;
  background: url(../images/banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 150px;
}

.hero-area::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 90, 97, 0.25), transparent 70%);
  right: -150px;
  top: 50px;
  z-index: -1;
}

.hero-area .hero-small {
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 14px;
}

.hero-area .hero-title {
  font-size: 82px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 30px;
}

.hero-area .hero-title span {
  color: var(--primary);
}

.hero-area .hero-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-area .hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-area .hero-image-wrapper {
  position: relative;
  text-align: center;
}

.hero-area .hero-image-wrapper::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--primary), transparent);
  filter: blur(30px);
  opacity: 0.35;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-area .hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  border-radius: 30px;
}

/* ================= STATS ================= */

.stats-box {
  margin-top: 70px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 45px;
}

.stat-item h3 {
  font-size: 42px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 8px;
}

.stat-item p {
  color: var(--muted);
  margin: 0;
}

/* ================= FEATURES ================= */

.feature-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px 30px;
  height: 100%;
  transition: 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 90, 97, 0.5);
}

.feature-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: rgba(255, 90, 97, 0.1);
  border: 1px solid rgba(255, 90, 97, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 32px;
  color: var(--primary);
}

.feature-card h4 {
  font-size: 28px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.8;
}

/* ================= STORY ================= */

.story-swiper .story-box {
  background: linear-gradient(
    135deg,
    rgba(255, 90, 97, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.story-swiper .story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-swiper .story-content {
  padding: 40px;
}

.story-swiper .quote {
  font-size: 22px;
  line-height: 1.8;
  color: #ddd;
  margin: 30px 0;
}

/* ================= CTA ================= */

.cta-box {
  background: linear-gradient(135deg, var(--primary), #ff7a80);
  border-radius: 40px;
  padding: 70px;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 58px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 20px;
  color: white;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}

.btn-dark-theme {
  background: black;
  color: white;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 600;
  border: none;
  transition: 0.4s ease;
}

.btn-dark-theme:hover {
  background: white;
  color: black;
}

/* ================= FOOTER ================= */

footer {
  position: relative;
  overflow: hidden;
  padding: 90px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 90, 97, 0.1), transparent 70%);
  left: 10%;
  top: 50px;
  z-index: -1;
}
footer::after {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 500px;
  height: 100%;
  max-height: 500px;
  background: radial-gradient(circle, rgba(255, 90, 97, 0.2), transparent 70%);
  right: 0px;
  top: 50px;
  z-index: -1;
}
.footer-logo {
  margin-bottom: 25px;
}

.footer-text {
  color: var(--muted);
  line-height: 1.8;
  max-width: 340px;
}

.footer-title {
  font-size: 22px;
  margin-bottom: 24px;
  font-family: "Cormorant Garamond", serif;
}

.footer-links a {
  display: block;
  color: var(--muted);
  margin-bottom: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  margin-right: 10px;
  transition: 0.4s ease;
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.copyright {
  color: #777;
  margin-top: 60px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

/* ================= ANIMATION ================= */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}
/*Modal Box*/
.modal-body {
  padding: 0;
}
.modal-body .modal-tab-content {
  display: none;
  padding: 20px 40px;
}
.modal-body .modal-tab-content .form-control {
  padding: 15px 10px;
  font-size: 14px;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.modal-body .modal-tab-content .form-group {
  margin-bottom: 20px;
  position: relative;
}
.modal-body .modal-tab-content .form-group label {
  margin-bottom: 5px;
  color: #000;
}
.modal-body .modal-tab-content .form-group .common-btn {
  margin-top: 30px;
}
.modal-body .current {
  display: block;
}
.modal-body .modal-tab-link {
  cursor: pointer;
  background-color: #fff;
  color: #000;
  border-radius: 5px;
  padding: 20px;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.form-check-label {
  color: #000;
  font-size: 14px;
}
.forget-btn a {
    font-size: 14px;
}
.modal-body .modal-tab-link:hover {
  background-color: #e5e5e5;
}
.modal-body .modal-tabs .current {
  background-color: #e5e5e5;
  color: #1d1d1d;
}
.modal-body .toggle-password {
  position: absolute;
  right: 10px;
  top: 42px;
  border: none;
  background: transparent;
}
.modal-body .toggle-password::before {
  display: none;
}
.modal-body .common-btn {
  width: 100%;
}

.modal {
  background-color: rgba(0, 0, 0, 0.6);
}

.form-control:focus {
  border-color: #ddd;
  box-shadow: 0 0 0 0px rgba(13, 110, 253, 0.25);
}
/*Footer Popup Area*/
.floating-btm-box {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background-color: #fff;
  transition: transform 0.8s ease;
  z-index: 1030;
  color: #000;
  font-weight: 400;
  transform: translateY(120%);
  box-shadow: 0 8px 8px rgba(41, 26, 85, 0.25);
  border-radius: 5px;
  max-width: 320px;
  width: 100%;
  font-size: 14px;
  padding: 15px 12px 12px;
  line-height: 22px;
}
.floating-sub-box {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.floating-btm-box img {
  width: 75px;
  height: 75px;
  margin-right: 10px;
}

.floating-btm-box.notify {
  transform: translateY(0);
}

.custom-close-n {
  position: absolute;
  top: -12px;
  right: -15px;
  cursor: pointer;
}

.custom-close-n i, .custom-close-n img {
  font-size: 15px;
  color: #7e7e7e;
  width: 15px;
  height: 15px;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.floating-btm-box:hover .custom-close-n i, .floating-btm-box:hover .custom-close-n img {
  opacity: 1;
}

/*Footer Popup Area*/
/* progress circle */
.progress-circle-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-circle {
  width: 50px;
  height: 50px;
}

.progress-circle-bar {
  fill: none;
  stroke: #FF5A61;
  stroke-width: 10;
  stroke-dasharray: 283;
  stroke-dashoffset: 0;
  transform-origin: center;
  transition: stroke-dashoffset 0.3s ease;
}

.progress-background {
  fill: transparent;
  stroke: #ededed;
  stroke-width: 10;
  stroke-dasharray: none;
}

.scroll-to-top {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: black;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.scroll-to-top svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke: white;
  transition: all 0.1s ease;
}
/*profile Area*/
.profile-tab-area {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}
.profile-tab-area .title-box {
  color: #fff;
}
.profile-tab-area .title-box h4 {
  color: #fff;
}
.profile-tab-area .title-box h3 {
  color: #fff;
}
.profile-tab-area .title-box p {
  margin-bottom: 60px;
}
.profile-tab-area .tab-content {
  display: none;
  margin-top: 60px;
}
.profile-tab-area .current {
  display: inherit;
}
.profile-tab-area .product-tab .tabs .current p {
  color: var(--ss-primary);
}
.profile-tab-area .product-tab .tabs .current {
  background-color: var(--primary);
}
.profile-tab-area .product-tab .tabs p {
  color: #fff;
}
.profile-tab-area .product-tab .tab-link {
  display: inline;
  text-align: center;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 30px;
  margin: 0px 10px;
  cursor: pointer;
}
.profile-tab-area .product-tab .tab-link p {
  font-size: 16px;
}
.profile-tab-area .profile-content {
  flex-direction: column;
  position: absolute;
  bottom: 0px;
  opacity: 0;
  left: 20px;
  color: #fff;
  transition: all 0.3s ease-in-out 0s;
  background-color: var(--ss-primary);
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  gap: 5px;
}
.profile-tab-area .profile-content h4 {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.profile-tab-area .profile-box button {
  border: none;
  background-color: transparent;
}
.profile-tab-area .profile-box img {
  border-radius: 8px;
}
.profile-tab-area .profile-box:hover .profile-content {
  bottom: 5%;
  opacity: 1;
  transition: all 0.3s ease-in-out 0s;
}

/* =========================================
RESPONSIVE
========================================= */

@media (min-width: 1700px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1580px;
    }
}

@media (max-width: 1700px) {

}

@media (max-width: 1399px) {

}
@media (min-width: 1400px) {

}

@media (max-width: 1199px) {
  .story-swiper .quote {
    font-size: 17px;
  }
  .section-title {
    font-size: 45px;
  }
  .social-links a {
    margin-right: 0px;
  }
  .cta-box {
    padding: 50px;
  }
}

@media screen and (max-width: 991px) {
  .hero-area .hero-title {
    font-size: 55px;;
    line-height: 58px;
}
  .hero {
    text-align: center;
  }
  .hero-area {
    background: none;
  }
  .story-swiper .quote {
    font-size: 16px;
  }
  .story-content h5 {
    font-size: 20px;
  }
  .story-content .btn-theme {
    width: 100%;
  }
  .story-swiper .story-image {
    max-height: 250px;
  }
  .hero-title {
    font-size: 58px;
  }

  .section-title {
    font-size: 42px;
  }

  .story-content {
    padding: 40px;
  }

  .cta-box {
    padding: 50px 35px;
    text-align: center;
  }

  .cta-title {
    font-size: 42px;
  }

  .profile-tab-area .product-tab .tab-link {
    padding: 10px 20px;
  }
  .profile-tab-area .product-tab .tab-link p {
    font-size: 16px;
  }
}

@media screen and (min-width: 992px) {
  .story-swiper .story-image {
   max-height: 500px;
  }
  .navbar-nav li:hover > ul.dropdown-menu {
    top: 100%;
    transform: scale(1, 1);
    padding: 0px;
  }
  .navbar-nav li:hover > ul.dropdown-menu li .dropdown-item {
    padding: 10px 15px !important;
  }
  .navbar-nav li > ul.dropdown-menu li:hover .dropdown-item {
    background-color: #ffe9ea !important;
  }
  .dropdown-menu {
    border: none;
    border-radius: 0;
    transform: scale(1, 0);
    transform-origin: top;
    transition: all 300ms ease-in-out 0s;
    display: table-column;
    top: 100%;
  }
  .navbar-nav li:hover > a::after {
    transform: rotate(180deg);
    transition: all 300ms ease-in-out 0s;
  }
}


@media screen and (min-width: 768px) { 
  .dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center {
    position: inherit;
  }
}

@media screen and (max-width: 767px) {
  .modal-body .modal-tab-content {
    padding: 30px 0px;
}
  /* =====================================
MOBILE MENU
===================================== */
/* ===================================== MOBILE TOGGLER ===================================== */
.custom-toggler {
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.progress-circle-container {
  display: none;
}
.custom-toggler span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 20px;
}

.navbar-toggler {
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}
.custom-mobile-menu .offcanvas-header{
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 5;
}

.mobile-logo img{
    max-width: 170px;
    height: auto;
}

.custom-mobile-menu .offcanvas-body{
    padding: 25px 20px;
    position: relative;
    z-index: 5;
}

/* MENU */

.mobile-menu-list{
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li{
    margin-bottom: 12px;
}

.mobile-menu-list li a{
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 12px 16px !important;
    border-radius: 14px;
    transition: 0.3s;
    background: rgba(255,255,255,0.03);
}

.mobile-menu-list li a:hover{
    background: rgba(255,255,255,0.08);
    color: #ff4d6d;
}

/* ACCOUNT */

.mobile-account-box{
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-account-title{
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.mobile-account-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-account-links li{
    margin-bottom: 12px;
}

.mobile-account-links li a{
    color: #cfcfcf;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    transition: 0.3s;
}

.mobile-account-links li a:hover{
    background: rgba(255,255,255,0.08);
    color: #ff4d6d;
}

/* LOGIN BUTTON */

.mobile-auth-btn{
    margin-top: 30px;
}

.mobile-auth-btn .common-btn{
    width: 100%;
}

/* HEARTS */

.floating-hearts{
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-hearts span{
    position: absolute;
    color: rgba(255,77,109,0.18);
    font-size: 38px;
    animation: floatHeart 8s linear infinite;
}

.floating-hearts span:nth-child(1){
    top: 15%;
    left: 12%;
}

.floating-hearts span:nth-child(2){
    top: 45%;
    right: 15%;
}

.floating-hearts span:nth-child(3){
    bottom: 10%;
    left: 30%;
}

@keyframes floatHeart{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-12px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* SHAPES */

.love-bg-shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
}

.shape-1{
    width: 220px;
    height: 220px;
    background: #ff4d6d;
    top: -50px;
    left: -80px;
}

.shape-2{
    width: 180px;
    height: 180px;
    background: #7f5af0;
    bottom: -50px;
    right: -50px;
}

.shape-3{
    width: 120px;
    height: 120px;
    background: #ff758f;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* CLOSE */

.btn-close-white{
    filter: invert(1);
    opacity: 1;
}
  .scroll-to-top {
    display: none;
  }
  .hero-area .hero-title {
    font-size: 50px;
  }
  .copyright {
    margin-top: 30px;
    padding-top: 30px;
  }
  .section-padding {
    padding: 50px 0;
  }
  footer {
    padding: 40px 0 30px;
  }
  .profile-tab-area .profile-box:hover .profile-content {
    display: none;
  }
  .product-tab .tabs {
    flex-wrap: wrap;
  }
  .product-tab .tabs li {
    margin-bottom: 20px !important;
  }
  .profile-tab-area .tab-content {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 44px;
  }

  .section-title {
    font-size: 36px;
  }

  .stats-box {
    padding: 30px;
  }

  .cta-title {
    font-size: 34px;
  }

  .brand-text {
    font-size: 28px;
  }
}

@media (max-width: 480px) {

}

@media (max-width: 380px) {
}

@media (max-width: 340px) {
}