:root {
    --primary-color: #febc59;
    --secondary-color: #2d2d2d;
    --accent-color: #fff5e6;
    --text-dark: #333333;
    --text-light: #ffffff;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition-default: all 0.3s ease;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background-color: var(--accent-color);
  }
  
  .navbar {
    background-color: var(--primary-color);
    padding: 0.5rem 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color) !important;
  }
  
  .logo-navbar {
    height: 35px;
    width: auto;
  }
  
  .navbar-nav .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
  }
  
  #bannerCarousel {
    max-width: 1200px;
    margin: 1rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  .carousel-item {
    height: 400px;
  }
  
  .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.9);
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    margin: 0 20px;
  }
  
  .carousel-control-prev {
    left: 0;
  }
  
  .carousel-control-next {
    right: 0;
  }
  
  #bannerCarousel:hover .carousel-control-prev,
  #bannerCarousel:hover .carousel-control-next {
    opacity: 1;
  }
  
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    background-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 24px;
    height: 24px;
  }
  
  .carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 20px;
    text-align: left;
  }
  
  .carousel-caption h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .carousel-caption p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
  }
  
  .category {
    margin: 2rem 0;
  }
  
  .category h2 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .category h2 a {
    color: var(--primary-color);
    font-size: 1rem;
    text-decoration: none;
    padding: 8px 16px;
    background-color: var(--secondary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
  }
  
  .category h2 a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
  }
  
  .card-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .product-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s;
  }
  
  .product-card:hover {
    transform: scale(1.05);
  }
  
  .product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .product-info {
    padding: 15px;
  }
  
  .product-title {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin: 0 0 10px;
  }
  
  .product-price {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0 0 5px;
  }
  
  .product-text {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0 0 5px;
  }
  
  .old-price {
    text-decoration: line-through;
    margin-right: 5px;
  }
  
  .discount {
    color: var(--primary-color);
    font-weight: bold;
  }
  
  .new-price {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
  }
  
  .product-rating {
    font-size: 0.85rem;
    color: var(--text-color);
  }
  
  .product-rating i {
    color: #ffc107;
  }
  
  .product-shipping {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: bold;
  }
  
  .artikel-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }
  
  .artikel-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
    line-height: 1.4;
  }
  
  .artikel-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
  }
  
  .artikel-date {
    color: #888;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
  }
  
  .footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 4rem 0 1rem 0;
    margin-top: 3rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-section {
    padding: 1rem;
  }
  
  .footer-logo {
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .footer-section p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 0.8rem;
  }
  
  .footer-section ul li a {
    color: #888;
    text-decoration: none;
    transition: var(--transition-default);
  }
  
  .footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-links a {
    color: #888;
    font-size: 1.5rem;
    transition: var(--transition-default);
  }
  
  .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .footer-section i {
    margin-right: 10px;
    color: var(--primary-color);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
  }
  
  .footer-bottom p {
    color: #888;
    font-size: 0.9rem;
  }
  
  @media (max-width: 768px) {
    .footer {
      padding: 2rem 0 1rem 0;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .footer-section {
      padding: 0.5rem;
      text-align: center;
    }
  
    .social-links {
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    #bannerCarousel {
      margin: 0.5rem auto;
    }
  
    .carousel-item {
      height: 300px;
    }
  
    .carousel-caption h3 {
      font-size: 1.8rem;
    }
  
    .carousel-control-prev,
    .carousel-control-next {
      width: 50px;
      height: 50px;
    }
  
    .carousel-caption p {
      font-size: 1rem;
    }
  
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      width: 20px;
      height: 20px;
    }
  
    .category {
      padding: 0 1rem;
      margin: 1.5rem 0;
    }
  
    .card-row {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
    }
  
    .navbar-brand {
      font-size: 1.3rem;
    }
  
    .logo-navbar {
      height: 30px;
    }
  
    .navbar {
      padding: 0.4rem 1rem;
    }
  
    .category h2 {
      font-size: 1.5rem;
    }
  }
  
  
  .breadcrumb {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
  }
  
  .breadcrumb .separator {
    color: #888;
  }
  
  .breadcrumb .current {
    color: #888;
  }
  
  .search-results {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
  }
  
  .results-count {
    font-weight: 500;
  }
  
  .pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
  
  .pagination a, .pagination span {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--secondary-color);
  }
  
  .pagination .current {
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
  }
  
  .sort-options {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
  }
  
  .sort-options a {
    text-decoration: none;
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
  }
  
  .sort-options a.active {
    background-color: var(--primary-color);
    color: white;
  }
  
  .category-title {
    margin: 2rem 0 1rem;
  }
  
  .sofa-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
  }
  
  .category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: var(--transition-default);
    cursor: pointer;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .category-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }
  
  .category-card span {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
  }
  
  @media (max-width: 768px) {
    .search-results {
      flex-direction: column;
      gap: 1rem;
    }
    
    .sort-options {
      overflow-x: auto;
      white-space: nowrap;
      padding-bottom: 0.5rem;
    }
    
    .sofa-categories {
      grid-template-columns: repeat(2, 1fr);
    }
  }