/* Products Page Specific Styles */

/* Products Section */
.products-section {
    padding: 80px 0;
}

/* Product Detail */
.product-detail {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.product-header {
    background-color: #f0f8ee;
    padding: 30px;
    border-radius: 10px 10px 0 0;
}

.product-header h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.product-header p {
    color: #666;
    line-height: 1.6;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
    background-color: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    border-radius: 10px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
}

.product-info h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #ff8800;
    padding-bottom: 10px;
    display: inline-block;
}

.product-specs {
    margin-bottom: 30px;
}

.spec-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.spec-content {
    margin-bottom: 15px;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.spec-list li::before {
    content: '•';
    color: #ff8800;
    position: absolute;
    left: 0;
}

/* Availability Calendar */
.availability-calendar {
    padding: 80px 0;
    background-color: #fff;
}

.availability-calendar p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.calendar-container {
    overflow-x: auto;
    margin-bottom: 30px;
}

.availability-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
}

.availability-table th,
.availability-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.availability-table thead {
    background-color: #f0f8ee;
}

.availability-table th {
    font-weight: bold;
    color: #333;
}

.fruit-header, 
.variety-header {
    text-align: left;
    min-width: 120px;
}

.fruit-name {
    font-weight: bold;
    background-color: #f9f9f9;
    text-align: left;
}

.variety-name {
    text-align: left;
}

.available {
    background-color: #ff8800;
}

/* Certification Section */
.certifications {
    padding: 80px 0;
    background-color: #f0f8ee;
    text-align: center;
}

.cert-description {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: center;
    color: #666;
    line-height: 1.7;
}
