* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
}

img {
  max-width: 100%;
  height: auto;
}


nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
}

nav ul li {
  flex: 1;
}

nav ul li a {
  display: block;
  padding: 15px;
  text-align: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  background: #d4c5d5;
}

h1 { text-align: center; color: #502466; }
h2 { text-align: center; color: #61446f; text-decoration: underline; }
h3, h4 { text-align: center; }

p {
  margin-bottom: 12px;
}


:root {
  --space-xs: 6px;
  --space-sm: 10px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
}

body {
  line-height: 1.5;
}


section,
.wrapper,
.index-container,
.form-container,
.checkout-container {
  margin: var(--space-xl) auto;
  padding: 0 var(--space-md);
}


h1 {
  margin-bottom: var(--space-md);
}

h2, h3 {
  margin-bottom: var(--space-sm);
}


p {
  margin-bottom: var(--space-sm);
}


.card,
.product-card,
.info-card,
.checkout-box,
.form-container {
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}


button,
.btn {
  margin-top: var(--space-sm);
}

.index-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.intro {
  margin-bottom: 30px;
  color: #555;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  margin: 10px 0;
  color: #502466;
}

.product-card p {
  font-size: 14px;
  color: #555;
}

.price {
  font-weight: bold;
  color: #7a4c8f;
  margin-top: 10px;
}

button,
.btn {
  background: #7a4c8f;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover,
.btn:hover {
  background: #9b6bb0;
  transform: scale(1.05);
}

.form-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

input, textarea {
  width: 100%;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.profile-section {
  max-width: 600px;
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
}

.cart-dropdown {
  position: relative;
}

.cart-preview {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  width: 220px;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cart-dropdown:hover .cart-preview {
  display: block;
}

#cart-count {
  font-weight: bold;
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #7a4c8f;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.checkout-container {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.checkout-item {
  background: #f7f7f7;
  margin: 10px 0;
  padding: 15px;
  border-radius: 8px;
}

.success-box {
  max-width: 500px;
  margin: 100px auto;
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 10px;
}

footer {
  background: #b2a0bc;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 40px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .product-card {
    width: 90%;
  }
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
  }

  form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  p {
    padding: 10px;
  }

  button {
    width: 100%;
  }
}

#checkout-items {
  margin: 20px 0;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.checkout-container {
  max-width: 900px;
  margin: 40px auto;
  background: white;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  transition: transform 0.2s ease;
}

.checkout-item:hover {
  transform: scale(1.01);
}

.item-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.item-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

button {
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.item-right button {
  background: #eee;
}

.item-right span {
  font-weight: bold;
  padding: 0 8px;
}

.remove {
  color: red;
  background: transparent;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0,0,0,0.45);

  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;

  z-index: 9999;
}

.overlay.show {
  opacity: 1;
  pointer-events: all;
}

.checkout-box {
  width: 260px;
  padding: 16px;

  background: white;
  border-radius: 12px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.25);

  transform: scale(0.8);
  opacity: 0;
  transition: 0.25s ease;
}

.overlay.show .checkout-box {
  transform: scale(1);
  opacity: 1;
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.close-btn {
  cursor: pointer;
  font-size: 16px;
}

.input-group {
  position: relative;
  margin-bottom: 10px;
}

.input-group input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
}

.input-group label {
  position: absolute;
  left: 10px;
  top: 8px;
  font-size: 12px;
  color: #888;
}

.card-group {
  position: relative;
}

.card-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #666;
  font-weight: bold;
}

.exp-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 8px 0;
}

.exp {
  width: 40px;
  padding: 6px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.exp-wrap span {
  font-size: 14px;
  color: #666;
}

.pay-btn {
  width: 100%;
  margin-top: 10px;
  background: #635bff;
  color: white;
  border: none;
  padding: 9px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}

.pay-btn:hover {
  background: #5148d8;
}

.back-btn {
  width: 100%;
  margin-top: 5px;
  background: #eee;
  color: black;
  padding: 8px;
  border-radius: 6px;
}

.error {
  color: red;
  font-size: 12px;
}

.secure {
  font-size: 11px;
  text-align: center;
  margin-top: 8px;
  color: #777;
}

#customizer-modal select,
#customizer-modal input {
  width: 100%;
  padding: 8px;
  margin: 6px 0 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.product-card {
  background: white;
  padding: 15px;
  border-radius: 12px; 
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card h3 {
  margin: 10px 0 5px;
  font-size: 16px;
}

.price {
  color: #666;
  margin-bottom: 10px;
}

.btn {
  width: 100%;
}

.product-page {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.product-image img {
  width: 500px;
  max-width: 100%;
  border-radius: 12px;
}

.product-details {
  flex: 1;
  max-width: 500px;
}

.product-details select,
.product-details input {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
}

.product-details h2 {
  margin: 15px 0;
}

.product-details label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.product-page {
  display: flex;
  gap: 30px;
  max-width: 900px;   
  margin: 30px auto;  
  align-items: flex-start;
}

.product-image img {
  width: 550px;
  max-width: 100%;
  border-radius: 14px;
}

.product-details h1 {
  margin-top: 0;
  color: #6f4b8b;
}

.product-details .price {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.product-details label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
}

.product-details select,
.product-details input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  font-size: 14px;
}

.product-details h2 {
  text-align: center;
  margin: 20px 0;
  color: #6f4b8b;
}

.product-details .btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
}

.product-details select:focus,
.product-details input:focus {
  outline: none;
  border-color: #6f4b8b;
}

.product-details {
  flex: 1;
  max-width: 450px;
}

.product-details select,
.product-details input {
  width: 100%;
  max-width: 320px;
  display: block;
}

.product-image {
  text-align: center;
}

.add-cart-img {
  margin-top: 15px;
  width: 100%;
  max-width: 350px;
}

.product-page {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  align-items: start;
}

.product-image {
  text-align: center;
}

.product-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-image .price {
  margin: 15px 0;
  font-size: 18px;
  color: #555;
}

.add-cart-img {
  width: 70%;
  max-width: 320px;
  margin: 10px auto;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
}

.product-details.card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.product-details h1 {
  color: #6f4b8b;
  text-align: center;
  margin-bottom: 20px;
}

.product-details label {
  display: block;
  margin-top: 14px;
  font-weight: 600;
}

.product-details select,
.product-details input {
  width: 100%; 
  padding: 12px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.2s;
}

.product-details select:focus,
.product-details input:focus {
  outline: none;
  border-color: #6f4b8b;
  box-shadow: 0 0 0 2px rgba(111,75,139,0.15);
}

.product-details h2 {
  text-align: center;
  margin-top: 25px;
  color: #6f4b8b;
}

@media (max-width: 768px) {
  .product-page {
    grid-template-columns: 1fr;
  }

  .add-cart-img {
    width: 100%;
  }
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 36px;
  color: #5c3b73;
}

.page-header p {
  color: #777;
  margin-top: 8px;
}

.product-card {
  background: white;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.product-card img {
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.product-card h3 {
  margin: 12px 0 5px;
  font-size: 17px;
  color: #5c3b73;
}

.product-card .price {
  color: #888;
  margin-bottom: 12px;
}

.product-card .btn {
  margin-top: auto;
}

nav a.active {
  background: #d4c5d5;
}

select:disabled {
  background: #eee;
  cursor: not-allowed;
  opacity: 0.6;
}

.option-group {
  margin-bottom: 25px;
}

.option-group h3 {
  margin-bottom: 10px;
  color: #6f4b8b;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option {
  padding: 10px 16px;
  background: #f5f5f5;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.2s;
  border: 2px solid transparent;
  font-size: 14px;
}

.option:hover {
  background: #e8e0ec;
}

.option.active {
  background: #7a4c8f;
  color: white;
  border-color: #7a4c8f;
}

nav {
  background: #a59aa7;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.checkout-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.checkout-item {
  display: grid;
  grid-template-columns: 80px 1fr 100px 80px;
  align-items: center;
  gap: 10px;
}

img {
  max-width: 100%;
  height: auto;
}

.form-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

form {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.form-left,
.form-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 10px;
  font-weight: bold;
}

input,
textarea {
  padding: 10px;
  margin-top: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

.form-submit button {
  padding: 12px 25px;
  background: #6c4ab6;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

h1 {
  text-align: center;
  margin-top: 20px;
}

.form-container {
  max-width: 700px;
  margin: 50px auto;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full {
  width: 100%;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.form-submit {
  text-align: center;
  margin-top: 10px;
}

.form-submit button {
  padding: 12px 25px;
  background: #6c4ab6;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

h1 {
  text-align: center;
  margin-top: 20px;
}

textarea {
  height: 80px;
  resize: none;
}

.about-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.product-style {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  width: 320px;
  text-align: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  transition: transform 0.2s ease;
}

.product-style:hover {
  transform: translateY(-5px);
}

.product-style h2 {
  margin-bottom: 10px;
}

.product-style p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.product-style img {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
}

.about-hero {
  width: 100%;
  padding: 80px 20px;
  background: #f7f7f9;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text h1 {
  font-size: 38px;
  color: #5c3b73;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: #7a4c8f;
  margin-bottom: 20px;
}

.about-text p {
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-text .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  border-radius: 10px;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 320px;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;

  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

*{margin:0;padding:0;box-sizing:border-box}

body{font-family:Arial,sans-serif;background:#e9e9e9;color:#222}

.grid{display:grid;grid-template-columns:1.2fr .8fr;gap:30px}

.hero{display:flex;align-items:center;gap:18px;margin-bottom:22px}

.avatar{width:82px;height:82px;border-radius:50%;background:#7a4a99;color:#fff;display:flex;align-items:center;justify-content:center;font-size:34px;font-weight:700}

h1{font-size:34px;color:#4d2d74}

.sub{color:#777;margin-top:6px}

label{display:block;margin:14px 0 8px;font-weight:700;color:#555}

input{width:100%;padding:14px;border:1px solid #ddd;border-radius:14px;font-size:16px}

.row{display:grid;grid-template-columns:1fr 1fr;gap:16px}

.btn{margin-top:22px;width:100%;border:none;background:#7a4a99;color:#fff;padding:16px;border-radius:14px;font-size:18px;font-weight:700;cursor:pointer}

.btn:hover{background:#633881}

.side-title{font-size:24px;color:#4d2d74;margin-bottom:18px}

.stat{padding:18px;border-radius:18px;background:#f7f4fa;margin-bottom:14px}

.stat strong{display:block;font-size:26px;color:#5c367d}

.small{color:#777;margin-top:4px}

.linkbtn{display:block;text-align:center;text-decoration:none;background:#fff;border:2px solid #7a4a99;color:#7a4a99;padding:14px;border-radius:14px;font-weight:700;margin-top:18px}

.linkbtn:hover{background:#7a4a99;color:#fff}

footer{text-align:center;padding:28px;color:#666}

@media(max-width:900px){.grid{grid-template-columns:1fr}.row{grid-template-columns:1fr}}


.hamburger{
    display:none;
    font-size:34px;
    padding:15px 20px;
    cursor:pointer;
    color:#7a4a99;
    font-weight:bold;
    background:white;
}

@media(max-width:768px){

.hamburger{
    display:block;
}

nav ul{
    display:none;
    flex-direction:column;
    width:100%;
}

nav ul.show{
    display:flex;
}

nav ul li{
    width:100%;
    text-align:center;
    border-top:1px solid #eee;
}
}

.full-field{
    width:100%;
    margin-top:18px;
}

.full-field label{
    display:block;
    margin-bottom:8px;
}

    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .checkout-box {
      background: white;
      padding: 20px;
      border-radius: 12px;
      width: 350px;
    }

    .checkout-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .close-btn {
      cursor: pointer;
      font-size: 20px;
    }

    .continue-btn {
      width: 100%;
      padding: 12px;
      margin-top: 15px;
      background: #6c4ab6;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    .pay-btn {
      width: 100%;
      padding: 12px;
      margin-top: 10px;
      background: #4f46e5;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }

    .payment-hidden {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: all 0.4s ease;
    }

    .payment-show {
      max-height: 500px;
      opacity: 1;
      margin-top: 15px;
    }

    .input-group {
      margin-top: 10px;
    }

    .input-group input {
      width: 100%;
      padding: 10px;
      border-radius: 6px;
      border: 1px solid #ccc;
    }

    .exp-wrap {
      display: flex;
      gap: 5px;
      margin-top: 10px;
    }

    .exp {
      width: 50px;
      padding: 8px;
    }

    .error {
      color: red;
      font-size: 12px;
      margin-top: 5px;
    }

    .checkout-container{
  max-width:700px;
  margin:40px auto;
  padding:20px;
}

.checkout-container h1{
  margin-bottom:20px;
}

.checkout-container button{
  padding:12px 18px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  margin-right:10px;
  margin-top:10px;
}

.checkout-container button:first-of-type{
  background:#6c4ab6;
  color:#fff;
}

.checkout-container button:last-of-type{
  background:#ddd;
}

.overlay{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.6);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.checkout-box{
  background:#fff;
  width:380px;
  max-width:95%;
  padding:20px;
  border-radius:14px;
}

.checkout-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.close-btn{
  cursor:pointer;
  font-size:22px;
}

.continue-btn,
.pay-btn{
  width:100%;
  padding:12px;
  border:none;
  border-radius:8px;
  cursor:pointer;
  color:#fff;
  margin-top:12px;
}

.continue-btn{
  background:#6c4ab6;
}

.pay-btn{
  background:#4f46e5;
}

.payment-hidden{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:.4s;
}

.payment-show{
  max-height:500px;
  opacity:1;
  margin-top:15px;
}

.input-group{
  margin-top:10px;
}

.input-group input{
  width:100%;
  padding:10px;
  border:1px solid #ccc;
  border-radius:6px;
}

.exp-wrap{
  display:flex;
  gap:6px;
  align-items:center;
  margin-top:10px;
}

.exp{
  width:60px;
  padding:8px;
}

.error{
  color:red;
  font-size:13px;
  margin-top:8px;
}


@media (max-width: 900px) {


  nav ul {
    flex-direction: column;
    width: 100%;
  }

  nav ul li {
    width: 100%;
  }


  .products {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }


  .about-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 90%;
  }

  .product-page {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .form-row {
    flex-direction: column;
  }

  .index-container {
    padding: 15px;
  }
}

.about-card {
  padding: 30px;
}


.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


.about-text h1 {
  color: #5c3b73;
  margin-bottom: 10px;
}

.subtitle {
  color: #7a4c8f;
  margin-bottom: 15px;
  font-size: 16px;
}


.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 25px;
}

.info-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.2s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  color: #5c3b73;
  margin-bottom: 10px;
}

.info-card p {
  color: #555;
  line-height: 1.5;
  padding: 0;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .about-text {
    text-align: center;
  }
}

.info-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  background: #7a4c8f;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s ease;
}

.info-btn:hover {
  background: #9b6bb0;
  transform: translateY(-2px);
}


.map-card {
  grid-column: 1 / -1;
  background: white;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
}

.map-card iframe {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  border: none;
  margin-bottom: 10px;
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.visit-us-section{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:25px;
  margin-top:20px;
  align-items:stretch;
}


.info-card{
  background:white;
  padding:18px;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}


.btn-row{
  display:flex;
  gap:10px;
  margin-top:12px;
}

.mini-btn{
  flex:1;
  text-align:center;
  padding:10px;
  border-radius:10px;
  background:#7a4c8f;
  color:white;
  text-decoration:none;
}

.mini-btn.outline{
  background:white;
  color:#7a4c8f;
  border:2px solid #7a4c8f;
}


.visit-right iframe{
  width:100%;
  height:100%;
  min-height:320px;
  border:0;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}


.visit-badge{
  margin-top:15px;
  text-align:center;
  padding:10px;
  border-radius:999px;
  background:#7a4c8f;
  color:white;
  font-weight:bold;
}


@media(max-width:768px){
  .about-grid,
  .visit-us-section{
    grid-template-columns:1fr;
  }

  .visit-right iframe{
    min-height:250px;
  }
}

.visit-right iframe{
  width:100%;
  height:320px;
  border:0;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

header {
  position: relative;
}


nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #a59aa7;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}


header img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 220px;   
  object-fit: cover;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}


.wrapper {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}


.card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


header img {
  width: 100%;
}

nav {
  background: #a59aa7;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
}

nav ul li {
  flex: 1;
}

nav a {
  display: block;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

nav a:hover,
nav a.active {
  background: #d4c5d5;
}


h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #5c3b73;
}

h2, h3 {
  color: #5c3b73;
  margin-bottom: 10px;
}

p {
  margin-bottom: 12px;
  padding: 0;
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.about-text {
  text-align: left;
}

.about-image img {
  border-radius: 16px;
}


.visit-us-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 20px;
  align-items: stretch;
}


.info-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  margin-bottom: 15px;
}


.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #7a4c8f;
  color: white;
  border-radius: 10px;
  text-decoration: none;
}

.btn:hover {
  background: #9b6bb0;
}

.btn-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.mini-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  background: #7a4c8f;
  color: white;
  text-decoration: none;
}

.mini-btn.outline {
  background: white;
  color: #7a4c8f;
  border: 2px solid #7a4c8f;
}


.visit-right iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 14px;
}


.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}


@media (max-width: 768px) {

  .about-grid,
  .visit-us-section {
    grid-template-columns: 1fr;
  }

  nav ul {
    flex-direction: column;
  }

  .wrapper {
    margin: 20px auto;
  }
}


.index-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}


.intro {
  margin-bottom: 30px;
  color: #555;
}


.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}


.product-card {
  background: white;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.product-card h3 {
  margin: 12px 0 6px;
  color: #5c3b73;
}

.product-card .price {
  color: #777;
  margin-bottom: 10px;
}


.product-card .btn {
  width: 100%;
}


header img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}


nav {
  background: #a59aa7;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
}

nav ul li {
  flex: 1;
}

nav a {
  display: block;
  padding: 15px;
  text-align: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  background: #d4c5d5;
}


@media (max-width: 768px) {
  .products {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  nav ul {
    flex-direction: column;
  }
}



.index-container {
  margin-top: 0 !important;
  padding-top: 15px;
}

.index-container .intro {
  margin-top: 0;
}

body {
  padding-top: 0;
}


.about-grid {
  margin-top: 10px !important;
}


.wrapper {
  margin-top: 10px !important;
}


.about-text {
  margin-top: 0;
}


h1:first-child {
  margin-top: 0;
}


.products,
.index-container {
  margin-top: 10px !important;
}

.wrapper {
  margin-top: 10px !important;
}

.page-header {
  margin-top: 10px;
  margin-bottom: 20px;
}

.products {
  padding-top: 5px;
}

body {
  padding-top: 0;
}


.birthday-items,
#birthday-items,
.products {
  margin-top: 10px !important;
  padding-top: 5px;
}


.birthday-items-header,
.page-header {
  margin-top: 10px;
  margin-bottom: 20px;
}


.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}


.wrapper {
  margin-top: 10px !important;
}


.hamburger {
  display: none;
  font-size: 28px;
  padding: 12px 18px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: white;
}


@media (max-width: 768px) {

  .hamburger {
    display: block;
    text-align: left;
  }

  nav ul {
    display: none !important;   
    flex-direction: column;
    width: 100%;
    background: #a59aa7;
  }

  nav ul.show {
    display: flex !important;   
  }

  nav ul li {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  nav ul li a {
    padding: 14px;
  }
}


.header-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.cart-dropdown {
  position: relative;
}

.cart-preview {
  display: none;
  position: absolute;
  background: rgb(195, 185, 198);
  right: 0;
  top: 100%;
  width: 250px;
  z-index: 999;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
  text-decoration: none;
  border-radius: 5px;
}

.skip-link:focus {
  top: 10px;
}

.cart-item {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 5px 0;
}

.cart-item-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  margin: 0;
  font-size: 14px;
}

.cart-item-price {
  font-size: 12px;
  color: #555;
}

.hidden {
  display: none;
}

select {
  pointer-events: auto !important;
  position: relative;
  z-index: 999;
}

select {
  pointer-events: auto;
  opacity: 1;
  position: relative;
  z-index: 10;
}

#candle-options {
  position: relative;
  z-index: 20;
}