:root {
  --primary: #2b4c7e;
  --secondary: #4a8c5f;
  --accent: #e37b3f;
  --light: #f8f9fa;
  --dark: #212529;
  --gradient-bg: linear-gradient(135deg, #2b4c7e 0%, #4a8c5f 100%);
  --pattern-bg: radial-gradient(
    circle at 10% 20%,
    rgba(67, 144, 233, 0.15) 0%,
    rgba(78, 210, 146, 0.15) 90%
  );
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* Top Bar */
.top-bar {
  background: var(--gradient-bg);
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

/* Header & Navigation */
.navbar {
  background: 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(--primary);
  transform: translateY(-2px);
}

/* Header Slider */
.header-slider {
  background: var(--pattern-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.header-slider::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232b4c7e' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.slider-content {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.slider-content::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  opacity: 0.2;
}

.slider-img {
  border-radius: 10px;
  transform: rotate(-3deg);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
}

.slider-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.star-caption {
  background: var(--primary);
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  display: inline-block;
  position: relative;
  box-shadow: 0 5px 15px rgba(43, 76, 126, 0.3);
}

.star-caption::before {
  content: "★";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.star-caption::after {
  content: "★";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Products Section */
.products {
  padding: 80px 0;
  background: var(--light);
}

.section-title {
  position: relative;
  margin-bottom: 40px;
  font-weight: 700;
  color: var(--primary);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-img {
  height: 200px;
  object-fit: cover;
  transition: all 0.5s;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-title {
  color: var(--primary);
  font-weight: 600;
}

.product-price {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.2rem;
}

.btn-primary {
  background: var(--primary);
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Additional Sections */
.features {
  padding: 80px 0;
  background: white;
}

.feature-box {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background: var(--light);
  transition: all 0.3s;
  height: 100%;
}

.feature-box:hover {
  background: var(--gradient-bg);
  color: white;
  transform: translateY(-5px);
}

.feature-box:hover h3,
.feature-box:hover p {
  color: white;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.feature-box:hover .feature-icon {
  color: white;
  transform: scale(1.2);
}

.testimonials {
  padding: 80px 0;
  background: var(--pattern-bg);
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-text {
  position: relative;
  padding: 20px;
  font-style: italic;
}

.testimonial-text::before {
  content: " ";
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.client-name {
  color: var(--primary);
  font-weight: 600;
}

.blog {
  padding: 80px 0;
  background: white;
}

.blog-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-img {
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-date {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 0;
}

.footer-title {
  color: white;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
}

.footer-links {
  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: var(--accent);
  padding-left: 5px;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  margin-right: 10px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

.sub-footer {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 40px;
}

.disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Shapes and patterns */
.shape-1 {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.2;
  z-index: -1;
}

.shape-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: var(--primary);
  opacity: 0.1;
  z-index: -1;
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 22px;
  }

  .header-slider {
    padding: 40px 0;
  }

  .slider-content {
    text-align: center;
  }

  .star-caption {
    margin-top: 20px;
  }
}

/* site end */
.product-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.filter-sidebar {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}
.sort-select {
  width: 200px;
  border-radius: 30px;
  border: 2px solid var(--light);
  padding: 8px 15px;
}

.view-options button {
  background: white;
  border: 2px solid var(--light);
  padding: 8px 15px;
  margin-left: 10px;
  border-radius: 8px;
  transition: all 0.3s;
}

.view-options button.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* 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: var(--pattern-bg);
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.shop-header::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232b4c7e' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.shop-header-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}
.filter-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s;
}
.filter-group {
  margin-bottom: 25px;
}
.breadcrumb {
  justify-content: center;
  background: transparent;
}
.contact-section {
  padding-top: 2rem;
}
.product-detail,
.related-products {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.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;
}
