 :root {
     --primary-color: #3498db;
     --secondary-color: #2c3e50;
     --accent-color: #e74c3c;
     --light-color: #ecf0f1;
     --dark-color: #2c3e50;
     --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 #bodyidfor-product-showcase {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background: linear-gradient(135deg, #f5f7fa 0%, #e4e7f1 100%);
     min-height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 20px;
 }

 .product-showcase {
     max-width: 1400px;
     width: 100%;
     background: white;
     border-radius: 20px;
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
     overflow: hidden;
     padding: 30px;
 }

 .showcase-header {
     text-align: center;
     margin-bottom: 20px;
 }

 .showcase-header b {
     color: orange;
 }

 .showcase-header h1 {
     font-weight: 700;
     color: var(--dark-color);
     font-size: 2.2rem;
     margin-bottom: 5px;
 }

 .product-container {
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
 }

 .image-section {
     flex: 1.5;
     min-width: 300px;
 }

 .info-section {
     flex: 0.7;
     min-width: 250px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 /* Image container with reduced height */
 .carousel-container {
     position: relative;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     height: 0;
     padding-bottom: 50%;
 }

 .carousel-inner {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     overflow: hidden;
 }

 .carousel-track {
     display: flex;
     height: 100%;
     transition: transform 0.6s ease;
 }

 .carousel-slide {
     min-width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #f8f9fa;
 }

 .carousel-slide img {
     width: 85%;
     height: auto;
     max-height: 90%;
     object-fit: contain;
     transition: transform 0.5s ease;
 }

 .carousel-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 50px;
     height: 50px;
     background: rgba(255, 255, 255, 0.85);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     border: none;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: var(--transition);
     opacity: 0.8;
 }

 .carousel-nav:hover {
     background: white;
     opacity: 1;
     transform: translateY(-50%) scale(1.1);
 }

 .carousel-nav.prev {
     left: 20px;
 }

 .carousel-nav.next {
     right: 20px;
 }

 .carousel-nav i {
     font-size: 1.5rem;
     color: var(--dark-color);
 }

 .indicators {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-top: 20px;
     flex-wrap: wrap;
 }

 .indicator {
     width: 35px;
     height: 35px;
     border-radius: 50%;
     cursor: pointer;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
     transition: var(--transition);
     position: relative;
     border: 2px solid white;
 }

 .indicator:hover {
     transform: translateY(-5px);
     box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
 }

 .indicator.active {
     transform: scale(1.15);
     box-shadow: 0 0 0 3px white, 0 0 0 5px var(--accent-color);
 }

 /* Product info */
 .product-title {
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--dark-color);
     margin-bottom: 15px;
 }

 .product-description {
     color: #7f8c8d;
     line-height: 1.6;
     margin-bottom: 25px;
     font-size: 1rem;
 }

 .features {
     margin-bottom: 25px;
 }

 .feature-item {
     display: flex;
     align-items: center;
     margin-bottom: 12px;
     color: var(--dark-color);
     font-size: 0.95rem;
 }

 .feature-item i {
     color: var(--primary-color);
     margin-right: 10px;
     font-size: 1rem;
 }

 .cta-button {
     background: var(--primary-color);
     color: white;
     border: none;
     padding: 14px 25px;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 50px;
     cursor: pointer;
     transition: var(--transition);
     box-shadow: 0 7px 20px rgba(52, 152, 219, 0.3);
     margin-top: 15px;
     display: inline-block;
     text-align: center;
     width: 100%;
 }

 .cta-button:hover {
     background: #2980b9;
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
 }

 /* Responsive adjustments */
 @media (max-width: 992px) {
     .product-showcase {
         padding: 20px;
     }

     .carousel-container {
         padding-bottom: 70%;
     }

     .product-title {
         font-size: 1.6rem;
     }
 }

 @media (max-width: 768px) {
     .carousel-container {
         padding-bottom: 60%;
     }

     .carousel-nav {
         width: 40px;
         height: 40px;
     }

     .indicator {
         width: 30px;
         height: 30px;
     }

     .image-section,
     .info-section {
         flex: 1 1 100%;
     }
 }

 @media (max-width: 576px) {
     .showcase-header h1 {
         font-size: 1.8rem;
     }

     .carousel-nav {
         width: 35px;
         height: 35px;
     }

     .carousel-nav i {
         font-size: 1.2rem;
     }
 }

 /* Floating animation for product */
 @keyframes float {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-15px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 .floating {
     animation: float 4s ease-in-out infinite;
 }

 /* Status indicator */
 .auto-status {
     text-align: center;
     margin-top: 15px;
     font-size: 0.9rem;
     color: #7f8c8d;
     height: 20px;
 }