body {
  font-family: 'Questral', 'Poppins', sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
}
.top-bar {
  position: relative;
  overflow: hidden;
  height: 2.2rem;
  background: #fafafa;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  padding: 0;
  flex-wrap: nowrap;
  min-height: 36px;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: topbar-scroll 16s linear infinite;
  gap: 2.5rem;
  padding: 0.4rem 0;
}
.top-bar-inner-reverse {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: topbar-scroll-reverse 16s linear infinite;
  gap: 2.5rem;
  padding: 0.4rem 0;
}
/*
  For seamless infinite animation, duplicate the notification texts in the HTML inside .top-bar-inner.
  This ensures the end of the texts is never visible and the scroll is continuous.
*/
@keyframes topbar-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes topbar-scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: relative;
  z-index: 100;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem 0.7rem 2.5rem;
}
.header-left, .header-center, .header-right {
  display: flex;
  align-items: center;
}
.header-left { gap: 1rem; }
.menu-btn {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  margin-right: 0.5rem;
}
.dropdown-btn {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Questral', 'Poppins', sans-serif; 
  color: #222;
  padding: 0.2rem 0.7rem;
}
.header-center { flex: 1; justify-content: center; }
.logo {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.header-right { gap: 0.7rem; }
.search-bar-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.search-input {
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 0.4rem 2.5rem 0.4rem 2.5rem;
  font-family: 'Questral', 'Poppins', sans-serif; 
  font-size: 1rem;
  outline: none;
  margin-right: 0.7rem;
  background: #fafafa;
  transition: border 0.2s;
  width: 220px;
  position: relative;
  color: #222;
}
.search-input:focus { border: 1.5px solid #222; }
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #222;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-icon img {
  vertical-align: middle;
}
.basket-icon {
  font-size: 1.5rem;
  color: #222;
  margin-left: 0.2rem;
  transition: color 0.2s;
  cursor: pointer;
}
.basket-icon:hover { color: #444; }
.icon {
  font-size: 1.2rem;
  margin: 0 0.2rem;
  color: #222;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-radius 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
}
.icon-heart {
  font-size: 1.56rem !important;
  transition: background 0.2s, color 0.2s;
}
.icon-heart:hover, .icon-profile:hover {

  color: #fff;
}
.icon-profile {
  font-size: 1.2rem;
}
.btn-outline {
  background: #fff;
  border: 1.5px solid #222;
  color: #222;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-family: 'Questral', 'Poppins', sans-serif; 
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn-outline:hover {
  background: #222;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.btn-outline.no-underline {
  text-decoration: none !important;
}
.header-social {
  flex: 1 1 0;
  justify-content: flex-start;
  margin: 0;
  padding-left: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-social a img {
  width: 22px;
  height: 22px;
  filter: grayscale(1) opacity(0.7);
  transition: filter 0.2s, opacity 0.2s;
  vertical-align: middle;
}
.header-social a img:hover {
  filter: none;
  opacity: 1;
}
.header-welcome {
  flex: 2 1 0;
  text-align: center;
  margin: 0;
  font-size: 1.1rem;
  color: #444;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.header-welcome span {
  width: 100%;
  text-align: center;
}
.hero {
  position: relative;
  width: 100%;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.18);
}
.hero-overlay h1 {
  color: #fff;
  font-size: 4rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.products-section {
  padding: 2.5rem 0 1.5rem 0;
  background: #fff;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 2.5rem 1.2rem 2.5rem;
}
.section-title h2 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.section-title a {
  color: #222;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.section-title a:hover { color: #888; }
/* Keşfedin link hover - pure red */
.section-title a[href="#"]:hover {
  color: #ff0000 !important;
  filter: none !important;
  background: none !important;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2.2rem;
  margin: 0 2.5rem;
}
.product-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 1rem 1.5rem 1rem;
  position: relative;
  min-width: 220px;
  max-width: 320px;
}
.product-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
  transform: translateY(-6px) scale(1.03);
}
.product-card img {
  width: 100%;
  aspect-ratio: 4/5;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  background: #f7f7f7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 1rem;
  display: block;
  position: relative;
}
.product-hover-icons {
  position: absolute;
  right: 10px;
  top: 10px;
  transform: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  transform: translateX(20px);
}
.product-card:hover .product-hover-icons {
  opacity: 1;
  transform: translateX(0);
}
.hover-icon {
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.hover-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.hover-icon img {
  width: 18px;
  height: 18px;
  margin: 0;
  box-shadow: none;
}
.hover-icon.quick-view img {
  width: 16px;
  height: 16px;
}
.hover-icon.favorite img {
  width: 18px;
  height: 18px;
}
.hover-icon.cart img {
  width: 18px;
  height: 18px;
}
.product-info {
  margin: 0.5rem 0 0.2rem 0;
  text-align: center;
}
.product-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.product-price {
  font-size: 1rem;
  color: #444;
}
.see-all-btn {
  text-align: center;
  margin: 1.5rem 0 0 0;
}
.collection-section {
  background: #fafafa;
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
}
.collection-section h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.2rem;
  margin: 0 2.5rem;
}
.collection-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  padding: 1rem 1rem 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.3s, transform 0.2s;
  min-width: 220px;
  max-width: 340px;
}
.collection-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
  transform: translateY(-6px) scale(1.03);
}
.collection-card img {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  background: #f7f7f7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 0.7rem;
  display: block;
}
.collection-card span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.2rem;
  font-size: 1.08rem;
  font-weight: 500;
  color: #222;
  gap: 0.4em;
  padding-left: 0.1em;
}
.collection-card span svg {
  flex-shrink: 0;
  margin-left: 0.2em;
}
.info-boxes {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  background: #fff;
  padding: 2.2rem 0 2.2rem 0;
  border-bottom: 1px solid #eee;
}
.info-box {
  background: #fafafa;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.2rem 2.2rem;
  text-align: center;
  min-width: 220px;
  max-width: 320px;
}
.info-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.info-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.info-desc {
  font-size: 0.97rem;
  color: #666;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem;
  background: #111;
  color: #fff;
  padding: 1.2rem 0 1.2rem 0;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
footer {
  background: #fafafa;
  color: #222;
  padding: 2.5rem 0 0.5rem 0;
  border-top: 1px solid #eee;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem;
  padding: 0 2.5rem;
}
.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}
.footer-newsletter {
  flex: 1 1 320px;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.newsletter-form {
  display: flex;
  margin-top: 0.7rem;
}
.newsletter-form input[type="email"] {
  border: 1px solid #ccc;
  border-radius: 8px 0 0 8px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  outline: none;
  flex: 1;
}
.newsletter-form button {
  border: 1px solid #222;
  background: #222;
  color: #fff;
  border-radius: 0 8px 8px 0;
  padding: 0.5rem 1.2rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: #444;
}
.footer-links {
  display: flex;
  gap: 2.5rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 180px;
}
.footer-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.footer-col a {
  color: #222;
  text-decoration: none;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #888; }
.cookie-popup {
  position: fixed; bottom: 20px; left: 20px; background: #fff; border: 1px solid #222; border-radius: 8px; padding: 1rem 2rem; box-shadow: 0 2px 8px rgba(0,0,0,0.10); display: flex; align-items: center; gap: 1rem; z-index: 9999;
}
@media (max-width: 1100px) {
  .header-row, .section-title, .products-grid, .collection-grid, .footer-main {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
  .info-boxes { gap: 1.2rem; }
}
@media (max-width: 900px) {
  .header-row, .footer-main { flex-direction: column; gap: 1.2rem; align-items: stretch; }
  .footer-links { flex-direction: column; gap: 1.2rem; }
  .info-boxes { flex-direction: column; gap: 1.2rem; align-items: center; }
  .header-social { padding-left: 0.5rem; }
}
@media (max-width: 600px) {
  .top-bar-inner { gap: 1.2rem; font-size: 0.85rem; }
  .header-row { padding: 0.7rem 0.5rem 0.7rem 0.5rem; }
  .section-title, .products-grid, .collection-grid, .footer-main { margin-left: 0.3rem; margin-right: 0.3rem; }
  .products-grid, .collection-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer-menu { gap: 1rem; font-size: 0.9rem; }
  .footer-logo { font-size: 1.3rem; }
  .hero { height: 160px; }
  .hero-overlay h1 { font-size: 2rem; }
  .header-sub-row {
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    gap: 0.5rem;
    padding: 0 0.5rem 0.5rem 0.5rem;
  }
  .header-social {
    justify-content: center !important;
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .header-welcome {
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .header-actions-secondary {
    justify-content: center !important;
    width: 100%;
    margin-bottom: 0.2rem;
  }
}
/* Arrow icon animation: rotate up on hover */
.dropdown-btn .arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), filter 0.2s;
}
.dropdown-btn:hover .arrow, .dropdown-btn:focus .arrow {
  transform: rotate(-180deg);
  animation: none;
}

/* Header sub-row layout */
.header-sub-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem 0.5rem 2.5rem;
  gap: 1rem;
}
.header-social {
  flex: 1 1 0;
  justify-content: flex-start;
  margin: 0;
}
.header-welcome {
  flex: 2 1 0;
  text-align: center;
  margin: 0;
  font-size: 1.1rem;
  color: #444;
  letter-spacing: 0.08em;
}
.header-actions-secondary {
  flex: 1 1 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.7rem;
}
.header-actions-secondary .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
}
.header-actions-secondary .icon img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  border: 1px solid transparent;
}
.header-actions-secondary .icon:hover {
  background: none !important;
}
.header-actions-secondary .icon:hover img {
  filter: none !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
.header-actions-secondary .icon-heart:hover,
.header-actions-secondary .icon-profile:hover {
  background: none !important;
}
.header-actions-secondary .icon img[alt]:not([src]) {
  border: 1px solid #f00;
  background: #fff url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' width=\'28\' height=\'28\'><rect width=\'28\' height=\'28\' fill=\'#fff\'/><text x=\'14\' y=\'18\' font-size=\'12\' text-anchor=\'middle\' fill=\'#f00\'>!</text></svg>') center/contain no-repeat;
}
@media (max-width: 900px) {
  .header-sub-row { flex-direction: column; align-items: stretch; gap: 0.5rem; padding: 0 1rem 0.5rem 1rem; }
  .header-welcome { text-align: center; }
  .header-actions-secondary { justify-content: flex-end; }
}

/* Shopping basket icon */
.icon-basket {
  font-size: 1.4rem;
  color: #222;
  margin-left: 0.7rem;
  cursor: pointer;
  transition: color 0.2s;
  transform: scaleX(-1);
}
.icon-basket:hover {
  color: #888;
}

/* X (Twitter) and Pinterest icons */
.icon-x {
  width: 22px;
  height: 22px;
  display: inline-block;
  background: url('https://upload.wikimedia.org/wikipedia/commons/9/9f/X_logo_2023.svg') no-repeat center/contain;
  filter: grayscale(1) opacity(0.7);
  transition: filter 0.2s, opacity 0.2s;
}
.icon-x:hover { filter: none; opacity: 1; }
.icon-pinterest {
  width: 22px;
  height: 22px;
  display: inline-block;
  background: url('https://cdn-icons-png.flaticon.com/512/733/733646.png') no-repeat center/contain;
  filter: grayscale(1) opacity(0.7);
  transition: filter 0.2s, opacity 0.2s;
}
.icon-pinterest:hover { filter: none; opacity: 1; }

.header-actions-secondary .icon-heart:hover {
  background: none !important;
}
.header-actions-secondary .icon-heart:hover img,
.header-actions-secondary .icon-profile:hover img {
  filter: none !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
.header-actions-secondary .icon-profile:hover {
  background: none !important;
}

/* Footer Menu Area */
.footer-menu-area {
  background: #000;
  color: #fff;
  padding: 0 0 0 0;
  margin: 0;
}
.footer-marquee {
  overflow: hidden;
  width: 100%;
  color: #fff;
  height: 2.2rem;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-family: 'Questral', 'Poppins', sans-serif;
  border: none;
  position: relative;
  background: #000;
}
.marquee-inner {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  will-change: transform;
}
.footer-marquee .marquee-inner span {
  margin-right: 3.5rem;
  font-variant: normal;
  font-family: 'Questral', 'Poppins', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: none;
}
.marquee-rtl .marquee-inner {
  animation: marquee-rtl 16s linear infinite;
}
.marquee-ltr .marquee-inner {
  animation: marquee-ltr 16s linear infinite;
}
.footer-marquee .marquee-inner span.dazzle-text {
  margin-right: 0.5rem;
  font-variant: normal;
  font-family: 'Questral', 'Poppins', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: none;
}
.footer-marquee .marquee-inner span.dot {
  display: inline-block;
  margin: 0 1.7rem;
  font-size: 1.5rem;
  color: #fff;
  vertical-align: middle;
  line-height: 1;
}
@media (max-width: 700px) {
  .footer-menu-center {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    white-space: nowrap;
    width: 100vw;
    padding: 0.7rem 0 0.7rem 0;
    font-size: 1rem;
    scrollbar-width: none;
    background: #000;
  }
  .footer-menu-center::-webkit-scrollbar {
    display: none;
  }
  .footer-menu-center span {
    min-width: 44vw;
    text-align: center;
    display: inline-block;
    font-size: 1rem;
    padding: 0 0.5rem;
    color: #fff;
    font-weight: 500;
  }
  .footer-menu-divider {
    margin: 0;
    height: 1.2rem;
  }
  .footer-marquee {
    font-size: 1rem;
    height: 1.5rem;
  }
  .footer-marquee .marquee-inner span.dazzle-text {
    font-size: 1rem;
    margin-right: 0.3rem;
  }
  .footer-marquee .marquee-inner span.dot {
    margin: 0 1rem;
    font-size: 1.2rem;
  }
}
.footer-menu-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1.2rem 0 1.2rem 0;
  background: #000;
  color: #fff;
  margin: 0 auto;
  width: 100%;
}
.footer-menu-divider {
  display: inline-block;
  width: 1px;
  height: 1.7rem;
  background: #fff;
  margin: 0 1.7rem;
  opacity: 0.3;
  align-self: center;
}
@keyframes marquee-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-ltr {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* New Footer Main Area */
.footer-main-new {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem 2.5rem 1.5rem 2.5rem;
  background: #fafafa;
  flex-wrap: wrap;
}
.footer-main-col {
  flex: 1 1 300px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-main-left {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer-main-logo {
  align-self: center;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
  font-family: 'Questral', 'Poppins', sans-serif;
}
.footer-main-newsletter-text {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 1.1rem;
  line-height: 1.4;
}
.footer-main-newsletter-form {
  display: flex;
  width: 100%;
  max-width: 340px;
  margin-bottom: 1.1rem;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1.5px solid #ddd;
  transition: border 0.2s;
}
.footer-main-newsletter-form input[type="email"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  border-radius: 2rem 0 0 2rem;
  color: #222;
  font-family: 'Questral', 'Poppins', sans-serif;
  transition: background 0.2s;
}
.footer-main-newsletter-form input[type="email"]::placeholder {
  color: #aaa;
  opacity: 1;
  transition: color 0.2s;
}
.footer-main-newsletter-form input[type="email"]:hover::placeholder,
.footer-main-newsletter-form input[type="email"]:focus::placeholder {
  color: #222;
  opacity: 1;
}
.footer-main-newsletter-form button {
  border: none;
  background: #222;
  color: #fff;
  border-radius: 0 2rem 2rem 0;
  padding: 0 1.3rem;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-main-newsletter-form button:hover {
  background: #444;
}
.footer-main-social {
  align-self: center;
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.footer-main-social a img {
  width: 26px;
  height: 26px;
  filter: grayscale(1) opacity(0.7);
  transition: filter 0.2s, opacity 0.2s;
}
.footer-main-social a img:hover {
  filter: none;
  opacity: 1;
}
.footer-main-center {
  align-items: center;
}
.footer-main-title {
  font-size: 1.15rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
  color: #222;
  font-family: 'Questral', 'Poppins', sans-serif;
}
.footer-main-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.footer-main-list li {
  margin-bottom: 0.5rem;
}
.footer-main-list a {
  color: #222;
  text-decoration: none;
  font-size: 1.02rem;
  transition: color 0.2s;
}
.footer-main-list a:hover, .footer-main-link:hover {
  color: #888;
  text-decoration: none;
}
.footer-main-right {
  align-items: center;
  text-align: center;
}
.footer-main-contact {
  font-size: 1.02rem;
  color: #222;
  margin-left: 0.4em;
}
.footer-main-link {
  color: #222;
  text-decoration: none;
  font-size: 1.02rem;
  transition: color 0.2s;
}
@media (max-width: 900px) {
  .footer-main-new {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem 0.7rem 2.5rem 0.7rem;
  }
  .footer-main-col {
    align-items: center !important;
    margin-bottom: 1.2rem;
    padding-bottom: 2.5rem;
  }
  .footer-main-left, .footer-main-right {
    align-items: center !important;
  }
  .footer-main-newsletter-form {
    max-width: 100%;
  }
}

/* Search Results Page Styles */
.search-results {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-header h1 {
    font-family: 'Poppins', serif;
    font-size: 2rem;
    color: #333;
    margin: 0;
}

.search-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: #333;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.5rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover, .view-btn.active {
    background-color: #333;
    color: white;
    border-color: #333;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn, .add-to-cart-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    background: white;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.product-card:hover .quick-view-btn,
.product-card:hover .add-to-cart-btn {
    transform: translateY(0);
    opacity: 1;
}

.quick-view-btn:hover, .add-to-cart-btn:hover {
    background: #333;
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: #333;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #ffc107;
}

.product-rating span {
    color: #666;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover, .page-btn.active {
    background: #333;
    color: white;
    border-color: #333;
}

.page-dots {
    display: flex;
    align-items: center;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .search-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-filters {
        width: 100%;
        flex-wrap: wrap;
    }

    .filter-select {
        width: 100%;
    }

    .results-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .page-numbers {
        order: -1;
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
}

/* List View Styles */
.results-grid.list-view {
    grid-template-columns: 1fr;
}

.results-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
}

.results-grid.list-view .product-image {
    aspect-ratio: 1;
}

.results-grid.list-view .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .results-grid.list-view .product-card {
        grid-template-columns: 1fr;
    }
}

/* Cart Page Styles */
.cart-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.section-title {
    font-family: 'Poppins', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cart-items {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 2fr 1fr 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.cart-item:hover {
    background-color: #f8f9fa;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.item-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.item-variant {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.item-price {
    font-weight: 600;
    color: #333;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.item-quantity input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.25rem;
}

.item-total {
    font-weight: 600;
    color: #333;
}

.remove-item {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #c82333;
}

.cart-summary {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
}

.cart-summary h2 {
    font-family: 'Poppins', serif;
    font-size: 1.5rem;
    color: #333;
    margin: 0 0 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #666;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
}

.coupon-code {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.coupon-code input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.apply-coupon {
    padding: 0.75rem 1.5rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.apply-coupon:hover {
    background: #444;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
}

.checkout-btn:hover {
    background: #444;
}

.continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.continue-shopping:hover {
    color: #333;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cart-container {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .item-image {
        width: 80px;
        height: 80px;
    }

    .item-quantity,
    .item-total,
    .remove-item {
        grid-column: 2;
    }

    .item-quantity {
        justify-content: flex-start;
    }

    .item-total {
        margin-top: 0.5rem;
    }

    .remove-item {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .item-image {
        margin: 0 auto;
    }

    .item-quantity {
        justify-content: center;
    }

    .remove-item {
        position: static;
        margin-top: 1rem;
    }

    .coupon-code {
        flex-direction: column;
    }

    .apply-coupon {
        width: 100%;
    }
}

/* Payment Page Styles */
.payment-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #333;
    border-color: #333;
    color: white;
}

.step-text {
    font-size: 0.9rem;
    color: #666;
}

.step.active .step-text {
    color: #333;
    font-weight: 500;
}

.payment-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-form {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.payment-form h2 {
    font-family: 'Poppins', serif;
    font-size: 1.5rem;
    color: #333;
    margin: 0 0 1.5rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    flex: 1;
    position: relative;
}

.payment-method input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-method label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method input[type="radio"]:checked + label {
    background: #333;
    color: white;
    border-color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox input[type="checkbox"] {
    width: auto;
}

.checkbox label {
    margin: 0;
}

.pay-button {
    width: 100%;
    padding: 1rem;
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pay-button:hover {
    background: #444;
}

.order-summary {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    position: sticky;
    top: 2rem;
}

.order-summary h2 {
    font-family: 'Poppins', serif;
    font-size: 1.5rem;
    color: #333;
    margin: 0 0 1.5rem;
}

.order-items {
    margin-bottom: 2rem;
}

.order-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details h3 {
    font-size: 1rem;
    margin: 0 0 0.25rem;
}

.item-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 0.25rem;
}

.item-price {
    font-weight: 600;
    color: #333;
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #666;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
}

.secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.secure-payment i {
    color: #28a745;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .payment-container {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .checkout-steps::before {
        display: none;
    }

    .step {
        flex: 1;
        min-width: 120px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .payment-form,
    .order-summary {
        padding: 1rem;
    }

    .step {
        min-width: 100px;
    }

    .step-text {
        font-size: 0.8rem;
    }
}

.svg-heart, .svg-profile {
  width: 28px;
  height: 28px;
  display: block;
  transition: transform 0.18s cubic-bezier(.4,2,.6,1), filter 0.18s, stroke 0.18s;
  filter: grayscale(1) opacity(0.7);
}
.icon-heart:hover .svg-heart,
.icon-profile:hover .svg-profile {
  filter: none;
  transform: scale(1.18);
}

/* Modern Main Header */
.main-header-modern {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0;
}
.header-row-modern {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.2rem 0.7rem 0.7rem;
  gap: 1rem;
}
.uyelik-btn { 
  margin-left: 0.7rem; 
}
.main-nav { 
  margin-left: 0; 
  margin-right: 0; 
  display: flex;
  gap: 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.header-icons { 
  display: flex; 
  align-items: center; 
  gap: 0.7rem; 
}
.header-icons .search-toggle { background: none; border: none; padding: 0; margin-right: 0.5rem; cursor: pointer; }
.svg-search { width: 22px; height: 22px; filter: grayscale(1) opacity(0.7); transition: filter 0.2s, opacity 0.2s; }
.svg-search:hover { filter: none; opacity: 1; }
/* Modern Hero */
.hero-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  padding-top: 150px;
  padding-bottom: 50px;
  position: relative;
  min-height: 0;
}
.hero-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
}
.hero-logo-img {
  width: 260px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 0.5rem;
}
.hero-logo-desc {
  font-size: 1.02rem;
  color: #222;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}

/* Hero Bölüm */
.hero-section {
  width: 100%;
  height: auto;
}

.hero-section img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .hero-section img {
    object-fit: cover;
  }
}
/* Discover Button */
.discover-btn {
  border: 1.5px solid #222;
  border-radius: 22px;
  padding: 0.32em 1.2em;
  font-size: 1.01rem;
  font-weight: 500;
  color: #222;
  background: #fff;
  transition: background 0.18s, color 0.18s, border 0.18s;
  text-decoration: none;
  display: inline-block;
}
.discover-btn:hover {
  color: #ff0000;
  border-color: #ff0000;
  background: #fff0f0;
}
/* Modern Product Grid */
.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2.5rem;
  margin: 0 1.2rem;
}
.product-card-modern {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(0,0,0,0.08);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: none;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
.product-card-modern img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  margin-bottom: 0;
  box-shadow: none;
}
.product-card-modern .product-info {
  text-align: center;
  width: 100%;
  padding: 0.8rem 1.1rem 1.2rem 1.1rem;
}
.product-card-modern .product-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #222;
  display: block;
  margin-bottom: 0.2rem;
}
.product-card-modern .product-price {
  font-size: 1.01rem;
  color: #444;
  font-weight: 500;
}
.new-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: #222;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.18em 0.8em;
  border-radius: 12px;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 1px 6px 0 rgba(0,0,0,0.10);
}
@media (max-width: 900px) {
  .products-grid-modern {
    gap: 0.7rem;
    margin: 0 0.5rem;
  }
  .product-card-modern {
    max-width: 48vw;
    padding: 0;
  }
  .product-card-modern .product-info {
    padding: 0.6rem 0.7rem 1rem 0.7rem;
  }
  .hero-img-modern {
    height: 448px;
  }
  .hero-logo-area {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .header-row-modern { 
    padding: 0.5rem 0.5rem; 
    gap: 0.5rem;
  }
  .main-nav { 
    display: none !important;
  }
  .header-right-group {
    gap: 0.8rem;
  }
  .header-icons {
    gap: 0.6rem;
  }
  .uyelik-btn {
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
  }
}

@media (max-width: 600px) {
  .header-row-modern { 
    padding: 0.4rem 0.3rem; 
    gap: 0.4rem;
  }
  .main-nav { 
    display: none !important;
  }
  .header-right-group {
    gap: 0.6rem;
  }
  .header-icons {
    gap: 0.5rem;
  }
  .uyelik-btn {
    font-size: 0.85rem;
    padding: 0.25rem 0.7rem;
    margin-left: 0.5rem;
  }
  .dazzle-logo-text { font-size: 1.4rem; margin: 0 0.2rem 0 0.2rem; }
  .hero-img-modern { height: 224px; }
  .search-bar-modern { padding: 0.5rem 0.2rem; }
  .search-input-modern { width: 100px; font-size: 0.95rem; }
  .hero-logo-area {
    margin-bottom: 16px;
  }
}

/* Dazzle Logo Text (match footer-main-logo) */
.dazzle-logo-text {
  font-family: 'Questral', 'Poppins', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: #222;
  display: block;
  margin: 0 1.2rem 0 1.2rem;
  line-height: 1.1;
}
.footer-main-logo, .dazzle-logo-text {
  font-family: 'Questral', 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: #222;
}

/* Header right group for nav+icons */
.header-right-group {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .dazzle-logo-text { font-size: 1.5rem; margin: 0 0.5rem 0 0.5rem; }
  .hero-img-modern { height: 448px; }
  .header-right-group { gap: 0.8rem; }
  .main-nav { gap: 0.8rem; font-size: 0.95rem; }
  .header-icons { gap: 0.5rem; }
}

@media (min-width: 769px) {
  .main-nav {
    display: flex !important;
  }
}

.main-nav a {
  color: #222;
  text-decoration: none !important;
  font-weight: 500;
  transition: color 0.18s;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Questral', 'Poppins', sans-serif;
  outline: none;
}
.main-nav a:hover, 
.main-nav a:focus { 
  color: #ff0000; 
  text-decoration: none !important;
}
.main-nav a:visited,
.main-nav a:active {
  text-decoration: none !important;
}

/* Mobile Navigation Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav-content {
  padding: 80px 1rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: color 0.2s;
  font-family: 'Questral', 'Poppins', sans-serif;
}

.mobile-nav-link:hover {
  color: #ff0000;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: block;
  }
}

/* Modern, centered, stylish search bar overlay */
.search-bar-modern {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.13), 0 1.5px 8px 0 rgba(0,0,0,0.08);
  padding: 0.5rem 1.2rem 0.5rem 1.2rem;
  min-width: 320px;
  max-width: 90vw;
  border: 1.5px solid #eee;
  transition: all 0.2s;
}
.search-input-modern {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Poppins', 'Questrial', sans-serif;
  font-size: 1.08rem;
  color: #222;
  padding: 0.4rem 1.2rem 0.4rem 0.7rem;
  border-radius: 22px;
  width: 220px;
  transition: box-shadow 0.2s;
}
.search-input-modern:focus {
  box-shadow: 0 0 0 2px #ff0000;
  background: #fafafa;
}
.search-submit-modern {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 0.4rem 1.2rem;
  font-size: 1.01rem;
  font-family: 'Poppins', 'Questrial', sans-serif;
  font-weight: 500;
  cursor: pointer;
  margin-left: 0.5rem;
  transition: background 0.18s;
}
.search-submit-modern:hover { background: #ff0000; }
@media (max-width: 600px) {
  .search-bar-modern { min-width: 180px; padding: 0.3rem 0.5rem; }
  .search-input-modern { width: 90px; font-size: 0.95rem; }
}

.hero-logo-area .dazzle-logo-text {
  font-size: 6.9rem !important;
}
@media (max-width: 600px) {
  .hero-logo-area .dazzle-logo-text {
    font-size: 4.2rem !important;
  }
}

@media (min-width: 901px) {
  .products-grid-modern {
    grid-template-columns: repeat(3, 1fr);
  }
}

.main-image {
  border-radius: 0 !important;
}
.thumbnail {
  border-radius: 0 !important;
  width: 180px !important;
  height: 240px !important;
  object-fit: cover;
}
.thumbnail-container {
  gap: 2.5rem !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 260px;
}
@media (max-width: 900px) {
  .thumbnail {
    width: 120px !important;
    height: 160px !important;
  }
  .thumbnail-container {
    min-height: 170px;
    gap: 1.2rem !important;
  }
}
@media (max-width: 600px) {
  .thumbnail {
    width: 80px !important;
    height: 100px !important;
  }
  .thumbnail-container {
    min-height: 100px;
    gap: 0.7rem !important;
  }
}

/* Modal Lightbox Zoom Styles */
.zoom-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,34,34,0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s;
}
.zoom-modal-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  background: #fff;
  display: block;
}
.zoom-modal-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.zoom-modal-close:hover {
  color: #0d6efd;
}
@media (max-width: 600px) {
  .zoom-modal-close {
    top: 12px;
    right: 18px;
    font-size: 2rem;
  }
  .zoom-modal-img {
    max-width: 98vw;
    max-height: 70vh;
  }
}
.zoom-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff 60%, #e9e9ef 100%);
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(34,34,34,0.18), 0 1.5px 6px rgba(34,34,34,0.10);
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: box-shadow 0.22s, background 0.22s, filter 0.18s;
  user-select: none;
  border: 1.5px solid #e0e0e0;
  padding: 0;
}
.zoom-modal-arrow svg {
  width: 2.1rem;
  height: 2.1rem;
  display: block;
  fill: #222;
  filter: drop-shadow(0 1.5px 2.5px rgba(34,34,34,0.10));
}
.zoom-modal-arrow:hover {
  box-shadow: 0 8px 32px rgba(13,110,253,0.18), 0 2.5px 10px rgba(34,34,34,0.13);
  background: linear-gradient(135deg, #f5faff 60%, #e0eafd 100%);
  filter: brightness(1.08);
}
#zoom-modal-prev { left: 24px; }
#zoom-modal-next { right: 24px; }
@media (max-width: 600px) {
  .zoom-modal-arrow {
    width: 36px;
    height: 36px;
  }
  .zoom-modal-arrow svg {
    width: 1.3rem;
    height: 1.3rem;
  }
  #zoom-modal-prev { left: 6px; }
  #zoom-modal-next { right: 6px; }
} 

/* Footer Bottom Section */
.footer-bottom {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 1.2rem 0;
  margin-top: 0;
}

.footer-bottom-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-copyright {
  font-family: 'Questral', 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #666;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.footer-payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-payment-icons img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.footer-designer {
  font-family: 'Questral', 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #666;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.footer-designer-name {
  font-weight: 600;
  color: #333;
}

/* Responsive Footer Bottom */
@media (max-width: 900px) {
  .footer-bottom-content {
    flex-direction: column;
    gap: 0.7rem;
    text-align: center;
  }
  
  .footer-copyright,
  .footer-designer {
    font-size: 0.9rem;
  }
  
  .footer-payment-icons img {
    height: 47px;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    padding: 1rem 0;
  }
  
  .footer-bottom-content {
    padding: 0 0.8rem;
    gap: 0.8rem;
  }
  
  .footer-copyright,
  .footer-designer {
    font-size: 0.85rem;
  }
  
  .footer-payment-icons img {
    height: 42px;
  }
}

@media (max-width: 480px) {
  .footer-bottom-content {
    gap: 0.6rem;
  }
  
  .footer-copyright,
  .footer-designer {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .footer-payment-icons img {
    height: 36px;
  }
}