/* style.css */
/* --- Design Tokens & Variables --- */
:root {
  --primary-color: #2b2d42;
  --primary-hover: #1a1c2c;
  --accent-color: #ef233c;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --star-color: #ffc107;
  --transition-base: 0.3s ease;
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-main: all 0.3s ease;
}

/* --- Base Styles --- */
body {
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
  line-height: 1.6;
  margin: 0;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: -1px;
  font-size: 24px;
}

/* --- Hero & Header Sections --- */
.hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  color: var(--white);
}

.about-hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  color: var(--white);
}

.service-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

/* --- Buttons --- */
.btn-accent {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-main);
  display: inline-block;
  text-decoration: none;
  border: none;
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(239, 35, 60, 0.3);
  /* Removed color change and opacity */
}

.btn-buy {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  transition: var(--transition-base);
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(43, 45, 66, 0.2);
  /* Keep solid background, no opacity */
}

.btn-dark-luxe {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-main);
}

.btn-dark-luxe:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(43, 45, 66, 0.2);
  /* Removed opacity change */
}

/* --- Cards (Product, Service, Value) --- */
.product-card {
  border: none;
  transition: var(--transition-main);
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.add-to-cart-overlay {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  transition: 0.3s;
  background: rgba(43, 45, 66, 0.9);
  color: white;
  text-align: center;
  padding: 10px;
}

.product-card:hover .add-to-cart-overlay {
  bottom: 0;
}

.service-card {
  height: 100%;
  padding: 40px;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.value-card {
  border: none;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 12px;
  height: 100%;
  transition: 0.3s;
}

.value-card:hover {
  background: var(--white);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

/* --- UI Components (Badges, Icons, Tabs) --- */
.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent-color);
  color: var(--white);
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 10;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  background: var(--light-bg);
  border-radius: 15px;
  font-size: 1.5rem;
  color: var(--accent-color);
}

.price-tag {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.rating-stars {
  color: var(--star-color);
  font-size: 0.9rem;
}

.nav-tabs {
  border-bottom: 2px solid var(--light-bg);
}

.nav-tabs .nav-link {
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  transition: var(--transition-base);
}

.nav-tabs .nav-link.active {
  background: transparent;
  border-bottom: 3px solid var(--accent-color);
}

/* --- Gallery & Images --- */
.main-img {
  cursor: zoom-in;
  border-radius: 12px;
  transition: var(--transition-base);
}

.thumb-img {
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: var(--transition-base);
}

.thumb-img:hover,
.thumb-img.active {
  opacity: 1;
  border-color: var(--primary-color);
}

.story-section img {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  filter: grayscale(100%);
  transition: 0.5s;
}

.team-member:hover img {
  filter: grayscale(0%);
}

/* --- Shop Specifics --- */
.filter-title {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.list-group-item {
  border: none;
  padding-left: 0;
  font-size: 0.95rem;
  color: #6c757d;
  transition: 0.2s;
}

.list-group-item:hover {
  color: var(--accent-color);
  background: transparent;
}

.pagination .page-link {
  color: var(--primary-color);
  border: none;
  margin: 0 5px;
  border-radius: 5px;
}

.cta-box {
  position: relative;
  padding: 60px;
  background: var(--light-bg);
  border-radius: 30px;
  overflow: hidden;
}

/* --- Responsive & Layout --- */
@media (min-width: 992px) {
  .sticky-info {
    position: sticky;
    top: 100px;
  }
}

/* FAQ Specific Styles */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 12px !important;
  overflow: hidden;
  background: var(--light-bg);
  transition: var(--transition-base);
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  background: var(--light-bg);
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--accent-color);
}

.accordion-button::after {
  filter: grayscale(1);
}

.accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: #6c757d;
  background: var(--white);
}

.faq-search-wrapper {
  max-width: 600px;
  margin: -30px auto 50px;
  position: relative;
  z-index: 10;
}

.faq-search-input {
  padding: 15px 25px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Force all product card images to same height */
.product-card .card-img-top {
    height: 250px;          /* Adjust as needed */
    object-fit: cover;      /* Keeps aspect ratio and crops overflow */
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

@media (max-width: 767px) {
    .product-card .card-img-top {
        height: 200px;
    }
}

/* Force all category card images to same height */
.categories-section .card-img-top {
    height: 250px;          /* Adjust height as needed */
    object-fit: cover;      /* Keeps aspect ratio and crops overflow */
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

/* Scoped for the categories section */
section.py-5 .card-img-top {
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

@media (max-width: 767px) {
    section.py-5 .card-img-top {
        height: 200px;
    }
}

/* --- Footer --- */
.footer-section {
    background-color: #1f2235; /* Semi-dark luxe tone */
    color: #ffffff;
}

.footer-section h4,
.footer-section h5 {
    color: #ffffff;
}

.footer-section p,
.footer-section a,
.footer-section .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-section a {
    text-decoration: none;
    transition: var(--transition-main);
}

.footer-section a:hover {
    color: var(--accent-color) !important;
}

.footer-section .social-links a {
    font-size: 1.2rem;
}

.footer-section hr {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section input.form-control {
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #000000;
}

.footer-section input.form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}


.footer-section input.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 8px rgba(239, 35, 60, 0.3);
}

.footer-section .btn-accent {
    padding: 10px 25px;
    font-size: 0.9rem;
}


a.page-link.text-white {
    background-color: #ef233c;
}

.text-muted-1{
  color: rgba(255, 255, 255, 0.7) !important;
}