body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #535252;
    margin: 0 auto;
    padding: 40px 20px;
    max-width: 1300px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }
}

/* Product Container */
.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

/* Optimized Image Carousel */
.product-carousel {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.product-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.product-carousel-item {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.product-carousel-item img {
    width: 100%;
    height: 620px; /* Fixed height as requested */
    object-fit: cover; /* Changed from 'contain' to 'cover' for better filling */
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .product-carousel {
        max-width: 100%;
        aspect-ratio: unset;
    }

    .product-carousel-item img {
        height: 400px; /* Slightly reduced for mobile */
        object-fit: contain; /* Back to contain for mobile */
    }
}

.product-carousel-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.product-carousel-control {
    pointer-events: auto;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    font-size: 20px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.product-carousel-control:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.product-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #000;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    text-indent: -9999px;
    opacity: 0.5;
}

.product-carousel-indicator.active {
    background-color: #000;
    opacity: 1;
    transform: scale(1.2);
}

/* Product Info */
.product-info {
    flex: 1;
    min-width: 300px;
}

.product-tags span {
    display: inline-block;
    padding: 3px 8px;
    background: #f0f0f0;
    border-radius: 3px;
    margin-right: 5px;
    font-size: 0.9em;
}

/* Tabs */
.tabs {
    margin: 40px 0;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.tab-nav button {
    padding: 10px 20px;
    background: none;
    border: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    color: rgba(28, 23, 23, 0.5);
}

.tab-nav button.active {
    border-bottom-color: #1965e4;
    color: blue;
}

.tab-content {
    padding: 20px 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table td {
    padding: 10px;
    border: 1px solid #ddd;
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon a {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    color: blue;
    border-radius: 50%;
    font-size: 40px;
    transition: all 0.3s ease;
}

.feature-icon a:hover {
    transform: scale(1.1);
}