* {
    font-family: 'Lato', sans-serif;
}

/* start shine effect */
/* src/styles/tailwind.css (or your main CSS that imports Tailwind) */
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer utilities {
  /* Metallic gold gradient surface */
  .bg-gold-metal {
    background-image:
      linear-gradient(135deg,
        #8D6B1F 0%,
        #B8860B 12%,
        #D4AF37 25%,
        #FFD700 38%,
        #FFF1B8 50%,
        #FFD700 62%,
        #D4AF37 75%,
        #B8860B 88%,
        #8D6B1F 100%);
    background-size: 200% 200%;
  }

  /* Subtle brushed texture via grain */
  .bg-gold-brushed {
    background:
      linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(0, 0, 0, 0.15) 100%),
      repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.08) 0px,
        rgba(255, 255, 255, 0.08) 1px,
        rgba(0, 0, 0, 0.04) 2px,
        rgba(0, 0, 0, 0.04) 3px
      );
    mix-blend-mode: soft-light;
  }

  /* Shiny text via gradient clip */
  .text-gold-metal {
    background-image:
      linear-gradient(135deg,
        #8D6B1F 0%,
        #B8860B 15%,
        #D4AF37 30%,
        #FFD700 45%,
        #FFF1B8 60%,
        #FFD700 75%,
        #D4AF37 90%,
        #B8860B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  /* Soft glow for text */
  .text-gold-glow {
    text-shadow:
      0 0 6px rgba(255, 215, 0, 0.35),
      0 2px 8px rgba(139, 69, 19, 0.3);
  }

  /* Sweep highlight overlay */
  .shine-sweep {
    position: relative;
    overflow: hidden;
  }
  .shine-sweep::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      75deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.55) 45%,
      rgba(255, 255, 255, 0.9) 50%,
      rgba(255, 255, 255, 0.55) 55%,
      rgba(255, 255, 255, 0) 100%
    );
    width: 40%;
    transform: translateX(-100%);
    filter: blur(1px);
    pointer-events: none;
    animation: shimmer 1.8s linear infinite;
  }
}


/* end shine effect */

.gold-text {
  background: linear-gradient(45deg, #FFD700, #FFC107, #FFB300, #DAA520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Text border (stroke) */
  /* -webkit-text-stroke: 2px transparent;
  background-clip: text;
  position: relative; */
}

.gold-shine {
  background: linear-gradient(45deg, #FFD700, #FFC107, #FFB300, #DAA520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animations and Effects from Customized Packaging Boxes */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.5); }
    50% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.8); }
}

.text-gradient {
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-icon {
    background: linear-gradient(45deg, #FFD700, #FFC107, #FFB300, #DAA520);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563EB;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Scroll Progress Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(45deg, #FFD700, #FFC107, #FFB300, #DAA520);
    z-index: 9999;
    transition: width 0.1s ease;
}

.process-step {
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #2563EB, #3B82F6);
    transform: translateY(-50%);
}

.process-step:last-child::after {
    display: none;
}



.hero-gradient {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.blue-accent {
    color: #2563EB;
}

.green-accent {
    color: #10B981;
}

.amber-accent {
    color: #F59E0B;
}

.blue-border {
    border-color: #2563EB;
}

.green-bg {
    background-color: #10B981;
}

.blue-bg {
    background-color: #2563EB;
}

.dark-bg {
    background-color: #141414;
}

.blue-text {
    color: #2563EB;
}

.green-text {
    color: #10B981;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

.btn-primary {
    background-color: #2563EB;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    border: 2px solid #2563EB;
    color: #f59e0b;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #0e3c61;
}

.btn-third {
    border: 2px solid #2563EB;
    color: #f59e0b;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: black;
}

.btn-secondary:hover {
    background-color: #2563EB;
    color: white;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2563EB;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
}

.testimonial-card {
    background-color: #F8FAFC;
    border-left: 4px solid #2563EB;
}

.hero-image {
    background: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 100%);
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="boxes" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><rect x="20" y="20" width="80" height="80" fill="none" stroke="%232563EB" stroke-width="2" opacity="0.3"/><rect x="100" y="100" width="80" height="80" fill="none" stroke="%232563EB" stroke-width="2" opacity="0.2"/><circle cx="60" cy="60" r="30" fill="none" stroke="%232563EB" stroke-width="1" opacity="0.15"/></pattern></defs><rect width="1200" height="600" fill="%230F172A"/><rect width="1200" height="600" fill="url(%23boxes)"/></svg>') center/cover;
    opacity: 0.5;
}

/* New Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="boxes" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><rect x="20" y="20" width="80" height="80" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.1"/><rect x="100" y="100" width="80" height="80" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.05"/><circle cx="60" cy="60" r="30" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.08"/></pattern></defs><rect width="1200" height="600" fill="transparent"/><rect width="1200" height="600" fill="url(%23boxes)"/></svg>') center/cover;
    pointer-events: none; /* Allow clicks to pass through */
}

.product-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
}

/* Multi-step form styles with transitions */
.step-form {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease, height 0.5s ease;
    position: absolute; /* Use absolute positioning for layering */
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.step-form.active {
    opacity: 1;
    transform: translateX(0);
    position: relative; /* Active step should be in document flow */
    z-index: 10;
}

.step-form.right-in {
    opacity: 1;
    transform: translateX(100%);
}

.step-form.left-in {
    opacity: 1;
    transform: translateX(-100%);
}

.step-form.right-out {
    opacity: 0;
    transform: translateX(100%);
}

.step-form.left-out {
    opacity: 0;
    transform: translateX(-100%);
}

.step-form.hidden {
    display: none;
}

/* Ensure smooth transition for form elements */
.step-form {
    will-change: transform, opacity, height;
}

.step-form.active {
    opacity: 1;
    transform: translateY(0);
}

/* Progress indicator for multi-step form */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #E2E8F0;
    z-index: 1;
    transform: translateY(-50%);
}

.form-progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.form-progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    right: -50%;
    height: 2px;
    background-color: #2563EB;
    z-index: 0;
    transform: translateY(-50%);
}

.form-progress-step.active::after {
    background-color: #2563EB;
}

.form-progress-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FFF;
    color: #64748B;
    font-weight: 600;
    margin: 0 auto 8px;
    position: relative;
    z-index: 3;
}

.form-progress-step.active .form-progress-number {
    background-color: #FFD700;
    color: black;
}

.form-progress-label {
    font-size: 12px;
    color: #64748B;
    white-space: nowrap;
}

.form-progress-step.active .form-progress-label {
    color: #2563EB;
    font-weight: 600;
}

/* Animation for floating effect */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes float-element {
    0% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
    100% {
        transform: translateY(0px) scale(1);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Custom bounce animation that mimics the reference site */
.animate-float-element {
    animation: float-element 3s ease-in-out infinite;
    animation-delay: 0.2s;
}

.section-title {
    position: relative;
    display: inline-block;
}


@media (max-width: 768px) {
    .mobile-menu {
        display: none;
    }
    .mobile-menu.active {
        display: block;
    }
    .hero-text h1 {
        font-size: 28px;
    }
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.blog-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
}

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

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.blog-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    background-color: #F8FAFC;
    color: #2563EB;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #94A3B8;
    border-top: 1px solid #E2E8F0;
    padding-top: 16px;
}

.read-more {
    color: #2563EB;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1D4ED8;
}

.blog-hero {
    background: linear-gradient(135deg, #F0F9FF 0%, #DBEAFE 100%);
    padding: 80px 0;
}

.sidebar-widget {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E2E8F0;
}

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

.sidebar-list li {
    padding: 8px 0;
    border-bottom: 1px solid #E2E8F0;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.sidebar-list a:hover {
    color: #2563EB;
}

.tag {
    display: inline-block;
    background-color: #F0F9FF;
    color: #1D4ED8;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin: 4px;
    text-decoration: none;
}

.tag:hover {
    background-color: #2563EB;
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .active {
    background-color: #2563EB;
    color: white;
    border-color: #2563EB;
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 40px 0;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background-color: white;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    border-color: #2563EB;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
}

.product-image {
    /* width: 100%;
    height: 200px; */
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #2563EB;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.product-content {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 8px;
    font-size: 16px;
}

.product-description {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 12px;
    flex-grow: 1;
}

.product-specs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.spec-tag {
    background-color: #F1F5F9;
    color: #475569;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 13px;
}

.star {
    color: #F59E0B;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 12px;
}

.product-cta {
    display: flex;
    gap: 8px;
}

.product-cta button {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-button {
    padding: 12px 24px;
    background-color: #2563EB;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background-color: #1D4ED8;
    transform: translateY(-2px);
}

.no-results {
    text-align: center;
    padding: 48px 24px;
    color: #64748B;
    grid-column: 1 / -1;
}

.no-results-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.no-results-title {
    font-size: 20px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 8px;
}

.no-results-text {
    font-size: 14px;
    margin-bottom: 24px;
}

.sidebar {
    background-color: white;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E2E8F0;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
    font-size: 14px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    cursor: pointer;
    accent-color: #2563EB;
}

.filter-option label {
    cursor: pointer;
    font-size: 13px;
    color: #475569;
    flex: 1;
}

.filter-count {
    font-size: 12px;
    color: #94A3B8;
}

.price-range-slider {
    margin-top: 12px;
}

.price-range-slider input[type="range"] {
    width: 100%;
    accent-color: #2563EB;
}

.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px;
    background-color: #F8FAFC;
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 12px;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:hover,
.sort-select:focus {
    border-color: #2563EB;
    outline: none;
}

.view-toggle {
    display: flex;
    gap: 8px;
}

.view-btn {
    padding: 8px 12px;
    border: 1px solid #E2E8F0;
    background-color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.view-btn.active {
    background-color: #2563EB;
    color: white;
    border-color: #2563EB;
}

.category-hero {
    background: linear-gradient(135deg, #F0F9FF 0%, #DBEAFE 100%);
    padding: 32px 0;
    margin-bottom: 32px;
}

.filter-toggle {
    display: none;
}

.hero-section {
    background: linear-gradient(135deg, #F0F9FF 0%, #DBEAFE 100%);
}

.thumbnail-carousel {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 0;
}

.thumbnail {
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #fca20c;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.main-image {
    width: 100%;
    height: 500px;
    
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    transition: all 0.3s ease;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background-color: #2563EB;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.rating-stars {
    display: flex;
    gap: 4px;
    align-items: center;
}

.star {
    color: #F59E0B;
    font-size: 18px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.spec-card {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
}

.spec-card:hover {
    border-color: #2563EB;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.spec-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.spec-value {
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
}

.configurator-section {
    background-color: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px;
}

.input-group {
    margin-bottom: 16px;
}

.input-label {
    display: block;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 8px;
    font-size: 14px;
}

.input-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.price-display {
    background-color: white;
    border: 2px solid #2563EB;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    margin-top: 16px;
}

.price-label {
    font-size: 12px;
    color: #64748B;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2563EB;
}

.price-note {
    font-size: 12px;
    color: #64748B;
    margin-top: 4px;
}

.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 16px;
    background-color: white;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-weight: 600;
    color: #1E293B;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.accordion-btn:hover {
    background-color: #F8FAFC;
    border-color: #2563EB;
}

.accordion-btn.active {
    background-color: #F8FAFC;
    border-color: #2563EB;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: #F0F9FF;
    border: 1px solid #DBEAFE;
    border-radius: 6px;
    font-size: 13px;
    color: #1D4ED8;
}

.review-card {
    background-color: #F8FAFC;
    border-left: 4px solid #2563EB;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 8px;
}

.review-author {
    font-weight: 600;
    color: #1E293B;
}

.review-date {
    font-size: 12px;
    color: #64748B;
}

.review-text {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .filter-toggle {
        display: block;
    }
    .sidebar {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        z-index: 40;
        border-radius: 0;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    .sidebar.active {
        transform: translateX(0);
    }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .main-image {
        height: 300px;
        font-size: 80px;
    }
    .spec-grid {
        grid-template-columns: 1fr;
    }
    .price-value {
        font-size: 24px;
    }
}
.gold-shine {
  color: transparent;
  position: relative;
  display: inline-block;
  font-weight: bold;

  /* Metallic gold gradient */
  background-image: linear-gradient(
    to right,
		#462523 0%, #cb9b51 40%, #f6e27a 47%, #f6f2c0 50%, #f6e27a 53%, #cb9b51 60%, #462523 100%
  );
  -webkit-background-clip: text;
  background-clip: text;

  /* Make gradient larger than text so it can move */
  background-size: 200% auto;

  /* Animate the gradient */
  animation: shine 5s linear infinite;

  /* Optional glow for extra polish */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4),
               0 0 20px rgba(255, 215, 0, 0.2);
}

@keyframes shine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}