@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* =============================================
   AURELIAN NOIR COLOR THEME
   Primary Dark:    #0D0D0D  (Pure Noir)
   Secondary Dark:  #1A1A1A  (Soft Noir)
   Surface:         #141414  (Card Surface)
   Gold Primary:    #C9A84C  (Aurelian Gold)
   Gold Light:      #E0C97F  (Light Gold)
   Gold Muted:      #8C6D2F  (Deep Gold)
   Champagne:       #F5EDD6  (Champagne Cream)
   Warm White:      #FAF7F0  (Off White)
   Muted Text:      #9A8A6A  (Warm Muted)
   Border:          #2E2A22  (Dark Border)
   Accent Red:      #B03A2E  (Deep Rouge)
============================================= */

/* Global Styles */

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #F5EDD6;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #F5EDD6;
}

h4 {
  font-size: 20px;
  color: #E0C97F;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #9A8A6A;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 14px;
  font-weight: bold;
  padding: 15px 30px;
  color: #0D0D0D;
  background-color: #C9A84C;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

button.normal:hover {
  background-color: #E0C97F;
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #C9A84C;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #C9A84C;
  outline: none;
  transition: 0.2s;
}

button.white:hover {
  background-color: #C9A84C;
  color: #0D0D0D;
}

body {
  width: 100%;
  color: #F5EDD6;
  background-color: #0D0D0D;
}

/* ── Header ── */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: #0D0D0D;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
  border-bottom: 1px solid #2E2A22;
}

.logo {
  height: 50px;
  display: block;
  object-fit: contain;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  align-self: center;
  color: #C9A84C;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
  color: #C9A84C;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #C9A84C;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #E0C97F;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background-color: #C9A84C;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

/* ── Dropdown ── */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1A1A1A;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
  z-index: 1;
  border: 1px solid #2E2A22;
}

.dropdown-content a {
  color: #C9A84C;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #C9A84C;
  color: #0D0D0D;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-submenu {
  position: relative;
  display: inline-block;
}

.dropdown-submenu .submenu-content {
  display: none;
  position: absolute;
  background-color: #1A1A1A;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
  z-index: 1;
  border: 1px solid #2E2A22;
}

.dropdown-submenu:hover .submenu-content {
  display: block;
}

.dropdown-submenu a {
  color: #C9A84C;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-submenu a:hover {
  background-color: #C9A84C;
  color: #0D0D0D;
}

/* ── Hero ── */
#hero {
  background-image: url(img/banner.png);
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-attachment: fixed; 
    
    /* Image ko sahi se fit karne ke liye */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    /* Height aap apne hisab se rakh sakte hain */
    height: 100vh; 
    width: 100%;
}

#hero h4 {
  padding-bottom: 15px;
  color: #E0C97F;
}

#hero h1 {
  color: #C9A84C;
}

#hero button {
  background-image: url(img/button.png);
  background-color: transparent;
  color: #C9A84C;
  border: 0;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}

#hero button a {
  text-decoration: none;
  color: #C9A84C;
}

#hero button a:hover {
  color: #E0C97F;
}

/* ── Features ── */
#feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#feature .fe-box {
  width: 180px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E2A22;
  border-radius: 4px;
  margin: 15px 0;
  background-color: #141414;
}

#feature .fe-box:hover {
  box-shadow: 10px 10px 54px rgba(201, 168, 76, 0.15);
  border-color: #C9A84C;
}

#feature .fe-box img {
  width: 100%;
  margin-bottom: 10px;
}

#feature .fe-box h6 {
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1;
  border-radius: 4px;
  color: #C9A84C;
  background-color: #2A2210;
}

#feature .fe-box:nth-child(2) h6 {
  background-color: #2A1515;
  color: #E07070;
}

#feature .fe-box:nth-child(3) h6 {
  background-color: #1A2610;
  color: #7EB87E;
}

#feature .fe-box:nth-child(4) h6 {
  background-color: #12172A;
  color: #7E8FD4;
}

#feature .fe-box:nth-child(5) h6 {
  background-color: #261226;
  color: #C87EC8;
}

#feature .fe-box:nth-child(6) h6 {
  background-color: #2A2010;
  color: #D4A870;
}

/* ── Products ── */
#product1 {
  text-align: center;
}

#product1 .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #2E2A22;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.3);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
  background-color: #141414;

  /* ADD THESE 3 LINES ↓ */
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(201, 168, 76, 0.12);
  border-color: #C9A84C;
}

#product1 .pro img {
  width: 100%;
  height: 220px;         /* ← fixed height for all cards */
  object-fit: cover;     /* ← crops image to fill, no stretching */
  object-position: center;
  border-radius: 20px;
  display: block;
  flex-shrink: 0;        /* ← prevent image from shrinking */
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
  flex: 1;               /* ← pushes price to bottom consistently */
  display: flex;
  flex-direction: column;
}

#product1 .pro .des span {
  color: #9A8A6A;
  font-size: 12px;
}

#product1 .pro .des h5 {
  padding-top: 7px;
  color: #F5EDD6;
  font-size: 14px;
}

#product1 .pro .des h4 {
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: #C9A84C;
}

#product1 .pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #2A2210;
  font-weight: 500;
  color: #C9A84C;
  border: 1px solid #8C6D2F;
  position: absolute;
  bottom: 20px;
  right: 10px;
}

/* ── Banner ── */
#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("img/banner/b3.jpg");
  width: 100%;
  height: 40vh;
  margin: 10px 0;
  background-size: cover;
  background-position: center;
}

#banner h4 {
  color: #E0C97F;
  font-size: 16px;
}

#banner h2 {
  color: #F5EDD6;
  font-size: 30px;
  padding: 10px 0;
}

#banner h2 span {
  color: #B03A2E;
}

#banner button:hover {
  background-color: #C9A84C;
  color: #0D0D0D;
}

/* ── SM Banner ── */
#sm-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sm-banner .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("img/banner/b117.jpg");
  min-width: 580px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

#sm-banner .banner-box2 {
  background-image: url("img/banner/b100.jpg");
}

#sm-banner h4 {
  color: #E0C97F;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner h2 {
  color: #F5EDD6;
  font-size: 28px;
  font-weight: 800;
}

#sm-banner span {
  color: #F5EDD6;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
  background-color: #C9A84C;
  border: 1px solid #C9A84C;
  color: #0D0D0D;
}

/* ── Banner 3 ── */
#banner3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 80px;
}

#banner3 .banner-box1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  background-image: url("img/banner/b70.png");
  min-width: 45%;
  height: 30vh;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}

#banner3 .banner-box2 {
  background-image: url("img/banner/b180.jpeg");
  width: 45%;
  height: 30vh;
}

#banner3 h2 {
  color: #C9A84C;
  font-weight: 900;
  font-size: 22px;
  padding-left: 30%;
  margin-top: 10%;
}

#banner3 h3 {
  color: #F5EDD6;
  font-weight: 800;
  font-size: 15px;
  padding-left: 30%;
}

/* ── Newsletter ── */
#newsletter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-image: url("img/banner/b14.png");
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-color: #0D0D0D;
  border-top: 1px solid #2E2A22;
  border-bottom: 1px solid #2E2A22;
}

#newsletter h4 {
  font-size: 22px;
  font-weight: 700;
  color: #F5EDD6;
}

#newsletter p {
  font-size: 14px;
  font-weight: 600;
  color: #9A8A6A;
}

#newsletter p span {
  color: #C9A84C;
}

#newsletter .form {
  display: flex;
  width: 40%;
}

#newsletter input {
  height: 3.125rem;
  padding: 0 1.25em;
  font-size: 14px;
  width: 100%;
  border: 1px solid #2E2A22;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #1A1A1A;
  color: #F5EDD6;
}

#newsletter button {
  background-color: #C9A84C;
  color: #0D0D0D;
  font-weight: 700;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

#newsletter button:hover {
  background-color: #E0C97F;
}

/* ── Footer ── */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #0D0D0D;
  border-top: 1px solid #2E2A22;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

footer .logo {
  margin-bottom: 30px;
}

footer h4 {
  font-size: 14px;
  padding-bottom: 20px;
  color: #C9A84C;
}

footer p {
  font-size: 13px;
  margin: 0 0 8px 0;
  color: #9A8A6A;
}

footer a {
  font-size: 13px;
  text-decoration: none;
  color: #9A8A6A;
  margin-bottom: 10px;
}

footer .follow {
  margin-top: 20px;
}

footer .follow i {
  color: #8C6D2F;
  padding-right: 4px;
  cursor: pointer;
}

footer .install .row img {
  border: 1px solid #C9A84C;
  border-radius: 6px;
}

footer .install img {
  margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover {
  color: #C9A84C;
}

footer .copyright {
  width: 100%;
  text-align: center;
  color: #9A8A6A;
  border-top: 1px solid #2E2A22;
}

/* ── Shop Page ── */
#page-header {
  background-image: url("img/banner/ban7.png");
  background-position: top;
  width: 100%;
  height: 40vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 14px;
}

#page-header h2,
#page-header p {
  color: #F5EDD6;
}

#pagination {
  text-align: center;
}

#pagination a {
  text-decoration: none;
  background-color: #C9A84C;
  padding: 15px 20px;
  border-radius: 4px;
  color: #0D0D0D;
  font-weight: 600;
}

#pagination a:hover {
  background-color: #E0C97F;
}

#pagination a i {
  font-size: 16px;
  font-weight: 600;
}

/* ── Single Product ── */
#prodetails {
  display: flex;
  margin-top: 20px;
}

#prodetails .single-pro-image {
  width: 40%;
  margin-right: 50px;
  height: auto;
}

.small-img-group {
  display: flex;
  justify-content: space-between;
}

.small-img-col {
  flex-basis: 24%;
  cursor: pointer;
}

#prodetails .single-pro-details {
  width: 50%;
  padding-top: 30px;
}

#prodetails .single-pro-details h4 {
  padding: 40px 0 20px 0;
  color: #C9A84C;
}

#prodetails .single-pro-details h2 {
  font-size: 26px;
  color: #F5EDD6;
}

#prodetails .single-pro-details select {
  display: block;
  padding: 5px 10px;
  margin-bottom: 10px;
  background-color: #1A1A1A;
  color: #F5EDD6;
  border: 1px solid #2E2A22;
}

#prodetails .single-pro-details input {
  width: 50px;
  height: 47px;
  padding-left: 10px;
  font-size: 16px;
  margin-right: 10px;
  background-color: #1A1A1A;
  color: #F5EDD6;
  border: 1px solid #2E2A22;
}

#prodetails .single-pro-details input:focus {
  outline: none;
  border-color: #C9A84C;
}

#prodetails .single-pro-details button {
  background: #C9A84C;
  color: #0D0D0D;
  font-weight: 700;
}

#prodetails .single-pro-details button:hover {
  background: #E0C97F;
}

#prodetails .single-pro-details span {
  line-height: 25px;
  color: #9A8A6A;
}

/* ── Blog Page ── */
#page-header.blog-header {
  background-image: url("img/banner/b19.jpg");
  width: 100%;
  height: 40vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 14px;
}

#blog {
  padding: 150px 150px 0 150px;
}

#blog .blog-box {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  padding-bottom: 90px;
}

#blog .blog-img {
  width: 50%;
  margin-right: 40px;
}

#blog img {
  width: 80%;
  height: 300px;
  object-fit: cover;
}

#blog .blog-details {
  width: 50%;
}

#blog .blog-details a {
  text-decoration: none;
  font-size: 11px;
  color: #C9A84C;
  font-weight: 700;
  position: relative;
  transition: 0.3s;
}

#blog .blog-details a::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #C9A84C;
  position: absolute;
  top: 4px;
  right: -60px;
}

#blog .blog-details a:hover {
  color: #E0C97F;
}

#blog .blog-details a:hover::after {
  background-color: #E0C97F;
}

#blog .blog-box h1 {
  position: absolute;
  top: -40px;
  left: 0;
  font-size: 70px;
  font-weight: 700;
  color: #2E2A22;
  z-index: -9;
}

/* ── About Page ── */
#page-header.about-header {
  background-image: url(img/about/banner.png);
}

#about-head {
  display: flex;
  align-items: center;
}

#about-head img {
  width: 50%;
  height: auto;
}

#about-head div {
  padding-left: 40px;
}

#about-app {
  text-align: center;
}

#about-app .video {
  width: 70%;
  height: 100%;
  margin: 30px auto 0 auto;
}

#about-app .video video {
  width: 70%;
  height: 100%;
  border-radius: 20px;
}

/* ── Contact Page ── */
#contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact-details .details {
  width: 40%;
}

#contact-details .details span,
#form-details form span {
  font-size: 12px;
  color: #9A8A6A;
}

#contact-details .details h2,
#form-details form h2 {
  font-size: 26px;
  line-height: 35px;
  padding: 20px 0;
  color: #F5EDD6;
}

#contact-details .details h3 {
  font-size: 16px;
  padding-bottom: 15px;
  color: #C9A84C;
}

#contact-details .details li {
  list-style: none;
  display: flex;
  padding: 10px 0;
}

#contact-details .details li i {
  font-size: 14px;
  padding-right: 22px;
  color: #C9A84C;
}

#contact-details .details li p {
  margin: 0;
  font-size: 14px;
  color: #9A8A6A;
}

#contact-details .map {
  width: 55%;
  height: 400px;
}

#contact-details .map iframe {
  width: 100%;
  height: 100%;
}

#form-details {
  display: flex;
  justify-content: space-between;
  margin: 30px;
  padding: 80px;
  border: 1px solid #2E2A22;
  background-color: #141414;
}

#form-details form {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#form-details form input,
#form-details form textarea {
  width: 100%;
  padding: 12px 15px;
  outline: none;
  margin-bottom: 20px;
  border: 1px solid #2E2A22;
  background-color: #1A1A1A;
  color: #F5EDD6;
}

#form-details form input:focus,
#form-details form textarea:focus {
  border-color: #C9A84C;
}

#form-details form button {
  background-color: #C9A84C;
  color: #0D0D0D;
  font-weight: 700;
}

#form-details form button:hover {
  background-color: #E0C97F;
}

#form-details .people div {
  padding-bottom: 25px;
  display: flex;
  align-items: flex-start;
}

#form-details .people div img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-right: 15px;
}

#form-details .people div p {
  margin: 0;
  font-size: 13px;
  line-height: 25px;
  color: #9A8A6A;
}

#form-details .people div p span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #C9A84C;
}

/* ── Cart Page ── */
#cart {
  overflow-x: auto;
}

#cart table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  white-space: nowrap;
}

#cart table img {
  width: 70px;
}

#cart table td:nth-child(1) {
  width: 100px;
  text-align: center;
}

#cart table td:nth-child(2) {
  width: 150px;
  text-align: center;
}

#cart table td:nth-child(3) {
  width: 250px;
  text-align: center;
}

#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6) {
  width: 150px;
  text-align: center;
}

#cart table td:nth-child(5) input {
  width: 70px;
  padding: 10px 5px 10px 15px;
  background-color: #1A1A1A;
  color: #F5EDD6;
  border: 1px solid #2E2A22;
}

#cart table thead {
  border: 1px solid #2E2A22;
  border-left: none;
  border-right: none;
}

#cart table thead td {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  padding: 18px 0;
  color: #C9A84C;
}

#cart table tbody tr td {
  padding-top: 15px;
}

#cart table tbody td {
  font-size: 13px;
  color: #9A8A6A;
}

#cart-add {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#Coupon {
  width: 50%;
  margin-bottom: 30px;
}

#Coupon h3,
#subtotal h3 {
  padding-bottom: 15px;
  color: #F5EDD6;
}

#Coupon input {
  padding: 10px 20px;
  outline: none;
  width: 60%;
  margin-right: 10px;
  border: 1px solid #2E2A22;
  background-color: #1A1A1A;
  color: #F5EDD6;
}

#Coupon input:focus {
  border-color: #C9A84C;
}

#Coupon button,
#subtotal button {
  background-color: #C9A84C;
  color: #0D0D0D;
  font-weight: 700;
  padding: 12px 20px;
}

#Coupon button:hover,
#subtotal button:hover {
  background-color: #E0C97F;
}

#subtotal {
  width: 50%;
  margin-bottom: 30px;
  border: 1px solid #2E2A22;
  padding: 30px;
  background-color: #141414;
}

#subtotal table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

#subtotal table td {
  width: 50%;
  border: 1px solid #2E2A22;
  padding: 10px;
  font-size: 13px;
  color: #9A8A6A;
}

/* ── Preloader ── */
#preloader {
  background: #0D0D0D url(img/Rolling.gif) no-repeat center center;
  background-size: 5%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 1000;
}

/* ── Success Card ── */
#card0 {
  position: fixed;
  top: 40%;
  left: 42%;
  width: 320px;
  display: block;
  margin: auto;
  text-align: center;
  font-family: 'Source Sans Pro', sans-serif;
  z-index: 999;
}

#upper-side {
  padding: 2em;
  background: linear-gradient(135deg, #C9A84C, #8C6D2F);
  display: block;
  color: #0D0D0D;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

#checkmark {
  font-weight: lighter;
  fill: #0D0D0D;
  margin: -3.5em auto auto 20px;
}

#status {
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1em;
  margin-top: -0.2em;
  margin-bottom: 0;
  color: #0D0D0D;
}

#lower-side {
  padding: 2em 2em 5em 2em;
  background: #141414;
  display: block;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border: 1px solid #2E2A22;
  border-top: none;
}

#message {
  margin-top: -0.5em;
  color: #9A8A6A;
  letter-spacing: 1px;
}

#contBtn {
  position: relative;
  top: 1.5em;
  text-decoration: none;
  background: #C9A84C;
  color: #0D0D0D;
  font-weight: 700;
  margin: auto;
  padding: 0.8em 3em;
  box-shadow: 0px 15px 30px rgba(201, 168, 76, 0.25);
  border-radius: 25px;
  transition: all 0.4s ease;
}

#contBtn:hover {
  background: #E0C97F;
  box-shadow: 0px 15px 30px rgba(201, 168, 76, 0.45);
  transition: all 0.4s ease;
}

/* ── Responsive: Tablet ── */
@media (max-width: 799px) {
  .section-p1 {
    padding: 40px 40px;
  }

  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #1A1A1A;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.6);
    padding: 80px 0 0 10px;
    transition: 0.3s;
    border-left: 1px solid #2E2A22;
  }

  #navbar.active {
    right: 0px;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile i {
    color: #C9A84C;
    font-size: 24px;
    padding-left: 20px;
  }

  .dropdown {
    display: block;
  }

  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #C9A84C;
    font-size: 24px;
  }

  #lg-bag {
    display: none;
  }

  #hero {
    height: 70vh;
    padding: 0 80px;
    background-position: top 30% right 30%;
  }

  #feature {
    justify-content: center;
  }

  #feature .fe-box {
    margin: 15px 15px;
  }

  #product1 .pro-container {
    justify-content: center;
  }

  #product1 .pro {
    margin: 15px;
  }

  #banner {
    height: 20vh;
  }

  #sm-banner .banner-box {
    min-width: 100%;
    height: 30vh;
    padding: 30px;
  }

  #banner3 {
    padding: 0 40px;
  }

  #banner3 .banner-box {
    width: 28%;
  }

  #newsletter .form {
    width: 70%;
  }

  #form-details {
    padding: 40px;
  }

  #form-details form {
    width: 50%;
  }

  #preloader {
    background-size: 11%;
  }

  #card0 {
    position: fixed;
    top: 48%;
    left: 35%;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 447px) {
  .section-p1 {
    padding: 20px;
  }

  #header {
    padding: 10px 30px;
  }

  #hero h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  #hero {
    padding: 0 20px;
    background-position: 55%;
  }

  #feature {
    justify-content: space-between;
  }

  #feature .fe-box {
    width: 155px;
    margin: 0 0 15px 0;
  }

  #product1 .pro {
    width: 100%;
  }

  #banner {
    height: 40vh;
  }

  #sm-banner .banner-box {
    height: 40vh;
  }

  #sm-banner .banner-box2 {
    margin-top: 20px;
  }

  #banner3 {
    padding: 0 20px;
  }

  #banner3 .banner-box {
    width: 100%;
  }

  #newsletter {
    padding: 40px 20px;
  }

  #newsletter .form {
    width: 100%;
  }

  footer .copyright {
    text-align: start;
  }

  /* Single Product */
  #prodetails {
    display: flex;
    flex-direction: column;
  }

  #prodetails .single-pro-image {
    width: 100%;
    margin-right: 0px;
  }

  #prodetails .single-pro-details {
    width: 100%;
  }

  /* Blog Page */
  #blog {
    padding: 100px 20px 0 20px;
  }

  #blog .blog-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #blog .blog-img {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 30px;
  }

  #blog .blog-details {
    width: 100%;
  }

  /* About Page */
  #about-head {
    flex-direction: column;
  }

  #about-head img {
    width: 100%;
    margin-bottom: 20px;
  }

  #about-head div {
    padding-left: 0px;
  }

  #about-app .video {
    width: 100%;
  }

  /* Contact Page */
  #contact-details {
    flex-direction: column;
  }

  #contact-details .details {
    width: 100%;
    margin-bottom: 30px;
  }

  #contact-details .map {
    width: 100%;
  }

  #form-details {
    margin: 10px;
    padding: 30px 10px;
    flex-wrap: wrap;
  }

  #form-details form {
    width: 100%;
    margin-bottom: 30px;
  }

  #preloader {
    background-size: 15%;
  }

  #card0 {
    position: fixed;
    top: 52%;
    left: 10%;
    width: 300px;
  }
}