/* ==========================================
   MODERN HELLOTHOZHI - ENHANCED DESIGN
   ========================================== */

/* CSS Variables for easy theming */
:root {
  --primary-color: #e91e63;
  --primary: var(--primary-color);
  --primary-dark: #c2185b;
  --primary-light: #ffffff;
  --secondary-color: #e91e63;
  --accent-color: #e91e63;
  --text-dark: #212121;
  --text-light: #757575;
  --text-white: #ffffff;
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-hover: 0 12px 48px rgba(233, 30, 99, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
}

/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
  background: #ffffff;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
#header-wrapper {
  padding: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  min-height: auto;
}

header {
  margin: 0 auto;
  position: relative;
  max-width: 1400px;
  padding: 0.3rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
}

#logo {
  margin: 0;
  padding: 0;
  width: auto;
  z-index: 20;
  transition: var(--transition);
}

#logo:hover {
  transform: scale(1.05);
}

#logo h1 a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#logo h1 a img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  height: 45px;
  width: auto;
}

#logo h1 a span {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-left: 0;
}

#primary-menu {
  position: static;
  width: auto;
  display: flex;
  gap: 2rem;
}

#primary-menu .split-menu {
  border: none;
  float: none;
  width: auto;
}

#primary-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

#primary-menu ul li {
  border: none;
  position: relative;
  display: inline-block;
}

#primary-menu ul a {
  color: var(--text-white);
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: normal;
  padding: 0.4rem 0.8rem;
  position: relative;
  text-transform: capitalize;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

#primary-menu ul a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

#primary-menu ul a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition);
}

#primary-menu ul a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  animation: float 3s ease-in-out infinite;
}

.whatsapp a img {
  transition: var(--transition);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.whatsapp:hover a img {
  transform: scale(1.1) rotate(10deg);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
section.main_content {
  background: #ffffff;
  padding: 1.5rem 0 2rem;
  min-height: 80vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==========================================
   SEARCH BAR
   ========================================== */
.search {
  width: 100%;
  max-width: 900px;
  margin: 1rem auto;
  border: none;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  gap: 0.75rem;
}

.search:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.search select {
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  width: auto;
  min-width: 180px;
  cursor: pointer;
  background: transparent;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-right: 2px solid var(--bg-light);
}

.search select:focus {
  color: var(--primary-color);
}

.search input {
  flex: 1;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
}

.search input::placeholder {
  color: var(--text-light);
}

.search button {
  width: auto;
  padding: 0.75rem 1.5rem;
  border: 2px solid #e91e63;
  outline: none;
  font-size: 1.25rem;
  background: #ffffff;
  color: #e91e63;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.search button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
  background: #e91e63;
  color: #ffffff;
}

.search .fa-angle-down {
  color: var(--text-light);
  pointer-events: none;
  margin-left: -30px;
}

/* ==========================================
   BANNER
   ========================================== */
.banner {
  margin: 1.5rem auto;
  max-width: 1400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  transition: var(--transition);
}

.banner:hover img {
  transform: scale(1.02);
}

/* ==========================================
   SECTION TITLES
   ========================================== */
.titleHeader {
  margin: 2rem 0 1rem;
  text-align: center;
}

.titleList {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.titleList::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.titleList i {
  color: var(--primary-color);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ==========================================
   PRODUCT CARDS (DEALS)
   ========================================== */
.row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1rem auto;
  max-width: 1400px;
  padding: 0 1rem;
}

.columnDeals {
  width: 100%;
  float: none;
  padding: 0;
  margin: 0;
}

.cardDeals {
  position: relative;
  box-shadow: var(--shadow-sm);
  padding: 1rem;
  text-align: center;
  background: #ffffff;
  border-radius: var(--border-radius);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  width: 100%;
}

.cardDeals::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.cardDeals:hover::before {
  transform: scaleX(1);
}

.cardDeals:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.cardDeals img {
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 180px;
  height: 180px;
  object-fit: cover;
  margin: 0 auto 0.75rem;
  transition: var(--transition);
}

.cardDeals:hover img {
  transform: scale(1.05);
}

.cardDeals h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e91e63;
  margin: 0.5rem 0 0.25rem;
  min-height: 2.2rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cardDeals p {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e91e63;
  margin: 0.25rem 0;
}

.cardDeals button {
  background: #ffffff;
  border-radius: var(--border-radius-lg);
  border: 2px solid #e91e63;
  color: #e91e63;
  padding: 0.6rem 1.5rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: auto;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.cardDeals button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
  background: #e91e63;
  color: #ffffff;
}

.cardDeals button a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================
   CAROUSEL
   ========================================== */
.carousel-wrap {
  margin: 1.5rem auto;
  padding: 0 1rem;
  max-width: 1400px;
  position: relative;
}

.owl-carousel .item {
  position: relative;
  z-index: 100;
  -webkit-backface-visibility: hidden;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.owl-carousel .item:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.owl-carousel .item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: var(--primary-color);
  background: var(--bg-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.owl-nav > div:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: scale(1.1);
}

.owl-nav i {
  font-size: 1.5rem;
}

.owl-nav .owl-prev {
  left: -25px;
}

.owl-nav .owl-next {
  right: -25px;
}

/* ==========================================
   TOP PICKS GRID
   ========================================== */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.25rem;
  padding: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.saleCard {
  padding: 0;
  border-radius: var(--border-radius);
  transition: var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.saleCard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(156, 39, 176, 0.2));
  opacity: 0;
  transition: var(--transition);
}

.saleCard:hover::after {
  opacity: 1;
}

.saleCard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.saleCard img {
  object-fit: cover;
  height: 300px;
  width: 100%;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.saleCard:hover img {
  transform: scale(1.1);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
  margin-top: 1rem;
  padding: 1rem 1rem 0.75rem 1rem;
}

footer p {
  color: var(--text-white);
  text-align: center;
  margin: 0.25rem 0;
  font-size: 0.85rem;
}

.footerLink a {
  text-decoration: none;
  color: var(--text-white);
  transition: var(--transition);
  margin: 0 0.5rem;
}

.footerLink a:hover {
  color: var(--accent-color);
  transform: scale(1.2);
  display: inline-block;
}

.footerLink i {
  transition: var(--transition);
}

.footerLink a:hover i {
  transform: rotate(360deg);
}

/* ==========================================
   FORM ELEMENTS
   ========================================== */
.my-form h1 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.my-form li,
.my-form .grid > *:not(:last-child) {
  margin-bottom: 1.5rem;
}

.my-form select,
.my-form input,
.my-form textarea,
.my-form button {
  width: 100%;
  line-height: 1.5;
  padding: 1rem;
  border: 2px solid var(--bg-light);
  border-radius: var(--border-radius-sm);
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
  font-size: 1rem;
}

.my-form select:focus,
.my-form input:focus,
.my-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
  transform: translateY(-2px);
  outline: none;
}

.my-form button {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-white);
  border: none;
  font-weight: 600;
  cursor: pointer;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-lg);
}

.my-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   REGISTER PAGE MODERN DESIGN
   ========================================== */
.register-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.register-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.register-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.register-icon i {
  font-size: 2.75rem;
  color: var(--text-white);
}

.register-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
}

.register-form {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.alert-message {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(156, 39, 176, 0.05));
  border-left: 4px solid var(--primary-color);
  border-radius: var(--border-radius-sm);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
}

.alert-message i {
  font-size: 1.3rem;
}

.form-section {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--bg-light);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--bg-light);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
  outline: none;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(156, 39, 176, 0.05));
  padding: 1.75rem;
  border-radius: var(--border-radius);
  border: 2px solid var(--primary-color);
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Selectable Plan Cards */
.plan-subtitle {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-card.selectable {
  position: relative;
  background: var(--bg-white);
  padding: 0;
  border-radius: var(--border-radius);
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  display: block;
  margin: 0;
}

.pricing-card.selectable input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-card.selectable .plan-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.pricing-card.selectable .plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card.selectable .plan-badge.savings {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.pricing-card.selectable .pricing-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.pricing-card.selectable .pricing-icon i {
  font-size: 1.75rem;
  color: var(--text-white);
}

.pricing-card.selectable .pricing-info {
  flex: unset;
  text-align: left;
}

.pricing-card.selectable .pricing-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.35rem;
}

.pricing-card.selectable .pricing-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.pricing-card.selectable .pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0.75rem 0;
}

.pricing-card.selectable .pricing-amount .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-card.selectable .pricing-amount .price {
  font-size: 2.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card.selectable .pricing-amount .period {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.pricing-card.selectable .plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #f0f0f0;
}

.pricing-card.selectable .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.pricing-card.selectable .feature-item i {
  color: #4caf50;
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-card.selectable .selected-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.75rem;
  text-align: center;
  font-weight: 700;
  transform: translateY(100%);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-card.selectable .selected-indicator i {
  font-size: 1.1rem;
}

/* Hover State */
.pricing-card.selectable:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15);
  transform: translateY(-4px);
}

/* Selected State */
.pricing-card.selectable.selected,
.pricing-card.selectable:has(input[type="radio"]:checked) {
  border-color: var(--primary-color);
  border-width: 3px;
  box-shadow: 0 12px 32px rgba(233, 30, 99, 0.25);
  transform: translateY(-4px);
}

.pricing-card.selectable.selected .selected-indicator,
.pricing-card.selectable:has(input[type="radio"]:checked) .selected-indicator {
  transform: translateY(0);
}

.pricing-card.selectable.selected .plan-content,
.pricing-card.selectable:has(input[type="radio"]:checked) .plan-content {
  padding-bottom: 3.5rem;
}

/* Animation for selected card */
@keyframes cardPulse {
  0%, 100% {
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.25);
  }
  50% {
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.35);
  }
}

.pricing-card.selectable.selected,
.pricing-card.selectable:has(input[type="radio"]:checked) {
  animation: cardPulse 2s ease-in-out infinite;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-icon i {
  font-size: 1.75rem;
  color: var(--text-white);
}

.pricing-info {
  flex: 1;
}

.pricing-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.25rem;
}

.pricing-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-amount .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-amount .price {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-amount .period {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: var(--border-radius-sm);
  margin: 1.5rem 0;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 0.95rem;
  cursor: pointer;
}

.checkbox-group label a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

.checkbox-group label a:hover {
  color: var(--secondary-color);
}

.form-actions {
  margin-top: 2rem;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-white);
  border: none;
  padding: 1.2rem 2rem;
  border-radius: var(--border-radius-lg);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-submit:active {
  transform: translateY(-1px);
}

.btn-submit i {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .pricing-card {
    flex-direction: column;
    text-align: center;
  }
  
  .pricing-amount {
    justify-content: center;
  }
  
  .register-form {
    padding: 2rem 1.5rem;
  }
  
  .pricing-plans {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .pricing-card.selectable .plan-badge {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }
}

@media screen and (max-width: 600px) {
  .register-header h1 {
    font-size: 2rem;
  }
  
  .register-icon {
    width: 75px;
    height: 75px;
  }
  
  .register-icon i {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 1.2rem;
  }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media screen and (max-width: 1024px) {
  header {
    flex-direction: column;
    gap: 1rem;
  }

  #primary-menu {
    width: 100%;
    justify-content: center;
  }

  .row {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .titleList {
    font-size: 1.4rem;
  }

  .search {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
  }

  .search select {
    border-right: none;
    border-bottom: 2px solid var(--bg-light);
    width: 100%;
  }

  .row {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
  }

  .grid-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding: 1rem;
    gap: 1rem;
  }

  #logo h1 a span {
    font-size: 1.5rem;
  }

  .banner img {
    max-height: 200px;
  }
  
  section.main_content {
    padding: 1rem 0;
  }
  
  .titleHeader {
    margin: 1.5rem 0 0.75rem;
  }
}

@media screen and (max-width: 600px) {
  section.main_content {
    padding: 1rem 0;
  }

  .container {
    padding: 0 0.75rem;
  }

  .row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .cardDeals {
    padding: 0.75rem;
  }

  .cardDeals img {
    max-width: 140px;
    height: 140px;
    margin-bottom: 0.5rem;
  }
  
  .cardDeals h5 {
    font-size: 0.85rem;
    min-height: 2rem;
  }
  
  .cardDeals p {
    font-size: 1.1rem;
  }
  
  .cardDeals button {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .whatsapp {
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp a img {
    width: 60px !important;
  }

  #primary-menu {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  #primary-menu ul a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .titleHeader {
    margin: 1rem 0 0.5rem;
  }
  
  .titleList {
    font-size: 1.2rem;
  }
  
  .banner {
    margin: 1rem auto;
  }
  
  .banner img {
    max-height: 180px;
  }
  
  .carousel-wrap {
    margin: 1rem auto;
  }
  
  .owl-carousel .item img {
    height: 200px;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.75rem;
  }
  
  .saleCard img {
    height: 250px;
  }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.mt-5 {
  margin-top: 3rem !important;
}

.mt-2 {
  margin-top: 1.5rem !important;
}

h5 {
  font-size: 1.1rem;
}

.cardDeals a {
  text-decoration: none;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: var(--primary-color);
  color: var(--text-white);
}

/* Loading animation for images */
img {
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ==========================================
   PRODUCT PAGE - AMAZON/FLIPKART STYLE
   ========================================== */
.product-detail-row {
    margin: 0;
    background: #f5f5f5;
    min-height: calc(100vh - 80px);
}

.product-detail-row > [class*='col-'] {
    padding: 0;
}

.product-gallery-col {
    background: white;
    border-right: 1px solid #e0e0e0;
}

.product-info-col {
    background: #f5f5f5;
    padding-left: 0;
}

.product-gallery-card,
.product-info-card {
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.product-gallery-card {
    position: sticky;
    top: 80px;
    padding: 2rem;
    background: white;
}

.product-info-card {
    padding: 2rem;
    background: white;
    border-radius: 0;
    margin: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Product Title */
.product-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212121;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* Rating Section - Amazon Style */
.product-rating-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-badge {
    background: linear-gradient(135deg, #388e3c, #4caf50);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.rating-score {
    font-size: 0.95rem;
}

.rating-badge .fa-star {
    font-size: 0.75rem;
}

.rating-details {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    color: #ffa500;
    font-size: 0.95rem;
}

.ratings-count {
    color: #666;
    font-size: 0.9rem;
}

/* Price Section - Amazon Style */
.product-price-section {
    margin: 1.25rem 0;
}

.price-main {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.35rem;
}

.price-symbol {
    font-size: 1.25rem;
    color: #212121;
    font-weight: 500;
    margin-right: 0.25rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #212121;
}

.price-info {
    font-size: 0.85rem;
    color: #666;
}

.tax-info {
    font-style: italic;
}

/* Product Specifications Table */
.product-info-section {
    margin: 1.5rem 0;
}

.info-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 1rem;
}

.product-specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.product-specs-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.product-specs-table tr:last-child {
    border-bottom: none;
}

.product-specs-table td {
    padding: 0.875rem 0;
    vertical-align: top;
}

.spec-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    width: 35%;
}

.spec-value {
    font-size: 0.95rem;
    color: #212121;
    font-weight: 600;
}

.free-delivery {
    color: #388e3c;
    font-weight: 700;
}

.free-delivery .fa-truck {
    margin-right: 0.35rem;
}

.spec-value .fa-map-marker {
    color: var(--primary-color);
    margin-right: 0.35rem;
}

/* Product Description */
.product-description-section {
    margin: 1.5rem 0;
}

.description-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #424242;
}

.description-content p {
    margin-bottom: 0.75rem;
}

/* Seller Information Card */
.seller-info-section {
    margin: 1.5rem 0;
}

.seller-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.seller-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.seller-details {
    flex: 1;
}

.seller-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #212121;
    margin: 0 0 0.35rem 0;
}

.seller-rating {
    margin: 0;
}

.seller-badge {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-contact-seller {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-contact-seller:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.3);
}

.btn-contact-seller i {
    margin-right: 0.5rem;
}

/* Gallery Action Buttons */
.action-buttons-gallery {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-primary-custom {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.btn-primary-custom i {
    margin-right: 0.5rem;
}

.btn-wishlist-full {
    width: 100%;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-wishlist-full:hover {
    background: var(--primary-color);
    color: white;
}

.btn-wishlist-full i {
    margin-right: 0.5rem;
}

.divider {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid #e0e0e0;
}

.alert-message.product-alert {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Responsive Product Page */
@media screen and (max-width: 768px) {
    .product-gallery-col,
    .product-info-col {
        border-right: none;
    }
    
    .product-gallery-card {
        position: relative;
        top: 0;
        padding: 1.5rem;
    }
    
    .product-info-card {
        margin: 0.75rem;
        padding: 1.5rem;
    }
    
    .product-name {
        font-size: 1.25rem;
    }
    
    .price-value {
        font-size: 1.75rem;
    }
    
    .product-specs-table td {
        padding: 0.75rem 0;
    }
    
    .spec-label {
        width: 40%;
        font-size: 0.85rem;
    }
    
    .spec-value {
        font-size: 0.9rem;
    }
    
    .seller-card {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-contact-seller {
        width: 100%;
    }
}
