/*:root {
  --primary-color: #99734f;
  --secondary-color: #39312e;
  --dark-beige: #765334;
  --light-bg: #efefef;
  --text-dark: #333333;
  --text-light-grey: #5E5B5B;
  --text-light: #ffffff;
}
* {
  margin: 0;
  padding: 0;
}
body{
    background: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6{
  font-family: "Figtree", sans-serif;
}

body, p, a, span, li{
    font-family: 'Noto Sans Arabic', sans-serif;
}
*/
.footersection a {
  position: relative;
  text-decoration: none;
  color: #a7a7a7;
}

.footersection a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #c7c7c7;
  transition: width 0.3s ease;
}
.footersection a:hover::after {
  width: 100%;
}




/* background image fixed */


.footersection {
  background-color: #fff;
  width: 100%;
  position: relative;
}

footersection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../imaes/Dark-Brown-1.jpg");
  background-position-x:  center;
  background-position-y: 30%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  bottom: 0px;
  opacity: 1;
  z-index: -1;
  filter: brightness(1) invert(1);
}

.footersection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/Dark-Brown-1.jpg");
  background-position-x:  center;
  background-position-y: 35%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  bottom: 0px;
  opacity: 0.9;
  z-index: -1;
  filter: contrast(1) brightness(3) saturate(0);
}

/* three top column start*/
.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  padding: 0px 10%;
}
.footertopcolumn1, .footertopcolumn2, .footertopcolumn3 {
  background: var(--dark-beige);
  padding: 20px;
  text-align: center;
  color: var(--light-bg);
}
.footertopcolumn3 {
  padding-top: 50px;
}

.footertopcolumn1, .footertopcolumn2{
    border-right: 1px solid var(--light-bg);
}
.footertopcolumn1 .special__icon-box, .footertopcolumn2 .special__icon-box{
    width: 52px;
    height: 52px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background-color: var(--light-bg);
    transition: all 500ms ease;
    margin: 0 auto 30px auto; 
}

.footertopcolumn1 .special__icon-box__icon, .footertopcolumn2 .special__icon-box__icon, .footertopcolumn3 .special__icon-box__icon {
    display: inline-flex;
    font-size: 25px;
    color: var(--dark-beige);
}
.footertopcolumn1 .special__icon-box__icon::after, .footertopcolumn2 .special__icon-box__icon::after, .footertopcolumn3 .special__icon-box__icon::after {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top: 46.4px;
    left: 19px;
    transform: rotate(90deg);
    border-style: solid;
    border-width: 12.5px 0 12.5px 13px;
    border-color: transparent transparent transparent var(--secondary-color);
    transition: all 500ms ease;
}


.footertopcolumn1:hover .special__icon-box, .footertopcolumn2:hover .special__icon-box, .footertopcolumn3:hover .special__icon-box{
    background-color: var(--secondary-color);
}
.footertopcolumn1:hover .special__icon-box__icon::after, .footertopcolumn2:hover .special__icon-box__icon::after, .footertopcolumn3:hover .special__icon-box__icon::after{
    border-color: transparent transparent transparent var(--light-bg);
}
.three-columns h5{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}
.three-columns a{
    font-size: 14px;
    color: var(--light-bg);
}
.three-columns a::after {
  background: var(--dark-beige);
}
.footertopcolumn3 .footersocial{
  visibility: hidden;
}


/*form*/
.footer-subscribe { margin-top:20px;display: flex; justify-content: center;}
.footer-subscribe input{background: #5f432abf; lex:1; padding:8px; border-radius:7px; border:2px solid #5f432a; color: var(--light-bg);}
.footer-subscribe input:focus{outline:#5f432a;background: #5f432abf;}
.footer-subscribe input::placeholder {color: #a7a7a7;}
.footer-subscribe button{ padding:9.2px 18px; background:#fafafa; color:#765334; border-radius:4px; border:none; cursor:pointer; }
.footer-subscribe .success{color: #279a3a; margin-bottom:8px; text-shadow: 1px 1px 3px rgba(113, 113, 113, 0.5); }
.footer-subscribe .error{ color:#b90303; margin-top:6px; font-size:16px;  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);}
.footerformfields{display:flex; gap:8px;max-width:320px;}

/* Loader inside button */
.footerbtn-loader {
  border: 2px solid var(--dark-beige);
  border-top: 2px solid transparent;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 6px;
  animation: subscribespin 1s linear infinite;
  vertical-align: middle;
}

@keyframes subscribespin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}





@media (max-width: 768px) {
 .three-columns {
    grid-template-columns: 3fr;
 }
.footertopcolumn1 .special__icon-box__icon::after, .footertopcolumn2 .special__icon-box__icon::after, .footertopcolumn3 .special__icon-box__icon::after {
    top: 22%;
    right: -13px !important;
    left: unset;
    transform: rotate(0deg);
}
.footertopcolumn1, .footertopcolumn2, .footertopcolumn3 {
  text-align: left ;
  display: flex;
}
.footertopcolumn1, .footertopcolumn2{
    border-right: none;
}
.footertopcolumn2, .footertopcolumn3{
  padding-top: 0;
}
.footertopcolumn1, .footertopcolumn2, .footertopcolumn3{
  padding-left: 40px;
}
.footertopcolumn1 .special__icon-box, .footertopcolumn2 .special__icon-box {
    margin: 0 30px 0 0; 
    width: 42px;
    height: 42px;
}
.three-columns h5{
    font-size: 14px;
}
.three-columns a{
    font-size: 12px;
    color: var(--light-bg);
}
.footertopcolumn3{
  display: block;
}
.footer-subscribe { 
  justify-content: left;
  margin-top: 10px;
}
}


@media (max-width:450px){
.footerformfields{
  flex-wrap: wrap;
}
}


@media (max-width:330px){
.footertopcolumn1, .footertopcolumn2, .footertopcolumn3{
  padding-left: 15px;
}
.three-columns h5{
    font-size: 12px;
}
.footertopcolumn1 .special__icon-box, .footertopcolumn2 .special__icon-box {
    margin: 0 20px 0 0; 
    width: 32px;
    height: 32px;
}
}




/* four mid columns start */
p.footerheading {
  font-size: 20px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 20px;
}

p.footerheading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 15px); /* line ki width dot se pehle tak */
  height: 1.5px;
  background: var(--secondary-color);
}

p.footerheading::before {
  content: "";
  position: absolute;
  right: 5px;
  bottom: -2px; /* line ke sath align */
  width: 4px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 50%; 
}


.footermidcol1{
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr auto 1fr;
    margin-bottom: 20px;
}

.midcol2{
    width: fit-content;
    padding: 0px 10px;
    color: var(--text-dark);
}


.footerthreecols{
  margin: 30px 10% 0 10%;
}


/* column 1 */
.midcol1 img{
    width: 130px;
    filter: sepia(1) saturate(230%) hue-rotate(342deg) brightness(1);
}
.midcol1 a::after {
  background: transparent;
}
.midcol1 p{
    font-size: 14px;
    margin-top: 20px;
    color: var(--text-dark);
}
p.stayconnect{
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 20px;
}
.footersocial{
    margin: 10px 0px 0px 0px;
    display: flex;
    gap: 5px;
}
.footersocial .footericon {
  width: 28px;
  height: 28px;
  border-radius: 25px;
  text-align: center;
  align-content: center;
  transition: background 0.5s ease;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background: var(--secondary-color);
}

.footersocial .footericon:hover {
  background: var(--primary-color);
}

.footersocial .footericon i {
  font-size: 12px;
  color: var(--primary-color);
  margin-top: 2px;
}

.footersocial .footericon:hover i {
  animation: footericonPopBack 0.3s ease forwards;
  color: var(--light-bg);
}

@keyframes footericonPopBack {
    0% {
        transform: translateY(160%);
        opacity: 0;
    }
    70% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* column 2 */
.midcol2 p{
  margin-top: 60px;
}
.footerlink a {
  color: var(--text-dark);
  display: block;
  margin-top: 10px;
  width: fit-content;
}
.footerlink a:hover{
    color: var(--dark-beige);
}
.footerlink a::after{
    background: var(--dark-beige);
}




/* column3 */

.midcol3 p{
  margin-top: 60px;
  width: fit-content;
  color: var(--text-dark);
}
.footerproductcat{
  display: flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
  margin-bottom: 10px;
}
.footerproductcat a{
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.footerproductcat a:hover{
  transform: translateY(-5px);
}
.footerproductcat a::after {
  background: #c7c7c700;
}
.footercategories{
  text-align: center;
}
.footercategories img{
  height: 50px;
  width: 50px;
  margin-top: 10px;
  border-radius: 10px;
}
.footercategories p{
  margin-top: 0;
  font-size: 13px;
}


@media (max-width: 800px) {
.footermidcol1 {
    grid-template-columns: 1fr auto 8fr;
    grid-template-areas:
      "midcol1 midcol1 midcol1"
      "midcol2 midcol3 midcol3";
  }

.midcol1 { grid-area: midcol1; }
.midcol2 { grid-area: midcol2; width: fit-content; }
.midcol3 { grid-area: midcol3; }
.footermidcol1{
  gap: 0;
}
.midcol1{
  text-align: center;
}
.midcol1 img{
    width: 80px;
}
.midcolcontent{
  text-align: center;
  justify-content: center;
  justify-items: center;
  margin-bottom: 20px;
}
.midcol2{
    padding: 0px 20px 0px 0px;
}
.midcol2 p{
  margin-top: 0px;
}
.midcol3{
  padding-left: 10px;
}
.midcol3 p{
  margin-top: 0px;
}
}
@media (max-width: 450px){
p.footerheading {
  font-size: 14px !important;
}
.footercategories img{
  height: 40px;
  width: 40px;
  margin-top: 10px;
  border-radius: 10px;
}
.footercategories p{
  margin-top: 0;
  font-size: 10px;
}
}
/* four mid columns end */





/* store section start */
.footerour-stores {
  padding: 0px 10% 60px 10%;
}

.footershops {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
}


.footershop {
  display: flex;
  flex-direction: column;
}

.footershop h5 {
  color: var(--secondary-color);
  font-size: 12px;
  margin-bottom: 3px;
  font-weight: bold;
}
.footershop a {
  color: var(--text-dark);
  font-size: 12px;
  flex-grow: 1;
  text-transform: lowercase;
}
.footershop a::after{
  background: #00000000;
}
@media (max-width:500px){
.footershops {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width:639px){
.footerour-stores {
  padding: 0px 10% 90px 10%;
}
}
/* store section end */





/* footer bottom section start */
.footerbottomsection{
    bottom: 0px;
    position: sticky;
    width: 100%;
    display: flex;
    
    ackground-color: #000000d6;
}
.footerbottombox{
    padding: 10px 50px;
    position: relative;
    font-size: 14px;
    color: var(--light-bg);
    background-color: var(--dark-beige);
    width: 60%;
}
.footerbottombox::after {
    right: -29px;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.footerbottombox::after {
    content: "";
    width: 30px;
    height: 100%;
    background-color: var(--dark-beige);
    position: absolute;
    top: 0px;
}
.footerbottombox a{
    font-weight: bold;
    color: var(--light-bg);
    text-decoration: none;
}

.footerlinks{
    text-align: right;
    right: 30px !important;
    position: absolute;
    bottom: 10px;
}
.footerlinks a {
  font-size: 14px;
  color: #c7c7c7;
}
.footerlinks a:hover{
  font-size: 14px;
  color: var(--primary-color);
}
.footerlinks a::after {
  background: var(--primary-color);
}
.footerlinks .linkno2{
    margin-top: 5px;
}
@media (min-width: 640px) and (max-width: 917px){
.footerbottombox span{
    display: none;
}
.footerbottombox{
    padding: 10px 50px;
    position: relative;
    font-size: 12px;
    color: var(--light-bg);
    background-color: var(--dark-beige);
    width: 55%;
}
}
@media (max-width: 639px){
.footerbottombox span{
    display: none;
}
.footerbottombox{
    padding: 10px 2%;
    font-size: 11px;
    width: 80%;
}
.footerlinks{
    text-align: right;
    right: 30px !important;
    position: absolute;
    bottom: 60px;
    display: flex;
    gap: 20px;
}
.footerlinks a {
  font-size: 12px;
}
.footerlinks .linkno2{
    margin-top: 0px;
    border-left: 1px rgb(91, 90, 90) solid;
    padding-left: 15px;
}
}
/* footer bottom section end */










