/* Critical CSS - Above the fold styles */
:root {
  --main-color: #1e3a5f;
  --secondary-color: #f0f0f0;
  --bg-color: #ffffff;
  --secondary-bg-color: #f8f9fa;
  --accent-color: #d4af37;
  --text-color: #000000;
  --font-text: "Lato", sans-serif;
  --font-heading: "Playfair Display", serif;
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text-color);
  font-family: var(--font-text);
  line-height: 1.2;
  background-color: var(--bg-color);
  padding-top: 60px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: var(--font-heading);
  font-weight: 700;
}
p {
  margin: 0;
  padding: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: none;
  font-family: inherit;
  font-size: inherit;
  background: 0 0;
  cursor: pointer;
} /* MB Banner - Critical */
.MB-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(
    135deg,
    #003d82 0,
    #06c 25%,
    #ff6b35 75%,
    #ff4500 100%
  );
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 61, 130, 0.3);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.MB-banner__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
  max-width: 1200px;
  width: 100%;
  justify-content: center;
}
.MB-banner__container p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}
.MB-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 25px;
  background: linear-gradient(135deg, #ff6b35 0, #ff4500 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
} /* Header - Critical */
.header {
  position: fixed;
  top: 63px;
  left: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  min-height: 70px;
  margin: 0 auto;
  padding: 0 20px;
}
.header__logo {
  flex-shrink: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--main-color);
  transition: all 0.3s ease;
}
.logo i {
  color: var(--accent-color);
  font-size: 28px;
}
.logo__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.5px;
}
.header__nav {
  display: flex;
  flex: 1;
  justify-content: center;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__link {
  position: relative;
  padding: 8px 0;
  color: var(--main-color);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__search {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--main-color);
  background: 0 0;
  transition: all 0.3s ease;
}
.header__search i {
  font-size: 28px;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 30px;
  height: 30px;
  background: 0 0;
  transition: all 0.3s ease;
}
.burger__line {
  width: 25px;
  height: 3px;
  border-radius: 2px;
  background: var(--main-color);
  transition: all 0.3s ease;
} /* Hero Section - Critical */
.hero-showcase {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--bg-color) 0,
    var(--secondary-color) 100%
  );
}
.hero-showcase__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-showcase__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-showcase__title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--main-color);
}
.hero-showcase__title i {
  color: var(--accent-color);
  margin-right: 15px;
}
.hero-showcase__description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(0, 0, 0, 0.7);
}
.hero-showcase__stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}
.showcase-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.showcase-stat i {
  color: var(--accent-color);
  font-size: 24px;
  margin-bottom: 8px;
}
.showcase-stat__number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--main-color);
}
.showcase-stat__label {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
}
.hero-showcase__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0, #b8941f 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}
.hero-showcase__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}
.hero-showcase__gallery {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.gallery-slideshow {
  position: relative;
  width: 100%;
  height: 400px;
}
.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.gallery-slide.active {
  opacity: 1;
}
.gallery-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-slide__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  padding: 30px;
  text-align: center;
}
.gallery-slide__overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #fff;
}
.gallery-slide__overlay p {
  font-size: 1rem;
  opacity: 0.9;
  color: #fff;
}
.gallery-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.gallery-control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gallery-control.active {
  background: var(--accent-color);
}
.gallery-control:hover {
  background: rgba(255, 255, 255, 0.5);
} /* Art Categories - Critical */
.art-categories {
  padding: 80px 0;
}
.art-categories__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.art-categories__header {
  text-align: center;
  margin-bottom: 60px;
}
.art-categories__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--main-color);
}
.art-categories__title i {
  color: var(--accent-color);
  margin-right: 15px;
}
.art-categories__subtitle {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.category-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.category-card__image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.category-card:hover .category-card__image img {
  transform: scale(1.1);
}
.category-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 95, 0.8) 0,
    rgba(212, 175, 55, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}
.category-card__overlay i {
  font-size: 32px;
  margin-bottom: 15px;
}
.category-card__overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.category-card__overlay p {
  font-size: 1rem;
  margin-bottom: 15px;
  opacity: 0.9;
}
.category-card__count {
  font-size: 0.9rem;
  opacity: 0.8;
} /* Bestseller Showcase - Critical */
.bestseller-showcase {
  padding: 80px 0;
  background: var(--secondary-color);
}
.bestseller-showcase__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.bestseller-showcase__header {
  text-align: center;
  margin-bottom: 60px;
}
.bestseller-showcase__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--main-color);
}
.bestseller-showcase__title i {
  color: var(--accent-color);
  margin-right: 15px;
}
.bestseller-showcase__subtitle {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
.bestseller-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.product-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 15px;
  border-radius: 20px;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.product-card__badge.hot {
  background: #ff6b35;
}
.product-card__badge.new {
  background: #4caf50;
}
.product-card__image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.product-card:hover .product-card__image img {
  transform: scale(1.1);
}
.product-card__info {
  padding: 25px;
}
.product-card__title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--main-color);
}
.product-card__artist {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}
.product-card__details {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.product-card__size,
.product-card__material {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.6);
}
.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent-color);
}
.product-card__cart {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  background: var(--main-color);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.product-card__cart:hover {
  background: #2c5282;
  transform: translateY(-2px);
} /* Testimonial Carousel - Critical */
.testimonial-carousel {
  padding: 80px 0;
}
.testimonial-carousel__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.testimonial-carousel__header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonial-carousel__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--main-color);
}
.testimonial-carousel__title i {
  color: var(--accent-color);
  margin-right: 15px;
}
.testimonial-carousel__subtitle {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
.testimonial-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transition: transform 0.3s ease;
}
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.testimonial-card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-card__quote {
  margin-bottom: 20px;
  flex-grow: 1;
}
.testimonial-card__quote i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}
.testimonial-card__quote p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
}
.testimonial-card__rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 25px;
}
.testimonial-card__rating i {
  color: var(--accent-color);
  font-size: 1.2rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.testimonial-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card__info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--main-color);
}
.testimonial-card__info p {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonial-nav:hover {
  background: #2c5282;
}
.testimonial-dots {
  display: flex;
  gap: 10px;
}
.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonial-dot.active {
  background: var(--accent-color);
} /* Inspiration Stories - Critical */
.inspiration-stories {
  padding: 80px 0;
}
.inspiration-stories__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.inspiration-stories__header {
  text-align: center;
  margin-bottom: 60px;
}
.inspiration-stories__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--main-color);
}
.inspiration-stories__title i {
  color: var(--accent-color);
  margin-right: 15px;
}
.inspiration-stories__subtitle {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
.stories-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.story-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.story-card.featured {
  grid-row: span 2;
}
.story-card__image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.story-card.featured .story-card__image {
  height: 300px;
}
.story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.story-card:hover .story-card__image img {
  transform: scale(1.1);
}
.story-card__category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 15px;
  border-radius: 20px;
  background: var(--accent-color);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}
.story-card__content {
  padding: 25px;
}
.story-card__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.6);
}
.story-card__date,
.story-card__read-time {
  display: flex;
  align-items: center;
  gap: 5px;
}
.story-card__title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--main-color);
}
.story-card__excerpt {
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}
.story-card__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  transition: all 0.3s ease;
}
.story-card__link:hover {
  color: #b8941f;
} /* Contact Invitation - Critical */
.contact-invitation {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--main-color) 0, #2c5282 100%);
  color: #fff;
}
.contact-invitation__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-invitation__title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.contact-invitation__title i {
  color: var(--accent-color);
  margin-right: 15px;
}
.contact-invitation__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}
.contact-invitation__features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}
.invitation-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.invitation-feature i {
  color: var(--accent-color);
  font-size: 1.2rem;
}
.contact-invitation__actions {
  display: flex;
  gap: 20px;
}
.contact-invitation__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-invitation__btn.primary {
  background: var(--accent-color);
  color: #fff;
}
.contact-invitation__btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.contact-invitation__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.contact-invitation__visual {
  display: flex;
  justify-content: center;
}
.visual-gallery__main {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
} /* Footer - Critical */
.footer {
  padding: 60px 0 0;
  color: #fff;
  background: linear-gradient(135deg, var(--main-color) 0, #2c5282 100%);
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 50px;
}
.footer__brand {
  max-width: 350px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer__logo i {
  color: var(--accent-color);
  font-size: 32px;
}
.footer__logo .logo__text {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
}
.footer__description {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__title {
  position: relative;
  margin-bottom: 25px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
}
.footer__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__link {
  position: relative;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all 0.3s ease;
}
.footer__link:hover {
  padding-left: 10px;
  color: var(--accent-color);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.footer__legal {
  display: flex;
  gap: 30px;
}
.legal__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
}
.legal__link:hover {
  color: var(--accent-color);
} /* Responsive - Critical */
@media (max-width: 1024px) {
  body {
    padding-top: 0;
  }
  .MB-banner {
    min-height: 100vh;
    width: 100vw;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    z-index: 9999;
  }
  .MB-banner__container {
    gap: 15px;
    padding: 8px 15px;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .MB-banner__container p {
    font-size: 0.9rem;
    line-height: 1.2;
  }
  .MB-banner__btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }
  .header {
    position: relative;
    top: 0;
  }
  .header__container {
    min-height: 70px;
  }
  .logo__text {
    font-size: 20px;
  }
  .logo i {
    font-size: 24px;
  }
  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 999;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    transform: translateX(-100%);
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    height: 100%;
    padding: 50px 20px;
  }
  .nav__link {
    font-weight: 600;
    font-size: 18px;
  }
  .header__burger {
    display: flex;
  }
  .header__search {
    width: 35px;
    height: 35px;
  }
  .header__actions {
    gap: 15px;
  }
  .hero-showcase {
    padding: 60px 0;
  }
  .hero-showcase__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-showcase__title {
    font-size: 2.5rem;
  }
  .hero-showcase__stats {
    justify-content: center;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bestseller-grid {
    grid-template-columns: 1fr;
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-card {
    padding: 30px 20px;
  }
  .contact-invitation__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: 0;
  }
  .MB-banner {
    min-height: 100vh;
    width: 100vw;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    z-index: 9999;
  }
  .MB-banner__container {
    gap: 15px;
    padding: 8px 15px;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .MB-banner__container p {
    font-size: 0.9rem;
    line-height: 1.2;
  }
  .MB-banner__btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }
  .header {
    top: 100vh;
  }
  .header {
    position: relative;
    top: 0;
  }
  .header__container {
    min-height: 70px;
  }
  .logo__text {
    font-size: 20px;
  }
  .logo i {
    font-size: 24px;
  }
  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 999;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    transform: translateX(-100%);
  }
  .header__nav.active {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    height: 100%;
    padding: 50px 20px;
  }
  .nav__link {
    font-weight: 600;
    font-size: 18px;
  }
  .header__burger {
    display: flex;
  }
  .header__search {
    width: 35px;
    height: 35px;
  }
  .header__actions {
    gap: 15px;
  }
  .hero-showcase {
    padding: 60px 0;
  }
  .hero-showcase__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-showcase__title {
    font-size: 2.5rem;
  }
  .hero-showcase__stats {
    flex-direction: column;
    gap: 20px;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .bestseller-grid {
    grid-template-columns: 1fr;
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-track {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-card {
    padding: 30px 20px;
  }
  .contact-invitation__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .MB-banner {
    min-height: 100vh;
    width: 100vw;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    z-index: 9999;
  }
  .MB-banner__container {
    gap: 10px;
    padding: 6px 10px;
    flex-direction: column;
    text-align: center;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  .MB-banner__container p {
    font-size: 0.8rem;
    line-height: 1.1;
  }
  .MB-banner__btn {
    padding: 6px 12px;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
  }
  .header__container {
    padding: 0 10px;
  }
  .header {
    position: relative;
    top: 0;
  }
  .hero-showcase__container {
    padding: 0 15px;
  }
  .hero-showcase__title {
    font-size: 2rem;
  }
  .hero-showcase__stats {
    flex-direction: column;
    gap: 20px;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .contact-invitation__actions {
    flex-direction: column;
  }
}
/* Footer Styles - Critical */
.footer {
  padding: 60px 0 0;
  color: #fff;
  background: linear-gradient(135deg, var(--main-color) 0, #2c5282 100%);
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 50px;
}
.footer__brand {
  max-width: 350px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer__logo i {
  color: var(--accent-color);
  font-size: 32px;
}
.footer__logo .logo__text {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
}
.footer__description {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer__title {
  position: relative;
  margin-bottom: 25px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
}
.footer__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__link {
  position: relative;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all 0.3s ease;
}
.footer__link:hover {
  padding-left: 10px;
  color: var(--accent-color);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.footer__legal {
  display: flex;
  gap: 30px;
}
.legal__link {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}
.legal__link:hover {
  color: var(--accent-color);
}

/* Footer Responsive Styles - Critical */
@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }
  .footer__links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer__legal {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer__container {
    padding: 0 15px;
  }
  .footer__top {
    gap: 30px;
  }
  .footer__links {
    gap: 25px;
  }
}
