:root {
  --color-pink: #FF0080;
  --text-dark: #1a1a1a;
  --text-white: #ffffff;
  --bg-light: #f7f7f7;
  --font-main: 'Montserrat', sans-serif;
  --color-gold-start: #f3e5ae;
  --color-gold-end: #c6a87c;
  --footer-bg: #111111;
  --footer-text: #cccccc;
  --color-success: #10b981;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: flex !important;
}

.sticky-header-container {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#promo-header {
  background-color: var(--color-pink);
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--text-white);
  min-height: 40px;
}

.timer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.timer-digits {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.main-nav {
  background-color: var(--bg-light);
  border-bottom: 1px solid #e5e5e5;
  height: 85px;
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-container-fluid {
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-section {
  display: flex;
  align-items: center;
}

.nav-left {
  flex: 0 0 auto;
}

.nav-center {
  flex: 1;
  justify-content: center;
  padding: 0 20px;
  position: relative;
}

.nav-right {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-pink);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.search-box-wrapper {
  width: 100%;
  max-width: 600px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  position: relative;
}

.search-box-wrapper:focus-within {
  border-color: #ddd;
}

.search-icon-input {
  color: var(--color-pink);
  font-size: 1.1rem;
  margin-right: 10px;
}

.search-input {
  border: none;
  outline: none;
  width: 100%;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: #555;
}

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  display: none;
  flex-direction: column;
  z-index: 1001;
  max-height: 400px;
  overflow-y: auto;
}

.search-dropdown.active {
  display: flex;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-bottom: 1px solid #f9f9f9;
  cursor: pointer;
  transition: background 0.2s;
}

.search-result-item:hover {
  background: #f5f5f5;
}

.search-result-thumb {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.search-result-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.search-result-info span {
  font-size: 0.8rem;
  color: var(--color-pink);
  font-weight: 700;
}

.desktop-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 20px;
}

.nav-link-item {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-link-item:hover {
  color: var(--color-pink);
}

.icon-group {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 20px;
  border-left: 1px solid #ddd;
}

.icon-link {
  color: var(--text-dark);
  font-size: 1.2rem;
  transition: color 0.2s;
}

.icon-link:hover {
  color: var(--color-pink);
}

.icon-btn-reset {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-dark);
  padding: 0;
}

.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.cart-icon-wrapper i {
  color: var(--color-pink);
  font-size: 1.2rem;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--color-pink);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-info-bar {
  padding: 10px 0;
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.container-text {
  padding: 0 40px;
  font-size: 0.8rem;
  color: #666;
}

.hero-banner {
  width: 100%;
  line-height: 0;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.product-title-section {
  text-align: center;
  padding: 30px 20px 10px 20px;
  background-color: #fff;
}

.main-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-pink);
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1;
}

.products-grid-section {
  padding: 20px 40px 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-content: center;
}

.product-card {
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 0;
  position: relative;
  transition: all 0.3s ease;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: #ffe6f2;
}

.badge-gold {
  position: absolute;
  top: 15px;
  right: 15px;
  background: radial-gradient(circle at 30% 30%, var(--color-gold-start), var(--color-gold-end));
  color: #5a4626;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(198, 168, 124, 0.4);
  border: 1px solid #fff;
}

.badge-stars {
  font-size: 8px;
  margin-bottom: 3px;
  color: #443318;
}

.product-img-wrapper {
  width: 100%;
  height: 320px;
  position: relative;
  background-color: #fff;
  cursor: pointer;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-img-wrapper:hover .product-img {
  transform: scale(1.05);
}

.product-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info {
  text-align: left;
  margin-top: auto;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.3;
  min-height: 42px;
  cursor: pointer;
  transition: color 0.2s;
}

.product-name:hover {
  color: var(--color-pink);
}

.product-desc {
  font-size: 0.75rem;
  color: #777;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-box {
  margin-bottom: 15px;
}

.old-price {
  font-size: 0.85rem;
  color: #aaa;
  text-decoration: line-through;
  display: block;
}

.current-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  display: block;
  margin: 2px 0;
}

.installments {
  font-size: 0.8rem;
  color: #555;
}

.actions-row {
  display: flex;
  gap: 8px;
}

.btn-buy {
  flex: 1;
  background-color: var(--color-pink);
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s, transform 0.1s;
}

.btn-buy:hover {
  background-color: #d6006b;
}

.btn-buy:active {
  transform: scale(0.98);
}

.btn-cart-add {
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-pink);
  background-color: #fff;
  color: var(--color-pink);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cart-add:hover {
  background-color: #fff0f7;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 4000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: #fff;
  z-index: 4001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-header {
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
}

.cart-header h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
}

.close-cart-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #999;
  cursor: pointer;
  padding: 5px;
  transition: color 0.2s;
}

.close-cart-btn:hover {
  color: var(--color-pink);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #ccc;
  gap: 15px;
}

.cart-empty-state i {
  font-size: 3rem;
  opacity: 0.5;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px;
  padding: 15px;
  background-color: #fafafa;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: transform 0.2s;
}

.cart-item:hover {
  background-color: #fff;
  border-color: #eaeaea;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.cart-item-img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 5px;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 5px;
}

.cart-item-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-pink);
}

.cart-item-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn-cart-buy {
  flex: 1;
  background-color: var(--text-dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cart-buy:hover {
  background-color: var(--color-pink);
}

.btn-cart-remove {
  background: none;
  border: 1px solid #ddd;
  color: #999;
  width: 32px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.btn-cart-remove:hover {
  border-color: #ff3333;
  color: #ff3333;
  background: #fff0f0;
}

.product-screen-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  overflow: hidden;
}

.product-screen-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-screen-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  transform: translateY(20px) scale(0.99);
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.product-screen-content::-webkit-scrollbar {
  display: none;
}

.product-screen-overlay.active .product-screen-content {
  transform: translateY(0) scale(1);
}

.ps-header {
  flex-shrink: 0;
  background: #fff;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.ps-back-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: color 0.2s;
}

.ps-back-btn:hover {
  color: var(--color-pink);
}

.ps-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ps-share-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.2s;
  padding: 5px;
}

.ps-share-btn:hover {
  color: var(--color-pink);
}

.ps-header-cart {
  position: relative;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 1.3rem;
  transition: color 0.2s;
}

.ps-header-cart:hover {
  color: var(--color-pink);
}

.ps-header-cart .cart-count {
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
}

.ps-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 30px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.ps-gallery {
  position: sticky;
  top: 0;
  height: fit-content;
}

.ps-main-image-container {
  width: 100%;
  height: 500px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.ps-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ps-main-image:hover {
  transform: scale(1.03);
}

.ps-info {
  display: flex;
  flex-direction: column;
}

.ps-breadcrumbs {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 15px;
  font-weight: 500;
}

.ps-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.ps-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  background: #fdfdfd;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid #f0f0f0;
}

.ps-stars {
  color: #FFD700;
}

.ps-review-count {
  color: #666;
  text-decoration: none;
  font-weight: 500;
}

.ps-price-block {
  background: #fff;
  padding: 0;
  margin-bottom: 30px;
}

.ps-old-price {
  font-size: 1.1rem;
  color: #aaa;
  text-decoration: line-through;
  display: block;
}

.ps-final-price-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 5px;
}

.ps-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-pink);
  letter-spacing: -1px;
}

.ps-discount-badge {
  background: #ffebf5;
  color: var(--color-pink);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.ps-installments {
  color: #666;
  font-size: 1rem;
  margin-top: 5px;
}

.ps-shipping-info {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8fffb;
  border: 1px solid #d1fae5;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ps-shipping-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #065f46;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
}

.ps-shipping-title i {
  font-size: 1.2rem;
  color: #10b981;
}

.ps-shipping-desc {
  color: #333;
  font-size: 0.95rem;
}

.ps-shipping-date {
  font-weight: 700;
  color: #000;
}

.ps-desktop-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.ps-desktop-btn {
  flex: 1;
  padding: 18px;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}

.ps-btn-primary {
  background: var(--color-pink);
  color: #fff;
  border: none;
  box-shadow: 0 10px 20px rgba(255, 0, 128, 0.2);
}

.ps-btn-primary:hover {
  background: #d6006b;
  transform: translateY(-2px);
}

.ps-btn-secondary {
  background: #fff;
  color: var(--color-pink);
  border: 2px solid var(--color-pink);
  transition: all 0.3s;
}

.ps-btn-secondary:hover {
  background: #fff0f7;
}

.ps-btn-added {
  background: var(--color-success) !important;
  color: #fff !important;
  border-color: var(--color-success) !important;
}

.ps-description {
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.ps-desc-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.ps-desc-text {
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-size: 1rem;
}

.ps-reviews-section {
  margin-top: 50px;
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.ps-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.ps-review-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
}

.ps-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ps-review-card {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 25px;
}

.ps-review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ps-review-avatar {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #555;
}

.ps-review-meta {
  display: flex;
  flex-direction: column;
}

.ps-review-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.ps-verified-badge {
  color: #25D366;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ps-review-stars {
  color: #FFD700;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.ps-review-text {
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
}

.ps-review-date {
  font-size: 0.8rem;
  color: #999;
  margin-top: 10px;
  display: block;
}

.ps-mobile-footer {
  display: none;
  flex-shrink: 0;
  background: #fff;
  padding: 15px 20px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
  z-index: 101;
  gap: 15px;
  width: 100%;
}

.ps-btn-add {
  flex: 1;
  background: #fff;
  border: 1px solid var(--color-pink);
  color: var(--color-pink);
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  padding: 12px;
  transition: all 0.2s;
}

.ps-btn-buy {
  flex: 1;
  background: var(--color-pink);
  color: #fff;
  border: none;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(255, 0, 128, 0.3);
}

.mobile-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-search-overlay.active {
  transform: translateY(0);
}

.mobile-search-header {
  display: flex;
  align-items: center;
  padding: 15px;
  gap: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-search-input-wrapper {
  flex: 1;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 10px;
}

.mobile-search-input-wrapper input {
  border: none;
  background: transparent;
  width: 100%;
  outline: none;
  font-size: 1rem;
}

.mobile-search-header button {
  background: none;
  border: none;
  font-weight: 600;
  color: var(--color-pink);
  font-size: 0.95rem;
}

.mobile-search-results {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}

.main-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding-top: 0;
  margin-top: 50px;
  font-size: 0.9rem;
}

.container-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-newsletter {
  background-color: #1a1a1a;
  border-bottom: 1px solid #333;
  padding: 40px 0;
  color: #fff;
}

.newsletter-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
}

@media (min-width: 992px) {
  .newsletter-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.newsletter-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.newsletter-text p {
  color: #999;
}

.newsletter-form {
  flex: 1;
  width: 100%;
  max-width: 800px;
}

.input-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 768px) {
  .input-row {
    flex-direction: row;
    align-items: center;
  }
}

.input-group {
  flex: 1;
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 20px;
  border-radius: 30px;
  border: 2px solid transparent;
  font-family: var(--font-main);
  outline: none;
  transition: all 0.3s;
}

.newsletter-form input:focus {
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 0, 128, 0.2);
}

.newsletter-form input.valid {
  border-color: #4CAF50;
}

.newsletter-form input.invalid {
  border-color: #F44336;
}

.icon-btn-group {
  display: flex;
  background: #fff;
  border-radius: 30px;
  padding: 3px;
  align-items: center;
}

.icon-btn-group input {
  border: none;
  background: transparent;
  padding-right: 10px;
}

.icon-btn-group input:focus {
  box-shadow: none;
  background: transparent;
}

.newsletter-form button {
  background-color: var(--color-pink);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-form button:hover {
  background-color: #d6006b;
}

.newsletter-form button:disabled {
  background-color: #555;
  cursor: not-allowed;
  opacity: 0.6;
}

.footer-links-section {
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-logo {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--color-pink);
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #888;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--color-pink);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--color-pink);
}

.payment-icons {
  display: flex;
  gap: 15px;
  font-size: 2rem;
  color: #fff;
  flex-wrap: wrap;
  opacity: 0.8;
}

.security-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 0.85rem;
}

.security-icons i {
  color: #4CAF50;
}

.footer-bottom {
  background-color: #ffffff;
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid #eee;
  color: #000000;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #000000;
}

.ps-share-square-btn {
  width: 54px;
  background: #fff;
  border: 1px solid #ddd;
  color: #555;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s;
}

.ps-share-square-btn:hover {
  border-color: var(--color-pink);
  color: var(--color-pink);
  background: #fff0f7;
}

.ps-btn-icon-only {
  width: 50px;
  background: #fff;
  border: 1px solid #ddd;
  color: #555;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.share-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.share-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.share-modal-content {
  background: #fff;
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.share-modal-overlay.active .share-modal-content {
  transform: scale(1);
}

.share-header {
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.share-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}

.share-header button {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #999;
  cursor: pointer;
}

.share-options {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.share-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #555;
  font-size: 0.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

.share-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid #eee;
  transition: transform 0.2s;
}

.share-item:hover .share-icon {
  transform: translateY(-3px);
}

.share-item.whatsapp .share-icon { background: #25D366; color: #fff; border: none; }
.share-item.facebook .share-icon { background: #1877F2; color: #fff; border: none; }
.share-item.twitter .share-icon { background: #000; color: #fff; border: none; }
.share-item.instagram .share-icon {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  border: none;
}
.share-item.copy-link .share-icon { background: #f5f5f5; color: #333; }

.toast-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  z-index: 9999;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from { top: -50px; opacity: 0; }
  to { top: 20px; opacity: 1; }
}

@media (max-width: 992px) {
  .nav-container-fluid {
    padding: 0 20px;
  }

  .desktop-links {
    display: none !important;
  }

  .icon-group {
    border-left: none;
    padding-left: 0;
  }

  .main-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }

  .main-nav {
    height: 60px;
    padding: 0;
  }

  .nav-container-fluid {
    padding: 0 15px;
  }

  .nav-left {
    flex: 1;
    justify-content: flex-start;
  }

  .nav-center {
    flex: 1;
    padding: 0;
    justify-content: center;
  }

  .nav-right {
    flex: 1;
    justify-content: flex-end;
  }

  .mobile-icons-left {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .mobile-icons-left i {
    font-size: 1.2rem;
    color: var(--text-dark);
  }

  .logo {
    font-size: 1.3rem;
  }

  .icon-group {
    gap: 12px;
    border: none;
    padding: 0;
  }

  .icon-link,
  .cart-icon-wrapper i {
    font-size: 1.2rem;
  }

  .container-text {
    padding: 0 15px;
  }

  .main-title {
    font-size: 1.8rem;
    padding-bottom: 5px;
  }

  .products-grid-section {
    padding: 10px 15px 40px 15px;
  }

  .products-container {
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .product-img-wrapper {
    height: 200px;
  }

  .badge-gold {
    width: 50px;
    height: 50px;
    font-size: 0.5rem;
    top: 10px;
    right: 10px;
  }

  .badge-stars {
    font-size: 6px;
  }

  .product-card-content {
    padding: 12px;
  }

  .product-name {
    font-size: 0.9rem;
    min-height: 38px;
  }

  .current-price {
    font-size: 1.3rem;
  }

  .btn-buy {
    padding: 10px;
    font-size: 0.8rem;
  }

  .btn-cart-add {
    width: 35px;
  }

  .footer-grid {
    gap: 30px;
  }

  .container-footer {
    padding: 0 20px;
  }

  .cart-sidebar {
    width: 100%;
    max-width: 100%;
  }

  .ps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .ps-mobile-footer {
    display: flex;
  }

  .ps-desktop-actions {
    display: none;
  }

  .ps-container {
    padding: 0;
    padding-bottom: 20px;
  }

  .ps-gallery {
    position: static;
  }

  .ps-main-image-container {
    height: 400px;
    border-radius: 0;
    box-shadow: none;
  }

  .ps-info {
    padding: 0 20px;
  }

  .ps-title {
    font-size: 1.6rem;
  }

  .ps-price {
    font-size: 2.2rem;
  }

  .ps-reviews-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}