/* Body styling with a plant-themed background */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #a8d5ba, #6b9d86);
    color: #2c5f2d;
    margin: 0;
    padding: 0;
}

/* Breadcrumb and header */
header {
    padding: 20px;
}
.breadcrumb {
    font-size: 14px;
    margin-bottom: 10px;
}
h1 {
    font-size: 2rem;
    color: #2c5f2d;
    margin: 0;
}

/* Layout container for product content */
.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px;
    margin-left: 0;         /* ✅ Align to far left */
    max-width: 100%;
    justify-content: flex-start; /* ✅ Push everything left */
}

/* Swiper images section */
/* Swiper image section */
.product-images {
    position: relative;
    width: 600px;            /* ✅ Bigger width */
    height: 650px;           /* ✅ Bigger height */
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;          /* ✅ Prevent from shrinking */
}

/* Images inside Swiper */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Swiper nav buttons */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #2c5f2d;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 16px;
}

/* Keep both arrows on left if preferred */
.swiper-button-prev {
    left: 10px;
}
.swiper-button-next {
    left: 50px;
}




/* Product information section */
.product-info {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Price display */
.product-price {
    font-size: 18px;
    margin-bottom: 10px;
}
.product-price strong {
    font-size: 20px;
    color: #4caf50;
}

/* Spec & description blocks */
.product-specs p,
.product-description p,
.product-technical p {
    margin: 10px 0;
    font-size: 16px;
    color: #2c5f2d;
}

/* Description list */
.product-description ul {
    padding-left: 20px;
    margin-top: 10px;
}
.product-description li {
    line-height: 1.6;
}

/* Technical table styling */
.product-technical table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background-color: #fff;
    color: #2c5f2d;
    border-radius: 5px;
    overflow: hidden;
}
.product-technical th,
.product-technical td {
    border: 1px solid #8bb174;
    padding: 10px;
    text-align: center;
}
.product-technical th {
    background-color: #8bb174;
    color: white;
    font-weight: bold;
}

/* Button styling */
.btn,
button {
    background: #8bb174;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.btn:hover,
button:hover {
    background: #679267;
    color: #f2f2f2;
}
.primary-button {
    background: #4caf50;
    font-weight: bold;
    padding: 12px 24px;
}
.primary-button:hover {
    background: #388e3c;
}
.secondary-button {
    background: #8bb174;
}
.secondary-button:hover {
    background: #679267;
}

/* Input fields */
input {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0;
    border: 1px solid #8bb174;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    color: #2c5f2d;
    background-color: #f8f8f8;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
input:hover {
    border-color: #679267;
}
input:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

/* Typography headers */
.header-primary {
    font-size: 2.5rem;
    color: #2c5f2d;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.header-secondary {
    font-size: 2rem;
    color: #679267;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
}

/* Footer */
footer {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.15);
    text-align: center;
    font-size: 14px;
}
footer a {
    color: #2c5f2d;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
