/* =========================
   RESET
========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   ROOT VARIABLES (BRAND)
========================= */
:root {
  --black: #000000;
  --brown: #5A3E2B;
  --dark-brown: #2B1E16;
  --beige: #E8E1D9;
  --ivory: #F7F5F2;
  --gold: #C6A76E;

  --container: 1200px;
  --container-sleek: 1400px;

  --spacing-lg: 100px;
  --spacing-md: 70px;
  --spacing-sm: 40px;
}

/* =========================
   BASE
========================= */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--ivory);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

h1 { font-size: 3rem; line-height: 1.2; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

p {
  font-size: 0.95rem;
  color: #444;
}

/* =========================
   CONTAINERS
========================= */

/* Normal Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Sleek / Premium Wide Container */
.container-sleek {
  max-width: var(--container-sleek);
  margin: 0 auto;
  padding: 0 40px;
}

/* Full Width */
.container-full {
  width: 100%;
  padding: 0 40px;
}

/* =========================
   FLEX UTILITIES
========================= */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-start {
  display: flex;
  align-items: flex-start;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-sm { gap: 15px; }
.gap-md { gap: 30px; }
.gap-lg { gap: 50px; }

/* =========================
   SECTIONS
========================= */
.section {
  padding: var(--spacing-lg) 0;
}

.section-sm {
  padding: var(--spacing-md) 0;
}

.section-xs {
  padding: var(--spacing-sm) 0;
}

.section-beige {
  background: var(--beige);
}

.section-dark {
  background: var(--dark-brown);
  color: white;
}

.t-left {
    text-align: left !important;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 1000;
  transition: 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0,0,0,0.85);
}

.nav-inner {
  max-width: var(--container-sleek);
  margin: auto;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 0.85rem;
}

/* =========================
   HERO
========================= */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-left: 5%;
  display: flex;
  align-items: center;
  color: white;
}

.hero-content {
  max-width: 500px;
}

/* =========================
   BUTTON
========================= */
.btn {
    display: inline-block;
    padding: 8px 26px;
    background: var(--brown);
    color: white;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s ease;
    text-align: center;
    border-radius: 4px;
}

.btn:hover {
  background: var(--dark-brown);
  color: var(--ivory);
}

/* =========================
   PRODUCT FLEX GRID
========================= */
.products {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.product {
  width: calc(25% - 22.5px);
  cursor: pointer;
}

.product img {
  transition: 0.5s ease;
}

.product:hover img {
  transform: scale(1.05);
}

.product-title {
  margin-top: 10px;
  font-size: 0.9rem;
}

.product-price {
  font-size: 0.85rem;
  color: var(--brown);
}

/* =========================
   CATEGORY BLOCK
========================= */
.category {
  position: relative;
  overflow: hidden;
}

.category img {
  transition: 0.6s ease;
}

.category:hover img {
  transform: scale(1.08);
}

/* =========================
   ANIMATIONS
========================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   FOOTER
========================= */
.footer {
  background: var(--black);
  color: white;
  padding: 80px 40px;
}

.footer-inner {
  max-width: var(--container);
  margin: auto;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: 0.85rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .product {
    width: calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .product {
    width: 100%;
  }

  h1 { font-size: 2.2rem; }

  .container-sleek {
    padding: 0 20px;
  }
}


/* Mega Menu */

/* =========================
   NAVBAR BASE
========================= */
.navbar {
    width: 100%;
    padding: 18px 0;
    background: #f7f5f2;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* MAIN CONTAINER */
.nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 40px;

  display: flex;
  align-items: center;
}

/* =========================
   LOGO (LEFT FLEX BASIS)
========================= */
.nav-logo {
  flex: 1;
}

.nav-logo img {
    height: 20px;
    width: auto;
}

/* =========================
   MENU (CENTER FLEX)
========================= */
.nav-menu {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 12.5px;
    color: #4c4039;
}

.nav-menu a {
    transition: 0.2s ease;
    letter-spacing: 0.6px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: #2B1E16;
    border-bottom: 2px solid #4c4039;
}

/* HOVER → BOLD */

/* =========================
   ACTIONS (RIGHT FLEX)
========================= */
.nav-actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.nav-actions img {
    height: 20px;
    width: 20px;
    cursor: pointer;
    transition: 0.2s ease;
}

/* =========================
   RESPONSIVE (SAFE)
========================= */
@media (max-width: 1000px) {
  .nav-menu {
    display: none;
  }
}


/* =========================
   HERO SECTION WRAP
========================= */
.hero-section {
    padding-top: 100px;
    position: relative;
    padding-bottom: 70px;
}

.slide-controll {
    position: absolute;
    top: 50%;
    /* left: 50%; */
    transform: translate(-50%);
    z-index: 1;
    cursor: pointer;
}

.slide-controll.right {
    right: 0;
}
.slide-controll.left {
    left: 30px;
}

.hero-wrap {
    display: flex;
    gap: 40px;
    height: 500px;
}

/* =========================
   LEFT (4/12)
========================= */
.hero-left {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    padding: 15px;
    justify-content: space-between;
}

/* PRODUCT IMAGE */
.hero-product-img img {
    width: 180px;
    height: auto;
    margin: auto;
}

/* CATEGORY */
.hero-category {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: #5A3E2B;
}

/* TITLE */
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
}

/* FEATURES */
.hero-features {
  display: flex;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.feature img {
  width: 18px;
  height: 18px;
}

/* DESCRIPTION */
.hero-desc {
  font-size: 13px;
  color: #666;
  max-width: 300px;
}

/* =========================
   RIGHT (8/12)
========================= */
.hero-right {
    width: 75%;
}

/* VIDEO WRAP */
.hero-video-wrap {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 4px;
}

/* VIDEO */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY TEXT */
.hero-video-overlay {
    position: absolute;
    bottom: 0px;
    left: 0;
    color: white;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.36) 50%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    padding: 20px;
}

.hero-video-overlay p {
    color: white;
    font-size: 13px;
    width: 400px;
}

.hero-video-overlay h2 {
    font-size: 31px;
    margin-bottom: 15px;
}

/* =========================
   PROGRESS BAR
========================= */
.video-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.3);
}

.video-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: white;
}

.slide-controll img {
    width: 30px;
}

.about-us-bar {
    background: var(--dark-brown);
    color: var(--ivory);
    padding: 20px;
    text-align: center;
}

.exlore-boots-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25em;
    font-weight: 600;
    text-align: center;
    color: var(--dark-brown);
}

.exlore-boots-inner {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.exlore-boots-single {
    flex: 0 0 18%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.boots-single-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #5a3e2b73; */
    color: #fff;
    font-size: 1.5em;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease;
}

.exlore-boots-single:hover .boots-single-overlay {
    background: #2b1e166b;
}

.exlore-boots-single:hover img {
    transform: scale(1.1); /* adjust zoom level */
}

.exlore-boots-single img {
    transition: transform 0.5s ease; /* smooth animation */
}

.section-title.multi {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-controlls {
    display: flex;
    gap: 10px;
}

.product-controlls img{
    width: 25px;
    cursor: pointer;
    border-radius: 50px;
}

.product-controlls img:hover{
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.product-grid {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.product-col {
    background: #fff;
    border-radius: 8px;
    height: 250px;
    width: 250px;
    cursor: pointer;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.product-col img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-col .overlay {
    /* position: absolute; */
    /* top: 30px; */
    /* left: 20px; */
    color: #2b1e16;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

.categories-section-inner {
    margin-top: 40px;
    margin-bottom: 40px;
}

.categories-section-gird {
    display: flex;
    gap: 20px;
    height: 400px;
}

.categories-left-side {
    flex: 0 0 60%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.categories-left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-side.grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 400px;
}

.categories-right-side-row {
    height: 190px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.categories-right-side-row img {
    object-fit: cover;
    height: 100%;
}

.categories-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2b1e166b;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap: 30px;
}

.category-title {
    font-size: 1.5em;
}

.text-title {
    font-size: 1.25em;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.premium-dress-sections {
    background-image: url(../images/categories/bg.png);
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
    margin-bottom: 50px;
}

.premium-dress-sections-outer {
    background: #2b1e168f;
    color: #fff;
    /* text-align: center; */
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 60px;
}

.sechtion-content-heading {
    font-family: 'Playfair Display';
    font-size: 2.5em;
    font-weight: 600;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.blogs-grid {
    margin-top: 50px;
}

.blogs-grid {
    margin-top: 50px;
    display: flex;
    gap: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.blogs-grid-col {
    flex: 0 0 calc(50% - 15px);
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    display: flex;
    gap: 15px;
    height: 150px;
    border-radius: 8px;
    padding: 5px;

}

.blogs-col-image {
    height: 100%;
    width: 300px;
}

.blogs-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}


.blog-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-tags {
    font-size: 15px;
    font-family: 'Playfair Display';
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
}

.blog-description {
    font-size: 13px;
    flex-grow: 1;
    margin-top: 15px;
    font-weight: 100;
}

.blog-timestamp {
    font-size: 10px;
    font-weight: 600;
}

.slider-dots {
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    background: #5a3e2b;
    border-radius: 38px;
    cursor: pointer;
}

.dot.active {
  background-color: #2b1e16;
}

.short-blog-section {
    margin-bottom: 50px;
}

.section-description {
    width: 800px;
    margin: auto;
    text-align: justify;
    margin-top: 40px;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 50px;
}

.site-footer {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f5f0e1;
}

.news-letter {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--dark-brown);
}

.news-letter-content-description {
    font-size: 14px;
    font-weight: 300;
}

.news-letter-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-grid {
    display: flex;
    gap: 10px;
}

.form-grid input {
    background: #f5f0e1;
    border: 2px solid #2b1e16;
    padding: 8px 16px;
    border-radius: 5px;
}

.form-grid button {
    font-family: 'Inter';
    font-size: 15px;
    padding: 8px 16px;
    border: 0;
    border-radius: 4px;
    background: var(--dark-brown);
    color: #fff;
}

.news-letter-content-heading {
    font-size: 2em;
    font-family: 'Playfair Display';
    font-weight: 600;
    color: var(--dark-brown);
}

.site-footer-div {
    margin-top: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--dark-brown);
}

.footer-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    width: 200px;
}

.footer-info {
    max-width: 450px;
}

.footer-heading {
    font-size: 1.25em;
    font-family: 'Playfair Display';
    margin-top: 20px;
    margin-bottom: 15px;
}

.footer-info-description {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.footer-link-grid {
    display: flex;
    gap: 50px;
}

.footer-link-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
    font-weight: 300;
}

.link-col-heading {
    font-family: 'Playfair Display';
    font-weight: 600;
}

.site-footer-div {
    margin-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--dark-brown);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 300;
    justify-content: center;
}

.exlore-range-single {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.exlore-range-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-collection-product-grid {
    display: flex;
    /* gap: 50px; */
    align-items: center;
    height: 750px;
}

.single-collection-product-image {
    height: 100%;
    /* width: calc(50% - 25px); */
    width: 50%;
    position: relative;
}

.single-collection-product-box {
    /* width: calc(50% - 25px); */
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 70px;
}

.single-collection-product {
    /* margin-top: 30px;
    margin-bottom: 50px; */
}

.single-collection-product-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.single-collection-product-collection-info {
    position: absolute;
    left: 0;
    padding: 15px;
    color: #fff;
    background: #2b1e166b;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.single-collection-product-collection-info-title {
    font-size: 31px;
    font-family: 'Playfair Display';
}

.single-collection-product-collection-info-description {
    font-size: 12px;
    font-weight: 300;
}

.single-collection-product-title {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  color: #5A3E2B;
}

.single-collection-product-single-image img {
    height: 400px;
    object-fit: cover;
}

.our-journey-section {
    background: var(--dark-brown);
    color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}

.our-journey-gird {
    display: flex;
    gap: 20px;
}

.our-journey-single {
    width: 100%;
}

.our-journey-single-image img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.our-journey-single-title {
    font-family: 'Playfair Display';
    font-size: 1.5em;
    margin-bottom: 15px;
    margin-top: 10px;
}

.our-journey-single-description {
    font-size: 13px;
    font-weight: 300;
}

.hero-section-main {
    height: 700px;
    overflow: hidden;
    position: relative;
}

.hero-section-main-media {
    height: 100%;
}

.hero-section-main-media img {
    height: 100%;
    object-fit: cover;
}

.hero-section-main-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2b1e166b;
    color: #fff;
}

.hero-section-main-content {
    text-align: center;
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.hero-section-main-content-title {
    font-family: 'Playfair Display';
    font-size: 3em;
}

.hero-section-main-content-description {
    font-size: 17px;
    font-weight: 300;
}

.hero-section-main-controller {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 25px;
}

.hero-section-controlls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hero-section-controlls * {
    cursor: pointer;
}

.hero-section-controlls img {
    width: 25px;
}

.hero-section-controlls .dots {
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50px;
}

.hero-section-controlls .dots.active {
    width: 30px;
    height: 15px;
}

.utility-hero-section {
    height: 400px;
    position: relative;
    margin-bottom: 20px;
}

.utility-hero-section-image {
    height: 100%;
}

.utility-hero-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.utility-hero-section-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    padding-left: 60px;
    color: #fff;
    font-family: 'Playfair Display';
    font-size: 2.5em;
    background: #2b1e166b;
}

.page-search-form-fields input {
    border: 0;
    background: none;
    flex-grow: 1;
    outline: none;
}

.page-search-form-fields {
    display: flex;
    gap: 25px;
    width: 500px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    height: 70px;
    border-radius: 50px;
    padding: 20px 30px;
    margin: auto;
    background: #f7f5f2;
    align-items: center;
}

.page-search-form {
    position: absolute;
    bottom: -35px;
    width: 100%;
}

.page-search-form-fields button {
    color: #fff;
    background: #63371d;
    width: 130px;
    height: 40px;
    border: 0;
    border-radius: 50px;
}

.beerd-crumbs-main {
    display: flex;
    gap: 10px;
    color: #2b1e16;
    font-weight: 600;
}

.blog-page-main {
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-filter-heading {
    font-size: 18px;
    font-weight: 700;
}

.page-filter-sub-heading {
    font-weight: 700;
    font-size: 15px;
}

.page-field {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 5px;
}

.blog-page-main-grid {
    display: flex;
    gap: 50px;
}

.no-margin {
    margin: 0;
}

.f-100 {
    flex:0 0  100% !important;
}

.blog-content-main {
    flex-grow: 1;
}

.blog-content-sidebar {
    width: 300px;
    flex: 0 0 250px;
}

.single-blog-title {
    font-family: 'Playfair Display';
    font-size: 2.5em;
}

.blog-content-main-image img {
    width: 100%;
}

.blog-content-sidebar .blogs-col-image {
    height: 80px;
    width: 100%;
}

.blog-content-sidebar .blogs-grid-col {
    height: auto;
    flex-direction: column;
}

.blog-content-sidebar .blog-title {
    font-size: 11px;
    font-weight: 600;
}

.blog-content-sidebar .blogs-grid {
    gap: 15px;
}

.m-t-20 {
    margin-top: 20px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.blog-tag-sigle {
    border: 1px solid #000;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
}

.blog-tag-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
}

.single-blog-description p {
    margin-bottom: 15px;
}

.all-collections-grid {
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.all-collection-col {
    position: relative;
    flex: 0 0 calc(50% - 10px);
}

.all-collection-col-image {
    height: 300px;
    overflow: hidden;
}

.all-collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.all-collection-col-title {
    font-size: 1.5em;
}

.collection-prducts-grid {
    display: flex;
    flex-direction: row;
}

.collection-products-filter {
    flex: 0 0 300px;
    padding: 15px;
}