@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --bg-color: #fef7e5;
  --text-1: #000;
  --text-2: #000;
  --light: #fff;
  --dark: #000;
  --transition: all 0.4s ease-in-out;
  --primary-font: "Libre Caslon Text", serif;
  --secondary-font: "Inter", sans-serif;
  /* --primary: #3A494D; */
  --primary: #AAD8EE;
  --light: #fff;
  --transition: all 0.3s ease-in-out;
  --text: rgba(255, 255, 255, 0.75);
  --text-b: rgba(0, 0, 0, 0.75);
  --sale: #b62727;
  --woo-title: #1E2525;

}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 20px;
  margin: 0;
  background-color: #FAF7F0;
  color: var(--text-2);
  overflow-x: clip;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: var(--primary-font);
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -1%;
  color: var(--text-1);
}

img {
  max-width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

a,
a:active,
a:hover {
  text-decoration: none;
  outline: unset !important;
  box-shadow: unset !important;
  transition: var(--transition);
}

p {
  font-size: 16px;
  color: var(--text-2);
  margin: 0 0 6px;
  line-height: 1.4;
  font-weight: 400;
  font-family: var(--secondary-font);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
}

.wrapper,
.wrapper-medium,
.wrapper-small {
  max-width: 1840px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.wrapper-medium {
  max-width: 1620px;
}

.wrapper-small {
  max-width: 1440px;
}

.wrapper-large {
  max-width: 1620px;
}

.wrapper-xsmall {
  max-width: 1230px;
}

.padding-tb-large {
  padding: clamp(50px, 6vw, 100px) 0;
}

.padding-tb {
  padding: clamp(35px, 5vw, 75px) 0;
}

.padding-tb-small {
  padding: clamp(35px, 5vw, 55px) 0;
}

.padding-t {
  padding-top: clamp(35px, 5vw, 75px);
}

.padding-t-small {
  padding-top: clamp(25px, 5vw, 60px);
}

.padding-b {
  padding-bottom: clamp(35px, 5vw, 75px);
}

/* Common section start */
h1 {
  font-size: clamp(38px, 4vw, 58px);
}

h2 {
  font-size: clamp(28px, 3vw, 36px);
}

h3 {
  font-size: clamp(24px, 2vw, 32px);
}

img {
  max-width: 100%;
  display: block;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-wrap {
  margin-bottom: clamp(28px, 3vw, 40px);
}

.btn {
  box-sizing: border-box;
  font-family: var(--secondary-font);
  border-radius: 5px;
  padding: 14px 54px;
  display: flex;
  transition: 0.2s background;
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0.9;
  white-space: nowrap;

}

.btn:hover {
  background: #fff;
  color: #1c1c1e;
}

.btn.blue,
.btn.white:hover {
  background-color: #AAD8EE;
  color: #3A494D;
  border-color: #AAD8EE;
}

.btn.blue:hover,
.btn.white {
  background-color: #fff;
  color: #1c1c1e;
  border-color: #fff;
}

.flex {
  display: flex;
}

.flex-between {
  justify-content: space-around;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.flex-center {
  justify-content: center;
}

.flex-middle {
  align-items: center;
}

.div-center,
.btn-center {
  margin: 0 auto;
}

.grid-two,
.grid-three,
.grid-four {
  display: grid;
  gap: 1.5rem;
}

/* .grid-two {
  grid-template-columns: repeat(2, minmax(250px, 1fr));
}

.grid-three {
  grid-template-columns: repeat(3, minmax(250px, 1fr));
}

.grid-four {
  grid-template-columns: repeat(4, minmax(250px, 1fr));
}

@media (max-width: 768px) {

  .grid-two,
  .grid-three,
  .grid-four {
    grid-template-columns: 1fr;
  }
} */
.grid-two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-three {
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
}

.grid-four {
  grid-template-columns: repeat(4, minmax(250px, 1fr));
}

@media (max-width:1380px) {
  .grid-four {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }
}

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 0.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin: 0;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}


.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

.gallery-icon {
  width: 100%;
  height: 225px;
}

.gallery-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery {
  margin: 30px 0;
}

.section-wrap.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.slick-slide {
  margin: 0 14px;
}

.slick-list {
  margin: 0 -14px;
}

.slick-arrow {
  border: 1px solid #00000026;
  width: 40px;
  height: 40px;
  background-color: var(--light);
  border-radius: 50%;
  z-index: 1;
  opacity: 100%;
  transition: var(--transition);
}

.slick-prev::before,
.slick-next::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #3b3b3b;
  transition: var(--transition);
  font-size: 16px;
}

.slick-prev::before {
  content: "\f053";
}

.slick-arrow:hover {
  background: var(--primary) !important;
}

.slick-arrow:hover::before {
  color: var(--light) !important;
}

.slick-next {
  right: -95px;
}

.slick-prev {
  left: -95px;
}

button {
  outline: unset !important;
  box-shadow: unset !important;
}

input,
select,
textarea {
  outline: unset !important;
  width: 100%;
  padding: 12px 15px;
  background-color: var(--light);
  border-radius: 5px;
  border: 1px solid #0000001A;
  font-family: var(--secondary-font);
  font-size: 12px;
  font-weight: 600;
}

ins {
  background: unset;
}

.search-results .page-header {
  margin-bottom: 30px;
  text-align: center;
}

.search-results .page-header h1 {
  font-size: clamp(28px, 3vw, 38px);
}

.error-404-wrapper {
  text-align: center;
}

.error-404-wrapper h1 {
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 700;
  margin: 0 0 10px;
}

.error-404-wrapper p {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 18px);
}

.error-404-wrapper .primary-btn {
  margin: 20px auto 0;
  width: fit-content;
}

header.entry-header {
  margin-bottom: clamp(15px, 2vw, 25px);
}

.default__section .wrapper-medium {
  max-width: 1024px;
}

.default__section .post-thumbnail {
  margin-bottom: 20px;
}

.default__section .content__area h2,
.default__section .content__area h3 {
  margin-bottom: 14px;
}

.default__section .content__area p {
  margin: 0 0 8px;
}

.default__section .content__area p:last-child {
  margin-bottom: 0;
}

/* Common section end */

/* Header start */
.site-header {
  border-bottom: 1px solid #e5e5e5cb;
}

.top-header {
  padding: 8px 20px;
  background-color: #F3D5C2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.top-header p {
  color: #49403A;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -2%;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 15px 0;
  background-color: #FAF7F0;
}

.site-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* .main-navigation,
.header-right {
  width: 40%;
} */

.site-branding {
  width: 20%;
  display: flex;
  justify-content: center;
}

.site-branding img {
  max-width: 70px;
  height: auto;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

}

.header-search {
  max-width: 308px;
  min-width: 308px;
}

.header-search form {
  position: relative;
  width: 100%;
}

.header-search form input {
  border: 1px solid #0000001A;
  border-radius: 5px;
}

.header-search form button {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #1E2525;
  border: 1px solid #1E2525;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
  padding: 8px 10px;
}

.header-cart {
  position: relative;
  width: fit-content;
}

.header-cart svg {
  min-width: 22px;
}

.header-cart span {
  display: block;
  width: 12px;
  height: 12px;
  font-weight: 700;
  color: var(--light);
  font-size: 9px;
  background-color: #000;
  position: absolute;
  right: -2px;
  top: -1px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-navigation #primary-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.main-navigation #primary-menu a {
  /* color: var(--text-1); */
  color: #585654;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -2%;
}

.main-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-navigation ul li {
  position: relative;
}

.main-navigation #primary-menu>.current_page_item>a,
.main-navigation #primary-menu>li:hover>a,
.main-navigation #primary-menu>li li:hover>a,
.main-navigation #primary-menu>li a:hover {
  color: var(--primary);
}

#primary-menu .sub-menu {
  position: absolute;
  min-width: 270px;
  background-color: var(--light);
  border-radius: 6px;
  top: 45px;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 6px;
  visibility: hidden;
  transform: translateY(50px);
  transition: var(--transition);
  z-index: -1;
}

#primary-menu .sub-menu::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -22px;
  left: 0;
}

#primary-menu .sub-menu a {
  padding: 10px 16px;
  display: block;
}

#primary-menu>li.menu-item-has-children>.sub-menu>li>.sub-menu {
  left: 100% !important;
  top: 10px !important;
  margin-left: 10px;
}

#primary-menu>li.menu-item-has-children:hover>.sub-menu,
#primary-menu>li.menu-item-has-children>.sub-menu>li:hover>.sub-menu {
  visibility: visible;
  transform: translateY(0);
  z-index: 1;
}

#primary-menu>li.menu-item-has-children>a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  color: var(--text);
  margin-left: 6px;
}

#primary-menu .sub-menu>li.menu-item-has-children>a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  font-size: 14px;
  top: 50%;
  right: 6px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Offcanvas */
.uk-offcanvas .uk-offcanvas-bar {
  background: #FAF7F0;
  padding: 0;
}

.uk-offcanvas-overlay::before {
  background: rgba(0, 0, 0, 0.68);
}

.uk-offcanvas.uk-open .uk-offcanvas-bar {
  max-width: 401px !important;
  width: 100%;
}

/* .uk-offcanvas .uk-offcanvas-close {
  top: 65px;
  right: 20px;
} */
.uk-offcanvas-close {
  position: absolute;
  top: 45px;
  right: 15px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black !important;
}

/* .uk-offcanvas-close svg {
  color: var(--light);
} */

.offcanvas__content {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  height: 100%;
}

.uk-offcanvas #primary-menu1 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.uk-offcanvas #primary-menu1 ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.uk-offcanvas #primary-menu1 a {
  color: var(--text-1);
  font-size: 18px;
  font-weight: 500;
  padding: 12px 25px;
  display: block;
  position: relative;
}

.uk-offcanvas #primary-menu1 .current-menu-item>a {
  background-color: var(--primary);
  color: var(--light);
}

.uk-offcanvas #primary-menu1 .current-menu-item .submenu-toggle i {
  color: var(--light);
}

.uk-offcanvas #primary-menu1>li>ul>li>a {
  padding-left: 48px;
}

.uk-offcanvas #primary-menu1>li>ul>li>ul>li>a {
  padding-left: 64px;
}

.offcanvas__content #primary-menu1>li>ul,
.offcanvas__content #primary-menu1>li>ul>li>ul {
  display: none;
  padding: 0;
  position: relative;
  z-index: 1;
  border-radius: 0;
}

#primary-menu1 li.menu-item-has-children {
  position: relative;
}

.submenu-toggle {
  padding: 10px 20px;
  position: absolute;
  top: 0px;
  right: 12px;
  cursor: pointer;
}

.submenu-toggle i {
  color: #454545;
  font-size: 18px;
}

.offcanvas__content #primary-menu1>li,
.offcanvas__content #primary-menu1 .sub-menu>li:not(:last-child) {
  border-bottom: 1px solid #97989e;
}

.offcanvas__content #primary-menu1>li:first-child,
.offcanvas__content #primary-menu1 .sub-menu {
  border-top: 1px solid #97989e;
}

.offcanvas__logo {
  padding: 20px;
  padding-top: 25px;
}

.offcanvas__logo img {
  height: 69px;
  width: auto;
}

/* .uk-offcanvas-close svg path,
.uk-offcanvas-close svg {
  fill: #454545 !important;
}

.uk-offcanvas-close svg:last-child {
  display: none;
} */

.social-media-wrapper {
  padding: 25px;
  padding-bottom: 40px;
}

.social-media-wrapper span {
  font-size: 16px;
  color: #000000;
  text-align: center;
  display: block;
  margin-bottom: 14px;
}

.offcanvas__content .social-media {
  justify-content: center;
}

.offcanvas__content .social-media a {
  border: 0.2px solid #00000063;
}

.offcanvas__content .contact-detail {
  flex-direction: column;
  align-items: start;
  padding: 20px;
  gap: 15px;
  padding-top: 25px;
}

.offcanvas__content .contact-detail span a,
.offcanvas__content .contact-detail span {
  color: var(--text-1);
  font-weight: 500;
  align-items: start;
}

.offcanvas__content .contact-detail span svg path {
  fill: #000000c0;
}

.offcanvas__content .contact-detail span div {
  min-width: 24px;
  text-align: center;
}



/* added off canvas css */
.offcanvas__search {
  padding: 0 20px 25px;
}

.offcanvas__search form {
  position: relative;
}

.offcanvas__search input {
  width: 100%;
  height: 50px;
  border: 1px solid #0000001A;
  border-radius: 5px;
  padding: 0 55px 0 15px;
  background: #fff;
}

.offcanvas__search button {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
  border: 0;
  background: #1E2525;
  border-radius: 0 5px 5px 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger-toggle {
  width: 19px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: none;
}

.hamburger-toggle span {
  /* display: block;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease; */
  height: 2px;
  background: #1E2525;
  border-radius: 2px;
}

.offcanvas__search button svg {
  width: 18px;
  height: 18px;
}

/* Offcanvas */

/* Header end */

/* Footer start */
.site-footer {
  padding-bottom: clamp(20px, 2vw, 30px);
}

.site-footer .footer-top {
  position: relative;

}

.site-footer .footer-top::before {
  content: "";
  position: absolute;
  width: 314px;
  height: 262px;
  background: url("../img/footer-vector.png") no-repeat center/contain;
  right: 0;
  bottom: 5px;

}

.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 
.footer-widget ul li,
.footer-widget ul li p,
.footer-widget ul li a,
.site-info p,
.site-info p a {
  font-size: 18px;
  color: #000;
}

.footer-widget ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-widget ul li a:hover,
.site-info a:hover {
  color: var(--primary);
}

.site-info {
  border-top: 1px solid #cccccc;
  margin-top: clamp(20px, 3vw, 45px);
  padding-top: clamp(15px, 2vw, 25px);
}

.site-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  row-gap: 10px;
}

.site-info p {
  margin: 0;
}

.site-info .social-media {
  display: none;
} */




/* Footer end */

@media (max-width: 1600px) {
  .sticky-sidebar {
    right: 15px;
  }

  .slick-next {
    right: -45px;
  }

  .slick-prev {
    left: -45px;
  }
}

@media (max-width: 1400px) {
  .slick-next {
    right: -15px;
  }

  .slick-prev {
    left: -15px;
  }

  .site-footer-wrapper .footer-widget:first-child {
    flex: 1.5;
  }

  .hamburger-toggle {
    display: flex;
  }

  .header-search,
  .main-navigation #primary-menu {
    display: none;
  }
}

@media (max-width: 1024px) {
  #site-navigation {
    display: none;
  }

  .site-footer-wrapper .footer-widget:first-child {
    display: none;
  }
}

@media (max-width: 989px) {
  .slick-slide {
    margin: 0 10px;
  }

  .slick-list {
    margin: 0 -10px;
  }

  .site-footer-wrapper .footer-widget {
    flex: unset;
    width: calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .slick-slide {
    margin: 0 5px;
  }

  .slick-list {
    margin: 0 -5px;
  }
}

@media (max-width: 567px) {
  .footer-widget {
    padding: 20px 0;
    border-bottom: 1px solid #d9d9d9;
  }

  .footer-widget h3 {
    cursor: pointer;
    position: relative;
    margin: 0;
  }

  .footer-widget .footer-accordion {
    margin-top: 18px;
  }

  .footer-widget h3::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 16px;
    position: absolute;
    right: 0;
    color: #606060;
  }

  .footer-widget h3.open::after {
    content: "\f077";
  }

  .site-footer-wrapper {
    gap: 0;
  }

  .site-footer-wrapper .footer-widget {
    width: 100%;
  }
}

@media (max-width: 400px) {}




footer {
  background: #1E2525;
  color: #b0b5bc;
  padding: 60px 40px 0;
}


.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr 1fr;
  gap: 40px 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.footer-logo {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  display: inline-block;
}

.footer-logo span {
  display: block;
}

.footer-logo .logo-line {
  display: block;
  width: 28px;
  height: 1.5px;
  background: #fff;
  margin: 4px 0;
}

.footer-brand p {
  line-height: 1.6;
  color: #8a9099;
  max-width: 240px;
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0%;
}


.footer-illustration {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 0.25;
}

.footer-illustration svg {
  width: 120px;
  height: auto;
}


.footer-col h4 {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #FAF7F0;
  opacity: 0.9;

}

.footer-col ul {
  list-style: none;
  padding-left: 0 !important;
}



.footer-col ul li a {
  color: #8a9099;
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0%;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* ── Social icons ── */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.footer-social a {
  color: #8a9099;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: #fff;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  color: white;
}

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}

.footer-bottom p,
.footer-bottom a {
  color: #DDDEDE;
  text-decoration: none;
  height: 10px;
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom a:hover {
  color: #8a9099;
}

.footer-bottom-links {
  display: flex;
  gap: 32px;
}

.footer-logo img {
  width: 70px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-bottom-links ul {
  display: flex;
  gap: 85px;
  margin: 0;
  padding: 0;
}

/* ══════════════════════════════
       Responsive
    ══════════════════════════════ */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
  }

  .footer-illustration {
    display: none;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 48px 28px 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 100%;
  }

}

@media (max-width: 680px) {
  .gallery-columns-4 {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

@media (max-width: 480px) {
  footer {
    padding: 40px 20px 0;
  }

  .footer-brand {
    flex: 100%;
  }


  .footer-top {
    gap: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 8px;
  }
}