/* ============================================
   THE HENNAPRENEUR - Main Stylesheet
   ============================================ */



@font-face {font-family: "Arizona Regular"; src: url(../assets/fonts/Arizonia-Regular.ttf) format("truetype");}
@font-face {font-family: "Antic Sans"; src: url(../assets/fonts/AnticSans-Regular.otf) format("truetype");}
@font-face {font-family: "Caviar Dreams"; src: url(../assets/fonts/CaviarDreams.ttf) format("truetype");}

:root {
  /* Colors */
  --primary-color: #ffa6b0;
  --secondary-color: #ffffff;
  --contrast-color: #2b678c;
  --text-color: #3a3a3a;
  --light-text: #6b6b6b;
  --border-color: #b9b9b9;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts */
  --brand-font: 'Arizona Regular', cursive;
  --header-font: 'Antic Sans', sans-serif;
  --body-font: 'Caviar Dreams', sans-serif;
  --font-thin: 100;
  --font-thick: 500;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {scroll-behavior: smooth;}

body {background-color: var(--secondary-color);}

h1, h2, h3, h4 {
  font-family: var(--header-font);
  color: var(--contrast-color);
  font-weight: var(--font-thin);
}

p,
a,
button, 
label, 
span, 
input, 
textarea, 
li
{
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 1rem;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

a:hover {opacity: 0.8;}

button {
  cursor: pointer;
  border: none;
  font-weight: var(--font-thin);
  transition: var(--transition);
}
button:hover {transform: translateY(-5px);}

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

/*=============================================
   ANIMATIONS
   ============================================ */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  
}

@keyframes spin {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}


@keyframes fadeInOut {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================
   LOADING PAGE STYLES
   ============================================ */
.loading-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffb7bf 100%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.loading-content {text-align: center;}

/* Stylish Henna Spinner */
.henna-spinner {
  height: 120px;
  width: 120px;
  position: relative;
  margin: 0 auto 60px;
}
.spinner-ring {
  position: absolute;
  border: 3px solid transparent;
  border-radius: 50%;
}
.spinner-ring:nth-child(1) {
  height: 120px;
  width: 120px;
  top: 0;
  left: 0;
  border-top-color: rgba(255, 255, 255, 0.9);
  border-right-color: rgba(255, 255, 255, 0.3);
  animation: spin 1.2s linear infinite;
}
.spinner-ring:nth-child(2) {
  height: 90px;
  width: 90px;
  top: 15px;
  left: 15px;
  border-top-color: rgba(255, 255, 255, 0.6);
  border-right-color: rgba(255, 255, 255, 0.1);
  animation: spin 0.8s linear infinite reverse;
}
.spinner-ring:nth-child(3) {
  height: 60px;
  width: 60px;
  top: 30px;
  left: 30px;
  border-top-color: rgba(255, 255, 255, 0.4);
  border-right-color: rgba(255, 255, 255, 0.05);
  animation: spin 0.5s linear infinite;
}
.spinner-center {
  height: 12px;
  width: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}


/* Typing Text Animation */
.typing-text {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  font-family: var(--brand-font);
}
.typing-cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blink 1s infinite; 
}

/* Progress Bar */
.progress-bar {
  height: 3px;
  width: 200px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.9);
  transition: width 0.1s linear;
}
.progress-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  margin-top: 10px;
}

/* ============================================
   NAVIGATION & HEADER
   ============================================ */
.navbar {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 1rem 2rem;
  background: var(--secondary-color);
  box-shadow: var(--shadow);
  z-index: 100;
}
.logo {
  color: var(--primary-color);
  letter-spacing: 1px;
  font-family: var(--brand-font);
}
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  position: relative;
  color: var(--text-color);
  font-size: 0.9rem;
}
.nav-links a::after {
  width: 0;
  height: 2px;
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  background: var(--primary-color);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {width: 100%;}
.nav-links .active {color: var(--primary-color);}
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cart-icon {
  position: relative;
  font-size: 1.2rem;
  cursor: pointer;
}
.cart-count {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: var(--font-thick);
}
.cart-icon:hover .cart-count {animation: bounce 0.3s ease;}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  height: 650px;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #f59999 100%);
  background-image: url("../assets/images/hero_img_desktop.png");
  background-attachment: local;
  background-size: cover;
  background-position: center;
}
.hero-header {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  align-items: center;
  gap: 5px;
  margin: 10px auto 0px;
}
.hero-header div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-header h1 {
  margin: 0px;
  color: var(--contrast-color);
  font-size: 5rem;
  transform: scaleY(1.5);
}
.hero-header-mobile {
  font-size: 1.2rem;
  text-align: justify;
}
.hero-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 150px;
  margin-top: 200px;
  padding: 50px 0px;
  color: white;
  animation: fadeInUp 1s ease;
}
.hero-content p {
  max-width: 350px;
  text-align: justify;
}
.hero-cta {
  height: fit-content;
  background: white;
  color: var(--primary-color);
  padding: 15px 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.hero-cta:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

@media screen and (max-width: 750px) {
  .hero {height: fit-content;}
  .hero-header {display: none;}
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .hero-content p {color: var(--secondary-color);}
}
@media screen and (min-width: 751px) {
  .hero-header-mobile {display: none;}
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .hero {height: fit-content;}
  .hero-header div h1 {font-size: 3.5rem;}
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  width: 100%;
  margin: 0 auto;
  padding: 50px 20px;
}
.section-title {
  margin-bottom: 20px;
  font-size: 3rem;
  text-align: center;
  color: var(--contrast-color);
}
.section-subtitle {
  font-size: 1rem;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 3rem;
}
.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--contrast-color);
  transition: var(--transition);
}

/* ============================================
   FEATURED SECTION
   ============================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.featured-item {position: relative;}
.cta-link {
  display: block;
  margin-top: 2rem;
  color: var(--contrast-color);
  text-align: center;
}
.cta-link:hover::after {transform: translateX(5px);}

@media screen and (max-width: 600px) {
  .featured-grid, .grid {grid-template-columns: 1fr;}
}

@media screen and (min-width: 601px) and (max-width: 800px) {
  .featured-grid, .grid {grid-template-columns: repeat(2, 1fr);}
}

/* ============================================
   HENNA COURSE SECTION
   ============================================ */
#course-section {background: linear-gradient(135deg, rgba(244, 118, 132, 0.1) 0%, rgba(245, 153, 168, 0.1) 100%);}
.course-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 0 auto;
}
.course-details p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.henna-course-img {
  height: 400px;
  width: 500px;
  object-fit: cover;
}

@media screen and (max-width: 750px) {
  .course-details {grid-template-columns: 1fr;}
  .henna-course-img {
    width: 100%;
    height: 300px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--text-color);
  color: white;
  padding: 3rem 2rem 1rem;
}
.footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 0 auto;
  margin-bottom: 2rem;
}
.footer-section h4 {
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.footer-links {list-style: none;}
.footer-links li {margin-bottom: 0.8rem;}
.footer-links a {
  color: #ccc;
  transition: var(--transition);
}
.footer-links a:hover {color: var(--primary-color);}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}
.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}
.social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-links a:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}
   
/* ============================================
   CARDS & GRIDS
   ============================================ */
.grid {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: white;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.card-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #f59999 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-content {padding: 10px;}
.card-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--contrast-color);
}
.card-category {
  font-size: 0.85rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.card-description {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.card-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 1rem;
  border-top: .5px solid var(--border-color);
}
.view-btn {
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  font-size: 0.85rem;
  transition: var(--transition);
  flex: 1;
}
.view-btn:hover {background: #e85966;}
.add-cart-btn {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 8px 16px;
  font-size: 0.85rem;
  transition: var(--transition);
}
.add-cart-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 40;
}
.modal.open {
  display: flex;
  animation: fadeInUp 0.3s ease;
}
.modal-content {
  max-height: 80vh;
  max-width: 600px;
  width: 90%;
  overflow-y: auto;
  position: relative;
  padding: 2rem;
  background: white;
}
.modal-content::-webkit-scrollbar {display: none;}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-sidebar {
  height: 100vh;
  width: 400px;
  position: fixed;
  right: -400px;
  top: 0;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  background: var(--secondary-color);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}
.cart-sidebar.open {right: 0;}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}
.cart-title {
  font-size: 1.5rem;
  font-weight: 500;
}
.close-btn {
  background: transparent;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
}
.cart-item-image {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #f59999 100%);
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-content {flex: 1;}
.cart-item-title {
  font-family: var(--heading-font);
  font-weight: 300;
  margin-bottom: 0.3rem;
}
.cart-item-price {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.quantity-control {
  display: flex;
  align-items: center;
  gap: 5px;
}
.quantity-control button {
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 0.9rem;
}
.cart-item-remove {
  height: 24px;
  width: 24px;
  background: transparent;
  color: #d32f2f;
  cursor: pointer;
}
.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 500;
}
.checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary-color);
  color: white;
  font-size: 1rem;
  font-weight: 500;
}
.checkout-btn:hover {background: #e85966;}
.cart-empty {
  text-align: center;
  padding: 2rem;
  color: var(--light-text);
}
.checkout-summary {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  padding: 1rem;
  background: #fafafa;
}
.checkout-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.checkout-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: var(--text-color);
  font-size: 0.95rem;
}
.checkout-item-meta {
  color: var(--light-text);
  font-size: 0.85rem;
}
.checkout-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: 1rem;
}


/* ============================================
   FORM STYLES
   ============================================ */
.form-group {margin-bottom: 1.5rem;}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 300;
  color: var(--text-color);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  font-family: var(--font-thin);
  font-size: 0.95rem;
  transition: var(--transition);
  font-weight: 300;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(244, 118, 132, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  background: var(--primary-color);
  color: white;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  transition: var(--transition);
}
.form-submit:hover {
  background: #e85966;
  transform: translateY(-2px);
}
.form-error {
  color: #d32f2f;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}
.form-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  display: none;
}
.form-success.show {
  display: block;
  animation: fadeInUp 0.3s ease;
}

/* ============================================
   DETAIL PAGE STYLES
   ============================================ */
.detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.detail-image {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, #f59999 100%);
  color: white;
  font-size: 4rem;
}
.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}
.detail-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}
.detail-category {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.meta-label {
  display: flex;
  align-items: center;
  gap: 20px;
}
.detail-price {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Variations Radio Buttons */
.variations-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.variation-single {
  margin-bottom: 1.5rem;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
  background-color: rgba(244, 118, 132, 0.05);
}
.variation-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.variation-radio:hover {
  border-color: var(--primary-color);
  background-color: rgba(244, 118, 132, 0.05);
}
.variation-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  margin-right: 12px;
  flex-shrink: 0;
}
.variation-radio input[type="radio"]:hover {
  box-shadow: 0 0 0 3px rgba(244, 118, 132, 0.2);
}
.variation-radio input[type="radio"]:checked {
  background: var(--primary-color);
  box-shadow: inset 0 0 0 4px white;
}
.variation-label {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
}
.service-selection {
  margin-bottom: 1.5rem;
}
.service-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}
.service-selection select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  font-family: var(--font-thin);
  font-size: 0.95rem;
  transition: var(--transition);
}
.service-selection select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(244, 118, 132, 0.1);
}
.detail-description {
  color: var(--light-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.detail-actions {
  display: flex;
  gap: 1rem;
}
.detail-actions button {
  flex: 1;
  padding: 14px;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}
.primary-btn {
  background: var(--primary-color);
  color: white;
}
.primary-btn:hover {
  background: #e85966;
}
.secondary-btn {
  background: var(--border-color);
  color: var(--text-color);
}
.secondary-btn:hover {
  background: #d0d0d0;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.review-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  margin-right: 1rem;
}

.review-info h4 {
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.review-rating {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.review-text {
  color: var(--light-text);
  line-height: 1.6;
  font-style: italic;
}





/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.opacity-50 {
  opacity: 0.5;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .detail-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .detail-image {
    height: 300px;
  }

  section {
    padding: 60px 1.5rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
  }

  .nav-links.open {
    max-height: 500px;
    padding: 1rem 2rem;
  }

  .nav-links li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
  }


  .section-title {
    font-size: 2rem;
  }

  .detail-container {
    padding: 2rem 1rem;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .modal-content {
    width: 95%;
  }

  

  .detail-actions {
    flex-direction: column;
  }

  .detail-actions button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  section {
    padding: 40px 1rem;
  }

  .grid,
  .featured-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .detail-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .cart-sidebar {
    width: 100%;
  }

  .modal-content {
    padding: 1.5rem;
  }

  .detail-title {
    font-size: 1.8rem;
  }

  .detail-price {
    font-size: 1.5rem;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  .card {
    border: 2px solid var(--text-color);
  }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-content {
 width: 97.5%; 
  margin: 0 auto;
}
.about-content-elements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.about-content-image {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #f59999 100%);
  color: white;
  font-size: 4rem;
}
.about-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 800px) {
  .about-content-elements {
    grid-template-columns: 1fr;
  }
  .about-content-image {
    height: 400px;
  }
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  height: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page-header div {
  width: fit-content;
  padding: 20px 50px;
  background-color: #a3a3a30b;
  backdrop-filter: blur(10px);
  color: white;
}
.page-header h1 {
  margin-bottom: 20px;
  font-size: 3rem;
  color: var(--secondary-color);
}
.page-header p {color: var(--secondary-color);}


.contact-content {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 3rem;
  margin: 0 auto;
}

@media screen and (max-width: 700px) { 
  .contact-content {
    grid-template-columns: 1fr;
  }
}

