
:root{
  --accent-color: #FFF4D9;
  --accent-color-darker: #F78E36;
  --custom-bs-border-radius: 5px;
  --custom-alt-bs-border-radius: 10px;
  --color-green: #07A171;
  --color-red: #D24042;
  --color-dimgrey: #838080;
  --accent-color-orange: #CB650A;
}

.accent-bg{
  background-color: var(--accent-color);
}

.accent-bg-darker{
  background-color: var(--accent-color-darker);
}

.accent-bg-gradient {
  background: linear-gradient(to bottom, var(--accent-color), white);
}

.accent-bg-dimgrey{
  background-color: var(--accent-dimgrey) !important;
}

.text-org{
  color: var(--accent-color-orange) !important;
}

.cs-rounded-left {
  border-top-left-radius: var(--custom-bs-border-radius) !important;
  border-bottom-left-radius: var(--custom-bs-border-radius) !important;
}

.cs-rounded-right {
  border-top-right-radius: var(--custom-bs-border-radius) !important;
  border-bottom-right-radius: var(--custom-bs-border-radius) !important;
}

.cs-rounded-bottom {
  border-bottom-right-radius: var(--custom-alt-bs-border-radius) !important;
  border-bottom-left-radius: var(--custom-alt-bs-border-radius) !important;
}

.connect-form-submit-btn{
  width: 200px;
}

.custom-cs-menu li{
  list-style: none;
}

.custom-cs-menu li i{
  color: var(--color-green);
}

.custom-cs-menu li:last-child i{
  color: var(--color-red);
}

.cs-blog-img{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.product-display-section{
  width: 300px;
  height: auto;
  transition: transform 0.3s ease;
}

.product-display-section:hover {
  transform: translateY(-5px);
}

.product-img-display{
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.csf-form-control {
  height: 50px;
  border-color: #A8A8A8;
  border-radius: 0;
}

.csf-form-input:focus {
  box-shadow: none;
  border: 2px solid #243c4f;
}

.csf-form-btn {
  min-height: 50px;
  border-radius: 0;
  background: #243c4f;
  color: #fff;
  font-weight: 600;
}

.csf-form-btn:hover{
  color: coral;
}}

/* Mobile-responsive optimizations */
@media (max-width: 768px) {
  .product-display-section {
    width: 100%;
    max-width: 300px;
  }
  
  .product-img-display {
    aspect-ratio: 16 / 10;
  }
  
  /* Optimize hero images on mobile */
  .hero-banner-mobile {
    max-height: 300px;
    object-fit: cover;
  }
  
  /* Feature icons smaller on mobile */
  .feature-icon-mobile {
    max-width: 150px;
    height: auto;
  }
}

/* Performance: Hardware acceleration for smooth animations */
.product-display-section,
.blur-up {
  will-change: transform;
  transform: translateZ(0);
}

/* Image quality improvements */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Smooth scrolling for better UX */
html {
  scroll-behavior: smooth;
}
