﻿/* ==================== SPICE THEME VARIABLES ==================== */
:root {
  --spice-primary: #8f1116;
  --spice-secondary: #a4000b;
  --spice-accent: #d8a441;
  --spice-brown: #201711;
  --spice-gold: #df9d08;
  --spice-bg: #ffffff;
  --spice-text: #18120d;
}

/* ==================== TOP BAR ==================== */
.nav-topbar {
  position: sticky;
  top: 0;
  z-index: 1001;
  width: 100%;
  height: 28px;
  display: flex;
  align-items: center;
  background: #8f1116;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
}

.nav-topbar-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-topbar-left {
  display: flex;
  align-items: center;
}

.nav-welcome-text {
  display: flex;
  align-items: center;
  margin: 0;
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

.nav-welcome-icon {
  margin-right: 5px;
  color: #e7a415;
  font-size: 9px;
}

.nav-topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
}

.nav-contact-link {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: color .25s ease;
}

.nav-contact-link:hover {
  color: #f2b52d;
  text-decoration: none;
}

.nav-contact-icon {
  margin-right: 5px;
  color: #f0a91a;
  font-size: 9px;
}

.nav-follow-text {
  color: #ffffff;
  font-size: 9px;
  font-weight: 500;
}

.nav-social-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-social-link {
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
  text-decoration: none;
  transition: all .25s ease;
}

.nav-social-link:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #8f1116;
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-social-icon {
  font-size: 8px;
}

/* ==================== MAIN NAVBAR ==================== */
.nav-main {
  width: 100%;
  min-height: 68px;
  padding: 0;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .035);
  font-family: 'DM Sans', sans-serif;
  position: sticky;
  top: 28px;
  z-index: 1000;
}

.nav-main>.container {
  min-height: 68px;
  display: flex;
  align-items: center;
}

.nav-brand {
  min-width: 155px;
  display: flex;
  align-items: center;
  margin: 0 35px 0 0;
  padding: 0;
  text-decoration: none;
}

.nav-logo-box {
  width: 39px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 7px;
  color: #df9d08;
  transition: transform .3s ease;
}

.nav-brand:hover .nav-logo-box {
  transform: rotate(-5deg) scale(1.05);
}

.nav-logo-icon {
  font-size: 29px;
}

.nav-brand-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.nav-brand-name {
  margin: 0;
  padding: 0;
  color: #201711;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: .2px;
}

.nav-brand-subname {
  margin: 2px 0 0;
  padding: 0;
  color: #201711;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 13px;
}

.nav-brand-tagline {
  margin-top: 4px;
  color: #d99808;
  font-size: 5px;
  font-weight: 700;
  line-height: 6px;
  letter-spacing: .7px;
}

/* ==================== COLLAPSE ==================== */
.nav-collapse {
  min-height: 68px;
  align-items: center;
}

/* ==================== MENU ==================== */
.nav-menu-list {
  height: 68px;
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
}

.nav-menu-item {
  height: 68px;
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 4px;
}

.nav-menu-link {
  height: 68px;
  display: flex !important;
  align-items: center;
  position: relative;
  padding: 0 11px !important;
  color: #222222 !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: color .25s ease;
}

.nav-menu-link::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 13px;
  width: 0;
  height: 2px;
  border-radius: 4px;
  background: #e0a017;
  transform: translateX(-50%);
  transition: width .25s ease;
}

.nav-menu-link:hover {
  color: #580000 !important;
}

.nav-menu-link:hover::before {
  width: 23px;
}

.nav-menu-active {
  color: #d99608 !important;
}

.nav-menu-active::before {
  width: 23px;
}

/* ==================== DROPDOWN ==================== */
.nav-product-dropdown {
  position: relative;
}

.nav-dropdown-link {
  display: flex !important;
  align-items: center;
}

.nav-dropdown-menu {
  min-width: 190px;
  margin-top: -4px;
  padding: 7px;
  border: 1px solid #eeeeee;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .1);
}

.nav-dropdown-item {
  padding: 9px 11px;
  border-radius: 5px;
  color: #3b3b3b;
  font-size: 11px;
  font-weight: 500;
  transition: all .25s ease;
}

.nav-dropdown-item:hover {
  padding-left: 16px;
  background: #fff7e8;
  color: #921319;
}

.nav-dropdown-item:active {
  background: #921319;
  color: #ffffff;
}

/* ==================== RIGHT ACTION AREA ==================== */
.nav-action-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  gap: 8px;
  margin-left: 20px;
}

.nav-search-form {
  width: 220px;
  height: 35px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
  border: 1px solid #e7e7e7;
  border-radius: 30px;
  background: #ffffff;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.nav-search-form:focus-within {
  border-color: #dfa016;
  box-shadow: 0 0 0 3px rgba(223, 160, 22, .09);
}

.nav-search-input {
  width: calc(100% - 37px);
  height: 33px;
  padding: 0 5px 0 15px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #333333;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
}

.nav-search-input::placeholder {
  color: #b0b0b0;
}

.nav-search-btn {
  width: 37px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  outline: 0 !important;
  background: transparent;
  color: #dc9909;
  cursor: pointer;
  transition: all .25s ease;
}

.nav-search-btn:hover {
  background: #921319;
  color: #ffffff;
}

.nav-search-icon {
  font-size: 11px;
}

/* ==================== CART AND PROFILE ==================== */
.nav-action-link {
  position: relative;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #eeeeee;
  border-radius: 50%;
  background: #ffffff;
  color: #241c18;
  text-decoration: none;
  transition: all .25s ease;
}

.nav-action-link:hover {
  border-color: #921319;
  background: #921319;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(146, 19, 25, .18);
}

.nav-action-icon {
  font-size: 13px;
}

.nav-cart-count {
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  background: #dfa00e;
  color: #ffffff;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
}

/* ==================== MOBILE TOGGLE ==================== */
.nav-toggle-btn {
  padding: 5px 7px;
  border: 1px solid #eeeeee !important;
  border-radius: 5px;
  outline: 0 !important;
  box-shadow: none !important;
}

.nav-toggle-icon {
  width: 21px;
  height: 21px;
}

/* ==================== LARGE SCREEN ==================== */
@media(min-width:1200px) {
  .nav-main>.container {
      max-width: 1320px;
  }
}

/* ==================== 1200PX ==================== */
@media(max-width:1199.98px) {
  .nav-brand {
      min-width: 140px;
      margin-right: 18px;
  }

  .nav-menu-item {
      margin: 0 1px;
  }

  .nav-menu-link {
      padding: 0 7px !important;
      font-size: 10px;
  }

  .nav-action-wrapper {
      margin-left: 10px;
  }

  .nav-search-form {
      width: 175px;
  }

  .nav-topbar-right {
      gap: 10px;
  }
}

/* ==================== TABLET ==================== */
@media(max-width:991.98px) {
  .nav-topbar {
      height: auto;
      min-height: 26px;
      padding: 6px 0;
  }

  .nav-topbar-right {
      display: none;
  }

  .nav-topbar-content {
      justify-content: center;
  }

  .nav-welcome-text {
      font-size: 9px;
  }

  .nav-main {
      min-height: 62px;
      padding: 0;
  }

  .nav-main>.container {
      min-height: 62px;
  }

  .nav-brand {
      min-width: auto;
      margin-right: 0;
  }

  .nav-logo-box {
      width: 35px;
      height: 40px;
  }

  .nav-logo-icon {
      font-size: 25px;
  }

  .nav-brand-name {
      font-size: 14px;
      line-height: 14px;
  }

  .nav-brand-subname {
      font-size: 11px;
      line-height: 11px;
  }

  .nav-brand-tagline {
      font-size: 4px;
  }

  .nav-collapse {
      min-height: auto;
      margin-top: 0;
      padding: 10px 0 14px;
      border-top: 1px solid #eeeeee;
      background: #ffffff;
  }

  .nav-menu-list {
      width: 100%;
      height: auto;
      align-items: stretch;
  }

  .nav-menu-item {
      width: 100%;
      height: auto;
      display: block;
      margin: 0;
  }

  .nav-menu-link {
      width: 100%;
      height: 42px;
      padding: 0 8px !important;
      border-bottom: 1px solid #f3f3f3;
      font-size: 12px;
  }

  .nav-menu-link::before {
      left: 8px;
      bottom: 5px;
      transform: none;
  }

  .nav-menu-link:hover::before {
      width: 20px;
  }

  .nav-menu-active::before {
      width: 20px;
  }

  .nav-dropdown-menu {
      width: 100%;
      margin: 3px 0 7px;
      box-shadow: none;
  }

  .nav-action-wrapper {
      width: 100%;
      margin: 12px 0 0;
  }

  .nav-search-form {
      flex: 1;
      width: auto;
  }
}

/* ==================== MOBILE ==================== */
@media(max-width:575.98px) {
  .nav-topbar {
      display: none;
  }

  .nav-main {
      min-height: 60px;
      top: 0;
  }

  .nav-main>.container {
      min-height: 60px;
      padding-left: 12px;
      padding-right: 12px;
  }

  .nav-logo-box {
      width: 31px;
      height: 36px;
      margin-right: 5px;
  }

  .nav-logo-icon {
      font-size: 22px;
  }

  .nav-brand-name {
      font-size: 13px;
      line-height: 13px;
  }

  .nav-brand-subname {
      margin-top: 1px;
      font-size: 10px;
      line-height: 10px;
  }

  .nav-brand-tagline {
      margin-top: 3px;
      font-size: 4px;
      letter-spacing: .4px;
  }

  .nav-action-wrapper {
      flex-wrap: wrap;
      justify-content: flex-start;
  }

  .nav-search-form {
      width: 100%;
      flex: 0 0 100%;
  }

  .nav-action-link {
      width: 34px;
      height: 34px;
  }
}

/* ------------------home-sec-2--------------------------------------------- */
/* Home 2 Benefits */
.home-2-benefits-section {
  position: relative;
  z-index: 10;
  padding: 0 30px;
}

.home-2-benefits-wrapper {
  max-width: 1280px;
  height: 100px;
  margin: -55px auto 0;
  padding: 20px 25px;
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(56, 35, 15, 0.1);
}

.home-2-benefit-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 22px;
  position: relative;
  transition: transform 0.3s ease;
}

.home-2-benefit-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  width: 1px;
  height: 64%;
  background: #e6ddd2;
}

.home-2-benefit-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a4000b;
  color: #fff;
  border-radius: 50%;
  font-size: 19px;
  transition: 0.3s ease;
}

.home-2-benefit-content h5 {
  margin: 0 0 6px;
  color: #171717;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.home-2-benefit-content p {
  margin: 0;
  color: #666;
  font-size: 12px;
  line-height: 1.55;
}

.home-2-benefit-item:hover {
  transform: translateY(-3px);
}

.home-2-benefit-item:hover .home-2-benefit-icon {
  background: #f42e2e;
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 6px 15px rgba(164, 0, 11, 0.2);
}

.home-2-benefit-item:hover h5 {
  color: #a4000b;
}

/* Large Desktop */
@media (min-width: 1400px) {
  .home-2-benefits-wrapper {
      max-width: 1280px;
  }
}

/* Laptop */
@media (max-width: 1199px) {
  .home-2-benefits-section {
      padding: 0 20px;
  }

  .home-2-benefits-wrapper {
      padding: 18px 12px;
  }

  .home-2-benefit-item {
      gap: 10px;
      padding: 10px 13px;
  }

  .home-2-benefit-icon {
      width: 44px;
      height: 44px;
      flex-basis: 44px;
      font-size: 17px;
  }

  .home-2-benefit-content h5 {
      font-size: 12px;
  }

  .home-2-benefit-content p {
      font-size: 11px;
  }
}

/* Tablet - Same Layout as PC */
@media (min-width: 768px) and (max-width: 991px) {
  .home-2-benefits-section {
      padding: 0 15px;
  }

  .home-2-benefits-wrapper {
      width: 100%;
      margin-top: -38px;
      padding: 14px 10px;
      min-height: 95px;
      display: flex;
      align-items: center;
      border-radius: 10px;
  }

  .home-2-benefit-item {
      flex: 1;
      min-width: 0;
      gap: 7px;
      padding: 8px 9px;
      border: 0;
  }

  .home-2-benefit-item:not(:last-child)::after {
      display: block;
      top: 18%;
      right: 0;
      width: 1px;
      height: 64%;
  }

  .home-2-benefit-icon {
      width: 36px;
      height: 36px;
      flex: 0 0 36px;
      font-size: 14px;
  }

  .home-2-benefit-content {
      min-width: 0;
  }

  .home-2-benefit-content h5 {
      margin-bottom: 4px;
      font-size: 10px;
      line-height: 1.25;
      white-space: nowrap;
  }

  .home-2-benefit-content p {
      font-size: 9px;
      line-height: 1.4;
  }
}

/* Mobile - Hide Complete Benefits Section */
@media (max-width: 767px) {
  .home-2-benefits-section {
      display: none;
  }
}

/* Mobile - Hide Complete Section */
@media (max-width: 767px) {
  .home-2-benefits-section {
      display: none;
  }
}

/* ------------------home-sec-3---------------------------- */
/* Shop By Category */
.home-3-category-section {
  padding: 55px 0 22px;
  background: #fff;
  overflow: hidden;
}

.home-3-category-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.home-3-category-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-3-category-title span {
  width: 35px;
  height: 1px;
  background: #d8a441;
}

.home-3-category-title h2 {
  margin: 20px 0 10px;
  color: #18120d;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 700;
}

.home-3-category-link {
  position: absolute;
  right: 0;
  color: #9c1118;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.home-3-category-link i {
  margin-left: 6px;
  font-size: 10px;
  transition: 0.3s;
}

.home-3-category-link:hover {
  color: #d49200;
  text-decoration: none;
}

.home-3-category-link:hover i {
  transform: translateX(4px);
}

/* Horizontal Scroll */
.home-3-category-scroll {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 5px 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.home-3-category-scroll::-webkit-scrollbar {
  display: none;
}

/* Category Card */
.home-3-category-card {
  flex: 0 0 130px;
  display: block;
  text-align: center;
  color: #18120d;
  text-decoration: none;
}

.home-3-category-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 8px;
  padding: 5px;
  border: 1px solid #e7d6be;
  border-radius: 50%;
  background: #fffaf4;
  overflow: hidden;
  transition: 0.3s ease;
}

.home-3-category-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  transition: 0.35s ease;
}

.home-3-category-card h3 {
  margin: 0;
  color: #211810;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.home-3-category-card:hover {
  color: #9c1118;
  text-decoration: none;
}

.home-3-category-card:hover .home-3-category-image {
  border-color: #d49a24;
  box-shadow: 0 5px 15px rgba(95, 55, 15, 0.12);
  transform: translateY(-3px);
}

.home-3-category-card:hover img {
  transform: scale(1.07);
}

.home-3-category-card:hover h3 {
  color: #9c1118;
}

/* Default - PC / Laptop */
.home-3-category-section {
  padding: 22px 0 18px;
}

.home-3-category-header {
  margin-bottom: 16px;
}

.home-3-category-scroll {
  gap: 32px;
  padding: 2px 4px 6px;
}

.home-3-category-card {
  flex: 0 0 100px;
}

.home-3-category-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 7px;
  padding: 4px;
}

.home-3-category-card h3 {
  font-size: 13px;
  line-height: 1.25;
}


/* Medium Laptop */
@media (max-width: 1199px) {
  .home-3-category-section {
      padding: 40px 0 22px;
  }

  .home-3-category-header {
      margin-bottom: 24px;
  }

  .home-3-category-scroll {
      gap: 24px;
  }

  .home-3-category-card {
      flex-basis: 92px;
  }

  .home-3-category-image {
      width: 76px;
      height: 76px;
      margin-bottom: 6px;
  }

  .home-3-category-card h3 {
      font-size: 12px;
  }

  .home-3-category-title h2 {
      font-size: 22px;
  }
}


/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .home-3-category-section {
      padding: 18px 0 14px;
  }

  .home-3-category-header {
      margin-bottom: 12px;
  }

  .home-3-category-title {
      gap: 12px;
  }

  .home-3-category-title span {
      width: 28px;
  }

  .home-3-category-title h2 {
      text-align: center;
      font-size: 20px;
  }

  .home-3-category-link {
      font-size: 11px;
  }

  .home-3-category-scroll {
      gap: 18px;
      padding-bottom: 5px;
  }

  .home-3-category-card {
      flex: 0 0 78px;
  }

  .home-3-category-image {
      width: 66px;
      height: 66px;
      margin-bottom: 5px;
      padding: 3px;
  }

  .home-3-category-card h3 {
      font-size: 10px;
      line-height: 1.2;
  }
}


/* Mobile */
@media (max-width: 767px) {
  .home-3-category-section {
      padding: 14px 0 10px;
  }

  .home-3-category-header {
      justify-content: space-between;
      margin-bottom: 10px;
  }

  .home-3-category-title {
      gap: 0;
  }

  .home-3-category-title span {
      display: none;
  }

  .home-3-category-title h2 {
      text-align: center;
      font-size: 18px;
  }

  .home-3-category-link {
      font-size: 9px;
  }

  .home-3-category-link i {
      margin-left: 3px;
      font-size: 8px;
  }

  .home-3-category-scroll {
      gap: 12px;
      padding: 1px 2px 4px;
  }

  .home-3-category-card {
      flex: 0 0 62px;
  }

  .home-3-category-image {
      width: 54px;
      height: 54px;
      margin-bottom: 4px;
      padding: 2px;
  }

  .home-3-category-card h3 {
      font-size: 8px;
      line-height: 1.15;
      white-space: normal;
  }
}


/* Extra Small Mobile */
@media (max-width: 480px) {
  .home-3-category-section {
      padding: 12px 0 9px;
  }

  .home-3-category-header {
      margin-bottom: 9px;
  }

  .home-3-category-title h2 {
      font-size: 16px;
  }

  .home-3-category-link {
      font-size: 8px;
  }

  .home-3-category-scroll {
      gap: 9px;
  }

  .home-3-category-card {
      flex-basis: 54px;
  }

  .home-3-category-image {
      width: 46px;
      height: 46px;
      margin-bottom: 3px;
  }

  .home-3-category-card h3 {
      font-size: 7px;
  }
}


/* Very Small Mobile */
@media (max-width: 360px) {
  .home-3-category-section {
      padding: 10px 0 8px;
  }

  .home-3-category-title h2 {
      text-align: center;
      font-size: 14px;
  }

  .home-3-category-link {
      font-size: 7px;
  }

  .home-3-category-scroll {
      gap: 7px;
  }

  .home-3-category-card {
      flex-basis: 48px;
  }

  .home-3-category-image {
      width: 42px;
      height: 42px;
  }

  .home-3-category-card h3 {
      font-size: 6.5px;
  }
}

/* -------------------home-sec-4--------------------------------------------- */
/* Popular Products Section */

.home-4-products-section {
  padding: 12px 28px 22px;
  background: #fff;
}

.home-4-products-box {
  width: 100%;
  padding: 18px;
  border: 1px solid #eee8e1;
  border-radius: 14px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* Header */
.home-4-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.home-4-products-header h2 {
  margin: 0;
  color: #21160f;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.home-4-products-header h2::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 5px;
  background: #d9a536;
}

.home-4-products-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.home-4-view-all {
  margin-right: 8px;
  color: #9d0b12;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.home-4-view-all i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.home-4-view-all:hover {
  color: #d49400;
  text-decoration: none;
}

.home-4-view-all:hover i {
  transform: translateX(3px);
}

/* Scroll Buttons */
.home-4-scroll-btn {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid #e5ddd4;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 10px;
  cursor: pointer;
  transition: 0.25s;
}

.home-4-scroll-btn:hover {
  color: #fff;
  background: #990a12;
  border-color: #990a12;
}

/* Product Scroll */
.home-4-products-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.home-4-products-scroll::-webkit-scrollbar {
  display: none;
}

/* Product Card */
.home-4-product-card {
  position: relative;
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #ece7e1;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
  transition: 0.3s;
}

.home-4-product-card:hover {
  transform: translateY(-3px);
  border-color: #e2c89d;
  box-shadow: 0 7px 18px rgba(70, 40, 15, 0.1);
}

/* Badge */
.home-4-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 3px;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
}

.home-4-badge-red {
  background: #a20b12;
}

.home-4-badge-gold {
  background: #efa900;
  color: #2c1b00;
}

/* Product Image - Full Card Width */
.home-4-product-image {
  width: 100%;
  height: 155px;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.home-4-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s;
}

.home-4-product-card:hover .home-4-product-image img {
  transform: scale(1.05);
}

/* Product Details */
.home-4-product-info {
  padding: 8px 10px 10px;
  text-align: center;
}

.home-4-product-info h3 {
  margin: 0 0 5px;
  color: #1e1814;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.home-4-product-info p {
  margin: 0;
  color: #17110d;
  font-size: 12px;
  font-weight: 700;
}

/* Product Buttons */
.home-4-product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px 10px;
}

.home-4-cart-btn {
  flex: 1;
  height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 4px;
  background: #990a12;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.25s;
}

.home-4-cart-btn i {
  margin-right: 5px;
}

.home-4-cart-btn:hover {
  background: #76070d;
}

.home-4-product-view {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e1dc;
  border-radius: 4px;
  background: #f7f7f7;
  color: #444;
  font-size: 11px;
  text-decoration: none;
  transition: 0.25s;
}

.home-4-product-view:hover {
  color: #fff;
  background: #d99b00;
  border-color: #d99b00;
  text-decoration: none;
}

/* Large Screen */
@media (min-width: 1400px) {
  .home-4-products-section {
      padding-left: 45px;
      padding-right: 45px;
  }

  .home-4-product-image {
      height: 170px;
  }
}

/* Laptop - 5 Cards */
@media (min-width: 992px) and (max-width: 1199px) {
  .home-4-products-section {
      padding: 12px 20px 20px;
  }

  .home-4-products-box {
      padding: 15px;
  }

  .home-4-products-scroll {
      gap: 12px;
  }

  .home-4-product-card {
      flex: 0 0 calc((100% - 48px) / 5);
      padding: 0;
  }

  .home-4-product-image {
      height: 125px;
  }

  .home-4-product-info {
      padding: 7px 8px 8px;
  }

  .home-4-product-info h3 {
      font-size: 11px;
  }

  .home-4-product-info p {
      font-size: 10px;
  }

  .home-4-product-actions {
      padding: 0 8px 8px;
  }

  .home-4-cart-btn {
      font-size: 9px;
  }
}

/* Tablet - 4 Cards */
@media (min-width: 768px) and (max-width: 991px) {
  .home-4-products-section {
      padding: 10px 16px 18px;
  }

  .home-4-products-box {
      padding: 14px;
  }

  .home-4-products-header h2 {
      font-size: 20px;
  }

  .home-4-products-scroll {
      gap: 12px;
  }

  .home-4-product-card {
      flex: 0 0 calc((100% - 36px) / 4);
      padding: 0;
  }

  .home-4-product-image {
      height: 105px;
  }

  .home-4-product-info {
      padding: 6px 7px 7px;
  }

  .home-4-product-info h3 {
      font-size: 10px;
  }

  .home-4-product-info p {
      font-size: 9px;
  }

  .home-4-product-actions {
      gap: 6px;
      padding: 0 7px 7px;
  }

  .home-4-cart-btn {
      height: 30px;
      padding: 0 6px;
      font-size: 8px;
  }

  .home-4-product-view {
      width: 30px;
      height: 30px;
      flex-basis: 30px;
      font-size: 9px;
  }

  .home-4-product-badge {
      padding: 4px 6px;
      font-size: 7px;
  }
}

/* Mobile - 3 Cards */
@media (min-width: 481px) and (max-width: 767px) {
  .home-4-products-section {
      padding: 8px 10px 14px;
  }

  .home-4-products-box {
      padding: 11px;
      border-radius: 10px;
  }

  .home-4-products-header {
      margin-bottom: 10px;
  }

  .home-4-products-header h2 {
      font-size: 17px;
  }

  .home-4-view-all {
      margin-right: 0;
      font-size: 9px;
  }

  .home-4-scroll-btn {
      display: none;
  }

  .home-4-products-scroll {
      gap: 9px;
  }

  .home-4-product-card {
      flex: 0 0 calc((100% - 18px) / 3);
      padding: 0;
  }

  .home-4-product-image {
      height: 80px;
  }

  .home-4-product-info {
      padding: 5px 6px 6px;
  }

  .home-4-product-info h3 {
      font-size: 9px;
  }

  .home-4-product-info p {
      font-size: 8px;
  }

  .home-4-product-badge {
      top: 6px;
      left: 6px;
      padding: 3px 5px;
      font-size: 6px;
  }

  .home-4-product-actions {
      gap: 5px;
      padding: 0 6px 6px;
  }

  .home-4-cart-btn {
      height: 26px;
      padding: 0 4px;
      font-size: 7px;
  }

  .home-4-cart-btn i {
      margin-right: 2px;
  }

  .home-4-product-view {
      width: 26px;
      height: 26px;
      flex-basis: 26px;
      font-size: 8px;
  }
}

/* Small Mobile - 2 Cards */
@media (max-width: 480px) {
  .home-4-products-section {
      padding: 7px 8px 12px;
  }

  .home-4-products-box {
      padding: 10px 8px;
      border-radius: 9px;
  }

  .home-4-products-header {
      margin-bottom: 9px;
  }

  .home-4-products-header h2 {
      font-size: 15px;
  }

  .home-4-view-all {
      margin-right: 0;
      font-size: 8px;
  }

  .home-4-scroll-btn {
      display: none;
  }

  .home-4-products-scroll {
      gap: 8px;
  }

  .home-4-product-card {
      flex: 0 0 calc((100% - 8px) / 2);
      padding: 0;
  }

  .home-4-product-image {
      height: 85px;
  }

  .home-4-product-info {
      padding: 5px 6px 6px;
  }

  .home-4-product-info h3 {
      font-size: 9px;
  }

  .home-4-product-info p {
      font-size: 8px;
  }

  .home-4-product-badge {
      top: 6px;
      left: 6px;
      padding: 3px 5px;
      font-size: 6px;
  }

  .home-4-product-actions {
      gap: 5px;
      padding: 0 6px 6px;
  }

  .home-4-cart-btn {
      height: 27px;
      padding: 0 5px;
      font-size: 7px;
  }

  .home-4-cart-btn i {
      margin-right: 2px;
  }

  .home-4-product-view {
      width: 27px;
      height: 27px;
      flex-basis: 27px;
      font-size: 8px;
  }
}

/* ---------------- HOME SECTION 5 - ABOUT ---------------- */

.home-5-about-section {
  padding: 35px 45px;
  background: #fff;
  overflow: hidden;
}

.home-5-about-wrapper {
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.home-5-about-content {
  width: 48%;
  padding-left: 25px;
}

.home-5-about-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #b97a0b;
}

.home-5-about-label i {
  font-size: 13px;
}

.home-5-about-label span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
}

.home-5-about-title {
  margin: 0 0 18px;
  color: #18130f;
  font-family: Georgia, serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.05;
}

.home-5-about-title span {
  color: #d6a137;
  font-size: 23px;
}

.home-5-about-description {
  max-width: 610px;
  margin: 0 0 24px;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

/* Stats */

.home-5-about-stats {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.home-5-stat-item {
  min-width: 130px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 22px;
  border-right: 1px solid #ded7cf;
}

.home-5-stat-item:first-child {
  padding-left: 0;
}

.home-5-stat-item:last-child {
  border-right: 0;
}

.home-5-stat-icon {
  width: 35px;
  flex: 0 0 35px;
  color: #8d765d;
  font-size: 27px;
  text-align: center;
}

.home-5-stat-text h3 {
  margin: 0 0 3px;
  color: #17120e;
  font-size: 18px;
  font-weight: 700;
}

.home-5-stat-text p {
  margin: 0;
  color: #777;
  font-size: 10px;
  white-space: nowrap;
}

/* Button */

.home-5-about-btn {
  min-width: 205px;
  height: 45px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #980c13;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(120, 0, 8, 0.15);
  transition: 0.3s;
}

.home-5-about-btn i {
  font-size: 11px;
  transition: transform 0.3s;
}

.home-5-about-btn:hover {
  background: #76080e;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.home-5-about-btn:hover i {
  transform: translateX(5px);
}

/* Right Image */

.home-5-about-image {
  width: 48%;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-5-about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Large Desktop */

@media (min-width: 1400px) {
  .home-5-about-section {
      padding-left: 70px;
      padding-right: 70px;
  }

  .home-5-about-wrapper {
      min-height: 350px;
  }

  .home-5-about-content {
      padding-left: 35px;
  }

  .home-5-about-title {
      font-size: 38px;
  }

  .home-5-about-image {
      height: 350px;
  }
}

/* Laptop */

@media (min-width: 992px) and (max-width: 1199px) {
  .home-5-about-section {
      padding: 30px 30px;
  }

  .home-5-about-wrapper {
      min-height: 300px;
      gap: 25px;
  }

  .home-5-about-content {
      width: 52%;
      padding-left: 10px;
  }

  .home-5-about-title {
      font-size: 30px;
  }

  .home-5-about-description {
      font-size: 12px;
      margin-bottom: 20px;
  }

  .home-5-stat-item {
      min-width: 110px;
      gap: 7px;
      padding: 2px 13px;
  }

  .home-5-stat-icon {
      width: 30px;
      flex-basis: 30px;
      font-size: 22px;
  }

  .home-5-stat-text h3 {
      font-size: 15px;
  }

  .home-5-stat-text p {
      font-size: 8px;
  }

  .home-5-about-image {
      width: 46%;
      height: 290px;
  }
}

/* Tablet */

@media (min-width: 768px) and (max-width: 991px) {
  .home-5-about-section {
      padding: 25px 20px;
  }

  .home-5-about-wrapper {
      min-height: 260px;
      gap: 20px;
  }

  .home-5-about-content {
      width: 55%;
      padding-left: 0;
  }

  .home-5-about-label {
      margin-bottom: 8px;
  }

  .home-5-about-label span {
      font-size: 9px;
      letter-spacing: 3px;
  }

  .home-5-about-title {
      margin-bottom: 12px;
      font-size: 25px;
  }

  .home-5-about-description {
      margin-bottom: 16px;
      font-size: 10px;
      line-height: 1.7;
  }

  .home-5-about-stats {
      margin-bottom: 18px;
  }

  .home-5-stat-item {
      min-width: 0;
      flex: 1;
      gap: 5px;
      padding: 2px 8px;
  }

  .home-5-stat-icon {
      width: 24px;
      flex-basis: 24px;
      font-size: 18px;
  }

  .home-5-stat-text h3 {
      font-size: 12px;
  }

  .home-5-stat-text p {
      font-size: 7px;
  }

  .home-5-about-btn {
      min-width: 165px;
      height: 36px;
      padding: 0 14px;
      gap: 12px;
      font-size: 10px;
  }

  .home-5-about-image {
      width: 43%;
      height: 240px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .home-5-about-section {
      padding: 25px 15px;
  }

  .home-5-about-wrapper {
      min-height: 0;
      flex-direction: column;
      gap: 20px;
  }

  .home-5-about-content {
      width: 100%;
      padding-left: 0;
      text-align: center;
  }

  .home-5-about-label {
      justify-content: center;
      margin-bottom: 8px;
  }

  .home-5-about-label span {
      font-size: 9px;
      letter-spacing: 3px;
  }

  .home-5-about-title {
      margin-bottom: 12px;
      font-size: 25px;
      line-height: 1.1;
  }

  .home-5-about-description {
      max-width: 500px;
      margin: 0 auto 18px;
      font-size: 11px;
      line-height: 1.7;
  }

  .home-5-about-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      margin-bottom: 20px;
  }

  .home-5-stat-item {
      min-width: 0;
      justify-content: center;
      padding: 12px 8px;
  }

  .home-5-stat-item:nth-child(2) {
      border-right: 0;
  }

  .home-5-stat-item:nth-child(-n+2) {
      border-bottom: 1px solid #ded7cf;
  }

  .home-5-stat-icon {
      width: 30px;
      flex-basis: 30px;
      font-size: 21px;
  }

  .home-5-stat-text {
      text-align: left;
  }

  .home-5-stat-text h3 {
      font-size: 14px;
  }

  .home-5-stat-text p {
      font-size: 8px;
  }

  .home-5-about-btn {
      height: 38px;
      min-width: 175px;
      font-size: 10px;
  }

  .home-5-about-image {
      width: 100%;
      height: 230px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .home-5-about-section {
      padding: 20px 12px;
  }

  .home-5-about-title {
      font-size: 21px;
  }

  .home-5-about-description {
      font-size: 10px;
  }

  .home-5-stat-item {
      padding: 10px 5px;
  }

  .home-5-stat-icon {
      font-size: 18px;
  }

  .home-5-stat-text h3 {
      font-size: 12px;
  }

  .home-5-stat-text p {
      font-size: 7px;
  }

  .home-5-about-image {
      height: 190px;
  }
}

/* --------------------------home-sec-6----------------------------- */
/* ---------------- HOME SECTION 6 - CONTACT / ORDER ---------------- */

.home-6-contact-section {
  padding: 20px 45px 30px;
  background: #fff;
}

.home-6-contact-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 28px 35px;
  border: 1px solid #eee5dc;
  border-radius: 14px;
  background: linear-gradient(110deg, #fffaf4 0%, #fff 48%, #fff9f3 100%);
  box-shadow: 0 5px 20px rgba(60, 30, 10, 0.05);
  overflow: hidden;
}

.home-6-contact-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: #990b12;
}

/* Left Content */

.home-6-contact-content {
  width: 34%;
}

.home-6-contact-label {
  display: block;
  margin-bottom: 8px;
  color: #c08a1c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
}

.home-6-contact-label i {
  margin-right: 5px;
}

.home-6-contact-content h2 {
  margin: 0 0 10px;
  color: #20150e;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.15;
}

.home-6-contact-content p {
  max-width: 430px;
  margin: 0 0 14px;
  color: #6d625b;
  font-size: 11px;
  line-height: 1.7;
}

.home-6-contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
}

.home-6-contact-points span {
  color: #4d4038;
  font-size: 9px;
  font-weight: 600;
}

.home-6-contact-points i {
  margin-right: 4px;
  color: #b88620;
}

/* Form */

.home-6-contact-form {
  width: 66%;
}

.home-6-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 11px;
}

.home-6-input-group {
  display: flex;
  flex-direction: column;
}

.home-6-input-group label {
  margin-bottom: 5px;
  color: #382b24;
  font-size: 11px;
  font-weight: 600;
}

.home-6-input-group input,
.home-6-input-group select {
  width: 100%;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #e2d9d0;
  border-radius: 5px;
  outline: none;
  background: #fff;
  color: #333;
  font-size: 10px;
  transition: 0.25s;
}

.home-6-input-group input::placeholder {
  color: #aaa;
}

.home-6-input-group input:focus,
.home-6-input-group select:focus {
  border-color: #b68a39;
  box-shadow: 0 0 0 2px rgba(182, 138, 57, 0.08);
}

/* Last Row */

.home-6-form-bottom {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.home-6-message {
  flex: 1;
}

.home-6-submit-btn {
  height: 38px;
  min-width: 145px;
  padding: 0 18px;
  border: 0;
  border-radius: 5px;
  background: #990b12;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.home-6-submit-btn i {
  margin-left: 8px;
  font-size: 9px;
  transition: transform 0.3s;
}

.home-6-submit-btn:hover {
  background: #76070d;
  box-shadow: 0 5px 12px rgba(120, 0, 8, 0.18);
  transform: translateY(-1px);
}

.home-6-submit-btn:hover i {
  transform: translateX(4px);
}

/* Laptop */

@media (max-width: 1199px) {
  .home-6-contact-section {
      padding: 18px 30px 25px;
  }

  .home-6-contact-box {
      gap: 30px;
      padding: 25px 28px;
  }

  .home-6-contact-content h2 {
      font-size: 24px;
  }
}

/* Tablet */

@media (min-width: 768px) and (max-width: 991px) {
  .home-6-contact-section {
      padding: 16px 20px 22px;
  }

  .home-6-contact-box {
      gap: 22px;
      padding: 22px;
  }

  .home-6-contact-content {
      width: 32%;
  }

  .home-6-contact-form {
      width: 68%;
  }

  .home-6-contact-content h2 {
      font-size: 20px;
  }

  .home-6-contact-content p {
      font-size: 9px;
  }

  .home-6-contact-points {
      display: block;
  }

  .home-6-contact-points span {
      display: block;
      margin-bottom: 5px;
      font-size: 8px;
  }

  .home-6-input-group input,
  .home-6-input-group select {
      height: 35px;
      font-size: 9px;
  }

  .home-6-submit-btn {
      height: 35px;
      min-width: 120px;
      padding: 0 12px;
      font-size: 9px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .home-6-contact-section {
      padding: 15px 12px 20px;
  }

  .home-6-contact-box {
      display: block;
      padding: 22px 18px;
  }

  .home-6-contact-content,
  .home-6-contact-form {
      width: 100%;
  }

  .home-6-contact-content {
      margin-bottom: 20px;
      text-align: center;
  }

  .home-6-contact-label {
      font-size: 9px;
  }

  .home-6-contact-content h2 {
      font-size: 22px;
  }

  .home-6-contact-content p {
      max-width: 500px;
      margin: 0 auto 12px;
      font-size: 10px;
  }

  .home-6-contact-points {
      justify-content: center;
  }

  .home-6-form-row {
      gap: 9px;
  }

  .home-6-input-group input,
  .home-6-input-group select {
      height: 36px;
  }

  .home-6-form-bottom {
      align-items: flex-end;
  }

  .home-6-submit-btn {
      height: 36px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .home-6-contact-section {
      padding: 12px 8px 16px;
  }

  .home-6-contact-box {
      padding: 18px 13px;
  }

  .home-6-contact-content h2 {
      font-size: 19px;
  }

  .home-6-contact-points {
      gap: 6px 10px;
  }

  .home-6-contact-points span {
      font-size: 7px;
  }

  .home-6-form-row {
      grid-template-columns: 1fr;
      margin-bottom: 9px;
  }

  .home-6-form-bottom {
      display: block;
  }

  .home-6-message {
      margin-bottom: 10px;
  }

  .home-6-submit-btn {
      width: 100%;
  }
}

/* -----------------home-sec-7----------------------------- */
/* ---------------- HOME SECTION 7 - TESTIMONIALS ---------------- */
/* ---------------- HOME SECTION 7 - SOCIAL MEDIA ---------------- */

.home-7-social-section {
  padding: 15px 45px 28px;
  background: #fff;
}

.home-7-social-box {
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 25px 35px;
  border: 1px solid #eee5dc;
  border-radius: 14px;
  background: linear-gradient(110deg, #fffaf5, #fff 55%, #fff9f2);
  box-shadow: 0 4px 18px rgba(60, 30, 10, 0.05);
}

.home-7-social-heading {
  width: 30%;
}

.home-7-social-heading span {
  display: block;
  margin-bottom: 7px;
  color: #bd861a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
}

.home-7-social-heading span i {
  margin-right: 5px;
}

.home-7-social-heading h2 {
  margin: 0 0 7px;
  color: #21150f;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
}

.home-7-social-heading p {
  margin: 0;
  color: #74675f;
  font-size: 10px;
  line-height: 1.6;
}

/* Social Cards */

.home-7-social-links {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.home-7-social-card {
  min-width: 0;
  padding: 15px 8px;
  border: 1px solid #eee5dc;
  border-radius: 10px;
  background: #fff;
  color: #30251f;
  text-align: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.home-7-social-icon {
  width: 45px;
  height: 45px;
  margin: 0 auto 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff5ec;
  color: #990b12;
  font-size: 20px;
  transition: 0.3s ease;
}

.home-7-social-info h3 {
  margin: 0 0 3px;
  color: #251a14;
  font-size: 11px;
  font-weight: 700;
}

.home-7-social-info p {
  margin: 0;
  color: #8b817a;
  font-size: 8px;
}

.home-7-social-card:hover {
  text-decoration: none;
  transform: translateY(-5px);
  border-color: #e0cba8;
  box-shadow: 0 8px 20px rgba(70, 35, 10, 0.1);
}

.home-7-social-card:hover .home-7-social-icon {
  color: #fff;
  transform: scale(1.08);
}

/* Social Hover Colors */

.home-7-instagram:hover .home-7-social-icon {
  background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
}

.home-7-facebook:hover .home-7-social-icon {
  background: #1877f2;
}

.home-7-youtube:hover .home-7-social-icon {
  background: #ff0000;
}

.home-7-whatsapp:hover .home-7-social-icon {
  background: #25d366;
}

.home-7-website:hover .home-7-social-icon {
  background: #a66d08;
}

/* Laptop */

@media (max-width: 1199px) {
  .home-7-social-section {
      padding: 15px 30px 25px;
  }

  .home-7-social-box {
      gap: 28px;
      padding: 22px 25px;
  }

  .home-7-social-heading h2 {
      font-size: 22px;
  }

  .home-7-social-links {
      gap: 9px;
  }

  .home-7-social-card {
      padding: 13px 6px;
  }

  .home-7-social-icon {
      width: 40px;
      height: 40px;
      font-size: 18px;
  }
}

/* Tablet */

@media (min-width: 768px) and (max-width: 991px) {
  .home-7-social-section {
      padding: 12px 20px 22px;
  }

  .home-7-social-box {
      gap: 20px;
      padding: 20px;
  }

  .home-7-social-heading {
      width: 27%;
  }

  .home-7-social-links {
      width: 73%;
      gap: 7px;
  }

  .home-7-social-heading h2 {
      font-size: 18px;
  }

  .home-7-social-heading p {
      font-size: 8px;
  }

  .home-7-social-card {
      padding: 11px 4px;
  }

  .home-7-social-icon {
      width: 34px;
      height: 34px;
      margin-bottom: 6px;
      font-size: 15px;
  }

  .home-7-social-info h3 {
      font-size: 9px;
  }

  .home-7-social-info p {
      font-size: 7px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .home-7-social-section {
      padding: 12px 12px 20px;
  }

  .home-7-social-box {
      display: block;
      padding: 20px 15px;
  }

  .home-7-social-heading {
      width: 100%;
      margin-bottom: 18px;
      text-align: center;
  }

  .home-7-social-heading h2 {
      font-size: 20px;
  }

  .home-7-social-heading p {
      font-size: 9px;
  }

  .home-7-social-links {
      width: 100%;
      grid-template-columns: repeat(5, 1fr);
      gap: 7px;
  }

  .home-7-social-card {
      padding: 10px 3px;
  }

  .home-7-social-icon {
      width: 34px;
      height: 34px;
      margin-bottom: 6px;
      font-size: 15px;
  }

  .home-7-social-info h3 {
      font-size: 8px;
  }

  .home-7-social-info p {
      display: none;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .home-7-social-section {
      padding: 10px 8px 16px;
  }

  .home-7-social-box {
      padding: 18px 10px;
  }

  .home-7-social-heading {
      margin-bottom: 15px;
  }

  .home-7-social-heading span {
      font-size: 8px;
  }

  .home-7-social-heading h2 {
      font-size: 18px;
  }

  .home-7-social-links {
      gap: 5px;
  }

  .home-7-social-card {
      padding: 8px 2px;
      border-radius: 7px;
  }

  .home-7-social-icon {
      width: 30px;
      height: 30px;
      font-size: 13px;
  }

  .home-7-social-info h3 {
      font-size: 7px;
  }
}

/* ---------------------------home-sec-8----------------------------- */
/* ---------------- HOME SECTION 8 - GALLERY ---------------- */

.home-8-gallery-section {
  padding: 30px 45px;
  background: #fff;
}

/* Heading */

.home-8-gallery-header {
  margin-bottom: 20px;
  text-align: center;
}

.home-8-gallery-label {
  display: block;
  margin-bottom: 6px;
  color: #b98015;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
}

.home-8-gallery-label i {
  margin-right: 5px;
}

.home-8-gallery-header h2 {
  margin: 0 0 7px;
  color: #20150f;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 700;
}

.home-8-gallery-header p {
  margin: 0;
  color: #766a62;
  font-size: 10px;
}

/* Gallery Grid */

.home-8-gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.35fr;
  grid-template-rows: 135px 135px;
  gap: 10px;
}

/* Gallery Item */

.home-8-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  overflow: hidden;
  background: #eee;
}

.home-8-gallery-large {
  grid-row: span 2;
}

.home-8-gallery-wide {
  grid-column: span 2;
}

.home-8-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Overlay */

.home-8-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(55, 10, 7, 0.58);
  color: #fff;
  opacity: 0;
  transition: 0.3s;
}

.home-8-gallery-overlay i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 12px;
  transform: translateY(8px);
  transition: 0.3s;
}

.home-8-gallery-overlay span {
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  transform: translateY(8px);
  transition: 0.3s;
}

/* Hover */

.home-8-gallery-item:hover img {
  transform: scale(1.08);
}

.home-8-gallery-item:hover .home-8-gallery-overlay {
  opacity: 1;
}

.home-8-gallery-item:hover .home-8-gallery-overlay i,
.home-8-gallery-item:hover .home-8-gallery-overlay span {
  transform: translateY(0);
}

/* Button */

.home-8-gallery-bottom {
  margin-top: 18px;
  text-align: center;
}

.home-8-gallery-btn {
  min-width: 150px;
  height: 38px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  background: #990b12;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.home-8-gallery-btn i {
  font-size: 9px;
  transition: transform 0.3s;
}

.home-8-gallery-btn:hover {
  background: #76070d;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(120, 0, 8, 0.15);
}

.home-8-gallery-btn:hover i {
  transform: translateX(4px);
}

/* Large Desktop */

@media (min-width: 1400px) {
  .home-8-gallery-section {
      padding-left: 60px;
      padding-right: 60px;
  }

  .home-8-gallery-grid {
      grid-template-rows: 150px 150px;
  }
}

/* Laptop */

@media (min-width: 992px) and (max-width: 1199px) {
  .home-8-gallery-section {
      padding: 26px 30px;
  }

  .home-8-gallery-grid {
      grid-template-rows: 120px 120px;
      gap: 8px;
  }

  .home-8-gallery-header h2 {
      font-size: 24px;
  }
}

/* Tablet */

@media (min-width: 768px) and (max-width: 991px) {
  .home-8-gallery-section {
      padding: 24px 20px;
  }

  .home-8-gallery-header {
      margin-bottom: 16px;
  }

  .home-8-gallery-header h2 {
      font-size: 21px;
  }

  .home-8-gallery-grid {
      grid-template-columns: 1.3fr 1fr 1fr;
      grid-template-rows: 110px 110px;
      gap: 7px;
  }

  .home-8-gallery-wide {
      grid-column: auto;
  }

  .home-8-gallery-overlay span {
      font-size: 10px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .home-8-gallery-section {
      padding: 22px 12px;
  }

  .home-8-gallery-header {
      margin-bottom: 15px;
  }

  .home-8-gallery-label {
      font-size: 8px;
  }

  .home-8-gallery-header h2 {
      font-size: 20px;
  }

  .home-8-gallery-header p {
      font-size: 9px;
  }

  .home-8-gallery-grid {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 100px);
      gap: 6px;
  }

  .home-8-gallery-large,
  .home-8-gallery-wide {
      grid-row: auto;
      grid-column: auto;
  }

  .home-8-gallery-item {
      border-radius: 6px;
  }

  .home-8-gallery-overlay span {
      display: none;
  }

  .home-8-gallery-overlay i {
      width: 28px;
      height: 28px;
      font-size: 9px;
  }

  .home-8-gallery-bottom {
      margin-top: 14px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .home-8-gallery-section {
      padding: 18px 8px;
  }

  .home-8-gallery-header h2 {
      font-size: 18px;
  }

  .home-8-gallery-header p {
      font-size: 8px;
  }

  .home-8-gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, 90px);
      gap: 5px;
  }

  .home-8-gallery-btn {
      min-width: 135px;
      height: 34px;
      font-size: 9px;
  }
}

/* ---------------------------home-sec-9----------------------------- */
/* ---------------- HOME SECTION 9 - SOCIAL VIDEOS ---------------- */

.home-9-media-section {
  padding: 32px 45px;
  background: #fff;
}

/* Heading */

.home-9-media-heading {
  margin-bottom: 22px;
  text-align: center;
}

.home-9-media-heading span {
  display: block;
  margin-bottom: 7px;
  color: #b47b10;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
}

.home-9-media-heading span i {
  margin-right: 5px;
}

.home-9-media-heading h2 {
  margin: 0 0 7px;
  color: #21150f;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 700;
}

.home-9-media-heading p {
  margin: 0;
  color: #756961;
  font-size: 10px;
}

/* Grid */

.home-9-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Card */

.home-9-media-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #ece5de;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(55, 30, 15, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.home-9-media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 9px 24px rgba(55, 30, 15, 0.12);
}

/* Video Area */

.home-9-video-box {
  position: relative;
  width: 100%;
  height: 185px;
  overflow: hidden;
  background: #17120f;
}

.home-9-video-box iframe,
.home-9-video-box video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

/* Platform Badge */

.home-9-platform-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 20px;
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.home-9-platform-badge i {
  font-size: 10px;
}

.home-9-youtube {
  background: #ff0000;
}

.home-9-facebook {
  background: #1877f2;
}

.home-9-instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
}

.home-9-gallery {
  background: #990b12;
}

/* Bottom Content */

.home-9-card-content {
  min-height: 72px;
  padding: 12px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-9-card-content h3 {
  margin: 0 0 4px;
  color: #251912;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
}

.home-9-card-content p {
  margin: 0;
  color: #81766f;
  font-size: 8px;
  line-height: 1.5;
}

.home-9-card-content a {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eadfd5;
  border-radius: 50%;
  background: #fff9f4;
  color: #990b12;
  font-size: 9px;
  text-decoration: none;
  transition: 0.3s;
}

.home-9-card-content a:hover {
  border-color: #990b12;
  background: #990b12;
  color: #fff;
  transform: translateX(2px);
}

/* Large Screen */

@media (min-width: 1400px) {
  .home-9-media-section {
      padding-left: 60px;
      padding-right: 60px;
  }

  .home-9-video-box {
      height: 205px;
  }
}

/* Laptop */

@media (min-width: 992px) and (max-width: 1199px) {
  .home-9-media-section {
      padding: 28px 30px;
  }

  .home-9-media-grid {
      gap: 12px;
  }

  .home-9-video-box {
      height: 160px;
  }

  .home-9-card-content h3 {
      font-size: 12px;
  }
}

/* Tablet */

@media (min-width: 768px) and (max-width: 991px) {
  .home-9-media-section {
      padding: 25px 20px;
  }

  .home-9-media-heading h2 {
      font-size: 22px;
  }

  .home-9-media-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
  }

  .home-9-video-box {
      height: 190px;
  }
}

/* Hide Media Section on Mobile */
@media (max-width: 767px) {
  .home-9-media-section {
      display: none;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .home-9-media-section {
      display: none;
  }
}

/* -------------------------------home-sec-10----------------------------- */
/* ---------------- HOME SECTION 9 - MEDIA ---------------- */

.home-9-media-section {
  padding: 30px 45px;
  background: #fff;
}

/* Heading */

.home-9-media-heading {
  margin-bottom: 20px;
  text-align: center;
}

.home-9-media-heading span {
  display: block;
  margin-bottom: 6px;
  color: #b77d12;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
}

.home-9-media-heading span i {
  margin-right: 5px;
}

.home-9-media-heading h2 {
  margin: 0 0 6px;
  color: #21150f;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 700;
}

.home-9-media-heading p {
  margin: 0;
  color: #776b63;
  font-size: 10px;
}

/* 4 Cards */

.home-9-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

/* Card */

.home-9-media-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #ebe3dc;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(55, 30, 15, 0.07);
  transition: 0.3s;
}

.home-9-media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(55, 30, 15, 0.12);
}

/* Video */

.home-9-video-box {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #111;
}

.home-9-video-box iframe {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

/* Platform Badge */

.home-9-platform-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 20px;
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  pointer-events: none;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.18);
}

.home-9-platform-badge i {
  font-size: 10px;
}

.home-9-youtube {
  background: #ff0000;
}

.home-9-facebook {
  background: #1877f2;
}

.home-9-instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
}

.home-9-gallery {
  background: #990b12;
}

/* Bottom Link */

.home-9-card-btn {
  height: 40px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #3d3029;
  font-size: 9px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.home-9-card-btn i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff3e9;
  color: #990b12;
  font-size: 8px;
  transition: 0.3s;
}

.home-9-card-btn:hover {
  color: #990b12;
  text-decoration: none;
}

.home-9-card-btn:hover i {
  background: #990b12;
  color: #fff;
  transform: translateX(2px);
}

/* Large Screen */

@media (min-width: 1400px) {
  .home-9-media-section {
      padding-left: 60px;
      padding-right: 60px;
  }

  .home-9-video-box {
      height: 210px;
  }
}

/* Laptop */

@media (min-width: 992px) and (max-width: 1199px) {
  .home-9-media-section {
      padding: 27px 30px;
  }

  .home-9-media-grid {
      gap: 12px;
  }

  .home-9-video-box {
      height: 165px;
  }

  .home-9-media-heading h2 {
      font-size: 24px;
  }
}

/* Tablet */

@media (min-width: 768px) and (max-width: 991px) {
  .home-9-media-section {
      padding: 25px 20px;
  }

  .home-9-media-heading h2 {
      font-size: 22px;
  }

  .home-9-media-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
  }

  .home-9-video-box {
      height: 200px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .home-9-media-section {
      padding: 22px 12px;
  }

  .home-9-media-heading {
      margin-bottom: 16px;
  }

  .home-9-media-heading span {
      font-size: 8px;
      letter-spacing: 2px;
  }

  .home-9-media-heading h2 {
      font-size: 20px;
  }

  .home-9-media-heading p {
      font-size: 9px;
      line-height: 1.5;
  }

  .home-9-media-grid {
      grid-template-columns: 1fr;
      gap: 12px;
  }

  .home-9-video-box {
      height: 220px;
  }

  .home-9-card-btn {
      height: 38px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .home-9-media-section {
      padding: 18px 8px;
  }

  .home-9-media-heading h2 {
      font-size: 18px;
  }

  .home-9-video-box {
      height: 190px;
  }

  .home-9-card-btn {
      height: 36px;
      padding: 0 10px;
      font-size: 8px;
  }

  .home-9-card-btn i {
      width: 22px;
      height: 22px;
      font-size: 7px;
  }
}

/* ------------------------home-sec-10----------------------------- */
/* ---------------- RGH BRAND COLLABORATION ---------------- */

.rgh-brand-section {
  padding: 30px 45px;
  background: #fff;
}

.rgh-brand-wrap {
  display: flex;
  min-height: 310px;
  border: 1px solid #eadfd5;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(55, 25, 10, 0.06);
}

/* Left Side */

.rgh-brand-intro {
  position: relative;
  width: 30%;
  padding: 38px 35px;
  background: linear-gradient(135deg, #78080e, #a10d15);
  color: #fff;
  overflow: hidden;
}

.rgh-brand-label {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 12px;
  color: #e6bb66;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
}

.rgh-brand-label i {
  margin-right: 6px;
}

.rgh-brand-intro h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.12;
}

.rgh-brand-intro p {
  position: relative;
  z-index: 2;
  max-width: 330px;
  margin: 0 0 23px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  line-height: 1.7;
}

.rgh-brand-main-btn {
  position: relative;
  z-index: 2;
  height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.rgh-brand-main-btn i {
  font-size: 8px;
  transition: 0.3s;
}

.rgh-brand-main-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #8e0a11;
  text-decoration: none;
}

.rgh-brand-main-btn:hover i {
  transform: translateX(4px);
}

.rgh-brand-bg-text {
  position: absolute;
  right: -20px;
  bottom: -12px;
  color: rgba(255, 255, 255, 0.045);
  font-family: Georgia, serif;
  font-size: 65px;
  font-weight: 700;
  letter-spacing: 3px;
  pointer-events: none;
}

/* Right Area */

.rgh-brand-area {
  width: 70%;
  padding: 28px 30px;
  background: #fffaf6;
}

.rgh-brand-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 20px;
}

.rgh-brand-top span {
  display: block;
  margin-bottom: 5px;
  color: #b17a19;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
}

.rgh-brand-top h3 {
  margin: 0;
  color: #21160f;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 700;
}

.rgh-brand-top p {
  max-width: 280px;
  margin: 0;
  color: #85786f;
  font-size: 8px;
  line-height: 1.6;
  text-align: right;
}

/* Brand Grid */

.rgh-brand-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* Brand Item */

.rgh-brand-item {
  min-width: 0;
  height: 95px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border: 1px solid #ebe0d5;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

.rgh-brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 7px;
  background: #faf7f3;
}

.rgh-brand-logo img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: 0.3s;
}

.rgh-brand-info {
  min-width: 0;
}

.rgh-brand-info h4 {
  margin: 0 0 4px;
  overflow: hidden;
  color: #30231c;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rgh-brand-info span {
  color: #91847b;
  font-size: 7px;
}

.rgh-brand-item:hover {
  border-color: #d5b67e;
  box-shadow: 0 6px 15px rgba(70, 35, 10, 0.08);
  transform: translateY(-3px);
  text-decoration: none;
}

.rgh-brand-item:hover .rgh-brand-logo img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.06);
}

/* Join Brand Card */

.rgh-brand-join {
  border: 1px dashed #caa96c;
  background: #fff9ed;
}

.rgh-brand-plus {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #bd9142;
  border-radius: 7px;
  color: #990b12;
  font-size: 14px;
  transition: 0.3s;
}

.rgh-brand-join:hover .rgh-brand-plus {
  background: #990b12;
  border-color: #990b12;
  color: #fff;
  transform: rotate(90deg);
}

/* Large Screen */

@media (min-width: 1400px) {
  .rgh-brand-section {
      padding-left: 60px;
      padding-right: 60px;
  }

  .rgh-brand-intro {
      padding: 42px 40px;
  }

  .rgh-brand-intro h2 {
      font-size: 33px;
  }

  .rgh-brand-item {
      height: 100px;
  }
}

/* Laptop */

@media (min-width: 992px) and (max-width: 1199px) {
  .rgh-brand-section {
      padding: 27px 30px;
  }

  .rgh-brand-intro {
      width: 31%;
      padding: 32px 25px;
  }

  .rgh-brand-area {
      width: 69%;
      padding: 25px 22px;
  }

  .rgh-brand-intro h2 {
      font-size: 25px;
  }

  .rgh-brand-scroll {
      gap: 8px;
  }

  .rgh-brand-item {
      height: 85px;
      gap: 7px;
      padding: 8px;
  }

  .rgh-brand-logo,
  .rgh-brand-plus {
      width: 43px;
      height: 43px;
      flex-basis: 43px;
  }

  .rgh-brand-info h4 {
      font-size: 8px;
  }

  .rgh-brand-info span {
      font-size: 6px;
  }
}

/* Tablet */

@media (min-width: 768px) and (max-width: 991px) {
  .rgh-brand-section {
      padding: 24px 20px;
  }

  .rgh-brand-wrap {
      min-height: 280px;
  }

  .rgh-brand-intro {
      width: 34%;
      padding: 28px 20px;
  }

  .rgh-brand-area {
      width: 66%;
      padding: 22px 18px;
  }

  .rgh-brand-intro h2 {
      font-size: 22px;
  }

  .rgh-brand-intro p {
      font-size: 8px;
  }

  .rgh-brand-top p {
      display: none;
  }

  .rgh-brand-top h3 {
      font-size: 18px;
  }

  .rgh-brand-scroll {
      grid-template-columns: repeat(3, 1fr);
      gap: 7px;
  }

  .rgh-brand-item {
      height: 78px;
      display: block;
      padding: 8px;
      text-align: center;
  }

  .rgh-brand-logo,
  .rgh-brand-plus {
      width: 38px;
      height: 38px;
      margin: 0 auto 5px;
  }

  .rgh-brand-info h4 {
      margin-bottom: 1px;
      font-size: 7px;
  }

  .rgh-brand-info span {
      font-size: 6px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .rgh-brand-section {
      padding: 20px 12px;
  }

  .rgh-brand-wrap {
      display: block;
  }

  .rgh-brand-intro,
  .rgh-brand-area {
      width: 100%;
  }

  .rgh-brand-intro {
      padding: 25px 20px;
      text-align: center;
  }

  .rgh-brand-label {
      font-size: 8px;
  }

  .rgh-brand-intro h2 {
      font-size: 23px;
  }

  .rgh-brand-intro p {
      max-width: 450px;
      margin: 0 auto 18px;
      font-size: 9px;
  }

  .rgh-brand-bg-text {
      font-size: 50px;
  }

  .rgh-brand-area {
      padding: 20px 15px;
  }

  .rgh-brand-top {
      margin-bottom: 14px;
      text-align: center;
  }

  .rgh-brand-top>div {
      width: 100%;
  }

  .rgh-brand-top h3 {
      font-size: 19px;
  }

  .rgh-brand-top p {
      display: none;
  }

  .rgh-brand-scroll {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      scrollbar-width: none;
  }

  .rgh-brand-scroll::-webkit-scrollbar {
      display: none;
  }

  .rgh-brand-item {
      flex: 0 0 145px;
      height: 80px;
      padding: 9px;
  }

  .rgh-brand-logo,
  .rgh-brand-plus {
      width: 42px;
      height: 42px;
      flex-basis: 42px;
  }

  .rgh-brand-info h4 {
      font-size: 8px;
  }
}

/* Small Mobile */

@media (max-width: 480px) {
  .rgh-brand-section {
      padding: 16px 8px;
  }

  .rgh-brand-intro {
      padding: 22px 15px;
  }

  .rgh-brand-intro h2 {
      font-size: 20px;
  }

  .rgh-brand-main-btn {
      height: 35px;
      font-size: 8px;
  }

  .rgh-brand-area {
      padding: 17px 10px;
  }

  .rgh-brand-top h3 {
      font-size: 17px;
  }

  .rgh-brand-item {
      flex-basis: 130px;
      height: 72px;
  }

  .rgh-brand-logo,
  .rgh-brand-plus {
      width: 36px;
      height: 36px;
      flex-basis: 36px;
  }
}

/* -------------------------footer----------------------------- */
/* ================= FOOTER ================= */

.footer-main {
  margin-top: 25px;
  background: #260507;
  color: #fff;
}

/* Newsletter */

.footer-newsletter {
  margin: 0 45px;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(110deg, #79080e, #a10c14 55%, #6e070c);
}

.footer-newsletter-icon {
  width: 55px;
  height: 55px;
  flex: 0 0 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 201, 85, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #f1bd48;
  font-size: 23px;
}

.footer-newsletter-text {
  flex: 1;
}

.footer-newsletter-text span {
  display: block;
  margin-bottom: 3px;
  color: #efbb45;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-newsletter-text h3 {
  margin: 0 0 3px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 700;
}

.footer-newsletter-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-newsletter-form {
  width: 42%;
  height: 42px;
  display: flex;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
}

.footer-newsletter-input {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.footer-newsletter-input i {
  margin-left: 14px;
  color: #a8978d;
  font-size: 14px;
}

.footer-newsletter-input input {
  width: 100%;
  height: 100%;
  padding: 0 12px;
  border: 0;
  outline: 0;
  color: #333;
  font-size: 13px;
}

.footer-newsletter-form button {
  padding: 0 20px;
  border: 0;
  background: #e6a817;
  color: #271500;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.footer-newsletter-form button i {
  margin-left: 7px;
  font-size: 11px;
}

.footer-newsletter-form button:hover {
  background: #f5bd35;
}

/* Main Content */

.footer-content {
  padding: 42px 60px 35px;
  display: grid;
  grid-template-columns: 1.7fr .8fr .9fr 1fr 1.4fr;
  gap: 45px;
  background:
      radial-gradient(circle at 8% 80%, rgba(158, 15, 22, 0.22), transparent 22%),
      #260507;
}

/* Brand */

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo img {
  max-width: 145px;
  max-height: 60px;
  object-fit: contain;
}

.footer-brand>p {
  max-width: 310px;
  margin: 0 0 18px;
  color: #bcaeaa;
  font-size: 13px;
  line-height: 1.8;
}

.footer-quality {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
}

.footer-quality>div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-quality i {
  color: #dca536;
  font-size: 17px;
}

.footer-quality span {
  color: #9f918d;
  font-size: 10px;
  line-height: 1.4;
}

.footer-quality strong {
  display: block;
  color: #e9dfdc;
  font-size: 11px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #5a292b;
  border-radius: 50%;
  color: #d8c7c2;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  border-color: #dca536;
  background: #dca536;
  color: #2b0909;
  transform: translateY(-3px);
}

/* Footer Headings */

.footer-column h4,
.footer-contact h4 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 9px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 600;
}

.footer-column h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 2px;
  background: #d99d22;
}

/* Links */

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin-bottom: 11px;
}

.footer-column a {
  position: relative;
  color: #b9aaa6;
  font-size: 13px;
  text-decoration: none;
  transition: 0.25s;
}

.footer-column a::before {
  content: "â€º";
  margin-right: 7px;
  color: #b98119;
}

.footer-column a:hover {
  padding-left: 4px;
  color: #e5b54c;
  text-decoration: none;
}

/* Contact */

.footer-contact-item {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.footer-contact-item>span {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #583033;
  border-radius: 6px;
  color: #d9a22d;
  font-size: 13px;
}

.footer-contact-item small {
  display: block;
  margin-bottom: 2px;
  color: #806e6b;
  font-size: 10px;
}

.footer-contact-item p {
  margin: 0;
  color: #d2c5c1;
  font-size: 12px;
}

.footer-contact-item:hover {
  text-decoration: none;
}

.footer-contact-item:hover>span {
  border-color: #d9a22d;
}

.footer-whatsapp-btn {
  width: 100%;
  height: 35px;
  margin-top: 5px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border: 1px solid #5d3334;
  border-radius: 5px;
  color: #d7c8c4;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.footer-whatsapp-btn .fa-whatsapp {
  margin-right: 7px;
  color: #4bcf74;
  font-size: 16px;
}

.footer-whatsapp-btn .fa-arrow-right {
  margin-left: auto;
  font-size: 10px;
}

.footer-whatsapp-btn:hover {
  border-color: #36b963;
  background: #36b963;
  color: #fff;
  text-decoration: none;
}

.footer-whatsapp-btn:hover i {
  color: #fff;
}

/* Bottom */

.footer-bottom {
  min-height: 52px;
  padding: 12px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #4a2224;
  background: #1b0305;
}

.footer-bottom p {
  margin: 0;
  color: #857673;
  font-size: 11px;
}

.footer-bottom strong {
  color: #d4c3bf;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-bottom-links span {
  color: #92817d;
  font-size: 11px;
}

.footer-bottom-links i {
  margin-right: 5px;
  color: #c58d24;
}

.footer-made i {
  margin-left: 5px;
  color: #c8942b;
}

/* ================= LAPTOP ================= */

@media (max-width: 1199px) {
  .footer-newsletter {
      margin: 0 30px;
  }

  .footer-content {
      padding: 38px 40px 32px;
      gap: 28px;
  }

  .footer-newsletter-form {
      width: 40%;
  }

  .footer-bottom {
      padding-left: 40px;
      padding-right: 40px;
  }
}

/* ================= TABLET ================= */

@media (min-width: 768px) and (max-width: 991px) {
  .footer-newsletter {
      margin: 0 20px;
      padding: 18px 20px;
  }

  .footer-newsletter-icon {
      width: 45px;
      height: 45px;
      flex-basis: 45px;
      font-size: 19px;
  }

  .footer-newsletter-text h3 {
      font-size: 19px;
  }

  .footer-newsletter-text p {
      display: none;
  }

  .footer-newsletter-form {
      width: 43%;
      height: 38px;
  }

  .footer-newsletter-form button {
      padding: 0 12px;
      font-size: 11px;
  }

  .footer-content {
      grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
      padding: 32px 30px;
      gap: 25px;
  }

  .footer-column:nth-of-type(3) {
      display: none;
  }

  .footer-bottom {
      padding: 12px 30px;
  }

  .footer-bottom-links {
      gap: 12px;
  }
}

/* ================= MOBILE FOOTER ================= */

@media (max-width: 767px) {

  .footer-main {
      margin-top: 15px;
  }

  /* Newsletter */

  .footer-newsletter {
      margin: 0 12px;
      padding: 18px;
      display: block;
      border-radius: 10px 10px 0 0;
      text-align: center;
  }

  .footer-newsletter-icon {
      display: none;
  }

  .footer-newsletter-text span {
      margin-bottom: 5px;
      font-size: 9px;
      letter-spacing: 2px;
  }

  .footer-newsletter-text h3 {
      margin-bottom: 5px;
      font-size: 19px;
  }

  .footer-newsletter-text p {
      margin: 0 auto 13px;
      font-size: 10px;
      line-height: 1.5;
  }

  .footer-newsletter-form {
      width: 100%;
      max-width: 430px;
      height: 40px;
      margin: auto;
  }

  .footer-newsletter-input i {
      margin-left: 12px;
      font-size: 12px;
  }

  .footer-newsletter-input input {
      padding: 0 9px;
      font-size: 11px;
  }

  .footer-newsletter-form button {
      padding: 0 15px;
      font-size: 10px;
  }

  /* Main Footer */

  .footer-content {
      display: block;
      padding: 28px 22px 25px;
  }

  /* Brand */

  .footer-brand {
      padding-bottom: 23px;
      text-align: center;
      border-bottom: 1px solid #4a2224;
  }

  .footer-logo {
      margin-bottom: 10px;
  }

  .footer-logo img {
      max-width: 130px;
      max-height: 55px;
  }

  .footer-brand>p {
      max-width: 430px;
      margin: 0 auto 16px;
      font-size: 11px;
      line-height: 1.7;
  }

  /* Quality Points */

  .footer-quality {
      margin-bottom: 17px;
      display: flex;
      justify-content: center;
      gap: 25px;
  }

  .footer-quality>div {
      gap: 7px;
      text-align: left;
  }

  .footer-quality i {
      font-size: 15px;
  }

  .footer-quality span {
      font-size: 8px;
  }

  .footer-quality strong {
      font-size: 10px;
  }

  /* Social */

  .footer-social {
      justify-content: center;
      gap: 9px;
  }

  .footer-social a {
      width: 34px;
      height: 34px;
      font-size: 13px;
  }

  /* Hide Extra Columns */

  .footer-column:nth-of-type(2),
  .footer-column:nth-of-type(3) {
      display: none;
  }

  /* Quick Links */

  .footer-column {
      padding: 20px 0;
      border-bottom: 1px solid #4a2224;
  }

  .footer-column h4 {
      margin-bottom: 14px;
      padding-bottom: 7px;
      font-size: 14px;
      text-align: center;
  }

  .footer-column h4::after {
      left: 50%;
      width: 28px;
      transform: translateX(-50%);
  }

  .footer-column ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 20px;
  }

  .footer-column li {
      margin: 0;
  }

  .footer-column a {
      font-size: 11px;
  }

  .footer-column a::before {
      display: none;
  }

  .footer-column a:hover {
      padding-left: 0;
      color: #e5b54c;
  }

  /* Contact */

  .footer-contact {
      padding-top: 20px;
  }

  .footer-contact h4 {
      margin-bottom: 15px;
      padding-bottom: 7px;
      font-size: 15px;
      text-align: center;
  }

  .footer-contact h4::after {
      left: 50%;
      width: 28px;
      transform: translateX(-50%);
  }

  .footer-contact-item {
      max-width: 450px;
      min-height: 48px;
      margin: 0 auto 8px;
      padding: 7px 9px;
      border: 1px solid #4c292b;
      border-radius: 7px;
      background: rgba(255, 255, 255, 0.025);
  }

  .footer-contact-item>span {
      width: 34px;
      height: 34px;
      flex-basis: 34px;
      border: 0;
      background: #3c1417;
      font-size: 12px;
  }

  .footer-contact-item small {
      font-size: 8px;
  }

  .footer-contact-item p {
      font-size: 11px;
  }

  /* WhatsApp */

  .footer-whatsapp-btn {
      max-width: 450px;
      height: 40px;
      margin: 12px auto 0;
      padding: 0 14px;
      border-color: #287c48;
      background: rgba(42, 155, 82, 0.1);
      font-size: 11px;
  }

  .footer-whatsapp-btn .fa-whatsapp {
      font-size: 16px;
  }

  /* Footer Bottom */

  .footer-bottom {
      min-height: auto;
      padding: 15px 15px;
      display: block;
      text-align: center;
  }

  .footer-bottom p {
      font-size: 10px;
      line-height: 1.5;
  }

  .footer-bottom-links {
      display: none;
  }

  .footer-made {
      margin-top: 5px !important;
      color: #9b8985 !important;
      font-size: 9px !important;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

  .footer-main {
      margin-top: 10px;
  }

  /* Newsletter */

  .footer-newsletter {
      margin: 0 7px;
      padding: 16px 10px;
      border-radius: 8px 8px 0 0;
  }

  .footer-newsletter-text span {
      font-size: 8px;
  }

  .footer-newsletter-text h3 {
      font-size: 17px;
  }

  .footer-newsletter-text p {
      max-width: 280px;
      margin-bottom: 12px;
      font-size: 9px;
  }

  .footer-newsletter-form {
      height: 38px;
  }

  .footer-newsletter-input input {
      font-size: 10px;
  }

  .footer-newsletter-form button {
      padding: 0 12px;
      font-size: 9px;
  }

  .footer-newsletter-form button i {
      display: none;
  }

  /* Main */

  .footer-content {
      padding: 25px 15px 22px;
  }

  /* Brand */

  .footer-brand {
      padding-bottom: 20px;
  }

  .footer-logo img {
      max-width: 115px;
  }

  .footer-brand>p {
      max-width: 330px;
      margin-bottom: 14px;
      font-size: 10px;
      line-height: 1.6;
  }

  /* Quality */

  .footer-quality {
      gap: 15px;
      margin-bottom: 15px;
  }

  .footer-quality i {
      font-size: 13px;
  }

  .footer-quality span {
      font-size: 7px;
  }

  .footer-quality strong {
      font-size: 9px;
  }

  /* Social */

  .footer-social a {
      width: 32px;
      height: 32px;
      font-size: 12px;
  }

  /* Quick Links */

  .footer-column {
      padding: 18px 0;
  }

  .footer-column h4 {
      font-size: 13px;
  }

  .footer-column ul {
      gap: 8px 16px;
  }

  .footer-column a {
      font-size: 10px;
  }

  /* Contact */

  .footer-contact {
      padding-top: 18px;
  }

  .footer-contact h4 {
      font-size: 14px;
  }

  .footer-contact-item {
      min-height: 45px;
      padding: 6px 8px;
  }

  .footer-contact-item>span {
      width: 32px;
      height: 32px;
      flex-basis: 32px;
      font-size: 11px;
  }

  .footer-contact-item p {
      font-size: 10px;
  }

  .footer-whatsapp-btn {
      height: 38px;
      font-size: 10px;
  }

  /* Bottom */

  .footer-bottom {
      padding: 13px 10px;
  }

  .footer-bottom p {
      font-size: 9px;
  }

  .footer-made {
      display: none;
  }
}

/* ===============about========================== */
/* -------------------------about-sec-1------------------------- */
/* ================= ABOUT - OUR STORY ================= */

.about-2-story-section {
  position: relative;
  padding: 55px 0;
  background: #fff;
  overflow: hidden;
}

/* Left Image */

.about-2-image-wrap {
  position: relative;
  width: 100%;
  max-width: 410px;
  margin: auto;
  padding: 0 0 25px 45px;
}

.about-2-main-image {
  position: relative;
  width: 100%;
  height: 390px;
  border-radius: 14px;
  overflow: hidden;
  z-index: 2;
}

.about-2-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-2-image-wrap:hover .about-2-main-image img {
  transform: scale(1.04);
}

/* Decorative Dots */

.about-2-dots {
  position: absolute;
  top: 25px;
  left: 0;
  width: 85px;
  height: 100px;
  opacity: 0.55;
  background-image: radial-gradient(#d8a65b 2px, transparent 2px);
  background-size: 15px 15px;
}

/* Experience Badge */

.about-2-experience {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 145px;
  height: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  border-radius: 13px;
  background: linear-gradient(145deg, #77070c, #a80e16);
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 22px rgba(88, 8, 12, 0.18);
}

.about-2-experience strong {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, serif;
  font-size: 43px;
  font-weight: 500;
  line-height: 1;
}

.about-2-experience span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.about-2-experience i {
  margin-top: 12px;
  color: #e5ad37;
  font-size: 17px;
}

/* Right Content */

.about-2-content {
  position: relative;
  padding: 10px 25px 10px 45px;
}

.about-2-label {
  display: block;
  margin-bottom: 13px;
  color: #9d0b12;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
}

.about-2-content h2 {
  margin: 0;
  color: #291814;
  font-family: Georgia, serif;
  font-size: 37px;
  font-weight: 700;
  line-height: 1.12;
}

/* Gold Line */

.about-2-title-line {
  width: 105px;
  height: 18px;
  margin: 12px 0 20px;
  display: flex;
  align-items: center;
}

.about-2-title-line span {
  height: 1px;
  flex: 1;
  background: #d9a13a;
}

.about-2-title-line i {
  margin: 0 5px;
  color: #d9a13a;
  font-size: 7px;
}

/* Paragraph */

.about-2-content p {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 0 14px;
  color: #625a56;
  font-size: 14px;
  line-height: 1.75;
}

/* Signature */

.about-2-signature {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  color: #9d0b12;
  font-family: "Brush Script MT", cursive;
  font-size: 31px;
  font-style: italic;
}

/* Decorative Leaf */

.about-2-leaf {
  position: absolute;
  right: -45px;
  bottom: -30px;
  color: #d9a267;
  font-size: 170px;
  opacity: 0.12;
  transform: rotate(-25deg);
  pointer-events: none;
}

/* ================= TABLET ================= */

@media (min-width: 768px) and (max-width: 991px) {

  .about-2-story-section {
      padding: 40px 0;
  }

  .about-2-image-wrap {
      max-width: 330px;
      padding-left: 35px;
  }

  .about-2-main-image {
      height: 330px;
  }

  .about-2-experience {
      width: 115px;
      height: 135px;
  }

  .about-2-experience strong {
      font-size: 34px;
  }

  .about-2-experience span {
      font-size: 12px;
  }

  .about-2-content {
      padding: 5px 10px 5px 25px;
  }

  .about-2-label {
      font-size: 10px;
  }

  .about-2-content h2 {
      font-size: 29px;
  }

  .about-2-content p {
      font-size: 12px;
      line-height: 1.65;
  }

  .about-2-signature {
      font-size: 26px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {

  .about-2-story-section {
      padding: 35px 15px;
  }

  .about-2-image-wrap {
      max-width: 390px;
      margin-bottom: 35px;
      padding: 0 0 30px 30px;
  }

  .about-2-main-image {
      height: 330px;
  }

  .about-2-experience {
      width: 115px;
      height: 130px;
  }

  .about-2-experience strong {
      font-size: 33px;
  }

  .about-2-experience span {
      font-size: 11px;
  }

  .about-2-experience i {
      margin-top: 8px;
      font-size: 14px;
  }

  .about-2-dots {
      width: 65px;
      height: 80px;
  }

  .about-2-content {
      padding: 0;
      text-align: center;
  }

  .about-2-label {
      margin-bottom: 9px;
      font-size: 10px;
      letter-spacing: 2px;
  }

  .about-2-content h2 {
      font-size: 28px;
      line-height: 1.15;
  }

  .about-2-title-line {
      margin: 12px auto 18px;
  }

  .about-2-content p {
      max-width: 550px;
      margin: 0 auto 13px;
      font-size: 12px;
      line-height: 1.7;
  }

  .about-2-signature {
      margin-top: 15px;
      font-size: 27px;
  }

  .about-2-leaf {
      display: none;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

  .about-2-story-section {
      padding: 28px 10px;
  }

  .about-2-image-wrap {
      max-width: 320px;
      padding-left: 22px;
  }

  .about-2-main-image {
      height: 280px;
      border-radius: 10px;
  }

  .about-2-experience {
      width: 100px;
      height: 115px;
      border-radius: 10px;
  }

  .about-2-experience strong {
      font-size: 29px;
  }

  .about-2-experience span {
      font-size: 10px;
  }

  .about-2-content h2 {
      font-size: 24px;
  }

  .about-2-content p {
      font-size: 11px;
  }

  .about-2-signature {
      font-size: 24px;
  }
}

/* ---------------------about-sec-2------------------------- */
/* ================= ABOUT 3 - TRUST FEATURES ================= */
.about-3-features-section {
  background: #fff;
}

.about-3-features-box {
  min-height: 135px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  background: #fff;
  border: 1px solid #eee8e3;
  border-radius: 14px;
  box-shadow: 0 5px 22px rgba(60, 30, 15, 0.07);
}

/* Feature Item */

.about-3-feature-item {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Divider */

.about-3-feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 72px;
  background: #e6cec3;
  transform: translateY(-50%);
}

/* Icon */

.about-3-feature-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #95090f;
  color: #e6b23f;
  font-size: 20px;
  box-shadow: 0 3px 8px rgba(120, 5, 10, 0.08);
  transition: 0.3s ease;
}

/* Text */

.about-3-feature-item h4 {
  margin: 0;
  color: #211916;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

/* Hover */

.about-3-feature-item:hover .about-3-feature-icon {
  background: #ad0b13;
  color: #ffd36c;
  transform: translateY(-4px);
  box-shadow: 0 7px 16px rgba(130, 8, 14, 0.2);
}

.about-3-feature-item:hover h4 {
  color: #95090f;
}

/* ================= LARGE DESKTOP ================= */

@media (min-width: 1400px) {

  .about-3-features-section {
      padding: 25px 8% 40px;
  }

  .about-3-features-box {
      min-height: 145px;
  }

  .about-3-feature-item {
      min-height: 100px;
      padding: 5px 20px;
  }

  .about-3-feature-icon {
      width: 56px;
      height: 56px;
      flex-basis: 56px;
      font-size: 22px;
  }

  .about-3-feature-item h4 {
      font-size: 14px;
  }

  .about-3-feature-item:not(:last-child)::after {
      height: 78px;
  }
}

/* ================= LAPTOP ================= */

@media (min-width: 992px) and (max-width: 1199px) {

  .about-3-features-section {
      padding: 20px 5% 32px;
  }

  .about-3-features-box {
      min-height: 125px;
  }

  .about-3-feature-item {
      min-height: 92px;
      padding: 4px 10px;
  }

  .about-3-feature-icon {
      width: 47px;
      height: 47px;
      flex-basis: 47px;
      margin-bottom: 9px;
      font-size: 18px;
  }

  .about-3-feature-item h4 {
      font-size: 11px;
  }

  .about-3-feature-item:not(:last-child)::after {
      height: 68px;
  }
}

/* ================= TABLET ================= */

@media (min-width: 768px) and (max-width: 991px) {

  .about-3-features-section {
      padding: 18px 3% 28px;
  }

  .about-3-features-box {
      min-height: 115px;
      border-radius: 12px;
  }

  .about-3-feature-item {
      min-height: 85px;
      padding: 3px 6px;
  }

  .about-3-feature-icon {
      width: 42px;
      height: 42px;
      flex-basis: 42px;
      margin-bottom: 8px;
      font-size: 16px;
  }

  .about-3-feature-item h4 {
      font-size: 9px;
      line-height: 1.35;
  }

  .about-3-feature-item:not(:last-child)::after {
      height: 62px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {

  .about-3-features-section {
      padding: 15px 12px 25px;
  }

  .about-3-features-box {
      grid-template-columns: repeat(3, 1fr);
      row-gap: 12px;
      border-radius: 11px;
  }

  .about-3-feature-item {
      min-height: 88px;
      padding: 5px;
  }

  .about-3-feature-icon {
      width: 40px;
      height: 40px;
      flex-basis: 40px;
      margin-bottom: 7px;
      font-size: 15px;
  }

  .about-3-feature-item h4 {
      font-size: 9px;
      line-height: 1.35;
  }

  .about-3-feature-item:not(:last-child)::after {
      height: 60px;
  }

  .about-3-feature-item:nth-child(3)::after,
  .about-3-feature-item:nth-child(6)::after {
      display: none;
  }

  .about-3-feature-item:nth-child(-n+3) {
      border-bottom: 1px solid #f0e5df;
      padding-bottom: 14px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

  .about-3-features-section {
      padding: 12px 8px 20px;
  }

  .about-3-features-box {
      padding: 12px 4px;
      row-gap: 8px;
      border-radius: 9px;
  }

  .about-3-feature-item {
      min-height: 78px;
      padding: 4px 2px;
  }

  .about-3-feature-icon {
      width: 35px;
      height: 35px;
      flex-basis: 35px;
      margin-bottom: 6px;
      font-size: 13px;
  }

  .about-3-feature-item h4 {
      font-size: 8px;
      line-height: 1.3;
  }

  .about-3-feature-item:not(:last-child)::after {
      height: 52px;
  }

  .about-3-feature-item:nth-child(-n+3) {
      padding-bottom: 11px;
  }
}

/* ----------------------------about-sec-6------------------------- */
/* ================= ABOUT 4 - STATS & PARTNERS ================= */
.about-4-section {
  width: 100%;
  padding: 18px 7% 28px;
  background: #fff;
  overflow: hidden;
}

.about-4-section .container-fluid {
  width: 100%;
  padding: 0;
}

/* ================= TOP STATS BAR ================= */
.about-4-stats {
  position: relative;
  width: 100%;
  height: 92px;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-radius: 14px;
  overflow: hidden;
  background:
      radial-gradient(circle at 15% 50%, rgba(180, 20, 25, 0.35), transparent 25%),
      linear-gradient(100deg, #74070b 0%, #9c0b12 48%, #72060a 100%);
  box-shadow: 0 5px 15px rgba(82, 10, 12, 0.12);
}

.about-4-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.about-4-stats::after {
  content: "\f06c";
  position: absolute;
  right: 20px;
  bottom: -15px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #d9a53a;
  font-size: 75px;
  opacity: 0.16;
  transform: rotate(-25deg);
  pointer-events: none;
}

/* ================= STAT ITEM ================= */
.about-4-stat-item {
  position: relative;
  z-index: 1;
  height: 60px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  transition: transform 0.3s ease;
}

.about-4-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 50px;
  background: rgba(226, 168, 57, 0.55);
  transform: translateY(-50%);
}

/* Stat Icon */
.about-4-stat-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #c98d28;
  border-radius: 50%;
  background: rgba(75, 3, 6, 0.25);
  color: #e3a93b;
  font-size: 21px;
  transition:
      transform 0.3s ease,
      background 0.3s ease,
      color 0.3s ease,
      box-shadow 0.3s ease;
}

/* Stat Text */

.about-4-stat-text h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.about-4-stat-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

/* Stats Hover */
.about-4-stat-item:hover {
  transform: translateY(-2px);
}

.about-4-stat-item:hover .about-4-stat-icon {
  color: #fff1c7;
  background: #b27a19;
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 5px 15px rgba(34, 0, 0, 0.25);
}

/* ================= PARTNERS HEADING ================= */
.about-4-heading {
  height: 52px;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.about-4-heading>span {
  color: #9b0b12;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.about-4-heading-line {
  width: 55px;
  height: 12px;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-4-heading-line>i:not(.fa-leaf) {
  width: 20px;
  height: 1px;
  background: #d9a33c;
}

.about-4-heading-line .fa-leaf {
  margin: 0 4px;
  color: #d9a33c;
  font-size: 6px;
}

/* ================= PARTNERS SCROLL ================= */
.about-4-partners-scroll {
  width: 100%;
  padding: 2px 1px 8px;
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.about-4-partners-scroll::-webkit-scrollbar {
  display: none;
}

/* ================= PARTNER CARD ================= */
/* 5 cards visible on desktop */
.about-4-partner-card {
  position: relative;
  flex: 0 0 calc((100% - 56px) / 5);
  height: 105px;
  min-width: 0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid #eee9e5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(60, 35, 20, 0.07);
  scroll-snap-align: start;
  cursor: pointer;
  transition:
      transform 0.3s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease,
      background 0.3s ease;
}

/* Gold Bottom Hover Line */
.about-4-partner-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #a50404;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

/* Partner Logo */
.about-4-partner-card img {
  width: auto;
  height: auto;
  max-width: 125px;
  max-height: 67px;
  display: block;
  object-fit: contain;
  transition:
      transform 0.35s ease,
      filter 0.35s ease;
}

/* Partner Name */
.about-4-partner-card span {
  color: #322824;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  transition: color 0.3s ease;
}

/* Partner Card Hover */
.about-4-partner-card:hover {
  border-color: #360202;
  background: #fffdf9;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(93, 30, 18, 0.13);
}

.about-4-partner-card:hover::after {
  width: 100%;
}

.about-4-partner-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.about-4-partner-card:hover span {
  color: #990a12;
}

/* ================= LARGE DESKTOP ================= */
@media (min-width: 1400px) {

  .about-4-section {
      padding: 20px 7% 30px;
  }

  .about-4-stats {
      height: 96px;
      padding: 0 35px;
  }

  .about-4-stat-item {
      padding: 0 38px;
      gap: 20px;
  }

  .about-4-stat-icon {
      width: 55px;
      height: 55px;
      flex-basis: 55px;
      font-size: 22px;
  }

  .about-4-stat-text h3 {
      font-size: 30px;
  }

  .about-4-stat-text p {
      font-size: 13px;
  }

  .about-4-partner-card {
      height: 110px;
  }

  .about-4-partner-card img {
      max-width: 135px;
      max-height: 72px;
  }

  .about-4-partner-card span {
      font-size: 13px;
  }
}

/* ================= NORMAL DESKTOP ================= */
@media (min-width: 1200px) and (max-width: 1399px) {

  .about-4-stat-item {
      padding: 0 25px;
  }

  .about-4-stat-text h3 {
      font-size: 26px;
  }

  .about-4-stat-text p {
      font-size: 11px;
  }
}

/* ================= LAPTOP ================= */
@media (min-width: 992px) and (max-width: 1199px) {

  .about-4-section {
      padding: 16px 5% 25px;
  }

  .about-4-stats {
      height: 82px;
      padding: 0 15px;
      border-radius: 11px;
  }

  .about-4-stat-item {
      height: 55px;
      padding: 0 18px;
      gap: 12px;
  }

  .about-4-stat-item:not(:last-child)::after {
      height: 43px;
  }

  .about-4-stat-icon {
      width: 44px;
      height: 44px;
      flex-basis: 44px;
      font-size: 17px;
  }

  .about-4-stat-text h3 {
      margin-bottom: 3px;
      font-size: 23px;
  }

  .about-4-stat-text p {
      font-size: 9px;
  }

  .about-4-heading {
      height: 48px;
      padding-top: 12px;
  }

  .about-4-heading>span {
      font-size: 10px;
  }

  .about-4-partner-card {
      height: 92px;
      padding: 10px 12px;
  }

  .about-4-partner-card img {
      max-width: 95px;
      max-height: 55px;
  }

  .about-4-partner-card span {
      font-size: 10px;
  }
}

/* ================= TABLET ================= */
@media (min-width: 768px) and (max-width: 991px) {

  .about-4-section {
      padding: 14px 3% 22px;
  }

  .about-4-stats {
      height: 75px;
      padding: 0 10px;
      border-radius: 10px;
  }

  .about-4-stat-item {
      height: 50px;
      padding: 0 10px;
      gap: 8px;
  }

  .about-4-stat-item:not(:last-child)::after {
      height: 38px;
  }

  .about-4-stat-icon {
      width: 38px;
      height: 38px;
      flex-basis: 38px;
      border-width: 1px;
      font-size: 14px;
  }

  .about-4-stat-text h3 {
      margin-bottom: 3px;
      font-size: 19px;
  }

  .about-4-stat-text p {
      font-size: 8px;
  }

  .about-4-heading {
      height: 45px;
      padding-top: 11px;
  }

  .about-4-heading>span {
      font-size: 9px;
  }

  .about-4-partners-scroll {
      gap: 10px;
  }

  /* 4 cards visible */
  .about-4-partner-card {
      flex: 0 0 calc((100% - 30px) / 4);
      height: 82px;
      padding: 8px 10px;
      gap: 7px;
  }

  .about-4-partner-card img {
      max-width: 72px;
      max-height: 46px;
  }

  .about-4-partner-card span {
      font-size: 8px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {

  .about-4-section {
      padding: 12px 10px 18px;
  }

  /* Stats 2 x 2 */

  .about-4-stats {
      height: auto;
      padding: 11px 8px;
      grid-template-columns: repeat(2, 1fr);
      row-gap: 12px;
      border-radius: 9px;
  }

  .about-4-stats::after {
      display: none;
  }

  .about-4-stat-item {
      height: 42px;
      padding: 0 12px;
      justify-content: flex-start;
      gap: 9px;
  }

  .about-4-stat-item::after {
      display: none;
  }

  .about-4-stat-item:nth-child(odd) {
      border-right: 1px solid rgba(226, 168, 57, 0.4);
  }

  .about-4-stat-icon {
      width: 35px;
      height: 35px;
      flex-basis: 35px;
      border-width: 1px;
      font-size: 13px;
  }

  .about-4-stat-text h3 {
      margin-bottom: 2px;
      font-size: 18px;
  }

  .about-4-stat-text p {
      font-size: 8px;
  }

  /* Heading */

  .about-4-heading {
      height: 43px;
      padding-top: 10px;
  }

  .about-4-heading>span {
      font-size: 9px;
      letter-spacing: 1.5px;
  }

  /* Horizontal Partner Cards */

  .about-4-partners-scroll {
      gap: 9px;
      padding-bottom: 5px;
  }

  .about-4-partner-card {
      flex: 0 0 155px;
      height: 78px;
      padding: 8px 10px;
      gap: 7px;
  }

  .about-4-partner-card img {
      max-width: 70px;
      max-height: 45px;
  }

  .about-4-partner-card span {
      font-size: 9px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .about-4-section {
      padding: 10px 7px 15px;
  }

  .about-4-stats {
      padding: 10px 5px;
      row-gap: 10px;
  }

  .about-4-stat-item {
      height: 38px;
      padding: 0 7px;
      gap: 7px;
  }

  .about-4-stat-icon {
      width: 31px;
      height: 31px;
      flex-basis: 31px;
      font-size: 11px;
  }

  .about-4-stat-text h3 {
      font-size: 16px;
  }

  .about-4-stat-text p {
      font-size: 7px;
  }

  .about-4-heading {
      height: 40px;
      padding-top: 9px;
  }

  .about-4-partner-card {
      flex: 0 0 135px;
      height: 70px;
      padding: 6px 8px;
      gap: 6px;
  }

  .about-4-partner-card img {
      max-width: 58px;
      max-height: 38px;
  }

  .about-4-partner-card span {
      font-size: 8px;
  }
}

/* ================= TOUCH DEVICES ================= */
@media (hover: none) {

  .about-4-partner-card:hover,
  .about-4-stat-item:hover {
      transform: none;
  }

  .about-4-partner-card:hover img {
      transform: none;
  }

  .about-4-partner-card:hover::after {
      width: 0;
  }
}

/* ----------------abot-sec-7------------------------- */
/* ================= MEET OUR OWNER ================= */

.about-5-owner-section {
  width: 100%;
  padding: 45px 7%;
  background: #fff;
  overflow: hidden;
}

.about-5-owner-section .container-fluid {
  padding: 0;
}

.about-5-owner-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 65px;
}

/* ================= OWNER IMAGE ================= */

.about-5-owner-image {
  position: relative;
  width: 38%;
  display: flex;
  justify-content: flex-end;
}

.about-5-image-box {
  position: relative;
  width: 390px;
  height: 455px;
  z-index: 2;
}

.about-5-image-box>img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px 18px 70px 18px;
  box-shadow: 0 15px 35px rgba(60, 25, 15, 0.13);
}

.about-5-image-box::before {
  content: "";
  position: absolute;
  top: -13px;
  left: -13px;
  width: 90px;
  height: 90px;
  z-index: -1;
  border-top: 3px solid #d6a13a;
  border-left: 3px solid #d6a13a;
  border-radius: 15px 0 0;
}

/* Experience Badge */

.about-5-experience {
  position: absolute;
  left: -55px;
  bottom: 35px;
  width: 145px;
  height: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid #fff;
  border-radius: 14px;
  background: linear-gradient(145deg, #a00b12, #75060b);
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 25px rgba(80, 8, 10, 0.2);
}

.about-5-experience strong {
  font-family: Georgia, serif;
  font-size: 35px;
  line-height: 1;
}

.about-5-experience span {
  margin-top: 7px;
  font-size: 11px;
  line-height: 1.4;
}

.about-5-image-pattern {
  position: absolute;
  top: -20px;
  left: 5px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(#d7a440 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.35;
}

/* ================= CONTENT ================= */

.about-5-owner-content {
  width: 62%;
  max-width: 750px;
}

.about-5-small-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: #990a12;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.about-5-small-title i {
  color: #d5a13a;
  font-size: 10px;
}

.about-5-owner-content h2 {
  margin: 0;
  color: #251712;
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.12;
}

.about-5-owner-content h2 span {
  color: #990a12;
}

.about-5-title-line {
  width: 75px;
  margin: 13px 0 17px;
  display: flex;
  align-items: center;
}

.about-5-title-line span {
  width: 28px;
  height: 1px;
  background: #d6a13a;
}

.about-5-title-line i {
  margin: 0 5px;
  color: #d6a13a;
  font-size: 7px;
}

.about-5-owner-content h3 {
  margin: 0 0 3px;
  color: #2a1c17;
  font-size: 20px;
  font-weight: 700;
}

.about-5-designation {
  margin: 0 0 14px;
  color: #a00b12;
  font-size: 12px;
  font-weight: 600;
}

.about-5-description {
  max-width: 700px;
  margin: 0 0 20px;
  color: #716762;
  font-size: 12px;
  line-height: 1.8;
}

/* ================= DETAILS ================= */

.about-5-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 15px;
}

.about-5-detail-item {
  min-height: 65px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #eee7e2;
  border-radius: 8px;
  background: #fffdfa;
  transition: 0.3s ease;
}

.about-5-detail-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #990a12;
  color: #e4ad42;
  font-size: 14px;
  transition: 0.3s ease;
}

.about-5-detail-item span {
  display: block;
  margin-bottom: 2px;
  color: #998b84;
  font-size: 9px;
}

.about-5-detail-item strong {
  display: block;
  color: #30231e;
  font-size: 11px;
  font-weight: 600;
}

/* Detail Hover */

.about-5-detail-item:hover {
  border-color: #dfc38d;
  transform: translateY(-3px);
  box-shadow: 0 7px 17px rgba(70, 35, 15, 0.08);
}

.about-5-detail-item:hover .about-5-detail-icon {
  color: #fff;
  background: #d19a31;
  transform: rotate(-6deg);
}

/* ================= QUOTE ================= */

.about-5-vision {
  position: relative;
  margin-top: 16px;
  padding: 13px 18px 13px 45px;
  border-left: 3px solid #a00b12;
  border-radius: 0 8px 8px 0;
  background: #fff8f5;
}

.about-5-vision i {
  position: absolute;
  top: 14px;
  left: 16px;
  color: #d5a13a;
  font-size: 17px;
}

.about-5-vision p {
  margin: 0;
  color: #594b45;
  font-family: Georgia, serif;
  font-size: 12px;
  font-style: italic;
  line-height: 1.6;
}

/* ================= BOTTOM ================= */

.about-5-bottom {
  margin-top: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-5-sign strong {
  display: block;
  color: #990a12;
  font-family: Georgia, serif;
  font-size: 16px;
}

.about-5-sign span {
  display: block;
  margin-top: 2px;
  color: #887b74;
  font-size: 9px;
}

.about-5-social {
  display: flex;
  gap: 7px;
}

.about-5-social a {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eadfd8;
  border-radius: 50%;
  background: #fff;
  color: #990a12;
  font-size: 11px;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-5-social a:hover {
  border-color: #990a12;
  background: #990a12;
  color: #fff;
  transform: translateY(-3px);
}

/* ================= LAPTOP ================= */

@media (min-width: 992px) and (max-width: 1199px) {
  .about-5-owner-section {
      padding: 38px 5%;
  }

  .about-5-owner-wrap {
      gap: 50px;
  }

  .about-5-image-box {
      width: 330px;
      height: 400px;
  }

  .about-5-experience {
      left: -35px;
      width: 125px;
      height: 110px;
  }

  .about-5-experience strong {
      font-size: 30px;
  }

  .about-5-owner-content h2 {
      font-size: 32px;
  }
}

/* ================= TABLET ================= */

@media (min-width: 768px) and (max-width: 991px) {
  .about-5-owner-section {
      padding: 32px 4%;
  }

  .about-5-owner-wrap {
      gap: 35px;
  }

  .about-5-owner-image {
      width: 38%;
  }

  .about-5-owner-content {
      width: 62%;
  }

  .about-5-image-box {
      width: 260px;
      height: 350px;
  }

  .about-5-experience {
      left: -20px;
      bottom: 25px;
      width: 105px;
      height: 90px;
  }

  .about-5-experience strong {
      font-size: 25px;
  }

  .about-5-experience span {
      font-size: 8px;
  }

  .about-5-owner-content h2 {
      font-size: 27px;
  }

  .about-5-owner-content h3 {
      font-size: 17px;
  }

  .about-5-description {
      font-size: 10px;
  }

  .about-5-details {
      gap: 8px;
  }

  .about-5-detail-item {
      padding: 7px;
  }

  .about-5-detail-icon {
      width: 34px;
      height: 34px;
      flex-basis: 34px;
      font-size: 12px;
  }

  .about-5-detail-item strong {
      font-size: 9px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {
  .about-5-owner-section {
      padding: 28px 15px;
  }

  .about-5-owner-wrap {
      flex-direction: column;
      gap: 35px;
  }

  .about-5-owner-image,
  .about-5-owner-content {
      width: 100%;
  }

  .about-5-owner-image {
      justify-content: center;
  }

  .about-5-image-box {
      width: 75%;
      max-width: 320px;
      height: 350px;
  }

  .about-5-experience {
      left: -25px;
      bottom: 25px;
      width: 110px;
      height: 95px;
  }

  .about-5-experience strong {
      font-size: 27px;
  }

  .about-5-experience span {
      font-size: 8px;
  }

  .about-5-owner-content {
      text-align: center;
  }

  .about-5-owner-content h2 {
      font-size: 27px;
  }

  .about-5-title-line {
      margin: 12px auto 16px;
  }

  .about-5-description {
      font-size: 10px;
      line-height: 1.7;
  }

  .about-5-details {
      grid-template-columns: repeat(2, 1fr);
      text-align: left;
  }

  .about-5-detail-item {
      padding: 8px;
  }

  .about-5-detail-icon {
      width: 34px;
      height: 34px;
      flex-basis: 34px;
      font-size: 12px;
  }

  .about-5-detail-item strong {
      font-size: 9px;
  }

  .about-5-vision {
      text-align: left;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
  .about-5-owner-section {
      padding: 25px 10px;
  }

  .about-5-image-box {
      width: 78%;
      height: 300px;
  }

  .about-5-experience {
      left: -18px;
      width: 95px;
      height: 82px;
      border-width: 3px;
  }

  .about-5-experience strong {
      font-size: 23px;
  }

  .about-5-owner-content h2 {
      font-size: 23px;
  }

  .about-5-details {
      grid-template-columns: 1fr;
  }

  .about-5-detail-item {
      min-height: 55px;
  }

  .about-5-bottom {
      gap: 15px;
  }

  .about-5-social a {
      width: 28px;
      height: 28px;
      font-size: 10px;
  }
}

/* ================= CONTACT SECTION ================= */
/* -----------------contact-sec-1------------------------- */
.contact-1-section {
  width: 100%;
  padding: 35px 7%;
  background: #fff;
}

.contact-1-section .container-fluid {
  padding: 0;
}

.contact-1-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: 65px;
}

/* ================= LEFT SIDE ================= */
.contact-1-heading {
  margin-bottom: 18px;
}

.contact-1-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  color: #980a11;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.contact-1-label i {
  color: #d4a038;
  font-size: 9px;
}

.contact-1-heading h2 {
  margin: 0;
  color: #211713;
  font-family: Georgia, serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.05;
}

.contact-1-heading h2 strong {
  color: #9b0a11;
  font-weight: 700;
}

.contact-1-title-line,
.contact-1-form-line {
  width: 70px;
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.contact-1-title-line span,
.contact-1-form-line span {
  width: 28px;
  height: 1px;
  background: #d4a038;
}

.contact-1-title-line i,
.contact-1-form-line i {
  margin: 0 4px;
  color: #d4a038;
  font-size: 6px;
}

/* ================= INFO GRID ================= */
.contact-1-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-1-info-card {
  min-height: 130px;
  padding: 18px 17px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #f0ebe7;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(55, 30, 15, 0.06);
  transition: 0.3s ease;
}

.contact-1-info-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #97090f;
  color: #e6b044;
  font-size: 17px;
  transition: 0.3s ease;
}

.contact-1-info-text {
  padding-top: 2px;
}

.contact-1-info-text h4 {
  margin: 0 0 6px;
  color: #251b17;
  font-size: 20px;
  font-weight: 700;
}

.contact-1-info-text p,
.contact-1-info-text a {
  margin: 0;
  display: block;
  color: #706762;
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none;
}

.contact-1-info-text a:hover {
  color: #990a11;
}

/* Info Hover */

.contact-1-info-card:hover {
  border-color: #dfc38d;
  transform: translateY(-4px);
  box-shadow: 0 9px 22px rgba(70, 35, 15, 0.1);
}

.contact-1-info-card:hover .contact-1-info-icon {
  background: #d09b32;
  color: #fff;
  transform: rotate(-7deg);
}

/* ================= FORM BOX ================= */
.contact-1-form-box {
  width: 100%;
  padding: 30px 32px;
  border: 1px solid #eee5df;
  border-radius: 11px;
  background: #fffdfc;
  box-shadow: 0 6px 22px rgba(60, 30, 15, 0.07);
}

.contact-1-form-heading {
  margin-bottom: 20px;
}

.contact-1-form-heading h3 {
  margin: 0;
  color: #8f0a10;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 700;
}

.contact-1-form-line {
  margin-top: 8px;
}

/* ================= FORM ================= */
.contact-1-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-1-input {
  position: relative;
}

.contact-1-input>i {
  position: absolute;
  top: 50%;
  left: 14px;
  z-index: 2;
  color: #c18a29;
  font-size: 11px;
  transform: translateY(-50%);
}

.contact-1-input input,
.contact-1-input textarea {
  width: 100%;
  border: 1px solid #e7dfda;
  outline: none;
  border-radius: 5px;
  background: #fff;
  color: #3b302b;
  font-family: inherit;
  font-size: 10px;
  transition: 0.25s ease;
}

.contact-1-input input {
  height: 46px;
  padding: 0 14px 0 40px;
}

.contact-1-input textarea {
  height: 120px;
  padding: 15px 15px 15px 40px;
  resize: none;
}

.contact-1-message {
  margin-top: 14px;
}

.contact-1-message>i {
  top: 17px;
  transform: none;
}

.contact-1-input input::placeholder,
.contact-1-input textarea::placeholder {
  color: #aaa29e;
}

.contact-1-input input:focus,
.contact-1-input textarea:focus {
  border-color: #c99a42;
  box-shadow: 0 0 0 3px rgba(201, 154, 66, 0.08);
}

/* ================= SUBMIT BUTTON ================= */
.contact-1-submit {
  width: 100%;
  height: 45px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #8c070d, #a70b13);
  color: #eeeae1;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-1-submit i {
  font-size: 10px;
  transition: 0.3s ease;
}

.contact-1-submit:hover {
  background: linear-gradient(90deg, #75050a, #94080e);
  color: #fff;
  box-shadow: 0 6px 15px rgba(130, 5, 10, 0.18);
}

.contact-1-submit:hover i {
  transform: translateX(5px);
}

/* ================= LARGE SCREEN ================= */
@media (min-width: 1400px) {
  .contact-1-section {
      padding: 40px 8%;
  }

  .contact-1-wrap {
      gap: 80px;
  }

  .contact-1-heading h2 {
      font-size: 39px;
  }

  .contact-1-info-card {
      min-height: 140px;
  }

  .contact-1-info-text h4 {
      font-size: 19px;
  }

  .contact-1-info-text p,
  .contact-1-info-text a {
      font-size: 12px;
      font-weight: 600;
  }

  .contact-1-form-box {
      padding: 34px 38px;
  }

  .contact-1-form-heading h3 {
      font-size: 28px;
  }
}

/* ================= LAPTOP ================= */
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-1-section {
      padding: 32px 5%;
  }

  .contact-1-wrap {
      gap: 40px;
  }

  .contact-1-heading h2 {
      font-size: 30px;
  }

  .contact-1-info-card {
      min-height: 115px;
      padding: 14px;
      gap: 10px;
  }

  .contact-1-info-icon {
      width: 40px;
      height: 40px;
      flex-basis: 40px;
      font-size: 15px;
  }

  .contact-1-info-text h4 {
      font-size: 11px;
      font-weight: 600;
  }

  .contact-1-info-text p,
  .contact-1-info-text a {
      font-size: 9px;
      font-weight: 600;
  }

  .contact-1-form-box {
      padding: 25px;
  }
}

/* ================= TABLET ================= */
@media (min-width: 768px) and (max-width: 991px) {
  .contact-1-section {
      padding: 28px 3%;
  }

  .contact-1-wrap {
      grid-template-columns: 1fr 1fr;
      gap: 25px;
  }

  .contact-1-heading h2 {
      font-size: 26px;
  }

  .contact-1-info-grid {
      gap: 9px;
  }

  .contact-1-info-card {
      min-height: 105px;
      padding: 11px 8px;
      gap: 7px;
  }

  .contact-1-info-icon {
      width: 34px;
      height: 34px;
      flex-basis: 34px;
      font-size: 12px;
  }

  .contact-1-info-text h4 {
      margin-bottom: 4px;
      font-size: 9px;
      font-weight: 600;
  }

  .contact-1-info-text p,
  .contact-1-info-text a {
      font-size: 7px;
      font-weight: 600;
  }

  .contact-1-form-box {
      padding: 20px;
  }

  .contact-1-form-heading h3 {
      font-size: 21px;
  }

  .contact-1-form-grid {
      gap: 9px;
  }

  .contact-1-input input {
      height: 40px;
  }

  .contact-1-input textarea {
      height: 105px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
  .contact-1-section {
      padding: 25px 12px;
  }

  .contact-1-wrap {
      grid-template-columns: 1fr;
      gap: 28px;
  }

  .contact-1-heading {
      text-align: center;
  }

  .contact-1-label {
      justify-content: center;
  }

  .contact-1-heading h2 {
      font-size: 27px;
  }

  .contact-1-title-line {
      margin: 10px auto 0;
  }

  .contact-1-info-card {
      min-height: 105px;
      padding: 13px;
  }

  .contact-1-info-icon {
      width: 39px;
      height: 39px;
      flex-basis: 39px;
      font-size: 14px;
  }

  .contact-1-info-text h4 {
      font-size: 11px;
  }

  .contact-1-info-text p,
  .contact-1-info-text a {
      font-size: 9px;
  }

  .contact-1-form-box {
      padding: 22px 18px;
  }

  .contact-1-form-heading h3 {
      font-size: 23px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .contact-1-section {
      padding: 22px 8px;
  }

  .contact-1-heading h2 {
      font-size: 24px;
  }

  .contact-1-info-grid {
      grid-template-columns: 1fr;
      gap: 9px;
  }

  .contact-1-info-card {
      min-height: 85px;
      padding: 12px;
      align-items: center;
  }

  .contact-1-form-box {
      padding: 18px 12px;
  }

  .contact-1-form-heading h3 {
      font-size: 21px;
  }

  .contact-1-form-grid {
      grid-template-columns: 1fr;
      gap: 10px;
  }

  .contact-1-input input {
      height: 42px;
  }

  .contact-1-input textarea {
      height: 105px;
  }

  .contact-1-message {
      margin-top: 10px;
  }

  .contact-1-submit {
      height: 42px;
      margin-top: 10px;
  }
}

/* ---------------------contact-sec-2------------------------- */
/* ================= GOOGLE MAP SECTION ================= */
.contact-2-map-section {
  width: 100%;
  padding: 38px 7% 45px;
  background: #fff;
  overflow: hidden;
}

.contact-2-map-section .container-fluid {
  width: 100%;
  padding: 0;
}

/* ================= HEADING ================= */
.contact-2-heading {
  margin-bottom: 22px;
  text-align: center;
}

.contact-2-heading>span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 6px;
  color: #990a12;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.contact-2-heading>span i {
  color: #d5a13a;
  font-size: 13px;
}

.contact-2-heading h2 {
  margin: 0;
  color: #251813;
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-2-heading h2 strong {
  color: #990a12;
}

.contact-2-heading p {
  max-width: 620px;
  margin: 8px auto 0;
  color: #847872;
  font-size: 14px;
  line-height: 1.6;
}

.contact-2-heading-line {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-2-heading-line>i:not(.fa-leaf) {
  width: 28px;
  height: 1px;
  background: #ffffff;
}

.contact-2-heading-line .fa-leaf {
  margin: 0 5px;
  color: #d5a13a;
  font-size: 10px;
}

/* ================= MAP WRAPPER ================= */
.contact-2-map-wrap {
  width: 100%;
  height: 360px;
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  border: 1px solid #eee5df;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 7px 25px rgba(65, 35, 20, 0.08);
}

/* ================= LOCATION CARD ================= */
.contact-2-location-card {
  position: relative;
  z-index: 2;
  padding: 28px 27px;
  background:
      radial-gradient(circle at 10% 10%, rgba(190, 25, 30, 0.25), transparent 30%),
      linear-gradient(145deg, #85070c, #650408);
  color: #fff;
}

.contact-2-location-card::after {
  content: "\f06c";
  position: absolute;
  right: -15px;
  bottom: -20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #d9a33c;
  font-size: 100px;
  opacity: 0.07;
  transform: rotate(-25deg);
  pointer-events: none;
}

/* Main Location Icon */
.contact-2-location-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 170, 65, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #8c0404;
  font-size: 21px;
  transition: 0.3s ease;
}

.contact-2-location-card:hover .contact-2-location-icon {
  background: #dca536;
  color: #fefefe;
  transform: rotate(-7deg) scale(1.06);
}

/* Small Title */
.contact-2-small-title {
  display: block;
  margin-bottom: 5px;
  color: #e0a73c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

/* Business Name */

.contact-2-location-card h3 {
  margin: 0 0 9px;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
}

/* Address */

.contact-2-address {
  margin: 0;
  display: flex;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.55;
}

.contact-2-address i {
  margin-top: 4px;
  color: #dfa638;
  font-size: 13px;
}

.contact-2-divider {
  width: 100%;
  height: 1px;
  margin: 15px 0;
  background: rgba(255, 255, 255, 0.13);
}

/* ================= CONTACT ITEMS ================= */

.contact-2-contact-item {
  position: relative;
  z-index: 2;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-2-contact-item>div {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: #dfa638;
  font-size: 13px;
  transition: 0.25s ease;
}

.contact-2-contact-item:hover>div {
  background: #dca536;
  color: #72060a;
}

.contact-2-contact-item span {
  display: flex;
  flex-direction: column;
}

.contact-2-contact-item small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  line-height: 1.2;
}

.contact-2-contact-item a,
.contact-2-contact-item strong {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
}

.contact-2-contact-item a {
  transition: color 0.25s ease;
}

.contact-2-contact-item a:hover {
  color: #e8b649;
}

/* ================= DIRECTION BUTTON ================= */

.contact-2-direction-btn {
  width: 100%;
  height: 38px;
  margin-top: 5px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  background: white;
  color: #3b2105;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-2-direction-btn i {
  font-size: 12px;
}

.contact-2-direction-btn .fa-arrow-right {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.contact-2-direction-btn:hover {
  background: #fff;
  color: #8e080e;
  text-decoration: none;
  box-shadow: 0 5px 14px rgba(30, 0, 0, 0.18);
}

.contact-2-direction-btn:hover .fa-arrow-right {
  transform: translateX(4px);
}

/* ================= GOOGLE MAP ================= */

.contact-2-map {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eee;
}

.contact-2-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ================= FLOATING MAP LABEL ================= */

.contact-2-map-label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 3;
  min-width: 220px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(230, 220, 215, 0.9);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 15px rgba(40, 20, 10, 0.12);
  transition: 0.3s ease;
}

.contact-2-map-label:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(40, 20, 10, 0.16);
}

.contact-2-map-label-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #97090f;
  color: #dda536;
  font-size: 15px;
}

.contact-2-map-label strong {
  display: block;
  color: #2c201b;
  font-size: 14px;
  line-height: 1.2;
}

.contact-2-map-label span {
  display: block;
  margin-top: 3px;
  color: #887c76;
  font-size: 11px;
}

/* ================= LARGE SCREEN ================= */

@media (min-width: 1400px) {
  .contact-2-map-section {
      padding: 42px 8% 50px;
  }

  .contact-2-heading>span {
      font-size: 15px;
  }

  .contact-2-heading h2 {
      font-size: 40px;
  }

  .contact-2-heading p {
      font-size: 15px;
  }

  .contact-2-map-wrap {
      height: 390px;
      grid-template-columns: 350px 1fr;
  }

  .contact-2-location-card {
      padding: 32px;
  }

  .contact-2-small-title {
      font-size: 13px;
  }

  .contact-2-location-card h3 {
      font-size: 29px;
  }

  .contact-2-address {
      font-size: 14px;
  }

  .contact-2-contact-item small {
      font-size: 11px;
  }

  .contact-2-contact-item a,
  .contact-2-contact-item strong {
      font-size: 13px;
  }

  .contact-2-direction-btn {
      font-size: 14px;
  }

  .contact-2-map-label strong {
      font-size: 15px;
  }

  .contact-2-map-label span {
      font-size: 12px;
  }
}

/* ================= LAPTOP ================= */

@media (min-width: 992px) and (max-width: 1199px) {
  .contact-2-map-section {
      padding: 32px 5% 40px;
  }

  .contact-2-heading>span {
      font-size: 13px;
  }

  .contact-2-heading h2 {
      font-size: 34px;
  }

  .contact-2-heading p {
      font-size: 13px;
  }

  .contact-2-map-wrap {
      height: 350px;
      grid-template-columns: 300px 1fr;
  }

  .contact-2-location-card {
      padding: 23px;
  }

  .contact-2-location-icon {
      width: 43px;
      height: 43px;
      margin-bottom: 12px;
      font-size: 18px;
  }

  .contact-2-small-title {
      font-size: 11px;
  }

  .contact-2-location-card h3 {
      font-size: 24px;
  }

  .contact-2-address {
      font-size: 12px;
  }

  .contact-2-contact-item small {
      font-size: 9px;
  }

  .contact-2-contact-item a,
  .contact-2-contact-item strong {
      font-size: 11px;
  }

  .contact-2-direction-btn {
      font-size: 12px;
  }
}

/* ================= TABLET ================= */

@media (min-width: 768px) and (max-width: 991px) {
  .contact-2-map-section {
      padding: 28px 3% 35px;
  }

  .contact-2-heading>span {
      font-size: 12px;
  }

  .contact-2-heading h2 {
      font-size: 32px;
  }

  .contact-2-heading p {
      font-size: 12px;
  }

  .contact-2-map-wrap {
      height: 330px;
      grid-template-columns: 260px 1fr;
  }

  .contact-2-location-card {
      padding: 19px;
  }

  .contact-2-location-icon {
      width: 38px;
      height: 38px;
      margin-bottom: 10px;
      font-size: 16px;
  }

  .contact-2-small-title {
      font-size: 10px;
  }

  .contact-2-location-card h3 {
      font-size: 21px;
  }

  .contact-2-address {
      font-size: 10px;
  }

  .contact-2-address i {
      font-size: 10px;
  }

  .contact-2-divider {
      margin: 12px 0;
  }

  .contact-2-contact-item {
      margin-bottom: 9px;
  }

  .contact-2-contact-item>div {
      width: 30px;
      height: 30px;
      flex-basis: 30px;
      font-size: 11px;
  }

  .contact-2-contact-item small {
      font-size: 8px;
  }

  .contact-2-contact-item a,
  .contact-2-contact-item strong {
      font-size: 10px;
  }

  .contact-2-direction-btn {
      height: 36px;
      font-size: 11px;
  }

  .contact-2-map-label strong {
      font-size: 12px;
  }

  .contact-2-map-label span {
      font-size: 9px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {
  .contact-2-map-section {
      padding: 25px 12px 30px;
  }

  .contact-2-heading {
      margin-bottom: 18px;
  }

  .contact-2-heading>span {
      font-size: 12px;
      letter-spacing: 1.4px;
  }

  .contact-2-heading>span i {
      font-size: 11px;
  }

  .contact-2-heading h2 {
      font-size: 30px;
  }

  .contact-2-heading p {
      max-width: 450px;
      font-size: 12px;
  }

  .contact-2-map-wrap {
      height: auto;
      grid-template-columns: 1fr;
  }

  .contact-2-location-card {
      padding: 22px;
  }

  .contact-2-location-icon {
      width: 42px;
      height: 42px;
      margin-bottom: 12px;
      font-size: 17px;
  }

  .contact-2-small-title {
      font-size: 11px;
  }

  .contact-2-location-card h3 {
      font-size: 25px;
  }

  .contact-2-address {
      font-size: 12px;
  }

  .contact-2-divider {
      margin: 13px 0;
  }

  .contact-2-contact-item {
      margin-bottom: 10px;
  }

  .contact-2-contact-item small {
      font-size: 9px;
  }

  .contact-2-contact-item a,
  .contact-2-contact-item strong {
      font-size: 11px;
  }

  .contact-2-direction-btn {
      max-width: 260px;
      height: 39px;
      font-size: 12px;
  }

  .contact-2-map {
      height: 300px;
  }

  .contact-2-map-label strong {
      font-size: 13px;
  }

  .contact-2-map-label span {
      font-size: 10px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
  .contact-2-map-section {
      padding: 22px 8px 27px;
  }

  .contact-2-heading>span {
      font-size: 11px;
  }

  .contact-2-heading h2 {
      font-size: 27px;
  }

  .contact-2-heading p {
      font-size: 11px;
      line-height: 1.55;
  }

  .contact-2-location-card {
      padding: 19px 17px;
  }

  .contact-2-small-title {
      font-size: 10px;
  }

  .contact-2-location-card h3 {
      font-size: 23px;
  }

  .contact-2-address {
      font-size: 11px;
  }

  .contact-2-contact-item small {
      font-size: 8px;
  }

  .contact-2-contact-item a,
  .contact-2-contact-item strong {
      font-size: 10px;
  }

  .contact-2-direction-btn {
      height: 38px;
      font-size: 11px;
  }

  .contact-2-map {
      height: 260px;
  }

  .contact-2-map-label {
      left: 10px;
      bottom: 10px;
      min-width: 190px;
      padding: 9px 10px;
  }

  .contact-2-map-label-icon {
      width: 33px;
      height: 33px;
      flex-basis: 33px;
      font-size: 13px;
  }

  .contact-2-map-label strong {
      font-size: 12px;
  }

  .contact-2-map-label span {
      font-size: 9px;
  }
}

/* ==============services================== */
/* ================= CORE SERVICES ================= */
.service-1-section {
  position: relative;
  width: 100%;
  padding: 25px 8% 30px;
  overflow: hidden;
  background:
      radial-gradient(circle at 15% 25%, rgba(210, 157, 61, 0.04), transparent 25%),
      radial-gradient(circle at 85% 70%, rgba(153, 10, 18, 0.03), transparent 25%),
      #fffdf9;
}

.service-1-section .container-fluid {
  position: relative;
  z-index: 2;
  padding: 0;
}

/* ================= DECORATIVE BACKGROUND ================= */
.service-1-section::before,
.service-1-section::after {
  content: "\f06c";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #d9a13b;
  opacity: 0.08;
  pointer-events: none;
}

.service-1-section::before {
  top: 80px;
  left: -35px;
  font-size: 170px;
  transform: rotate(-35deg);
}

.service-1-section::after {
  right: -25px;
  bottom: 25px;
  font-size: 190px;
  transform: rotate(145deg);
}

/* ================= HEADING ================= */
.service-1-heading {
  margin-bottom: 20px;
  text-align: center;
}

.service-1-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 3px;
  color: #b07919;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.service-1-label i {
  color: #d39b31;
  font-size: 11px;
}

.service-1-heading h2 {
  margin: 0;
  color: #8e0b11;
  font-family: Georgia, serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.1;
}

/* ================= SERVICES GRID ================= */
.service-1-grid {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 18px;
}

/* ================= SERVICE CARD ================= */
.service-1-card {
  position: relative;
  height: 180px;
  padding: 15px 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid #eee5dc;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  box-shadow: 0 5px 18px rgba(60, 35, 20, 0.07);
  transition: 0.35s ease;
}

.service-1-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #9a0b12;
  transform: translateX(-50%);
  transition: 0.35s ease;
}

.service-1-card:hover {
  border-color: #dec08c;
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(75, 40, 15, 0.12);
}

.service-1-card:hover::before {
  width: 100%;
}

/* ================= ICON ================= */
.service-1-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #83070c, #5d0306);
  color: #e3a72e;
  font-size: 18px;
  box-shadow:
      0 0 0 1px #e3c99d,
      0 4px 10px rgba(90, 10, 10, 0.16);
  transition: 0.35s ease;
}

.service-1-card:hover .service-1-icon {
  background: #d8a034;
  color: #78070c;
  transform: rotateY(180deg);
  box-shadow:
      0 0 0 1px #d8a034,
      0 6px 14px rgba(120, 70, 10, 0.2);
}

/* ================= CARD TITLE ================= */
.service-1-card h3 {
  margin: 0 0 5px;
  color: #8c0b11;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

/* ================= CARD DESCRIPTION ================= */

.service-1-card p {
  max-width: 310px;
  margin: 0 auto 7px;
  display: -webkit-box;
  overflow: hidden;
  color: #514843;
  font-size: 11px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
}

/* ================= LEARN MORE ================= */
.service-1-card>a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8f0a10;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: 0.3s ease;
}

.service-1-card>a i {
  color: #d19a2d;
  font-size: 10px;
  transition: 0.3s ease;
}

.service-1-card>a:hover {
  color: #d09220;
  text-decoration: none;
}

.service-1-card>a:hover i {
  transform: translateX(5px);
}

/* ================= LARGE SCREEN ================= */
@media (min-width: 1400px) {

  .service-1-section {
      padding: 28px 9% 34px;
  }

  .service-1-grid {
      max-width: 1450px;
      gap: 16px 22px;
  }

  .service-1-heading {
      margin-bottom: 22px;
  }

  .service-1-heading h2 {
      font-size: 38px;
  }

  .service-1-card {
      height: 190px;
      padding: 16px 26px 15px;
  }

  .service-1-icon {
      width: 53px;
      height: 53px;
      flex-basis: 53px;
      font-size: 19px;
  }

  .service-1-card h3 {
      font-size: 18px;
  }

  .service-1-card p {
      font-size: 12px;
      line-height: 1.4;
  }

  .service-1-card>a {
      font-size: 12px;
  }
}

/* ================= LAPTOP ================= */
@media (min-width: 992px) and (max-width: 1199px) {

  .service-1-section {
      padding: 23px 5% 28px;
  }

  .service-1-heading {
      margin-bottom: 17px;
  }

  .service-1-heading h2 {
      font-size: 32px;
  }

  .service-1-label {
      font-size: 11px;
  }

  .service-1-grid {
      gap: 12px 14px;
  }

  .service-1-card {
      height: 170px;
      padding: 13px 17px 12px;
  }

  .service-1-icon {
      width: 46px;
      height: 46px;
      flex-basis: 46px;
      margin-bottom: 7px;
      font-size: 16px;
  }

  .service-1-card h3 {
      margin-bottom: 4px;
      font-size: 15px;
  }

  .service-1-card p {
      margin-bottom: 5px;
      font-size: 10px;
      line-height: 1.35;
  }

  .service-1-card>a {
      font-size: 10px;
  }
}

/* ================= TABLET ================= */
@media (min-width: 768px) and (max-width: 991px) {

  .service-1-section {
      padding: 22px 3% 27px;
  }

  .service-1-heading {
      margin-bottom: 16px;
  }

  .service-1-label {
      margin-bottom: 2px;
      font-size: 10px;
  }

  .service-1-heading h2 {
      font-size: 29px;
  }

  .service-1-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
  }

  .service-1-card {
      height: 160px;
      padding: 12px 9px 10px;
  }

  .service-1-icon {
      width: 42px;
      height: 42px;
      flex-basis: 42px;
      margin-bottom: 6px;
      border-width: 2px;
      font-size: 15px;
  }

  .service-1-card h3 {
      margin-bottom: 4px;
      font-size: 13px;
      line-height: 1.15;
  }

  .service-1-card p {
      margin-bottom: 5px;
      font-size: 9px;
      line-height: 1.3;

  }

  .service-1-card>a {
      gap: 5px;
      font-size: 9px;
  }

  .service-1-card>a i {
      font-size: 8px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {

  .service-1-section {
      padding: 22px 10px 27px;
  }

  .service-1-heading {
      margin-bottom: 16px;
  }

  .service-1-label {
      margin-bottom: 3px;
      font-size: 10px;
      letter-spacing: 1px;
  }

  .service-1-heading h2 {
      font-size: 27px;
  }

  .service-1-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 9px;
  }

  .service-1-card {
      height: 165px;
      padding: 12px 8px 10px;
  }

  .service-1-icon {
      width: 42px;
      height: 42px;
      flex-basis: 42px;
      margin-bottom: 7px;
      border-width: 2px;
      font-size: 15px;
  }

  .service-1-card h3 {
      margin-bottom: 4px;
      font-size: 13px;
      line-height: 1.15;
  }

  .service-1-card p {
      margin-bottom: 5px;
      font-size: 9px;
      line-height: 1.3;

  }

  .service-1-card>a {
      gap: 5px;
      font-size: 9px;
  }

  .service-1-card>a i {
      font-size: 8px;
  }

  .service-1-card:hover {
      transform: translateY(-3px);
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .service-1-section {
      padding: 20px 7px 24px;
  }

  .service-1-heading {
      margin-bottom: 14px;
  }

  .service-1-label {
      font-size: 9px;
  }

  .service-1-heading h2 {
      font-size: 24px;
  }

  .service-1-grid {
      gap: 7px;
  }

  .service-1-card {
      height: 155px;
      padding: 10px 6px 9px;
      border-radius: 6px;
  }

  .service-1-icon {
      width: 38px;
      height: 38px;
      flex-basis: 38px;
      margin-bottom: 6px;
      font-size: 13px;
  }

  .service-1-card h3 {
      margin-bottom: 3px;
      font-size: 11px;
      line-height: 1.15;
  }

  .service-1-card p {
      margin-bottom: 4px;
      font-size: 8px;
      line-height: 1.25;

  }

  .service-1-card>a {
      gap: 4px;
      font-size: 8px;
  }

  .service-1-card>a i {
      font-size: 7px;
  }
}

/* ----------------------------services-sec-3------------------------- */
/* ================= WHY CHOOSE DAMDAR ================= */
.service-2-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
      radial-gradient(circle at 20% 50%, rgba(218, 164, 65, 0.06), transparent 30%),
      linear-gradient(90deg, #fffaf3 0%, #fffdf9 50%, #fff9f0 100%);
}

.service-2-section .container-fluid {
  width: 100%;
  padding: 0;
}

/* ================= MAIN WRAPPER ================= */
.service-2-wrap {
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
}

/* ================= LEFT CONTENT ================= */
.service-2-content {
  position: relative;
  z-index: 3;
  width: 42%;
  padding-left: 15px;
}

/* Small Heading */

.service-2-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: #b17a1c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.service-2-label i {
  color: #d5a13a;
  font-size: 11px;
}

/* Main Heading */
.service-2-content h2 {
  margin: 0;
  color: #5d1515;
  font-family: Georgia, serif;
  font-size: 37px;
  font-weight: 700;
  line-height: 1.05;
}

/* Gold Line */
.service-2-title-line {
  margin: 11px 0 14px;
  display: flex;
  align-items: center;
}

.service-2-title-line span {
  width: 32px;
  height: 1px;
  background: #d3a03a;
}

.service-2-title-line i {
  margin: 0 5px;
  color: #d3a03a;
  font-size: 7px;
}

/* Description */
.service-2-description {
  max-width: 430px;
  margin: 0 0 17px;
  color: #504843;
  font-size: 13px;
  line-height: 1.6;
}

/* ================= BENEFITS LIST ================= */
.service-2-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-2-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #403934;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.service-2-list li:last-child {
  margin-bottom: 0;
}

.service-2-list li>span {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d29a2c;
  color: #fff;
  font-size: 8px;
  box-shadow: 0 2px 5px rgba(150, 95, 10, 0.15);
  transition: 0.3s ease;
}

/* List Hover */
.service-2-list li {
  transition: 0.25s ease;
}

.service-2-list li:hover {
  color: #920a11;
  transform: translateX(4px);
}

.service-2-list li:hover>span {
  background: #940a11;
  color: #e7b64c;
  transform: rotate(360deg);
}

/* ================= RIGHT IMAGE ================= */
.service-2-image {
  position: relative;
  width: 58%;
  height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Decorative Leaf Shape */
.service-2-image-pattern {
  position: absolute;
  top: 35px;
  left: 3%;
  width: 250px;
  height: 250px;
  opacity: 0.07;
}

.service-2-image-pattern::before {
  content: "\f06c";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #b77b19;
  font-size: 230px;
  transform: rotate(-25deg);
}

/* Product Image */
.service-2-image>img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.4s ease;
}

.service-2-image:hover>img {
  transform: scale(1.025);
}

/* Bottom Soft Shadow */
.service-2-image::after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: 2px;
  width: 70%;
  height: 25px;
  border-radius: 50%;
  background: rgba(65, 30, 10, 0.12);
  filter: blur(15px);
}

/* ================= LARGE SCREEN ================= */
@media (min-width: 1400px) {

  .service-2-section {
      padding: 0px 1%;
  }

  .service-2-wrap {
      min-height: 370px;
  }

  .service-2-content h2 {
      font-size: 41px;
  }

  .service-2-label {
      font-size: 14px;
  }

  .service-2-description {
      max-width: 470px;
      font-size: 14px;
  }

  .service-2-list li {
      margin-bottom: 11px;
      font-size: 14px;
  }

  .service-2-list li>span {
      width: 21px;
      height: 21px;
      flex-basis: 21px;
      font-size: 9px;
  }

  .service-2-image {
      height: 370px;
  }
}

/* ================= LAPTOP ================= */
@media (min-width: 992px) and (max-width: 1199px) {

  .service-2-section {
      padding: 25px 5%;
  }

  .service-2-wrap {
      min-height: 315px;
  }

  .service-2-content {
      width: 43%;
  }

  .service-2-image {
      width: 57%;
      height: 315px;
  }

  .service-2-content h2 {
      font-size: 32px;
  }

  .service-2-label {
      font-size: 11px;
  }

  .service-2-description {
      margin-bottom: 14px;
      font-size: 11px;
  }

  .service-2-list li {
      margin-bottom: 8px;
      font-size: 11px;
  }

  .service-2-list li>span {
      width: 17px;
      height: 17px;
      flex-basis: 17px;
      font-size: 7px;
  }
}

/* ================= TABLET ================= */
@media (min-width: 768px) and (max-width: 991px) {

  .service-2-section {
      padding: 3px 4%;
  }

  .service-2-wrap {
      min-height: 285px;
  }

  .service-2-content {
      width: 45%;
      padding-left: 5px;
  }

  .service-2-image {
      width: 55%;
      height: 285px;
  }

  .service-2-label {
      margin-bottom: 5px;
      font-size: 10px;
  }

  .service-2-content h2 {
      font-size: 28px;
  }

  .service-2-title-line {
      margin: 8px 0 10px;
  }

  .service-2-description {
      margin-bottom: 11px;
      font-size: 10px;
      line-height: 1.5;
  }

  .service-2-list li {
      margin-bottom: 7px;
      gap: 8px;
      font-size: 10px;
  }

  .service-2-list li>span {
      width: 16px;
      height: 16px;
      flex-basis: 16px;
      font-size: 6px;
  }

  .service-2-image-pattern {
      width: 180px;
      height: 180px;
  }

  .service-2-image-pattern::before {
      font-size: 170px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
  .service-2-section {
      display: none;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .service-2-section {
      display: none;
  }
}
/* ==============================products========================= */
/* ================= PRODUCT SECTION ================= */

.product-1-section {
  width: 100%;
  padding: 22px 3.5% 40px;
  background: #fff;
}

.product-1-section .container-fluid {
  padding: 0;
}

/* ================= FILTER BUTTONS ================= */

.product-1-filter-scroll {
  width: 100%;
  margin-bottom: 22px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-1-filter-scroll::-webkit-scrollbar {
  display: none;
}

.product-1-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-width: 100%;
}

.product-1-filter-btn {
  height: 42px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e8e3dd;
  border-radius: 7px;
  background: #fff;
  color: #352c27;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(50, 30, 15, 0.03);
  transition: 0.25s ease;
}

.product-1-filter-btn i {
  color: #b76e16;
  font-size: 13px;
}

.product-1-filter-btn:hover {
  color: #8c080e;
  border-color: #d9b67d;
  background: #fffaf3;
  transform: translateY(-2px);
}

.product-1-filter-btn.active {
  color: #fff;
  border-color: #75070b;
  background: linear-gradient(135deg, #8d0a10, #5d0306);
  box-shadow: 0 5px 12px rgba(110, 5, 10, 0.16);
}

.product-1-filter-btn.active i {
  color: #fff;
}

/* ================= TOOLBAR ================= */

.product-1-toolbar {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-1-toolbar p {
  margin: 0;
  color: #554b45;
  font-size: 12px;
}

.product-1-toolbar strong {
  color: #8e0a10;
}

.product-1-sort {
  min-width: 190px;
  height: 40px;
  padding: 0 35px 0 13px;
  border: 1px solid #e5e0db;
  border-radius: 7px;
  outline: none;
  background: #fff;
  color: #4b433e;
  font-size: 11px;
  cursor: pointer;
}

/* ================= PRODUCT GRID ================= */

.product-1-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

/* ================= PRODUCT CARD ================= */

.product-1-card {
  min-width: 0;
  padding: 9px 9px 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ebe6e1;
  border-radius: 9px;
  background: #fff;
  text-align: center;
  box-shadow: 0 3px 12px rgba(50, 30, 15, 0.04);
  transition: 0.3s ease;
}

.product-1-card:hover {
  border-color: #dfc291;
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(65, 35, 15, 0.1);
}

/* ================= PRODUCT IMAGE ================= */

.product-1-image {
  width: 100%;
  height: 135px;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}

.product-1-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-1-card:hover .product-1-image img {
  transform: scale(1.06);
}

/* ================= PRODUCT INFO ================= */

.product-1-card h3 {
  margin: 0 0 4px;
  overflow: hidden;
  color: #241c18;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-1-price {
  margin: 0 0 4px;
  color: #8e090f;
  font-size: 11px;
  font-weight: 700;
}

.product-1-rating {
  margin-bottom: 8px;
  color: #6a625d;
  font-size: 9px;
}

.product-1-rating i {
  margin-right: 3px;
  color: #e6a01b;
}

/* ================= ADD TO CART ================= */

.product-1-cart {
  width: 100%;
  height: 31px;
  margin-top: auto;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(135deg, #920a10, #690408);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.product-1-cart i {
  margin-right: 5px;
  font-size: 9px;
}

.product-1-cart:hover {
  background: linear-gradient(135deg, #c38a20, #a36c0e);
  transform: translateY(-1px);
}

/* Filter animation */

.product-1-card.product-1-hidden {
  display: none;
}

/* ================= LARGE SCREEN ================= */

@media (min-width: 1400px) {
  .product-1-section {
      padding: 25px 4.5% 45px;
  }

  .product-1-grid {
      gap: 16px;
  }

  .product-1-image {
      height: 155px;
  }

  .product-1-card h3 {
      font-size: 13px;
  }

  .product-1-price {
      font-size: 12px;
  }

  .product-1-cart {
      height: 34px;
      font-size: 11px;
  }
}

/* ================= LAPTOP ================= */

@media (min-width: 992px) and (max-width: 1199px) {
  .product-1-section {
      padding: 20px 2.5% 35px;
  }

  .product-1-grid {
      grid-template-columns: repeat(5, 1fr);
      gap: 11px;
  }

  .product-1-image {
      height: 120px;
  }

  .product-1-filter-btn {
      height: 38px;
      padding: 0 13px;
      font-size: 10px;
  }
}

/* ================= TABLET ================= */

@media (min-width: 768px) and (max-width: 991px) {
  .product-1-section {
      padding: 18px 18px 30px;
  }

  .product-1-filter-scroll {
      margin-bottom: 17px;
  }

  .product-1-filters {
      gap: 7px;
  }

  .product-1-filter-btn {
      height: 36px;
      padding: 0 11px;
      gap: 6px;
      font-size: 9px;
  }

  .product-1-filter-btn i {
      font-size: 10px;
  }

  .product-1-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
  }

  .product-1-image {
      height: 105px;
  }

  .product-1-card h3 {
      font-size: 10px;
  }

  .product-1-price {
      font-size: 9px;
  }

  .product-1-rating {
      font-size: 8px;
  }

  .product-1-cart {
      height: 29px;
      font-size: 8px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {
  .product-1-section {
      padding: 15px 10px 25px;
  }

  .product-1-filter-scroll {
      margin-bottom: 15px;
  }

  .product-1-filters {
      gap: 7px;
  }

  .product-1-filter-btn {
      height: 34px;
      padding: 0 10px;
      gap: 5px;
      border-radius: 6px;
      font-size: 9px;
  }

  .product-1-filter-btn i {
      font-size: 9px;
  }

  .product-1-toolbar {
      margin-bottom: 12px;
  }

  .product-1-toolbar p {
      font-size: 9px;
  }

  .product-1-sort {
      min-width: 135px;
      height: 34px;
      padding-left: 8px;
      font-size: 9px;
  }

  .product-1-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
  }

  .product-1-card {
      padding: 6px;
      border-radius: 7px;
  }

  .product-1-image {
      height: 90px;
      margin-bottom: 5px;
  }

  .product-1-card h3 {
      margin-bottom: 3px;
      font-size: 9px;
  }

  .product-1-price {
      margin-bottom: 3px;
      font-size: 8px;
  }

  .product-1-rating {
      margin-bottom: 6px;
      font-size: 7px;
  }

  .product-1-cart {
      height: 27px;
      font-size: 7px;
  }

  .product-1-cart i {
      margin-right: 3px;
      font-size: 7px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
  .product-1-section {
      padding: 12px 7px 22px;
  }

  .product-1-toolbar p {
      display: none;
  }

  .product-1-toolbar {
      justify-content: flex-end;
  }

  .product-1-sort {
      min-width: 130px;
      height: 32px;
  }

  .product-1-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 7px;
  }

  .product-1-image {
      height: 100px;
  }

  .product-1-card h3 {
      font-size: 10px;
  }

  .product-1-price {
      font-size: 9px;
  }

  .product-1-cart {
      height: 29px;
      font-size: 8px;
  }
}
/* ========================cart================================= */
/* ================= CART PAGE ================= */
.cart-1-page {
  width: 100%;
  padding: 32px 4% 42px;
  background: #fffdfb;
  color: #251914;
}

.cart-1-top {
  margin-bottom: 26px;
  padding-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #eee5dd;
}

.cart-1-label {
  display: block;
  margin-bottom: 7px;
  color: #b27a19;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.cart-1-label i {
  margin-right: 5px;
}

.cart-1-top h1 {
  margin: 0 0 6px;
  color: #3c0b0c;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

.cart-1-top p {
  margin: 0;
  color: #756a64;
  font-size: 13px;
}

.cart-1-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.cart-1-breadcrumb a {
  color: #746962;
  text-decoration: none;
}

.cart-1-breadcrumb a:hover {
  color: #980c12;
}

.cart-1-breadcrumb i {
  color: #c9bcb1;
  font-size: 7px;
}

.cart-1-breadcrumb span {
  color: #990b11;
  font-weight: 600;
}
/* Layout */
.cart-1-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 25px;
  align-items: start;
}
/* Left */
.cart-1-main {
  padding: 22px;
  border: 1px solid #eee5de;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 5px 22px rgba(61, 32, 15, 0.05);
}

.cart-1-main-head {
  margin-bottom: 5px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee7e1;
}

.cart-1-main-head h2 {
  margin: 0 0 4px;
  color: #351112;
  font-family: Georgia, serif;
  font-size: 22px;
}

.cart-1-main-head p {
  margin: 0;
  color: #8a7e77;
  font-size: 11px;
}

.cart-1-clear-btn {
  padding: 7px 10px;
  border: 0;
  background: transparent;
  color: #a01a1f;
  font-size: 10px;
  cursor: pointer;
}

.cart-1-clear-btn i {
  margin-right: 5px;
}

.cart-1-clear-btn:hover {
  color: #d0911c;
}
/* Cart Item */
.cart-1-item {
  position: relative;
  padding: 17px 0;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 80px 115px 85px 25px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #f0e9e3;
  transition: 0.25s;
}

.cart-1-product {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cart-1-image {
  width: 90px;
  height: 78px;
  flex: 0 0 90px;
  overflow: hidden;
  border: 1px solid #eee5dc;
  border-radius: 8px;
  background: #faf7f3;
}

.cart-1-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s;
}

.cart-1-item:hover .cart-1-image img {
  transform: scale(1.06);
}

.cart-1-category {
  display: block;
  margin-bottom: 4px;
  color: #b47b19;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.cart-1-info h3 {
  margin: 0 0 6px;
  color: #2e201a;
  font-size: 14px;
  font-weight: 600;
}

.cart-1-weight {
  margin: 0;
  color: #8b8079;
  font-size: 10px;
}

.cart-1-weight i {
  margin-right: 4px;
  color: #b58a50;
}

.cart-1-mobile-price {
  display: none;
}

.cart-1-price,
.cart-1-total {
  color: #3b2a23;
  font-size: 13px;
  font-weight: 700;
}

.cart-1-total {
  color: #8d0b10;
}
/* Quantity */
.cart-1-quantity {
  height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #e4dcd5;
  border-radius: 5px;
}

.cart-1-quantity button {
  width: 33px;
  height: 100%;
  padding: 0;
  border: 0;
  background: #faf8f6;
  color: #4a3b34;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.cart-1-quantity button:hover {
  background: #920b10;
  color: #fff;
}

.cart-1-qty-input {
  width: 45px;
  height: 100%;
  padding: 0;
  border: 0;
  border-left: 1px solid #eee7e1;
  border-right: 1px solid #eee7e1;
  outline: none;
  background: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
}

.cart-1-remove {
  width: 25px;
  height: 25px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #aaa09a;
  font-size: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.cart-1-remove:hover {
  background: #fff0f0;
  color: #a3090f;
}
/* Bottom Actions */
.cart-1-bottom-actions {
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-1-continue,
.cart-1-update {
  height: 37px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.cart-1-continue {
  border: 1px solid #d6b675;
  color: #7f1114;
  background: #fff;
}

.cart-1-continue i {
  margin-right: 7px;
}

.cart-1-continue:hover {
  background: #fff7e9;
  color: #a66f12;
  text-decoration: none;
}

.cart-1-update {
  border: 0;
  background: #f5f0eb;
  color: #5a4c45;
  cursor: pointer;
}

.cart-1-update i {
  margin-right: 6px;
}

.cart-1-update:hover {
  background: #e9dfd6;
}
/* ================= SUMMARY ================= */
.cart-1-summary {
  position: sticky;
  top: 20px;
  padding: 22px;
  border: 1px solid #eadfd6;
  border-radius: 13px;
  background: #fffaf6;
  box-shadow: 0 7px 25px rgba(65, 30, 10, 0.07);
}

.cart-1-summary-title {
  padding-bottom: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #eadfd7;
}

.cart-1-summary-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #900a10;
  color: #e9b448;
  font-size: 15px;
}

.cart-1-summary-title span {
  display: block;
  margin-bottom: 2px;
  color: #b47b18;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.cart-1-summary-title h2 {
  margin: 0;
  color: #3c1010;
  font-family: Georgia, serif;
  font-size: 20px;
}
/* Coupon */
.cart-1-coupon {
  padding: 17px 0;
  border-bottom: 1px solid #eadfd7;
}

.cart-1-coupon label {
  display: block;
  margin-bottom: 7px;
  color: #473832;
  font-size: 10px;
  font-weight: 600;
}

.cart-1-coupon-box {
  height: 38px;
  display: flex;
}

.cart-1-coupon-box input {
  min-width: 0;
  flex: 1;
  padding: 0 11px;
  border: 1px solid #e3d9d0;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  outline: none;
  background: #fff;
  font-size: 9px;
}

.cart-1-coupon-box input:focus {
  border-color: #c89539;
}

.cart-1-coupon-box button {
  width: 70px;
  border: 0;
  border-radius: 0 5px 5px 0;
  background: #8e090f;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
}

.cart-1-coupon-box button:hover {
  background: #6f0509;
}

.cart-1-coupon small {
  display: block;
  margin-top: 6px;
  font-size: 8px;
}

.cart-1-coupon-success {
  color: #21853b;
}

.cart-1-coupon-error {
  color: #b20d14;
}
/* Summary Price */
.cart-1-summary-lines {
  padding: 16px 0 9px;
}

.cart-1-summary-row {
  margin-bottom: 11px;
  display: flex;
  justify-content: space-between;
  color: #756961;
  font-size: 10px;
}

.cart-1-summary-row strong {
  color: #382a24;
  font-size: 11px;
}

.cart-1-summary-row .cart-1-discount {
  color: #25813a;
}

.cart-1-grand-total {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed #d7c9be;
}

.cart-1-grand-total span {
  display: block;
  color: #3d302a;
  font-size: 12px;
  font-weight: 700;
}

.cart-1-grand-total small {
  color: #958981;
  font-size: 8px;
}

.cart-1-grand-total strong {
  color: #900b10;
  font-family: Georgia, serif;
  font-size: 21px;
}
/* Checkout */
.cart-1-checkout {
  width: 100%;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 5px;
  background: linear-gradient(135deg, #980b11, #650307);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 13px rgba(130, 5, 10, 0.16);
  transition: 0.25s;
}

.cart-1-checkout:hover {
  background: linear-gradient(135deg, #b17b18, #8d5c08);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.cart-1-checkout i {
  font-size: 9px;
}
/* Secure */
.cart-1-secure {
  margin-top: 15px;
  padding: 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 6px;
  background: #fff;
}

.cart-1-secure > i {
  color: #258542;
  font-size: 15px;
}

.cart-1-secure strong,
.cart-1-secure span {
  display: block;
}

.cart-1-secure strong {
  margin-bottom: 2px;
  color: #463832;
  font-size: 9px;
}

.cart-1-secure span {
  color: #93877f;
  font-size: 7px;
}
/* Payment */
.cart-1-payment {
  margin-top: 14px;
  text-align: center;
}

.cart-1-payment > span {
  display: block;
  margin-bottom: 7px;
  color: #8c817a;
  font-size: 8px;
}

.cart-1-payment div {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.cart-1-payment div span {
  padding: 4px 7px;
  border: 1px solid #e6ddd6;
  border-radius: 3px;
  background: #fff;
  color: #675b55;
  font-size: 7px;
  font-weight: 700;
}
/* ================= FEATURES ================= */
.cart-1-features {
  margin-top: 25px;
  padding: 17px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #eee5dd;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 15px rgba(55, 30, 15, 0.04);
}

.cart-1-feature {
  padding: 3px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-right: 1px solid #eee5de;
}

.cart-1-feature:last-child {
  border-right: 0;
}

.cart-1-feature > div {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff5e5;
  color: #9a0c11;
  font-size: 13px;
}

.cart-1-feature strong,
.cart-1-feature span {
  display: block;
}

.cart-1-feature strong {
  margin-bottom: 3px;
  color: #3c2d27;
  font-size: 10px;
}

.cart-1-feature span {
  color: #8d817a;
  font-size: 8px;
}
/* ================= TABLET ================= */
@media (min-width: 768px) and (max-width: 991px) {

  .cart-1-page {
      padding: 25px 20px 35px;
  }

  .cart-1-layout {
      grid-template-columns: 1fr 290px;
      gap: 15px;
  }

  .cart-1-main {
      padding: 15px;
  }

  .cart-1-item {
      grid-template-columns: minmax(190px, 1fr) 90px 70px 22px;
      gap: 8px;
  }

  .cart-1-price {
      display: none;
  }

  .cart-1-image {
      width: 72px;
      height: 65px;
      flex-basis: 72px;
  }

  .cart-1-info h3 {
      font-size: 11px;
  }

  .cart-1-quantity {
      height: 31px;
  }

  .cart-1-summary {
      padding: 17px;
  }

  .cart-1-features {
      padding: 14px 8px;
  }

  .cart-1-feature {
      padding: 3px 8px;
  }
}
/* ================= MOBILE ================= */
@media (max-width: 767px) {

  .cart-1-page {
      padding: 20px 10px 28px;
  }

  .cart-1-top {
      margin-bottom: 16px;
      padding-bottom: 14px;
      display: block;
  }

  .cart-1-label {
      font-size: 8px;
  }

  .cart-1-top h1 {
      font-size: 25px;
  }

  .cart-1-top p {
      font-size: 10px;
  }

  .cart-1-breadcrumb {
      display: none;
  }

  .cart-1-layout {
      display: block;
  }

  .cart-1-main {
      padding: 13px;
      border-radius: 9px;
  }

  .cart-1-main-head {
      padding-bottom: 11px;
  }

  .cart-1-main-head h2 {
      font-size: 17px;
  }

  .cart-1-main-head p {
      font-size: 8px;
  }

  .cart-1-clear-btn {
      font-size: 8px;
  }

  .cart-1-item {
      padding: 13px 25px 13px 0;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 9px;
  }

  .cart-1-product {
      grid-column: 1 / 3;
  }

  .cart-1-image {
      width: 75px;
      height: 67px;
      flex-basis: 75px;
  }

  .cart-1-category {
      font-size: 6px;
  }

  .cart-1-info h3 {
      margin-bottom: 4px;
      font-size: 11px;
  }

  .cart-1-weight {
      font-size: 8px;
  }

  .cart-1-mobile-price {
      display: block;
      margin: 5px 0 0;
      color: #900b10;
      font-size: 10px;
      font-weight: 700;
  }

  .cart-1-price {
      display: none;
  }

  .cart-1-quantity {
      width: 100px;
      height: 30px;
  }

  .cart-1-quantity button {
      width: 30px;
  }

  .cart-1-qty-input {
      width: 40px;
  }

  .cart-1-total {
      font-size: 11px;
  }

  .cart-1-remove {
      position: absolute;
      top: 13px;
      right: 0;
  }

  .cart-1-bottom-actions {
      padding-top: 13px;
  }

  .cart-1-continue,
  .cart-1-update {
      height: 33px;
      padding: 0 10px;
      font-size: 8px;
  }

  .cart-1-summary {
      position: static;
      margin-top: 15px;
      padding: 17px;
      border-radius: 9px;
  }

  .cart-1-summary-title h2 {
      font-size: 18px;
  }

  .cart-1-features {
      margin-top: 15px;
      padding: 10px;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
  }

  .cart-1-feature {
      padding: 10px 7px;
      border-right: 0;
      border-bottom: 1px solid #eee6df;
  }

  .cart-1-feature:nth-child(3),
  .cart-1-feature:nth-child(4) {
      border-bottom: 0;
  }

  .cart-1-feature > div {
      width: 32px;
      height: 32px;
      flex-basis: 32px;
      font-size: 11px;
  }

  .cart-1-feature strong {
      font-size: 8px;
  }

  .cart-1-feature span {
      font-size: 7px;
  }
}
/* ================= SMALL MOBILE ================= */
@media (max-width: 420px) {

  .cart-1-bottom-actions {
      gap: 7px;
  }

  .cart-1-continue,
  .cart-1-update {
      flex: 1;
      padding: 0 6px;
  }

  .cart-1-features {
      grid-template-columns: 1fr 1fr;
  }

  .cart-1-feature {
      gap: 6px;
  }
}
/* ================= PROFILE PAGE ================= */
/* ================= PROFILE PAGE ================= */

.profile-1-page {
  width: 100%;
  padding: 35px 5% 45px;
  background: #fffdfb;
  color: #2b201b;
}

/* Heading */

.profile-1-heading {
  margin-bottom: 25px;
  text-align: center;
}

.profile-1-heading > span {
  display: block;
  margin-bottom: 5px;
  color: #b17a19;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.profile-1-heading > span i {
  margin-right: 5px;
}

.profile-1-heading h1 {
  margin: 0 0 7px;
  color: #3b0b0d;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 700;
}

.profile-1-heading p {
  margin: 0;
  color: #847871;
  font-size: 12px;
}

/* Main Layout */

.profile-1-wrapper {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: start;
}

/* ================= LEFT PROFILE CARD ================= */

.profile-1-card {
  padding: 28px 22px 22px;
  border: 1px solid #eee5dd;
  border-radius: 13px;
  background: #fff;
  text-align: center;
  box-shadow: 0 5px 20px rgba(60, 30, 15, 0.06);
}

.profile-1-avatar {
  width: 85px;
  height: 85px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #fff3e3;
  border-radius: 50%;
  background: linear-gradient(135deg, #9c0b12, #650306);
  color: #e5ae42;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(115, 5, 10, 0.15);
}

.profile-1-card h2 {
  margin: 0 0 4px;
  color: #341313;
  font-family: Georgia, serif;
  font-size: 20px;
}

.profile-1-role {
  margin: 0 0 10px;
  color: #887b74;
  font-size: 10px;
}

.profile-1-status {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  background: #edf8ef;
  color: #328244;
  font-size: 8px;
  font-weight: 600;
}

.profile-1-status i {
  margin-right: 3px;
}

.profile-1-divider {
  height: 1px;
  margin: 20px 0;
  background: #eee6df;
}

/* Stats */

.profile-1-mini-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.profile-1-mini-info > div {
  padding: 5px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.profile-1-mini-info > div:first-child {
  border-right: 1px solid #eee4dc;
}

.profile-1-mini-info i {
  color: #a70d13;
  font-size: 14px;
}

.profile-1-mini-info span {
  color: #958981;
  font-size: 7px;
  text-align: left;
}

.profile-1-mini-info strong {
  display: block;
  margin-bottom: 1px;
  color: #33251f;
  font-size: 12px;
}

/* Edit Button */

.profile-1-edit-btn {
  width: 100%;
  height: 38px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #940a10;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.profile-1-edit-btn i {
  margin-right: 6px;
}

.profile-1-edit-btn:hover {
  background: #b57b17;
  color: #fff;
  text-decoration: none;
}

/* ================= RIGHT SIDE ================= */

.profile-1-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-1-box {
  padding: 20px 22px;
  border: 1px solid #eee5dd;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 17px rgba(60, 30, 15, 0.045);
}

/* Box Heading */

.profile-1-box-head {
  margin-bottom: 18px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0e9e3;
}

.profile-1-box-head span {
  display: block;
  margin-bottom: 2px;
  color: #b27a19;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
}

.profile-1-box-head h3 {
  margin: 0;
  color: #3b1313;
  font-family: Georgia, serif;
  font-size: 18px;
}

.profile-1-box-head > i {
  color: #d5b578;
  font-size: 20px;
}

/* Information Grid */

.profile-1-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 25px;
}

.profile-1-info-item {
  padding-left: 12px;
  border-left: 2px solid #e0b65c;
}

.profile-1-info-item span {
  display: block;
  margin-bottom: 4px;
  color: #968a83;
  font-size: 8px;
}

.profile-1-info-item strong {
  display: block;
  color: #3d302a;
  font-size: 11px;
  font-weight: 600;
}

/* Address */

.profile-1-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.profile-1-address-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff3e5;
  color: #980b11;
  font-size: 14px;
}

.profile-1-address span {
  display: block;
  margin-bottom: 3px;
  color: #b47a18;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.profile-1-address h4 {
  margin: 0 0 6px;
  color: #382923;
  font-size: 12px;
}

.profile-1-address p {
  margin: 0 0 3px;
  color: #7d716a;
  font-size: 9px;
  line-height: 1.5;
}

/* ================= QUICK LINKS ================= */

.profile-1-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.profile-1-links > a {
  min-width: 0;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #eee5dd;
  border-radius: 9px;
  background: #fff;
  color: #3b302a;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(50, 25, 10, 0.04);
  transition: 0.25s;
}

.profile-1-links > a > i:first-child {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff2e1;
  color: #990b11;
  font-size: 11px;
}

.profile-1-links > a span {
  min-width: 0;
  flex: 1;
}

.profile-1-links strong,
.profile-1-links small {
  display: block;
}

.profile-1-links strong {
  margin-bottom: 2px;
  color: #3c2d27;
  font-size: 9px;
}

.profile-1-links small {
  color: #948880;
  font-size: 7px;
}

.profile-1-links > a > i:last-child {
  color: #c7b8ad;
  font-size: 7px;
}

.profile-1-links > a:hover {
  border-color: #d9b56d;
  transform: translateY(-2px);
  box-shadow: 0 6px 17px rgba(90, 45, 15, 0.08);
}

/* ================= TABLET ================= */

@media (min-width: 768px) and (max-width: 991px) {

  .profile-1-page {
      padding: 28px 25px 35px;
  }

  .profile-1-wrapper {
      grid-template-columns: 230px 1fr;
      gap: 15px;
  }

  .profile-1-card {
      padding: 22px 15px;
  }

  .profile-1-avatar {
      width: 70px;
      height: 70px;
      font-size: 25px;
  }

  .profile-1-links {
      grid-template-columns: 1fr;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {

  .profile-1-page {
      padding: 20px 12px 30px;
  }

  .profile-1-heading {
      margin-bottom: 17px;
  }

  .profile-1-heading h1 {
      font-size: 25px;
  }

  .profile-1-heading p {
      font-size: 9px;
  }

  .profile-1-wrapper {
      display: block;
  }

  .profile-1-card {
      margin-bottom: 14px;
      padding: 20px 15px;
  }

  .profile-1-avatar {
      width: 68px;
      height: 68px;
      margin-bottom: 10px;
      font-size: 23px;
  }

  .profile-1-card h2 {
      font-size: 17px;
  }

  .profile-1-divider {
      margin: 15px 0;
  }

  .profile-1-edit-btn {
      height: 35px;
  }

  .profile-1-details {
      gap: 12px;
  }

  .profile-1-box {
      padding: 16px;
  }

  .profile-1-box-head {
      margin-bottom: 14px;
  }

  .profile-1-box-head h3 {
      font-size: 16px;
  }

  .profile-1-info-grid {
      grid-template-columns: 1fr 1fr;
      gap: 15px 10px;
  }

  .profile-1-info-item strong {
      font-size: 9px;
      word-break: break-word;
  }

  .profile-1-links {
      grid-template-columns: 1fr;
      gap: 8px;
  }

  .profile-1-links > a {
      padding: 10px 12px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 420px) {

  .profile-1-info-grid {
      grid-template-columns: 1fr;
  }

  .profile-1-mini-info {
      max-width: 260px;
      margin: auto;
  }
}

/* Screenshot-match: full-width hero, maroon extras */
body {
  background: #fff;
  font-family: 'DM Sans', sans-serif;
}
.home-hero .carousel,
.home-hero .carousel-inner,
.home-hero .carousel-item,
.home-hero img {
  width: 100%;
}
.home-hero .carousel-item img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.nav-cart-link,
.nav-action-link {
  position: relative;
}
.nav-cart-link .cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #a20b12;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
.home-4-product-view:hover {
  color: #990a12;
  border-color: #990a12;
}

.account-page {
  padding: 40px 15px 80px;
  background: #faf7f2;
  min-height: 60vh;
}
.account-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(143, 17, 22, 0.08);
}
.account-card .highlight { color: #8f1116; }
.account-card .btn-primary,
.btn-ecom-add,
.btn-qc-add {
  background: #990a12;
  border: none;
  color: #fff;
}
.account-card .btn-primary:hover {
  background: #76070d;
  color: #fff;
}
.logo-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #8f1116;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
}
.cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity .25s ease;
}
.cart-drawer.is-open .cart-drawer-backdrop { opacity: 1; }
.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 32px rgba(0,0,0,.15);
  transform: translateX(100%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open .cart-drawer-panel { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}
.cart-drawer-close {
  border: none;
  background: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.cart-drawer-body { flex: 1; overflow: auto; padding: 16px 20px; }
.cart-drawer-footer { padding: 16px 20px; border-top: 1px solid #eee; }
.cart-line {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  flex-wrap: wrap;
}
.cart-line-name { font-weight: 600; display: block; }
.cart-line-meta { font-size: 12px; color: #64748b; }
body.cart-drawer-open { overflow: hidden; }

.cp-empty-state { text-align: center; padding: 60px 20px; }
.cp-empty-icon { font-size: 3rem; color: #8f1116; }
.cp-items-card, .cp-summary-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 24px rgba(143, 17, 22, .08);
}
.cp-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  flex-wrap: wrap;
}
.pay-method-option {
  display: block;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  cursor: pointer;
}
.pay-method-option.is-selected {
  border-color: #8f1116;
  background: #faf7f2;
}
.cart-wa-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 -6px 20px rgba(0,0,0,.08);
}
.btn-wa-order { background: #25d366; color: #fff; font-weight: 700; }
.btn-wa-order:hover { color: #fff; background: #1fb855; }
.qc-qty-row { display: inline-flex; align-items: center; gap: 6px; }
.qc-qty-btn {
  width: 32px; height: 32px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}
.qc-qty-input { width: 48px; text-align: center; border: 1px solid #e5e7eb; border-radius: 8px; height: 32px; }
.breadcrumb a { color: #8f1116; }

a.home-4-product-card,
a.product-1-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.home-4-product-card .home-4-cart-btn,
a.product-1-card .product-1-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
a.home-4-product-card .home-4-product-info h3,
a.product-1-card h3 {
  color: inherit;
}

