:root {
  --primary: #2a2d4e;
  --secondary: #c36a7d;
  --accent: #e9c46a;
  --light: #f8f9fa;
  --dark: #212529;
  --gradient-bg: linear-gradient(135deg, #2a2d4e 0%, #3c3f73 100%);
  --pattern-bg: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  --background-size: 30px 30px;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* Top Bar */
.top-bar {
  background: var(--gradient-bg);
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

/* Navigation */
.navbar {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 28px;
  color: var(--primary);
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary);
}

/* Header Slider */
.header-slider {
  position: relative;
  overflow: hidden;
  height: 500px;
  background: var(--gradient-bg);
}

.slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.slider-shape {
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  height: 100%;
  width: 100%;
  background: url("../images/banner/slide.jpg") center/cover no-repeat;
}

.star-caption {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  display: inline-block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Section Patterns */
.pattern-1 {
  background: var(--gradient-bg), var(--pattern-bg);
  background-size: cover, var(--background-size);
}

.pattern-2 {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9c46a 100%),
    var(--pattern-bg);
  background-size: cover, var(--background-size);
}

.pattern-3 {
  background: linear-gradient(135deg, #c36a7d 0%, #d191a2 100%),
    var(--pattern-bg);
  background-size: cover, var(--background-size);
}

.pattern-4 {
  background: linear-gradient(135deg, #2a2d4e 0%, #51558d 100%),
    var(--pattern-bg);
  background-size: cover, var(--background-size);
}

.section-title {
  position: relative;
  margin-bottom: 40px;
  font-weight: 700;
}

.section-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary);
  margin: 15px auto;
}

/* Product Cards */
.product-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-bottom: 30px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: var(--gradient-bg);
  color: white;
  padding: 60px 0 0;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links h5 {
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h5:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.sub-footer {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px 0;
  margin-top: 40px;
}

/* Shapes and decorative elements */
.circle-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(195, 106, 125, 0.1);
  top: -150px;
  right: -150px;
  z-index: 1;
}

.triangle-shape {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 150px solid transparent;
  border-right: 150px solid transparent;
  border-bottom: 250px solid rgba(233, 196, 106, 0.1);
  bottom: -150px;
  left: -100px;
  transform: rotate(45deg);
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-slider {
    height: 400px;
  }

  .slider-content h1 {
    font-size: 28px;
  }

  .star-caption {
    padding: 15px;
  }
}

/* site end */
/* Filter Section */
.filter-section {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.filter-title {
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light);
  position: relative;
}
.filter-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
}
.filter-group {
  margin-bottom: 25px;
}

.filter-group h5 {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.form-check-label {
  color: #555;
  cursor: pointer;
}

.price-range {
  accent-color: var(--primary);
}

.price-value {
  color: var(--primary);
  font-weight: 600;
}

.btn-filter {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-filter:hover {
  background: linear-gradient(to right, var(--secondary), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Product Grid */
.product-grid {
  margin-bottom: 50px;
}

.sorting-options {
  background: white;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sort-select {
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 8px 15px;
  color: #555;
}

.product-view-options button {
  background: none;
  border: none;
  color: #999;
  font-size: 1.2rem;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.product-view-options button.active {
  color: var(--primary);
}

.product-view-options button:hover {
  color: var(--primary);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent);
  color: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

.product-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: all 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
}

.product-actions button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  color: var(--dark);
  transition: all 0.3s ease;
}

.product-actions button:hover {
  background: var(--primary);
  color: white;
}

.product-category {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.product-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.product-rating {
  color: gold;
  margin-bottom: 15px;
}

.btn-add-to-cart {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
  background: linear-gradient(to right, var(--secondary), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Pagination */
.pagination-container {
  margin-top: 30px;
}

.page-link {
  color: var(--primary);
  border: none;
  padding: 10px 18px;
  margin: 0 5px;
  border-radius: 10px !important;
}

.page-item.active .page-link {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  border: none;
}
/* Product Grid */

.btn-add-to-cart:hover {
  background: linear-gradient(to right, var(--secondary), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Pagination */
.pagination-container {
  margin-top: 30px;
}

.shop-header {
  background: linear-gradient(
      135deg,
      rgba(106, 17, 203, 0.9) 0%,
      rgba(37, 117, 252, 0.9) 100%
    ),
    url(https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: white;
  text-align: center;
  margin-bottom: 50px;
}
.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.quantity-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.action-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.quantity-input {
  width: 60px;
  height: 40px;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 16px;
}
.contact-info-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}
.contact-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
  border-radius: 50%;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.contact-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
  border-radius: 50%;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.contact-header {
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  margin-bottom: 50px;
}
.accordion-item {
  border: none;
  margin-bottom: 20px;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.form-group {
  margin-bottom: 20px;
}
.form-control {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
}
.faq-section {
  padding: 80px 0;
}
