/* -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&family=Cormorant:wght@400;500;700&display=swap');

:root {
  --primary-color: #FFC0CB;
  --secondary-color: #E6A8B1;
  --tertiary-color: #F8F8F8;
  --background-dark: #0A0A0A;
  --background-light: #1A1A1A;
  --text-primary: #F0F0F0;
  --text-secondary: #C0C0C0;
  --text-on-dark: #FFFFFF;
  --btn-primary-bg: var(--primary-color);
  --btn-primary-text: var(--background-dark);
  --btn-secondary-bg: transparent;
  --btn-secondary-text: var(--primary-color);
  --font-heading: 'Cormorant', serif;
  --font-body: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
ul,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
}


body {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('/assets/backgrounds/body-bg2.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--btn-primary-text);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--background-dark);
  color: var(--background-dark);
}

.btn-secondary {
  background-color: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--btn-primary-text);
}

.highlight-text {
  color: var(--primary-color);
}

.underline-header {
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.underline-header .accent-text {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-top: -1.5rem;
  position: relative;
}

.underline-header .accent-text::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background-color: var(--primary-color);
}

/* -------------------------------------------------------------------------- */
header {
  background-color: var(--background-dark);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-family: var(--font-body);
  border-bottom: 5px solid var(--primary-color);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 2rem;
}

@media (max-width: 992px) {
  .header-container {
    padding: 12px 20px;
  }
}

.header-left .logo img {
  height: 60px;
}

@media (max-width: 992px) {
  .header-left .logo img {
    height: 50px;
  }
}

@media (max-width: 400px) {
  .header-left .logo img {
    height: 45px;
  }
}

.desktop-menu {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desktop-menu ul {
  display: flex;
  gap: 35px;
}

.desktop-menu ul li a {
  color: var(--text-on-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  position: relative;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.desktop-menu ul li a:hover {
  color: var(--secondary-color);
}

.desktop-menu ul li a.active {
  color: var(--secondary-color);
  font-weight: 700;
}

.desktop-menu ul li a.active::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  transform: translateY(8px);
}

.desktop-menu ul li a.active::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  transform: translateY(8px);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cart-icon {
  position: relative;
  font-size: 28px;
  color: var(--text-on-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}

.cart-icon:hover {
  color: var(--secondary-color);
}

#cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--secondary-color);
  color: var(--background-dark);
  font-size: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--text-on-dark);
  cursor: pointer;
}

.mobile-menu-full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 2000;
}

.mobile-menu-full.show {
  transform: translateY(0);
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--text-on-dark);
  cursor: pointer;
}

.mobile-menu-full ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.mobile-menu-full ul li a {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-on-dark);
  transition: color 0.3s;
}

.mobile-menu-full ul li a:hover,
.mobile-menu-full ul li a.active {
  color: var(--secondary-color);
}

@media (max-width: 992px) {
  .desktop-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .header-left {
    order: 1;
  }

  .header-right {
    order: 3;
  }
}

@media (max-width: 400px) {
  .header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .cart-icon,
  .menu-toggle {
    font-size: 24px;
  }
}

/* -------------------------------------------------------------------------- */
footer {
  background-color: var(--background-dark);
  color: var(--text-on-dark);
  padding: 4rem 2rem;
  font-family: var(--font-body);
  border-top: 5px solid var(--primary-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1400px;
  margin: auto;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--primary-color);
}

.footer-logo-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 60px;
  width: auto;
}


@media (max-width: 500px) {
  .footer-logo img {
    height: 55px;
    width: auto;
  }
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-on-dark);
}


.footer-links-section {
  flex: 2;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
}

.footer-column h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--background-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 1rem;
  line-height: 2;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--secondary-color);
}

.footer-bottom-bar {
  text-align: center;
}

.footer-copyright {
  font-size: 0.9rem;
  color: var(--text-on-dark);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-logo-section {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links-section {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-column h4 {
    margin-top: 1.5rem;
  }
}

/* -------------------------------------------------------------------------- */
#cookie-popup,
#add-to-cart-popup,
#warning-popup {
  position: fixed;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  background-color: var(--background-light);
  color: var(--text-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  border: 3px solid var(--primary-color);
}

#cookie-popup {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  max-width: 550px;
}

#add-to-cart-popup,
#warning-popup {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  max-width: 350px;
  padding: 2rem;
}

#cookie-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

#add-to-cart-popup.show,
#warning-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

#cookie-popup p {
  font-size: 1rem;
  line-height: 1.6;
}

#add-to-cart-popup i,
#warning-popup i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

#add-to-cart-popup i {
  color: #60c978;
}

#warning-popup i {
  color: #ffc107;
}

#add-to-cart-popup strong,
#warning-popup strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

#add-to-cart-popup .popup-content,
#warning-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#add-to-cart-popup span,
#warning-popup span {
  font-size: 1.15rem;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.4;
}

@media (max-width: 768px) {

  #cookie-popup,
  #add-to-cart-popup,
  #warning-popup {
    width: 90%;
    max-width: 90%;
    padding: 1.5rem;
  }
}

/* -------------------------------------------------------------------------- */
.hero-showcase {
  position: relative;
  width: 100%;
  padding: 10rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 5px solid var(--primary-color);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/gif1.webp');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(26, 26, 26, 0.75);
  z-index: -1;
}

.hero-showcase-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: var(--text-on-dark);
  padding: 0 1rem;
}

.hero-showcase-title {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-showcase-title .highlight {
  color: var(--secondary-color);
}

.hero-showcase-subtitle {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  opacity: 0.9;
}

.hero-showcase-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .hero-showcase-title {
    font-size: 3.5rem;
  }

  .hero-showcase-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero-showcase {
    height: 80vh;
  }

  .hero-showcase-title {
    font-size: 2.5rem;
  }

  .hero-showcase-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .hero-showcase-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* -------------------------------------------------------------------------- */
.image-gallery-section {
  padding: 0;
  background-color: var(--background-dark);
  color: var(--text-primary);
  text-align: left;
  padding: 6rem 20px 20px 20px;

}

.image-gallery-section.border-top {
  border-top: 3px solid var(--primary-color);

}

.gallery-container-flex {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 5rem 0 5rem 3rem;
  max-width: none;
}

.gallery-header-content {
  flex: 1;
  padding: 1rem;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  line-height: 1.2;
}

.gallery-description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.8;
  max-width: 600px;
  line-height: 1.6;
}

.gallery-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 1;
  height: 500px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .gallery-container-flex {
    flex-direction: column;
    padding: 3rem 0;
  }

  .gallery-header-content {
    text-align: center;
    padding: 0 1.5rem;
    max-width: 100%;
  }

  .gallery-grid {
    gap: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .gallery-item {
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
  }

  .gallery-item img {
    height: 350px;
  }
}

/* -------------------------------------------------------------------------- */
.all-products {
  padding: 6rem 0;
  color: var(--text-on-dark);
  text-align: center;
}

.featured-products {
  padding: 4rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background-color: var(--background-dark);
  border: 1px solid var(--text-secondary);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

.product-image-container {
  overflow: hidden;
  background-color: #212936;
  aspect-ratio: 1 / 1;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image-container img {
  transform: scale(1.05);
}

.product-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: start;
  flex-grow: 1;
}

.product-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.product-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: auto;
  margin-bottom: 1.5rem;
}

.btn-add-to-cart {
  width: 100%;
}


.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.section-cta .btn-secondary {
  background-color: var(--background-light);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 14px 28px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-cta .btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--background-dark);
  border-color: var(--primary-color);
}

/* -------------------------------------------------------------------------- */
.testimonial-section {
  padding: 6rem 20px;
  background-color: var(--background-dark);
  color: var(--text-primary);
  text-align: end;
}

.testimonial-section.border-top {
  border-top: 5px solid var(--primary-color);
}

.testimonial-header {
  margin-bottom: 4rem;
}

.testimonial-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.testimonial-header p {
  font-size: 1.1rem;
  opacity: 0.8;
  line-height: 1.6;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--background-light);
  padding: 3rem 1.5rem;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-image {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 0;
  border: 3px solid var(--secondary-color);
  margin-bottom: 1.5rem;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-rating {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.testimonial-rating i {
  font-size: 1.2rem;
}

.testimonial-card p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  position: relative;
  padding: 0 2rem;
}

.testimonial-card p::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 5rem;
  position: absolute;
  top: -2rem;
  left: 0;
  color: var(--secondary-color);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card p::after {
  content: '”';
  font-family: var(--font-heading);
  font-size: 5rem;
  position: absolute;
  bottom: -2rem;
  right: 0;
  color: var(--secondary-color);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-author-info {
  border-top: 1px solid var(--text-secondary);
  padding-top: 1rem;
  margin-top: 1rem;
}

.testimonial-author-info h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--primary-color);
}

.testimonial-author-info p {
  font-size: 0.9rem;
  margin: 0;
  font-style: normal;
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .testimonial-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .testimonial-header h2 {
    font-size: 2.5rem;
  }

  .testimonial-card {
    padding: 2rem 1rem;
  }

  .testimonial-card p::before,
  .testimonial-card p::after {
    font-size: 3rem;
    display: none;
  }

  .testimonial-author-info {
    padding-top: 0.5rem;
  }
}

/* -------------------------------------------------------------------------- */
.newsletter-section {
  padding: 8rem 0;
  background-image: url('/assets/images/image4.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  color: var(--text-on-dark);
  border-top: 5px solid var(--secondary-color);
  border-bottom: 5px solid var(--secondary-color);
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.newsletter-section.border-bottom-none {
  border-bottom: 0;
}

.newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.newsletter-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 1px solid var(--text-on-dark);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark);
  font-size: 1rem;
  min-width: 250px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-button {
  padding: 1rem 2rem;
  font-size: 1rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 4rem 1rem;
  }

  .newsletter-content h2 {
    font-size: 2.5rem;
  }

  .newsletter-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .newsletter-input,
  .newsletter-button {
    width: 90%;
    min-width: unset;
  }

  .newsletter-button {
    padding: 0.8rem 1.5rem;
  }
}

/* -------------------------------------------------------------------------- */
.blog-section {
  padding: 6rem 0;
  color: var(--text-primary);
  text-align: center;
}

.blog-header {
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.blog-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.blog-header p {
  font-size: 1.1rem;
  opacity: 0.8;
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background-color: var(--background-light);
  border: 3px solid var(--primary-color);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.blog-image-wrapper {
  overflow: hidden;
  height: 250px;
  border-bottom: 3px solid var(--primary-color);
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.blog-category {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.blog-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  margin-top: auto;
}

.blog-link i {
  transition: transform 0.3s ease;
}

.blog-link:hover {
  color: var(--secondary-color);
}

.blog-link:hover i {
  transform: translateX(5px);
}

.view-all-button {
  text-align: center;
}

@media (max-width: 768px) {
  .blog-section {
    padding: 4rem 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card {
    border: 2px solid var(--primary-color);
  }

  .blog-card:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .blog-image-wrapper {
    height: 200px;
    flex: none;
    border-bottom: 2px solid var(--primary-color);
  }

  .blog-card-content {
    padding: 1.5rem;
  }

  .blog-title {
    font-size: 1.3rem;
  }
}

/* -------------------------------------------------------------------------- */
.blog-post-content {
  background-color: var(--background-light);
  color: var(--text-primary);
  padding: clamp(2rem, 5vw, 4rem) 1rem;
  font-family: var(--font-body);
  line-height: 1.7;
  max-width: 1100px;
  margin: 4rem auto;
  padding: 2rem;
  border: 3px solid var(--primary-color);
}

@media (max-width: 1200px) {
  .blog-post-content {
    margin: 4rem 20px;
  }
}

.post-header {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.post-category {
  display: inline-block;
  font-size: clamp(0.75rem, 0.8vw, 0.9rem);
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.post-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--text-primary);
}

.post-meta {
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  opacity: 0.7;
  margin-top: 0.75rem;
}

.post-featured-image {
  width: 100%;
  max-width: 1000px;
  max-height: 450px;
  object-fit: cover;
  height: auto;
  margin: 2rem auto;
  display: block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary-color);
}

.blog-post-content p {
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.85;
  margin: 0 auto 1.6rem;
  max-width: 850px;
  opacity: 0.95;
}

.blog-post-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin: 2.5rem auto 1.25rem;
  max-width: 850px;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 0.5rem;
}

.blog-post-content ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto;
  max-width: 850px;
}

.blog-post-content ul li {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 0.9rem;
  position: relative;
  padding-left: 1.75rem;
  opacity: 0.95;
}

.blog-post-content ul li::before {
  content: '✔';
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.blog-post-content strong {
  font-weight: 600;
  color: var(--secondary-color);
}

.blog-post-content blockquote {
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  font-style: italic;
  max-width: 800px;
  margin: 2rem auto;
  padding: 1.25rem 1.5rem;
  border-left: 5px solid var(--secondary-color);
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .blog-post-content {
    padding: 2rem 1.25rem;
  }

  .post-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .post-featured-image {
    margin: 1.5rem 0;
  }
}

/* -------------------------------------------------------------------------- */
.auth-page-main {
  padding-top: 6rem;
}

.auth-container {
  background-color: var(--background-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem;
  margin: 0 auto 6rem auto;
  max-width: 750px;
  text-align: center;
  font-family: var(--font-body);
  border: 3px solid var(--primary-color);
}

.auth-header {
  margin-bottom: 2.5rem;
}

.auth-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.auth-tabs {
  display: flex;
  flex: 1;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.auth-tab {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
  top: 2px;
}

.auth-tab.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.auth-tab:not(.active):hover {
  color: var(--text-primary);
}

.form-panels {
  margin-bottom: 2rem;
}

.form-panel {
  display: none;
}

.form-panel.active {
  display: block;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"] {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--primary-color);
  font-size: 1rem;
  color: var(--text-primary);
  background-color: transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="text"]:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.2);
}

.form-group input::placeholder {
  color: var(--text-secondary);
  opacity: 0.8;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background-color: var(--primary-color);
  color: var(--text-on-dark);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-submit-btn:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-2px);
}

.auth-footer-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .auth-page-main {
    padding-top: 4rem;
  }

  .auth-container {
    margin: 0 20px 4rem 20px;
    padding: 2.5rem 1.5rem;
  }

  .auth-title {
    font-size: 2rem;
  }

  .auth-tab {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }

  .form-submit-btn {
    padding: 0.8rem;
    font-size: 1rem;
  }
}

/* -------------------------------------------------------------------------- */
.contact-section {
  padding: 8rem 0;
  background-color: var(--background-light);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.contact-info {
  background-color: var(--primary-color);
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(2rem);
  flex: 1 1 400px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--background-dark);
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
  color: var(--background-dark);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--background-dark);
  flex-shrink: 0;
}

.info-item p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--background-dark);
}

.contact-form-container {
  background-color: var(--background-dark);
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  color: var(--text-primary);
  flex: 1 1 600px;
  border: 2px solid var(--primary-color);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--text-secondary);
  border-radius: 4px;
  font-size: 1rem;
  background-color: transparent;
  color: var(--text-primary);
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .contact-info {
    transform: translateY(0);
    width: 100%;
  }

  .contact-form-container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }

  .contact-info,
  .contact-form-container {
    padding: 2rem;
  }
}

/* -------------------------------------------------------------------------- */
.cart-section {
  padding: 4rem 0;
}

.cart-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  padding-bottom: 0.5rem;
  width: 100%;
}

@media (max-width: 768px) {
  .cart-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

.cart-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cart-grid {
    flex-direction: row;
  }

  .cart-grid>div,
  .cart-grid>aside {
    flex: 1;
  }
}

#cart-items-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--background-light);
  border: 3px solid var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 568px) {
  .cart-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

  }
}


.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 0.5rem;
}

.cart-item-details {
  flex-grow: 1;
}

@media (max-width: 568px) {
  .cart-item-details {
    text-align: center;
  }
}



.cart-item-details h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.cart-item-details p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-on-dark);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-quantity {
  width: 60px;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid var(--text-primary);
  border-radius: 0.25rem;
}

.btn-remove-item {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #e74c3c;
  cursor: pointer;
  padding: 0.25rem;
}

.cart-summary {
  background-color: var(--background-light);
  border: 3px solid var(--primary-color);
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-summary h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-top: 1px solid var(--text-primary);
  padding-top: 1rem;
  margin-top: 1rem;
}

.btn-checkout {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background-color 0.3s ease;
}

.empty-cart-message {
  text-align: start;
  padding: 2rem;
  background-color: var(--background-light);
  border: 1px solid var(--primary-color);
  border-radius: 0.75rem;
}

.empty-cart-message p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-on-dark);
}

.empty-cart-message a {
  display: block;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--background-light);
  background-color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.empty-cart-message a:hover {
  background-color: #357bd8;
  transform: translateY(-2px);
}

/* -------------------------------------------------------------------------- */
.checkout-section {
  padding: 4rem 0;
}

.checkout-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 992px) {
  .checkout-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
  }
}

.checkout-form {
  padding: 1.5rem;
  background-color: var(--background-light);
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-section {
  margin-bottom: 2rem;
}

.form-section h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group-half {
  display: flex;
  gap: 1rem;
}

.form-group-half>div {
  flex: 1;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.checkout-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  background-color: var(--background-light);
  border: 1px solid var(--primary-color);
  border-radius: 0;
  color: var(--text-primary);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.checkout-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.3);
}

.order-summary {
  padding: 1.5rem;
  background-color: var(--background-light);
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.order-summary h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

#summary-items-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-top: 1px solid var(--text-primary);
  padding-top: 1rem;
  margin-top: 1rem;
}

.btn-place-order {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  cursor: pointer;
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background-color 0.3s ease;
}

.btn-place-order:hover {
  background-color: var(--secondary-color);
}

/* -------------------------------------------------------------------------- */
.legal-page {
  padding: 2rem 0;
  background-color: var(--background-light);
}

.legal-page .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem;
}

.legal-page .terms-content,
.legal-page .cookie-policy-content,
.legal-page .policy-content {
  background-color: var(--background-light);
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.legal-page h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.legal-page h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.legal-page p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.legal-page p strong {
  color: var(--text-primary);
}

.legal-page a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-page ul {
  font-family: var(--font-body);
  color: var(--text-secondary);
  list-style-type: none;
  padding: 0;
  margin-bottom: 1rem;
}

.legal-page ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.legal-page ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

@media (max-width: 767px) {
  .legal-page h2 {
    font-size: 2rem;
  }

  .legal-page h3 {
    font-size: 1.25rem;
  }

  .legal-page h4 {
    font-size: 1.1rem;
  }

  .legal-page p {
    font-size: 0.95rem;
  }

  .legal-page .terms-content,
  .legal-page .cookie-policy-content,
  .legal-page .policy-content {
    padding: 1.5rem;
  }
}