/* Simple reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html,
body {
  height: 100%;
  font-family: Inter,
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial;
  background: #f7fbfc;
  color: #0b2a2f;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.sidebar-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

/* Header */
header {
  background: #faf8f8;
  border-bottom: 1px solid #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.container {
  width: 100%;
  margin: 0;
  padding: 15px 30px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  margin-right: 18px
}

.right-section {
  margin-left: 18px
}

/* Brand Section */
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  max-width: 45px;
  height: auto;
  display: block;
}

.brand-text a {
  text-decoration: none;
  color: #27302f;
  font-weight: 800;
  font: size 20px;
  line-height: 1.1;
}

.Bname a {
  color: #00c2e8;
}

/* Search Bar */
.search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.search-bar input {
  width: 100%;
  padding: 12px 88px 12px 16px;
  background: #e9e9ec;
  border: 1px solid #d9d9de;
  border-radius: 26px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .08), 0 3px 8px rgba(0, 0, 0, .12);
  font-size: 15px;
  outline: none;
}

.search-bar .filter-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  cursor: pointer;
  color: #00c2e8;
}

.search-bar .filter-select {
  position: absolute;
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  border: none;
  background: #fff;
  color: #333;
  border-radius: 8px;
  padding: 0 8px;
  font-size: 13px;
}

.search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
  z-index: 2
}

.search-btn i {
  font-size: 16px
}
/* Clear button */
.search-clear {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  cursor: pointer;
  font-weight: 900;
  display: none;
  z-index: 2
}

/* Rotating placeholder overlay */
.search-rotator {
  position: absolute;
  left: 16px;
  right: 88px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  overflow: hidden;
  pointer-events: none
}

.search-rotator .search-rotator-inner {
  display: block;
  will-change: transform;
  animation: rotatorSlide 12s ease-in-out infinite
}

.search-rotator .line {
  display: block;
  height: 20px;
  line-height: 20px;
  color: #6b7280;
  font-size: 14px
}

@keyframes rotatorSlide {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-20px);
  }

  45% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-40px);
  }

  70% {
    transform: translateY(-40px);
  }

  75% {
    transform: translateY(-60px);
  }

  95% {
    transform: translateY(-60px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Search suggestions */
.search-suggest {
  position: absolute;
  top: calc(100% + 6px);
  width: 70%;
  max-width: 640px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
  display: none;
  z-index: 101;
}

.search-suggest .s-item {
  padding: 10px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f3f3f3;
  display: flex;
  align-items: center;
  gap: 10px
}

.search-suggest .s-item:last-child {
  border-bottom: none
}

.search-suggest .s-item:hover {
  background: #f7fbfc
}

.search-suggest .s-item img.thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eee;
  background: #fafafa
}

.search-suggest .s-item .meta .nm {
  font-weight: 700;
  color: #0b2a2f
}

.search-suggest .s-item .meta .co {
  font-size: 12px;
  color: #6b7280
}

.search-suggest .s-item.empty {
  text-align: center;
  color: #b91c1c
}

/* Right Section */
.right-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-links {
  display: none
}

.profile-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px;
  border: 1px solid #e6f0ef;
  border-radius: 20px;
  background: #fff;
  cursor: pointer
}

.profile-button .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e9eff2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280
}

.profile-button .profile-text {
  line-height: 1.1
}

.profile-button .hello {
  font-size: 12px;
  color: #6b7280
}

.profile-button .linkish {
  font-size: 12px;
  font-weight: 700;
  color: #0b2a2f
}


.auth-links .signup-link,
.auth-links .login-link,
.lang-toggle button {
  text-decoration: none;
  background-color: #00c2e8;
  color: #fff;
  padding: 6px 12px;
  height: 34px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


.auth-links .signup-link:hover,
.auth-links .login-link:hover,
.lang-toggle button:hover {
  filter: brightness(0.95);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-right: 10px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-links a:hover {
  opacity: 0.8;
  color: #00c2e8;
}

/* Brand-colored nav icons */
.nav-links a i {
  color: #00c2e8;
}

/* Home/Shop text default black, brand on hover */
.nav-links a span {
  color: #000;
}
.nav-links a:hover span {
  color: #00c2e8;
}

.drawer-auth button i {
  font-size: 16px;
}

.auth-links .login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.drawer-auth {
  display: none;
}

/* Language Toggle */
.lang-toggle button {
  background-color: #00c2e8;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s ease;
}

.lang-toggle button:hover {
  background-color: #06b6d4;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  user-select: none;
}

/* Filter chip */
.filter-chip {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 16px;
  height: 34px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(90deg, #00b3ff, #00c2e8);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .2)
}

.filter-chip:active {
  transform: scale(.98)
}

/* Cart icon and badge */
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e6f0ef;
  background: #fff;
  color: #00c2e8
}

.cart-btn i {
  font-size: 18px
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: #ef4444;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(380px, 90vw);
  background: #fff;
  box-shadow: -12px 0 30px rgba(0, 0, 0, .2);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 999;
  display: flex;
  flex-direction: column
}

.cart-drawer.show {
  transform: translateX(0)
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #eee
}

.cart-drawer-header .title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #00c2e8
}

.cart-close {
  border: none;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
  color: #333
}

.cart-items {
  padding: 12px 16px;
  overflow-y: auto;
  flex: 1;
  display: grid;
  gap: 12px
}

.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid #e6f0ef;
  border-radius: 10px;
  padding: 8px
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff
}

.cart-item .brand {
  font-weight: 700;
  color: #00c2e8
}

.cart-item .muted {
  color: #555;
  font-size: 13px
}

.qty-row{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:4px
}
.qty-btn{
  width:24px;
  height:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid #e6f0ef;
  border-radius:6px;
  background:#f4fbfd;
  color:#0b2a2f;
  font-weight:700;
  cursor:pointer;
  line-height:1
}
.qty-row .muted{
  min-width:26px;
  text-align:center;
  font-weight:700
}

.cart-item .actions button {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #e6f0ef;
  background: #f4fbfd;
  cursor: pointer
}

.cart-item .actions .remove {
  background: #ef4444;
  color: #fff;
  border: none
}

.cart-drawer-footer {
  padding: 12px 16px;
  border-top: 1px solid #eee
}

.cart-summary {
  font-weight: 700;
  margin-bottom: 10px
}

.checkout-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  background: #06b6d4;
  color: #fff;
  text-decoration: none;
  font-weight: 700
}

.checkout-btn:hover {
  filter: brightness(.95)
}

/* ===== Responsive design ===== */
@media (max-width: 850px) {
  .nav {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    margin-right: 0
  }

  .right-section {
    margin-left: 0
  }

  .brand {
    flex-direction: row;
    align-items: center;
    text-align: left;
    width: 100%;
  }

  .search-bar {
    width: 100%;
    flex: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    position: relative;
  }

  .search-bar input {
    width: 100%;
    max-width: none;
    padding: 8px 80px 8px 16px;
  }

  .search-bar .filter-icon {
    display: none;
  }

  .search-bar .search-icon {
    display: none;
  }

  .search-btn { right: 12px }
  .search-clear { right: 44px }

  .filter-chip {
    left: 12px
  }

  .search-rotator { left: 16px; right: 80px; }

  .search-suggest {
    width: 100%;
    left: 0;
    right: 0
  }

  .lang-toggle {
    position: absolute;
    right: 55px;
    top: 20px;
  }

  .auth-links {
    position: absolute;
    right: 120px;
    top: 18px;
    gap: 8px;
  }

  .auth-links .login-link {
    font-size: 14px;
  }

  .auth-links .signup-link {
    padding: 5px 10px;
    font-size: 13px;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 60vw);
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding-top: 12px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.25);
    z-index: 999;
  }

  .nav-links.show {
    transform: translateX(0);
  }

  .nav-links a {
    color: #0b2a2f;
    font-size: 0.95rem;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: block;
  }

  .nav-links a.active {
    color: #00c2e8;
  }

  .drawer-auth {
    display: flex;
    gap: 12px;
    padding: 12px 20px;
    border-top: 1px solid #eee;
  }

  .drawer-auth button {
    background: #00c2e8;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
  }

  .drawer-auth button i {
    color: #fff;
  }

  .auth-links {
    display: none !important;
  }

  .drawer-header {
    display: none;
  }
}

.drawer-back span {
  font-weight: 600;
}

.auth-links .login-link i {
  color: #00c2e8;
}

.nav-links .login-menu {
  display: none;
}

@media (max-width: 850px) {
  .nav-links .login-menu {
    display: block;
  }
}

/* MAIN BODY START FORM HERE */
/*Hero Section*/
.hero {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  margin: 18px 0;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  height: 100%
}

.hero-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform .6s ease
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative
}

/* Remove blurred filler background to allow full-cover image */

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6)
}

.hero-dot.active {
  background: #fff
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 100, 100, 0.4));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 60px;
}

/* Text & button container */
.hero-content {
  max-width: 600px;
  color: white;
}

/* ===== Responsive Design ===== */

/* Tablet screens */
@media (max-width: 1200px) and (min-width: 851px) {
  .hero {
    height: 420px;
  }

  .hero-overlay {
    height: 100%;
  }
}

/* Mobile screens */
@media (max-width: 850px) {
  .hero {
    height: 300px;
  }

  .hero-overlay {
    padding: 40px 25px;
    justify-content: center;
    text-align: center;
  }
}

/* Highlights */
.highlight-container {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 18px 0;
  justify-content: center;
}

.highlight-container .card {
  width: 180px;
  height: 125px;
  border-radius: 20px;
  padding: 18px 18px 16px;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.highlight-container .card.big {
  width: 220px;
}

.highlight-container .icon-bubble {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #2a2a2a;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.12);
}

.highlight-container .title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-container .btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 6px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.highlight-container .g1 {
  background: linear-gradient(135deg, #27e5a8, #08a36d);
}

.highlight-container .g2 {
  background: linear-gradient(135deg, #4cd964, #2fba4a);
}

.highlight-container .g3 {
  background: linear-gradient(135deg, #d1f56a, #7cab0f);
}

.highlight-container .g4 {
  background: linear-gradient(135deg, #cfa7ff, #7a4fff);
}

.highlight-container .g5 {
  background: linear-gradient(135deg, #ffb980, #ff7a32);
}

@media (max-width: 850px) {
  .highlight-container {
    justify-content: center;
    gap: 14px;
  }

  .highlight-container .card {
    width: 160px;
    height: 120px;
  }

  .highlight-container .card.big {
    width: 180px;
  }
}

/* Shop */
.shop-section {
  text-align: center;
  padding: 60px 20px;
}

.shop-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 230px));
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: #222;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: #00b3ff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.product-card .actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  padding: 0 15px 12px
}

.product-card .actions .view {
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 10px;
  background: transparent;
  border: 2px solid #06b6d4;
  color: #06b6d4
}

.product-card .actions .add {
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 10px;
  border: none
}

.product-info {
  padding: 10px 12px 14px;
  font-size: 14px;
  text-align: left;
  border-top: 1px solid #eee;
}

.product-info b {
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
  color: #111;
}

.price {
  color: #00b3ff;
  font-weight: 600;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.view-more {
  display: inline-block;
  margin-top: 50px;
  padding: 14px 35px;
  background: linear-gradient(90deg, #00b3ff, #007acc);
  color: #fff;
  font-size: 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 179, 255, 0.3);
}

.view-more:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 179, 255, 0.45);
  background: linear-gradient(90deg, #0090d1, #005f99);
}

/* ðŸ”¹ Responsive Design ðŸ”¹ */
@media (max-width: 992px) {
  .shop-section h2 {
    font-size: 2rem;
  }

  .product-card img {
    height: 170px;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-card img {
    height: 160px;
  }

  .shop-section {
    padding: 40px 15px;
  }

  .view-more {
    margin-top: 35px;
    font-size: 16px;
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card img {
    height: 150px;
  }

  .shop-section h2 {
    font-size: 1.8rem;
  }

  .product-info {
    font-size: 13px;
  }

  .view-more {
    font-size: 15px;
    padding: 10px 25px;
    border-radius: 25px;
  }
}

/* WHOLESALE PREVIEW (Landing Page) */
.wholesale {
  text-align: center;
  padding: 70px 20px;
  background: #fff;
}

.wholesale h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.wholesale p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 25px;
}

/* ===== FAQ ===== */
.faq-section {
  max-width: 800px;
  margin: 80px auto;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 18px 0;
  cursor: pointer;
  transition: 0.3s;
}

.faq-item:hover {
  background: #f1f5ff;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #373c3f;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-top: 8px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  /* enough space for answers */
}

.faq-icon {
  margin-left: 10px;
  font-size: 16px;
  color: #666;
}

@media(max-width: 600px) {
  .faq-section {
    padding: 25px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

/* Footer */
.footer {
  background: linear-gradient(180deg, rgba(6, 18, 24, 0.98), rgba(6, 36, 53, 0.98));
  color: #e7f6ff;
  padding: 56px 6% 24px;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 34px;
}

.footer .brand {
  display: flex;
  gap: 14px;
  align-items: center
}

.footer .brand img {
  height: 56px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6)
}

.footer .brand-title h2 {
  margin: 0;
  font-size: 26px;
  color: #53bfff
}

.footer .brand-title small {
  font-size: 13px;
  color: #d9f3ff
}

.footer .short-desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  width: 95%;
  color: #eaf7ff
}

.col h3 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 17px
}

.links {
  list-style: none;
  margin: 0;
  padding: 0
}

.links li {
  margin: 10px 0
}

.links a {
  color: #d8ebf7;
  text-decoration: none;
  font-size: 14px;
  transition: .2s
}

.links a:hover {
  padding-left: 6px;
  color: #53bfff
}

.footer .social-block {
  margin-top: 22px
}

.footer .social-block .label {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
  color: #e8f6ff
}

.footer .social-icons {
  display: flex;
  gap: 12px;
  align-items: center
}

.footer .social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  color: #dff5ff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(4px) saturate(140%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition: .25s ease
}

.footer .social-icons a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 16px 35px rgba(83, 191, 255, 0.18);
  color: #fff
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #cfe7f7
}

/* Responsive */
@media(max-width:960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:620px) {
  .footer-inner {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px
  }
}

/* ---------- ANIMATION ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Hide Google Translate UI banner/menu */
body .goog-te-banner-frame,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-menu-value,
.goog-te-menu-frame,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
}

.auth-links .login-link {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 16px
}

.auth-links {
  display: flex;
  align-items: center;
  gap: 10px
}

.auth-links .login-link:hover {
  color: rgba(63, 74, 172, 0.932)
}

@media (max-width:850px) {
  .auth-links {
    position: absolute;
    right: 120px;
    top: 18px;
    gap: 8px
  }

  .auth-links .login-link {
    font-size: 14px
  }

  .auth-links .signup-link {
    padding: 5px 10px;
    font-size: 13px
  }
}

.address-block {
  padding: 12px 16px;
  border-top: 1px solid #eee
}

.address-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  color: #333;
  margin-bottom: 8px
}

.address-head a {
  color: #00c2e8;
  text-decoration: none;
  font-weight: 700
}

.addr-view {
  background: #f7fbfc;
  border: 1px solid #e6f0ef;
  border-radius: 10px;
  padding: 10px;
  color: #222
}

.addr-form {
  display: none;
  gap: 8px
}

.addr-form input,
.addr-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  font-size: 14px
}

.addr-form textarea {
  min-height: 72px;
  resize: vertical
}

.save-btn {
  margin-top: 6px;
  padding: 10px 12px;
  border: none;
  border-radius: 10px;
  background: #06b6d4;
  color: #fff;
  font-weight: 700
}

/* ===== LEFT CATEGORY SIDEBAR (shared) ===== */
.left-sidebar {
  position: sticky;
  top: 85px;
  width: 260px;
  background: #ffffff;
  border-right: 1px solid #e6f0ef;
  padding: 12px;
  height: calc(100vh - 85px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.left-sidebar::-webkit-scrollbar {
  width: 6px;
}

.left-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.left-sidebar::-webkit-scrollbar-thumb {
  background-color: #d1d5db;
  border-radius: 20px;
}

.left-sidebar .sidebar-title {
  font-weight: 800;
  color: #00c2e8;
  margin-bottom: 8px;
}

.left-sidebar .cat-list {
  overflow-y: visible;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.left-sidebar .cat-item {
  display: block;
  padding: 10px 12px;
  border: 1px solid #e6f0ef;
  border-radius: 10px;
  text-decoration: none;
  color: #0b2a2f;
  background: #fff;
}

.left-sidebar .cat-item:hover {
  background: #f7fbfc;
}

.main-with-sidebar {
  box-sizing: border-box;
}

.with-sidebar {
  box-sizing: border-box;
}

/* center key sections inside main-with-sidebar */
.main-with-sidebar .highlight-container,
.main-with-sidebar .shop-section,
.main-with-sidebar .review-terminal,
.main-with-sidebar .faq-section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .left-sidebar {
    position: static;
    width: auto;
    height: auto;
    border-right: none;
    margin: 10px 15px;
    border: 1px solid #e6f0ef;
    border-radius: 10px;
  }

  .content-with-sidebar {
    grid-template-columns: 1fr
  }

  .left-sidebar .cat-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .left-sidebar .cat-item {
    font-size: 14px;
    padding: 8px 10px;
  }

  .main-with-sidebar {
    padding-left: 0;
  }

  .with-sidebar {
    padding-left: 0;
  }
}

.contact p {
  margin: 6px 0;
  font-size: 14px;
  color: #eaf7ff
}

.mail {
  color: #53bfff;
  text-decoration: none;
  font-weight: 600
}

.verified {
  margin-top: 8px;
  font-size: 13px;
  opacity: .85
}

.app-cta {
  margin-top: 18px
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 220px;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  transition: .25s
}

.play-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(43, 171, 200, 0.15)
}

.play-btn i {
  font-size: 22px;
  color: #53bfff
}

.play-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.1
}

.play-btn small {
  font-size: 12px;
  opacity: .8
}

.play-btn strong {
  font-size: 15px;
  color: #fff
}

/* layout wrapper: sidebar + content */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: start
}
