/*--------------------------------------------------------------
/* ibuluxe - NATURAL . HEALTHY . ORGANIC
/* Main Stylesheet
--------------------------------------------------------------*/

/*--------------------------------------------------------------
/** 1. CSS VARIABLES
--------------------------------------------------------------*/
:root {
  /* Dimensions */
  --header-height: 160px;
  --header-height-min: 80px;

  /* Theme Colors - Gold/Premium Natural */
  --accent-color: #d4af37;
  --accent-color-dark: #b8962e;
  --secondary-color: #8B7355;
  --dark-color: #1a1a1a;
  --light-color: #f9f7f4;
  --body-text-color: #4a4a4a;
  --light-text-color: #888888;
  --dark-text-color: #1a1a1a;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --bg-dark: #07070a;
  --bg-card: #0e0e12;

  /* Fonts */
  --body-font: 'Montserrat', sans-serif;
  --heading-font: 'Playfair Display', Georgia, serif;

  /* Bootstrap Override */
  --bs-body-font-family: var(--body-font);
  --bs-body-font-size: 0.95rem;
  --bs-body-color: var(--body-text-color);
  --bs-primary: var(--accent-color);
  --bs-link-color: var(--dark-color);
  --bs-link-hover-color: var(--accent-color);
}

@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}

/*--------------------------------------------------------------
/** 2. GENERAL STYLES
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--body-text-color);
  background-color: var(--light-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--heading-font);
  line-height: 1.3;
  color: var(--dark-color);
  margin: 20px 0;
}

h1, .h1 { font-size: 2.8em; }
h2, .h2 { font-size: 2em; }
h3, .h3 { font-size: 1.5em; }
h4, .h4 { font-size: 1.2em; }
h5, .h5 { font-size: 1em; }
h6, .h6 { font-size: 0.85em; }

p {
  margin: 0 0 20px 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

::selection {
  background: var(--accent-color);
  color: #fff;
}

/*--------------------------------------------------------------
/** 3. UTILITY CLASSES
--------------------------------------------------------------*/
.align-center {
  text-align: center;
}

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

.accent {
  color: var(--accent-color);
}

.muted {
  color: var(--light-text-color);
}

.section-padding {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-header .title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.2em;
  color: var(--dark-color);
  margin: 0;
  position: relative;
}

.section-title.divider::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  margin: 20px auto 0;
}

.align-center .section-title.divider::after {
  margin: 20px auto 0;
}

/*--------------------------------------------------------------
/** 4. BUTTONS
--------------------------------------------------------------*/
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accent {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.btn-accent:hover {
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: #fff;
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline-accent:hover {
  background: var(--accent-color);
  color: #fff;
}

.btn-accent-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.btn-accent-arrow:hover {
  color: var(--dark-color);
}

.btn-accent-arrow i {
  transition: transform 0.3s ease;
}

.btn-accent-arrow:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
/** 5. HEADER & NAVIGATION
--------------------------------------------------------------*/
#header-wrap {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1000;
}

.top-content {
  background: var(--dark-color);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1001;
}

.top-content .social-links ul {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-content .social-links a {
  color: #fff;
  opacity: 0.7;
  font-size: 14px;
}

.top-content .social-links a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.right-element {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.right-element a {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.right-element a:hover {
  color: var(--accent-color);
}

.right-element .cart-count {
  background: var(--accent-color);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#header {
  padding: 15px 0;
  transition: all 0.3s ease;
}

#header.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.main-logo img {
  max-height: 60px;
  transition: all 0.3s ease;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item a {
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 0;
  position: relative;
}

.menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.menu-item a:hover::after,
.menu-item.active a::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.hamburger .bar {
  width: 25px;
  height: 2px;
  background: var(--dark-color);
  transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Search Bar */
.search-bar {
  position: relative;
}

.search-button {
  color: #fff;
  font-size: 16px;
}

.search-box {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#header-wrap.show .search-box {
  opacity: 1;
  visibility: visible;
}

.search-input {
  border: 1px solid #eee;
  padding: 10px 15px;
  width: 250px;
  outline: none;
}

/*--------------------------------------------------------------
/** 6. BILLBOARD / HERO SECTION
--------------------------------------------------------------*/
#billboard {
  background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

#billboard::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.main-slider {
  position: relative;
}

.slider-item {
  display: flex;
  align-items: center;
  gap: 50px;
}

.banner-content {
  flex: 1;
}

.banner-title {
  font-size: 3em;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.banner-content p {
  font-size: 1.1em;
  color: var(--body-text-color);
  margin-bottom: 30px;
}

.banner-image {
  flex: 1;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-color);
  border: 2px solid var(--accent-color);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--accent-color);
  font-size: 18px;
}

.slick-arrow:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.slick-arrow.prev {
  left: 20px;
}

.slick-arrow.next {
  right: 20px;
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.slick-dots li {
  position: relative;
  width: 18px;
  height: 18px;
}

.slick-dots li button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #ccc;
  cursor: pointer;
  font-size: 0;
  transition: all 0.3s ease;
  position: relative;
  padding: 0;
}

.slick-dots li button::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dark-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slick-dots li.slick-active button {
  border-color: var(--accent-color);
  background: transparent;
}

.slick-dots li.slick-active button::before {
  background: var(--accent-color);
}

/* Best Seller Slider Dots (on dark background) */
#best-selling .slick-dots li button {
  border-color: rgba(255, 255, 255, 0.3);
}

#best-selling .slick-dots li button::before {
  background: rgba(255, 255, 255, 0.5);
}

#best-selling .slick-dots li.slick-active button {
  border-color: var(--accent-color);
}

#best-selling .slick-dots li.slick-active button::before {
  background: var(--accent-color);
}

/*--------------------------------------------------------------
/** 7. TRUST BADGES / CLIENTS
--------------------------------------------------------------*/
#client-holder {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

#client-holder .grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

#client-holder img {
  max-height: 50px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

#client-holder img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/*--------------------------------------------------------------
/** 8. PRODUCT SECTIONS
--------------------------------------------------------------*/
.product-list {
  margin-bottom: 30px;
}

.product-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-item::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.product-item:hover::after {
  opacity: 1;
}

.product-item {
  position: relative;
}

.product-style {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.product-style img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-item:hover .product-style img {
  transform: scale(1.05);
}

.add-to-cart {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.product-item:hover .add-to-cart {
  bottom: 20px;
}

.add-to-cart:hover {
  background: var(--dark-color);
}

.product-item figcaption {
  padding: 20px;
  text-align: center;
}

.product-item figcaption h3 {
  font-size: 1.1em;
  margin: 0 0 5px;
  font-family: var(--body-font);
  font-weight: 600;
}

.product-item figcaption span {
  color: var(--light-text-color);
  font-size: 13px;
}

.item-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.1em;
  margin-top: 10px;
}

.item-price .prev-price {
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
  margin-right: 10px;
}

/* Product Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 25px;
  background: transparent;
  border: 2px solid #eee;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab:hover,
.tab.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.tab-content > div {
  display: none;
}

.tab-content > div.active {
  display: block;
}

/*--------------------------------------------------------------
/** 9. BEST SELLING / FEATURED PRODUCT
--------------------------------------------------------------*/
#best-selling {
  background: var(--dark-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.leaf-pattern-overlay {
  position: relative;
}

.leaf-pattern-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.03"/></svg>') repeat;
  pointer-events: none;
}

.corner-pattern-overlay {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

#best-selling .section-title {
  color: #fff;
}

#best-selling .section-title.divider::after {
  margin: 20px auto 0;
}

/* Best Seller Slider */
.best-seller-wrapper {
  position: relative;
  padding: 0 70px;
}

.best-seller-slider {
  overflow: hidden;
}

.best-seller-item {
  padding: 20px;
}

.best-seller-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 2px solid var(--accent-color);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: var(--accent-color);
  font-size: 18px;
}

.best-seller-arrow:hover {
  background: var(--accent-color);
  color: #fff;
}

.best-seller-prev {
  left: 0;
}

.best-seller-next {
  right: 0;
}

.products-thumb img {
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 400px;
}

.product-entry {
  padding: 20px 0;
}

.products-content {
  color: #ccc;
}

.products-content .author-name {
  color: var(--accent-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.products-content .item-title {
  color: #fff;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.products-content .item-price {
  font-size: 1.5em;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .best-seller-wrapper {
    padding: 0 50px;
  }
  
  .best-seller-arrow {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  
  .products-thumb img {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
/** 10. QUOTATION / TESTIMONIAL
--------------------------------------------------------------*/
#quotation {
  background: linear-gradient(135deg, #fff 0%, var(--light-color) 100%);
  padding: 80px 0;
}

#quotation blockquote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

#quotation q {
  font-family: var(--heading-font);
  font-size: 1.8em;
  font-style: italic;
  color: var(--dark-color);
  line-height: 1.6;
  display: block;
  margin-bottom: 20px;
}

#quotation .author-name {
  color: var(--accent-color);
  font-weight: 600;
}

/*--------------------------------------------------------------
/** 11. SPECIAL OFFERS
--------------------------------------------------------------*/
.bookshelf {
  background: var(--light-color);
}

.product-grid {
  display: grid;
  gap: 30px;
}

/*--------------------------------------------------------------
/** 12. NEWSLETTER / SUBSCRIBE
--------------------------------------------------------------*/
#subscribe {
  background: var(--accent-color);
  padding: 80px 0;
}

#subscribe .section-title {
  color: #fff;
}

#subscribe .section-title.divider::after {
  background: #fff;
}

.subscribe-content p {
  color: rgba(255, 255, 255, 0.8);
}

#subscribe form {
  display: flex;
  gap: 10px;
}

#subscribe input[type="text"],
#subscribe input[type="email"] {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 4px;
  outline: none;
  font-size: 15px;
}

.btn-subscribe {
  background: var(--dark-color);
  color: #fff;
  border: none;
  padding: 15px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background: #333;
}

/*--------------------------------------------------------------
/** 13. BLOG / ARTICLES
--------------------------------------------------------------*/
#latest-blog article {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

#latest-blog article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

#latest-blog figure {
  margin: 0;
  overflow: hidden;
}

#latest-blog figure img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#latest-blog article:hover figure img {
  transform: scale(1.05);
}

.post-item {
  padding: 25px;
}

.meta-date {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}

.post-item h3 {
  font-size: 1.2em;
  margin: 0 0 15px;
  line-height: 1.4;
}

.post-item h3 a {
  color: var(--dark-color);
}

.post-item h3 a:hover {
  color: var(--accent-color);
}

.links-element {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.categories {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light-text-color);
}

.links-element .social-links ul {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.links-element .social-links a {
  color: #aaa;
  font-size: 14px;
}

.links-element .social-links a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
/** 14. DOWNLOAD APP
--------------------------------------------------------------*/
#download-app {
  background: var(--dark-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#download-app .section-title {
  color: #fff;
}

#download-app .section-title.divider::after {
  margin-left: 0;
}

.app-info p {
  color: rgba(255, 255, 255, 0.7);
}

.google-app {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.google-app img {
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.google-app img:hover {
  transform: scale(1.05);
}

/*--------------------------------------------------------------
/** 15. FOOTER
--------------------------------------------------------------*/
#footer {
  background: var(--dark-color);
  padding: 80px 0 40px;
  color: #999;
}

.footer-logo {
  max-height: 50px;
  margin-bottom: 20px;
}

.company-brand p {
  color: #888;
  font-size: 14px;
  line-height: 1.8;
}

.footer-menu h5 {
  color: #fff;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}

.footer-menu .menu-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu .menu-item {
  width: auto;
}

.footer-menu .menu-item a {
  color: #888;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  display: inline-block;
  padding: 0;
  text-align: left;
}

.footer-menu .menu-item a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-menu .menu-item a::after {
  display: none;
}

#footer-bottom {
  background: #111;
  padding: 20px 0;
}

.copyright {
  color: #666;
  font-size: 14px;
}

.copyright a {
  color: var(--accent-color);
}

#footer-bottom .social-links ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer-bottom .social-links a {
  color: #666;
  font-size: 16px;
}

#footer-bottom .social-links a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
/** 16. MODAL / DIALOG STYLES
--------------------------------------------------------------*/
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  padding: 25px 30px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.3em;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 0;
  line-height: 1;
}

.modal-close:hover {
  color: var(--dark-color);
}

.modal-body {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.btn-login {
  width: 100%;
  padding: 14px;
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-login:hover {
  background: var(--accent-color-dark);
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  color: #666;
}

.form-footer a {
  color: var(--accent-color);
  font-weight: 500;
}

/*--------------------------------------------------------------
/** 17. CART SIDEBAR
--------------------------------------------------------------*/
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 10001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  font-size: 1.2em;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 25px;
}

.cart-empty {
  text-align: center;
  padding: 50px 20px;
  color: #999;
}

.cart-empty i {
  font-size: 50px;
  margin-bottom: 15px;
  display: block;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.cart-item img {
  width: 70px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  margin: 0 0 5px;
  font-size: 1em;
  font-family: var(--body-font);
  font-weight: 600;
}

.cart-item-details .price {
  color: var(--accent-color);
  font-weight: 600;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.cart-item-quantity button {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.cart-item-quantity button:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.cart-item-quantity span {
  font-weight: 600;
}

.remove-item {
  color: #999;
  cursor: pointer;
  font-size: 18px;
}

.remove-item:hover {
  color: var(--danger-color);
}

.cart-footer {
  padding: 20px 25px;
  border-top: 1px solid #eee;
  background: #f9f9f9;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 20px;
}

.cart-total span:last-child {
  color: var(--accent-color);
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-checkout:hover {
  background: var(--accent-color-dark);
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
/** 18. TOAST/SNACKBAR NOTIFICATIONS
--------------------------------------------------------------*/
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10002;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.toast {
  background: var(--dark-color);
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 450px;
  pointer-events: auto;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.hide {
  transform: translateY(20px);
  opacity: 0;
}

.toast-icon {
  font-size: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.toast-content {
  flex: 1;
}

.toast-message {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.toast-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

/* Success Toast - Green */
.toast-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.toast-success .toast-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* Error Toast - Red */
.toast-error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.toast-error .toast-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* Warning Toast - Amber */
.toast-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.toast-warning .toast-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* Info Toast - Blue */
.toast-info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.toast-info .toast-icon {
  background: rgba(255, 255, 255, 0.2);
}

/* Mobile responsiveness */
@media (max-width: 576px) {
  .toast-container {
    bottom: 20px;
    left: 16px;
    right: 16px;
    transform: none;
  }
  
  .toast {
    min-width: auto;
    width: 100%;
  }
}

/*--------------------------------------------------------------
/** 18.5. FLOATING CART BUTTON
--------------------------------------------------------------*/
.floating-cart {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}

.floating-cart.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.floating-cart:hover {
  background: var(--accent-color-dark);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.floating-cart i {
  color: #fff;
  font-size: 24px;
}

.floating-cart .floating-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--danger-color);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

@media (max-width: 576px) {
  .floating-cart {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .floating-cart i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
/** 19. USER DROPDOWN
--------------------------------------------------------------*/
.user-dropdown {
  position: relative;
}

.user-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: none;
}

.user-dropdown.logged-in .user-menu {
  display: block;
}

.user-dropdown.logged-in:hover .user-menu,
.user-dropdown.logged-in .user-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--dark-color);
  font-size: 14px;
  transition: all 0.2s ease;
}

.user-menu a i {
  width: 18px;
  color: var(--light-text-color);
  transition: color 0.2s ease;
}

.user-menu a:hover {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  color: var(--accent-color);
  padding-left: 25px;
}

.user-menu a:hover i {
  color: var(--accent-color);
}

.user-menu-divider {
  height: 1px;
  background: #eee;
  margin: 8px 0;
}

.user-menu .logout-link {
  color: var(--danger-color);
}

.user-menu .logout-link i {
  color: var(--danger-color);
}

.user-menu .logout-link:hover {
  background: rgba(220, 53, 69, 0.1);
}

/* User account logged in state */
.user-dropdown.logged-in .user-account {
  background: rgba(212, 175, 55, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
}

.user-dropdown.logged-in .user-account i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
/** 19.5 PASSWORD REQUIREMENTS & FORM ERRORS
--------------------------------------------------------------*/
.password-requirements {
  margin-top: 12px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 12px;
}

.password-requirements .req-title {
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--dark-color);
}

.password-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.password-checklist li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--light-text-color);
  transition: color 0.2s ease;
}

.password-checklist li i {
  font-size: 6px;
  transition: all 0.2s ease;
}

.password-checklist li.valid {
  color: var(--success-color);
}

.password-checklist li.valid i {
  font-size: 12px;
}

.password-checklist li.valid i::before {
  content: "\f00c";
}

.form-error {
  color: var(--danger-color);
  font-size: 13px;
  margin-bottom: 15px;
  padding: 10px;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 6px;
  display: none;
}

.form-error.show {
  display: block;
}

.btn-login {
  position: relative;
}

.btn-login:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/*--------------------------------------------------------------
/** 20. RESPONSIVE STYLES
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }

  .menu-list {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
  }

  .menu-list.responsive {
    left: 0;
  }

  .slider-item {
    flex-direction: column-reverse;
    text-align: center;
  }

  .banner-image {
    max-width: 300px;
  }

  .banner-title {
    font-size: 2em;
  }

  #best-selling .row {
    flex-direction: column;
  }

  #best-selling .section-title.divider::after {
    margin: 20px auto 0;
  }

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

  #download-app .row {
    flex-direction: column;
    text-align: center;
  }

  #download-app .section-title.divider::after {
    margin: 20px auto 0;
  }

  .google-app {
    justify-content: center;
  }

  #subscribe form {
    flex-direction: column;
  }

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

@media (max-width: 767px) {
  .section-title {
    font-size: 1.6em;
  }

  .top-content .row {
    flex-direction: column;
    gap: 10px;
  }

  .top-content .social-links ul {
    justify-content: center;
  }

  .right-element {
    justify-content: center;
  }

  #header .row {
    justify-content: space-between;
  }

  .main-logo img {
    max-height: 45px;
  }

  .tabs {
    gap: 5px;
  }

  .tab {
    padding: 8px 15px;
    font-size: 12px;
  }

  #quotation q {
    font-size: 1.3em;
  }

  #footer .row {
    flex-direction: column;
    gap: 30px;
  }

  #footer-bottom .row {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  #footer-bottom .social-links ul {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .product-item figcaption h3 {
    font-size: 1em;
  }

  .slick-arrow {
    display: none !important;
  }

  .modal-content {
    margin: 10px;
  }
}

/*--------------------------------------------------------------
/** 21. ANIMATIONS (AOS Library Overrides)
--------------------------------------------------------------*/
[data-aos] {
  transition-duration: 800ms;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}
