/* Base CSS */

.alignleft {
  float: left;
  margin-right: 15px;
}

.alignright {
  float: right;
  margin-left: 15px;
}

.aligncenter {
  display: block;
  margin: 0 auto 15px;
}

a:focus {
  outline: 0 solid;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  color: #252b42;
  font-weight: 700;
  font-family: "system-ui", sans-serif;
}

:root {
  --primary-dark: #0f172a;
  --accent-blue: #2563eb;
  --text-color: #475569;
}

body {
  color: var(--text-color);
  font-family: "system-ui", sans-serif;
  font-weight: 400;
}

h1 {
  color: var(--primary-dark);
  font-size: 60px;
  line-height: 1em;
}

h2 {
  color: var(--primary-dark);
  font-size: 48px;
  line-height: 1.11em;
}

h3 {
  color: var(--primary-dark);
  font-size: 36px;
  line-height: 1.11em;
}

.button {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 15px 35px;
  border: none;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  font-family: "system-ui", sans-serif;
}

.button:hover {
  background-color: var(--accent-blue);
}

.error-message {
  color: var(--error-color);
}

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

/* Navbar CSS */
/* Navbar Styling */
.navbar {
    padding: 20px 0;
    background: #f8fafc;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-dark) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

.logo-icon {
  background: var(--primary-dark);
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.2rem;
}

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  padding: 0.5rem 1.1rem !important;
}

.nav-link:hover {
  color: var(--primary-dark) !important;
}

/* Dropdown Customization */
.dropdown-menu {
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px;
  min-width: 180px;
}

.dropdown-item {
  color: var(--text-muted);
  font-weight: 400;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 14px;
}

.dropdown-item:hover {
  background-color: #f8fafc;
  color: var(--primary-dark);
}

/* Icons Section */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-wrapper {
  position: relative;
  cursor: pointer;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-blue);
  color: white;
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.search-btn {
  color: var(--primary-dark);
  font-size: 1rem;
  cursor: pointer;
}

/* Hero CSS */
.hero-section {
  padding: 50px 0;
}

/* Gradient Text logic */
.gradient-text {
  background: linear-gradient(90deg, #2563eb 0%, #db2777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--primary-dark);
  margin-bottom: 25px;
}

/* Stats Section */
.stats-container {
  display: flex;
  gap: 75px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #f1f5f9;
}

.stat-box h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-dark);
}

.stat-box p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* Right Image Section with Dotted Circle */
.hero-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* backside dotted Border */
.hero-img-wrapper::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border: 2px dashed #e2e8f0;
  border-radius: 50%;
  z-index: 5;
}

.main-image {
  position: relative;
  z-index: 2;
  width: 420px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Floating Elements */
.floating-card {
  position: absolute;
  background: white;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.f-headphone {
  top: 20px;
  right: 20px;
  width: 80px;
}
.f-phone {
  bottom: 20px;
  left: 20px;
  width: 90px;
}

span.badge.rounded-pill {
    color: #1d4ed8 !important;
    background: #dbeafe !important;
    font-size: 14px;
    font-weight: 500;
    font-family: system-ui;
    padding: 10px;
}

section.hero-section p {
    color: #64748b;
    font-size: 18px;
    max-width: 520px;
}

.hero-btn a.btn {
  padding: 15px 35px !important;
  font-family: inherit;
  font-weight: 500;
}

/* Animation Definition */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Floating Animation Class */
.animate-float {
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}

.animate-float-delayed {
  animation: float 5s ease-in-out infinite;
  animation-delay: 1s;
}

/* Featured Section */
.features-section {
  background-color: var(--primary-dark);
  padding: 35px 0;
  border-radius: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon-box {
  background-color: #ffffff1a;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px; /* Smooth rounded corners */
  font-size: 18px;
  /* Subtle border */
}

.feature-content h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-content h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-content p {
  color: var(--text-gray);
  font-size: 13px;
  margin: 0;
  white-space: nowrap;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .feature-item {
    margin-bottom: 20px;
  }
}

.feature-content {
  color: #fff;
}

/* Shop By Brand Section */
.brand-section {
  padding: 60px 0;
}

.brand-wrapper {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-top: 15px;
  padding-bottom: 25px;
  margin-top: -15px;
}

.brand-wrapper::-webkit-scrollbar {
  display: none;
}

.brand-item {
  flex: 0 0 auto;
  width: 170px;
}

.brand-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #172033;
  padding: 24px 15px;
  border-radius: 24px;
  text-decoration: none !important;
  transition: transform 0.3s ease;
  overflow: hidden;
  height: 200px;
}

.brand-link:hover {
  transform: translateY(-8px);
  overflow: hidden;
}

/* ----- Hover Gradient Animation ----- */
.brand-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #d946ef);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.brand-link:hover::after {
  transform: scaleX(1);
}

.brand-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
}

.brand-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.brand-sub {
  color: #94a3b8;
  font-size: 14px;
}

/* Browuse Catagories section */
.browse-categories {
  padding: 80px 0;
  background: #f8fafc;
}

.cat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.cat-title {
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 15px;
}

.cat-subtitle {
  color: #64748b;
  margin-top: 5px;
}

.btn-view-all {
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 8px 20px;
  color: #1e293b;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.btn-view-all:hover {
  background-color: #f8fafc;
}

/* Category Cards Layout */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 160px;
  border-radius: 20px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: white !important;
  padding: 20px;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cat-icon {
  font-size: 25px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.cat-name {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* Specific Category Colors */
.cat-cases {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}
.cat-chargers {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.cat-cables {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.cat-protectors {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}
.cat-earbuds {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}
.cat-powerbanks {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}
.cat-stands {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}
.cat-mounts {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
}

/* Product Card CSS */
.product-card {
  border: 1px solid transparent;
  border-radius: 24px;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.product-card:hover {
  border-color: #f0f0f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.image-container {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 25px 25px 0px 0px;
  background-color: #f4f7fa;
  padding: 30px;
}

/* Image Hover Zoom Effect */
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img {
  transform: scale(1.1);
}

.badge-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ef4444;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: bold;
  z-index: 2;
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}

.product-card:hover .wishlist-btn {
  opacity: 1;
}

a.product-title {
    font-weight: 600;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px;
    text-decoration: none;
}

.cart-btn {
  background: #0f172a;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50px;
  line-height: 0;
  transition: 0.3s;
}

.cart-btn:hover {
  background: #000;
}

.product-card-content {
  padding: 0px 30px 30px 30px;
}

section.featured-section button.cart-btn svg {
  width: 15px;
  height: 15px;
}

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

.product-card-content p {
  color: #64748b !important;
  font-size: 12px;
  font-weight: 500;
}

.product-card span.text-warning {
  font-size: 20px !important;
}

button.view-all-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #171717;
}

/* Up To 40% Section */
.custom-hero-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0f172a 0%, #0b111e 100%);
}

.hero-wrapper {
  /* Exact Linear Gradient from Image */
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.offer-badge {
  background-color: #1d3358;
  color: #60a5fa;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 25px;
}

.main-title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 20px;
}

.highlight-text {
  color: #60a5fa !important; /* Light Blue color from screenshot */
}

.description {
  color: #94a3b8;
  font-size: 18px;
  max-width: 450px;
  margin-bottom: 35px;
  line-height: 1.6;
}

.shop-btn {
  background-color: #ffffff;
  color: #0f172a;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.shop-btn:hover {
  background-color: #f1f5f9;
}

.image-box img {
  width: 100%;
  height: 380px;
  border-radius: 0;
  opacity: 0.5;
  display: block;
  object-fit: cover;
}

section.featured-section.gray-bg {
  background: #f8fafc;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-wrapper {
    padding: 40px;
    text-align: center;
  }
  .main-title {
    font-size: 32px;
  }
  .description {
    margin: 0 auto 30px;
  }
  .image-box {
    margin-top: 40px;
  }
}

/* Footer CSS */
.main-footer {
  background: var(--primary-dark);
  color: #94a3b8;
  padding: 80px 0 30px;
  font-family: "Inter", sans-serif;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    text-decoration: none;
}

.logo-icon {
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}

.logo-text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}

.footer-desc {
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 25px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
  background-color: #6366f1;
  transform: translateY(-3px);
}

/* Titles and Links */
.footer-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
  font-weight: 400;
}

.footer-links li a:hover {
  color: #ffffff;
}

/* Newsletter Form */
.newsletter-text {
  font-size: 16px;
  margin-bottom: 20px;
}

.input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 5px;
}

.input-group input {
  background: transparent;
  border: none;
  color: white;
  padding: 8px 15px;
  flex-grow: 1;
  outline: none;
  font-size: 14px;
}

.input-group button {
  background: #2563eb;
  color: white;
  border: none;
  width: 40px;
  height: 35px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.input-group button:hover {
  background: #1d4ed8;
}

/* Contact Info */
.contact-info p {
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #64748b;
}

/* Footer Bottom */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.05);
  margin: 50px 0 30px;
}

.copyright {
  font-size: 14px;
  margin-bottom: 0;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 25px;
}

.footer-bottom-links li a {
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-bottom-links li a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-bottom-links {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* Footer CSS */
.custom-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 350px;
}

.newsletter-input {
  flex-grow: 1;
  background-color: #1e293b;
  border: 1px solid #334155;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-color: #3b82f6;
}

.newsletter-input::placeholder {
  color: #94a3b8;
}

.newsletter-btn {
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
  padding: 13px 15px;
}

.newsletter-btn:hover {
  background-color: #1d4ed8;
  transform: scale(1.05);
}

.newsletter-btn i {
  font-size: 16px;
}

.hero-btn a.btn i {
  margin-left: 15px;
}


/* Sidebar Customization */
.form-check-input {
    cursor: pointer;
    border: 2px solid #cbd5e1;
}

.form-check-input:checked {
    background-color: #0f172a;
    border-color: #0f172a;
}

.form-range::-webkit-slider-thumb {
    background: #0f172a;
  height: 100%;
}


.form-select:focus {
    box-shadow: none;
    border-color: #e2e8f0;
}

.main-products-section h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.main-products-section h6 i {
    margin-right: 10px;
}

.filter-group p {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.main-products-section label.form-check-label {
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.main-products-section .form-check-input[type=checkbox] {
    border: 1px solid #0a0a0a;
    margin-right: 10px;
}

.main-products-section .card {
    border-radius: 20px;
}

.main-products-section {
    background: #f8fafc;
    padding-bottom: 80px;
}

.all-products-section {
    background: #f8fafc;
    padding: 20px 0;
}

/* Range Slider Styling */
.custom-slider {
    width: 100%;
    height: 5px; 
    background: #171717 !important; 
    border-radius: 5px;
    outline: none;
    padding: 0;
    margin: 0;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #fff; 
    border: 1px solid #94a3b8; 
    border-radius: 50%;
    cursor: pointer;
}

.custom-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 1px solid #94a3b8;
    border-radius: 50%;
    cursor: pointer;
}

.range-labels span {
    font-size: 14px;
    color: #475569;
    margin-top: 8px;
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(17, 24, 39, 0.1);
}

section.all-products-section {
    background: #f8fafc;
}

section.all-products-section .cat-header {
    margin: 0;
}


.filter-icon-box {
    background: #f1f5f9;
    padding: 5px;
    border-radius: 10px;
}

.form-select.form-select-sm {
    border: 1px solid #e5e5e5 !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    box-shadow: none;
    min-width: 180px;
}

.form-select:focus {
    border-color: #000 !important;
    box-shadow: none !important;
}

.right-side-filter {
    border-radius: 15px;
}


.g-custom {
    --bs-gutter-x: 50px; 
    --bs-gutter-y: 50px; 
}

@media (min-width: 768px) {
    .g-custom {
        --bs-gutter-x: 50px;
    }
}


.product-page {
    padding-top: 30px;
    background: #fff;
    padding-bottom: 80px;
}

.breadcrumb-nav a {
    font-size: 14px;
    color: rgb(51 65 85);
    text-decoration: none;
}

.breadcrumb-nav span {
    color: #0f172a;
    font-size: 14px;
}

nav.breadcrumb-nav i {
    color: rgb(100 116 139);
    font-size: 12px;
    margin-left: 5px;
    margin-right: 5px;
}

/* Image Section */
.product-image-container {
    background-color: #f5f8fb;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.product-image-container img {
    border-radius: 8px;
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

.discount-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ef4444;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    z-index: 10;
}

/* Product Info Section */
.tags {
    margin-bottom: 20px;
}

.tag {
    background: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    border: 1px solid hsl(0 0% 89.8%);
}

.single-product-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 15px;
    /* color: #0f172a; */
}

.rating {
    margin-bottom: 20px;
}

.rating .gold { color: #fbbf24; }
.rating .gray { color: #d1d5db; }
.rating-text {
    margin-left: 8px;
    color: #475569;
    font-size: 16px;
    font-weight: 400;
}

.pricing {
    margin-bottom: 20px;
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
}

.old-price {
    font-size: 20px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 10px;
    line-height: 28px;
}

.short-desc {
    color: #475569;
    line-height: 26px;
    margin-bottom: 25px;
}

/* Features List */
.key-features h2, .compatibility h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}


.key-features ul {
    list-style: none;
    padding: 0;
}

.key-features li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #475569;
    display: flex;
    align-items: center;
}

.key-features li i {
    color: #3fcc73;
    font-size: 16px;
    margin-right: 15px;
}

.comp-badge {
    background: #f5f5f5;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 14px;
    color: #171717;
    font-weight: 600;
}

/* Action Buttons */
.action-area {
    display: flex;
    gap: 12px;
    margin: 30px 0;
    align-items: center;
}

.quantity-selector {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    height: 48px;
    align-items: center;
}

.quantity-selector button {
    border: none;
    background: none;
    padding: 0 15px;
    font-size: 20px;
    cursor: pointer;
}

.quantity-selector input {
    width: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
}

.btn-add-cart {
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0 30px;
    height: 48px;
    font-weight: 500;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

/* Trust Badges */
.trust-badges {
    border-top: 1px solid #f1f5f9;
    background: #f8fafc;
    padding: 20px 0;
    margin-top: 30px;
    border-radius: 15px;
    text-align: center;
}

.badge-item i {
    font-size: 20px;
    color: #334155;
    margin-bottom: 8px;
}

.badge-item p {
    font-size: 12px;
    margin: 0;
    color: #475569;
}

nav.breadcrumb-nav {
    margin-bottom: 30px;
}

/* Container Spacing */
.product-tabs-container {
    margin-top: 50px;
    font-family: 'Inter', sans-serif;
}

/* Header Design */
.custom-tabs {
    border-bottom: 1px solid #E2E8F0 !important; /* Light gray line */
    gap: 30px;
}

.custom-tabs .nav-item {
    margin-bottom: -1px;
}

.custom-tabs .nav-link {
    /* border: none !important; */
    background: transparent !important;
    padding: 12px 10px !important;
    color: #64748B !important;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* Active Tab Underline */
.custom-tabs .nav-link.active {
    color: #0F172A !important; /* Dark color */
}

.custom-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0F172A; /* Dark underline */
}

/* Content Area */
.custom-tab-content {
    padding-top: 30px;
}

.tab-text {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-heading {
    font-size: 20px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #475569;
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 0;
    font-weight: 400;
}


/* Specification Card Styling */
.spec-card {
    background-color: #f8fafc; /* Light bluish-gray background */
    border-radius: 15px;
    padding: 20px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid transparent; /* Keeping layout stable */
    transition: all 0.3s ease;
}

/* Label Styling (e.g., Brand, Category) */
.spec-label {
    font-size: 14px;
    color: #94A3B8; /* Muted gray text */
    margin-bottom: 5px;
    display: block;
}

/* Value Styling (e.g., Xiaomi, Power Banks) */
.spec-value {
    font-size: 16px;
    font-weight: 500;
    color: #0F172A; /* Dark slate text */
    margin-bottom: 0;
}

/* Grid Gap Adjustment */
.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .spec-card {
        padding: 20px;
    }
    .spec-value {
        font-size: 16px;
    }
}



.cart-page {
    padding: 20px 0 80px 0;
    background: #f8fafc;
}

.g-custom-40 {
    --bs-gutter-x: 40px;
}

/* Header Section */
.cart-top-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.item-count {
    color: #64748B;
    margin: 0;
}

.clear-cart-btn {
    background: none;
    border-radius: 5px;
    color: #b91c1c;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    padding: 10px 10px;
    border: none;
}

/* Cart Item Card */
.cart-item-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}

.item-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-product-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    border: 10px solid #f1f5f9;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-price {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.qty-control {
    display: flex;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    width: fit-content;
}

.qty-control button {
    border: none;
    background: none;
    padding: 5px 15px;
    font-size: 18px;
    cursor: pointer;
    color: #64748B;
}

.qty-control input {
    width: 30px;
    border: none;
    text-align: center;
    font-weight: 600;
}

.item-actions {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 25px;
}

.subtotal {
    font-weight: 600;
    font-size: 16px;
}

.remove-btn {
    background: none;
    border: none;
    color: #94A3B8;
    cursor: pointer;
    font-size: 16px;
}

.continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #171717 !important;
    font-weight: 500;
    border: 1px solid #E2E8F0;
    padding: 10px 20px;
    border-radius: 25px;
    background: #fff;
    font-size: 14px;
}

/* Order Summary */
.order-summary-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.summary-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.promo-box {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.promo-input {
    position: relative;
    flex-grow: 1;
}

.icon-tag {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
}

.promo-input input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #E2E8F0;
    border-radius: 30px;
    outline: none;
    font-size: 14px;
}

.apply-btn {
    background: white;
    border: 1px solid #E2E8F0;
    padding: 0 20px;
    border-radius: 30px;
    font-weight: 500;
}

.summary-details {
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: #64748B;
    font-size: 16px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    color: #0a0a0a;
    margin-top: 15px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.shipping-progress {
    background: #EFF6FF;
    padding: 12px;
    border-radius: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.shipping-progress p {
    font-size: 14px;
    color: #1d4ed8;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 400;
}

.progress-bar-bg {
    height: 8px;
    background: #DBEAFE;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #3B82F6;
}

.checkout-btn {
    width: 100%;
    background: #0F172A;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    text-decoration: none;
}

.checkout-btn:hover {
    background: #7c3aed;
    color: #fff;
}

.trust-icons {
    display: flex;
    justify-content: space-between;
}

.trust-item {
    font-size: 12px;
    color: #64748b;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

a.continue-shopping:hover {
    background: hsl(0 0% 96.1%);
}

button.clear-cart-btn:hover {
    background: rgb(185 28 28);
    color: #fff;
}

.apply-btn:hover {
    background: #ddd;
}

.summary-line span:last-child {
    color: #000;
    font-weight: 500;
}

.summary-total span:last-child {
    font-weight: 700;
}

.trust-item i {
    font-size: 16px;
}





.custom-search-btn {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.custom-search-btn i {
    color: #ffffff !important;
}

.custom-search-input {
    border: 1px solid #2563eb !important; 
}

.search-box input {
    background: #f5f5f5;
}

button.btn.custom-search-btn {
    background: #000;
    min-height: 40px;
}

.search-box .input-group {
    padding: 0;
}

/* Checkout Page CSS */
.checkout-container {
    padding: 60px 0;
    background: #f6f6f6;
}

.sub-title {
    font-weight: 600;
    margin-bottom: 25px;
}

/* Custom Input Styling */
.form-control-custom {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    outline: none;
    transition: 0.3s;
}

.form-control-custom:focus {
    border-color: #4a6cf7;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Delivery Options */
.option-card {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 12px 20px;
    flex: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-card.active {
    border: 2px solid #4a6cf7;
    background: #f0f4ff;
}

/* Right Side Card */
.summary-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}

.item-img {
    width: 70px;
    height: 70px;
    background: #f4f4f4;
    border-radius: 15px;
    overflow: hidden;
}

.item-details h6 {
    margin: 0;
    font-size: 16px;
}

.item-details p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.price {
    font-weight: 700;
}

/* Discount Box */
.apply-btn {
    background: #2563eb !important;
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 0 15px;
    border-radius: 15px;
}

/* Buttons */
.pay-btn {
    background: #2563eb !important;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
    width: 100% !important;
    display: block;
    text-align: center;
    text-decoration: none;
}

.pay-btn:hover {
    background: #7c3aed !important;
    color: #fff;
}

.apply-btn:hover {
    background: #7c3aed !important;
}

/* Phone Input Special */
.phone-input {
    position: relative;
}

.phone-input .flag {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Security Note */
.security-note small {
    color: #888;
    display: block;
    margin-top: 5px;
}


.order-success-main-wrapper {
    padding: 60px 0;
    background: #f6f6f6;
}

.check-icon {
    width: 70px;
    height: 70px;
    background-color: #61b390;
    border-radius: 50%;
    margin: 0 auto 30px auto;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    width: 35px;
}


.sub-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.summary-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    margin-bottom: 30px;
}

.summary-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.item-row {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
}

.item-img-box {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px; 
}

.item-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-meta {
    flex-grow: 1;
}

.item-meta h6 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
}
.item-meta h3 {
    font-size: 16px;
    font-weight: 600;
}

.item-meta span {
    font-size: 12px;
    color: #999;
}

.item-price {
    font-weight: 600;
}

.total-section {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.total-label, .total-val {
    font-size: 18px;
    font-weight: 700;
}

.home-btn {
    background: #fff;
    border: 1.5px solid #000;
    color: #000;
    padding: 12px 35px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}

.home-btn:hover {
    background: #1d4ed8;
    color: #fff;
    border-color: #fff;
}


/* Auth Login Page CSS */
/* Pixel Perfect Styling */
.auth-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.auth-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-header p {
    color: #777;
    font-size: 14px;
    margin-bottom: 30px;
}

.input-group-custom {
    margin-bottom: 20px;
    text-align: left;
}

.input-group-custom label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #64748b;
}

.input-group-custom input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: 0.3s;
}

.input-group-custom input:focus {
    border-color: #4a6cf7;
    outline: none;
    box-shadow: 0 0 0 4px rgba(74, 108, 247, 0.1);
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-link, .otp-toggle a {
    color: #4a6cf7;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.auth-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 15px;
}

.auth-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.auth-main-wrapper {
    background: #f6f6f6;
    padding: 60px 0;
}


/* Register Form CSS */
.required {
    color: #ff4d4f;
}

.input-group-custom input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
}

/* Phone Field Specific Styling */
.phone-wrapper {
    display: flex;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
}

.flag-box {
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    cursor: pointer;
}

.flag-box img {
    width: 20px;
    height: auto;
    margin-right: 8px;
}

.arrow-down {
    width: 0; 
    height: 0; 
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #666;
}

.phone-wrapper input {
    border: none;
    flex-grow: 1;
}

/* Terms & Footer */
.terms-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.terms-container label {
    font-size: 13px;
    color: #666;
}

.terms-container span {
    color: #4a6cf7;
    font-weight: 600;
    cursor: pointer;
}

.auth-btn {
    width: 100%;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.auth-btn:hover {
    background: #7c3aed;
}

.auth-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

.auth-footer a {
    color: #4a6cf7;
    text-decoration: none;
    font-weight: 600;
}


.about-hero-section {
    /* Exact Gradient from MobileHub Site */
    background: linear-gradient(135deg, #3B82F6 0%, #3b82f6 50%, #7c3aed 100%);
    padding: 70px 0; 
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    animation: fadeIn 0.8s ease-in-out;
}

.about-hero-section .hero-title {
     margin-bottom: 20px;
     color: #fff;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
    .about-hero-section {
        padding: 70px 0;
        min-height: 250px;
    }
}

/* Simple Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


.our-story-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 36px;
    margin-bottom: 25px;
}

.story-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-image-wrapper {
    position: relative;
    padding-left: 20px; 
}

.main-story-img {
    width: 100%;
    border-radius: 20px; 
    display: block;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.customers-badge {
    position: absolute;
    bottom: -20px;
    left: 0;
    background-color: #1d4ed8; 
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    text-align: center;
}

.customers-badge h3 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.customers-badge span {
    font-size: 14px;
    font-weight: 400;
    display: block;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .story-image-wrapper {
        margin-top: 50px;
        padding-left: 0;
    }
    .customers-badge {
        bottom: 20px;
        left: 20px;
    }
    .section-title {
        font-size: 30px;
    }
}

.values-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.value-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #dbeafe; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}


.row.items-space {
    margin-top: 40px;
}


/* Team Section CSS */
.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.member-img-box {
    width: 100%;
    aspect-ratio: 1 / 1; 
    border-radius: 12px; 
    overflow: hidden;
    margin-bottom: 20px;
}

.member-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.3s ease;
}

.team-member:hover .member-img-box img {
    transform: scale(1.05); 
}

/* Typography */
.member-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.member-role {
    font-size: 15px;
    font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .member-img-box {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

.stats-section {
    background: linear-gradient(90deg, #3b82f6, #7c3aed);
    padding: 60px 0; 
    color: #ffffff;
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-size: 48px; 
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.stat-label {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .stat-number {
        font-size: 30px;
    }
    .stats-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 26px;
    }
    .stat-label {
        font-size: 14px;
    }
}

/* Our Mission CSS */
.mission-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.mission-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon svg {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 4px 6px rgba(239, 68, 68, 0.1));
}

.mission-text {
    font-size: 18px;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }
    .mission-text {
        font-size: 16px;
        padding: 0 15px;
    }
}


.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-container-box {
    border-radius: 15px;
    margin: 0;
    overflow: hidden;
}

.form-wrapper {
    padding: 50px;
    border: 1px solid #e5e7eb;
}

.input-box {
    margin-bottom: 20px;
}

.input-box label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

.input-box input, 
.input-box textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 15px; 
    font-size: 14px;
    background: #fff;
    outline: none;
    transition: 0.3s;
}

.input-box input:focus, 
.input-box textarea:focus {
    border-color: #000;
}

.send-btn {
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    background: #2563eb !important;
    border-radius: 15px;
}

.send-btn:hover {
    background-color: #7c3aed !important;
}

.map-container {
    height: 100%;
    min-height: 500px;
    width: 100%;
}

.map-container iframe {
    display: block;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .form-wrapper {
        padding: 30px;
    }
    .map-container {
        min-height: 400px;
    }
    .contact-container-box {
        border: none; /* Mobile e separate thaka bhalo */
    }
}



/* Parallax Section Styling */
.parallax-contact-info {
    position: relative;
    padding: 100px 0;
    background-image: url('../img/bg-service.jpg');
    background-attachment: fixed; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-contact-info::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: -1;
}

.info-card-wrapper {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.info-item {
    padding: 40px;
    height: 100%;
}

/* Icons and Headers */
.info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 15px;
}

.info-header h5 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.info-header h3 {
    font-size: 20px;
    margin: 0;
}

.info-header .icon {
    font-size: 25px;
    color: #2563eb;
}

/* Content Text */
.info-body p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 5px;
}

.info-body a {
    text-decoration: none;
    transition: 0.3s;
}

.info-body a:hover {
    color: #000;
}

/* Vertical Divider for Desktop */
@media (min-width: 992px) {
    .border-end-custom {
        border-right: 1px solid #eeeeee;
    }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .info-item {
        padding: 30px;
        border-bottom: 1px solid #eeeeee;
    }
    .parallax-contact-info {
        background-attachment: scroll; 
        padding: 60px 0;
    }
}



/* Terms Page CSS */
/* Container and Page Background */
.legal-page-area {
    background-color: #f3f4f6;
    padding: 100px 0;
    min-height: 100vh;
}

/* White Card Box */
.legal-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.legal-sidebar-content {
    padding: 60px;
    background-color: #ffffff;
    height: 100%;
    position: sticky;
    top: 20px;
}

.legal-icon {
    font-size: 45px;
    color: #2563eb;
    margin-bottom: 25px;
}

.legal-main-heading {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
}

.last-revised {
    font-size: 14px;
    color: #6b7280;
    margin-top: 20px;
}

.legal-body-text {
    padding: 60px;
    border-left: 1px solid #f3f4f6;
}

.legal-section {
    margin-bottom: 45px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 18px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}

/* Custom List Styling */
.legal-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.legal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #4b5563;
    font-size: 15px;
}

.legal-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .legal-sidebar-content {
        padding: 40px;
        text-align: center;
        border-bottom: 1px solid #f3f4f6;
    }
    .legal-body-text {
        padding: 40px 25px;
        border-left: none;
    }
    .legal-page-area {
        padding: 50px 0;
    }
}

/* Product Pagination CSS */
.custom-pagination .page-item {
    margin: 0 5px;
}

.custom-pagination .page-link {
    border: 1px solid #e5e7eb;
    color: #0f172a;
    padding: 10px 18px;
    font-weight: 500;
    border-radius: 10px !important; 
    transition: all 0.3s ease;
}

.custom-pagination .page-item.active .page-link {
    background-color: #2563eb; 
    border-color: #2563eb;
    color: #fff;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.custom-pagination .page-link:hover {
    background-color: #f3f4f6;
    color: #2563eb;
    border-color: #2563eb;
}

.custom-pagination .page-item.disabled .page-link {
    color: #d1d5db;
    background-color: #f9fafb;
    border-color: #e5e7eb;
}

.custom-pagination .page-link i {
    font-size: 12px;
}

.pagination {max-width: 100%;}

/* Mobile Responsive Pagination */
@media (max-width: 768px) {
    .custom-pagination .page-link {
        padding: 8px 12px; 
        font-size: 14px;    
    }
    
    .custom-pagination .page-item {
        margin: 0 2px;    
    }

    .custom-pagination {
        flex-wrap: wrap;    
        gap: 5px;          
    }
}




/* Medium Layout: 1280px. */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
}

/* 1920x1080 @150% scale ≈ 1280px CSS width */
@media (max-width: 1280px) {
  .brand-item {
    width: 145px;
  }

  .brand-link {
    height: 180px;
  }

  .brand-icon-box {
    width: 80px;
    height: 70px;
  }

  .category-grid {
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  }

  .category-card {
    height: 145px;
  }

  .hero-section .container {
    max-width: 1130px !important;
  }
}

/* 175% Scale */
@media (max-width: 1100px) {
  .hero-section .container {
    max-width: 960px !important;
  }

  .hero-title {
    font-size: 45px;
  }

  .brand-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
  }

  .main-title {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
  }

  .cat-title {
    font-size: 30px;
  }
}

/* Ipad */
@media (max-width: 1024px) {
  .newsletter-input {
    padding: 10px 0px 10px 10px;
    max-width: 165px !important;
  }
}

/* Tablet & mobile Layout: 768px. */
@media only screen and (max-width: 991px) {
  .hero-img-wrapper::before {
    display: none;
  }

  .stats-container {
    display: block;
    padding-top: 10px !important;
  }

  .hero-section {
    padding: 30px 0 30px 0;
  }

  .hero-section span.badge.rounded-pill {
    margin: 0 auto;
    width: 100%;
  }

  .hero-title {
    text-align: center;
    font-size: 40px;
  }

  .hero-section p {
    text-align: center;
  }

  .hero-btn {
    margin: 0 auto;
    text-align: center;
  }

  .hero-btn a.btn {
    margin: 0 !important;
    margin-bottom: 15px !important;
  }

  .stat-box {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }

  .feature-item {
    display: block;
    align-items: center;
    text-align: center;
    width: auto;
  }

  .feature-icon-box {
    margin: 0 auto 20px;
  }

  .brand-section {
    padding: 40px 0;
  }

  .brand-wrapper {
    padding-bottom: 0;
  }

  .browse-categories {
    padding: 50px 0;
  }

  .cat-title {
    text-align: center;
    width: 100%;
  }

  .cat-header {
    display: block;
    align-items: center;
  }

  .cat-subtitle {
    text-align: center;
  }

  .cat-header .btn-view-all {
    margin: 0 auto;
    display: table;
  }

  section.featured-section {
    padding: 50px 0;
  }

  section.featured-section .d-flex.justify-content-between.align-items-end {
    display: block !important;
  }

  section.featured-section .d-flex.justify-content-between.align-items-end h3 {
    text-align: center;
  }

  section.featured-section .d-flex.justify-content-between.align-items-end p {
    text-align: center;
  }

  button.view-all-btn {
    margin: 0 auto;
  }

  .custom-hero-section {
    padding: 50px 0;
  }

  .hero-wrapper {
    padding: 0;
  }

  .main-title {
    font-size: 35px;
  }

  .custom-input-group {
    max-width: 100% !important;
  }

  .newsletter-input {
    max-width: 100% !important;
  }

  .form-select.form-select-sm {
    min-width: 100%;
  }
  .action-area {
    display: grid;
    align-items: center;
    justify-content: left;
}

.trust-badges {display: block;}

.trust-badges .badge-item {
    margin-bottom: 20px;
}

.single-product-title {
    font-size: 30px;
}

}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.hero-section p {
    text-align: center;
    margin: 0 auto;
  }
  .story-content h2 {
    font-size: 30px;
}
.form-wrapper h2 {
    font-size: 30px;
}
}
/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .navbar-toggler {
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    border: none;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
  }

  .custom-menu-icon {
    color: #ffffff;
    font-size: 20px;
  }

  .navbar-toggler {
    order: 3;
    margin-left: 10px;
  }

  .page-title {
    font-size: 30px;
}

.cart-top-header {
    display: block;
}

button.clear-cart-btn {
    margin-top: 15px;
}

.cart-item-card {
    display: block;
}

.item-info {
    display: grid;
    gap: 30px;
}

.item-actions {
    margin-top: 20px;
}

.order-summary-card {
    margin-top: 25px;
}

.option-card.active {
    display: block;
}

.option-card {
    display: block;
}

.cart-item {
    display: grid !important;
    gap: 20px;
}

.item-details.ms-3 {
    margin-left: 0 !important;
}

.summary-card {
    padding: 20px;
}

.auth-card {
    padding: 20px;
}

.summary-box {
    padding: 20px;
}

.item-row {
    display: grid;
    gap: 20px;
}

.stat-box h2 {
    font-size: 30px;
}

.story-content h2 {
    font-size: 30px;
}

.our-story-section {
    padding: 50px 0;
    text-align: center;
}

.values-section {
    padding: 50px 0;
}

.team-section {
    padding: 50px 0;
}

.team-member {
    margin-bottom: 0;
}
.contact-section {
    padding: 50px 0;
}

.form-wrapper h2 {
    font-size: 30px;
}

.form-wrapper {
    padding: 15px;
}

.contact-container-box {
    padding: 0;
    margin: 0;
}

.contact-container-box .col-lg-6 {
    padding: 0;
}
.main-products-section {
    padding-top: 0;
    padding-bottom: 30px;
}
.cart-page {
    padding: 20px 0 50px 0;
}
}
/* Wide Mobile Layout: 480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .navbar-toggler {
    background: linear-gradient(135deg, #3b82f6, #7c3aed);
    border: none;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
  }

  .custom-menu-icon {
    color: #ffffff;
    font-size: 20px;
  }

  .navbar-toggler {
    order: 3;
    margin-left: 10px;
  }

  .page-title {
    font-size: 30px;
}

.cart-top-header {
    display: block;
}

button.clear-cart-btn {
    margin-top: 15px;
}

.cart-item-card {
    display: block;
}

.item-info {
    display: grid;
    gap: 30px;
}

.item-actions {
    margin-top: 20px;
}

.order-summary-card {
    margin-top: 25px;
}

.option-card.active {
    display: block;
}

.option-card {
    display: block;
}

.cart-item {
    display: grid !important;
    gap: 20px;
}

.item-details.ms-3 {
    margin-left: 0 !important;
}

.summary-card {
    padding: 20px;
}
}

