/* Tree Pages Özel CSS */
:root {
    --tree-primary: #2e7d32;
    --tree-secondary: #4caf50;
    --tree-accent: #81c784;
    --tree-light: #e8f5e8;
    --tree-dark: #1b5e20;
    --tree-warning: #ff9800;
    --tree-danger: #f44336;
    --tree-info: #2196f3;
}

/* Tree Page Layout */
.tree-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.tree-hero {
    background: linear-gradient(135deg, var(--tree-primary) 0%, var(--tree-secondary) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.tree-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero/4.webp') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.tree-hero .container {
    position: relative;
    z-index: 1;
}

.tree-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.tree-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
    font-weight: 300;
}

.tree-breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    display: inline-block;
    margin-bottom: 30px;
}

.tree-breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.tree-breadcrumb a:hover {
    opacity: 1;
}

.tree-breadcrumb .breadcrumb-separator {
    margin: 0 15px;
    opacity: 0.6;
}

/* Tree Info Cards */
.tree-info-section {
    margin-bottom: 60px;
}

.tree-info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.tree-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tree-info-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.tree-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tree-info-card:hover .tree-info-image img {
    transform: scale(1.05);
}

.tree-info-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.tree-info-content {
    padding: 30px;
}

.tree-info-title {
    color: var(--tree-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tree-info-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tree-info-features {
    margin-bottom: 25px;
}

.tree-info-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:hover {
    border-radius: 10px;
    padding-left: 1rem !important;
    border-bottom: 1px solid #5d8527!important;
}
.tree-info-features .feature-item:last-child {
    border-bottom: none;
}

    .tree-info-features .feature-icon {
        width: 24px;
        height: 24px;
        color: #fff!important;
        margin: 0 !important;
        margin-right: 12px !important;
        flex-shrink: 0;
        padding: 0.2rem;
    }

.tree-info-features .feature-text {
    color: #555;
    font-size: 0.95rem;
}

/* Tree Price Card */
.tree-price-card {
    background: linear-gradient(135deg, var(--tree-primary), var(--tree-secondary));
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
}

.tree-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tree-price-unit {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.tree-stock-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.tree-stock-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.tree-stock-amount {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Tree Specifications */
.tree-specs-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.tree-specs-title {
    color: var(--tree-primary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.tree-specs-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--tree-primary), var(--tree-secondary));
    border-radius: 2px;
}

.tree-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tree-spec-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: var(--tree-light);
    border-radius: 15px;
    border-left: 4px solid var(--tree-secondary);
    transition: all 0.3s ease;
}

.tree-spec-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tree-spec-icon {
    width: 40px;
    height: 40px;
    background: var(--tree-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: #fff;
}

.tree-spec-icon i {
    color: white;
    font-size: 1.2rem;
}

.tree-spec-content h6 {
    color: var(--tree-primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.tree-spec-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Tree Care Section */
.tree-care-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.tree-care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tree-care-item {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tree-care-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tree-care-icon {
    width: 60px;
    height: 60px;
    background: var(--tree-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.tree-care-icon i {
    color: white;
    font-size: 1.5rem;
}

.tree-care-title {
    color: var(--tree-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.tree-care-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Related Products */
.related-products-section {
    margin-top: 60px;
}

.related-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-product-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}

.related-product-content {
    padding: 20px;
}

.related-product-title {
    color: var(--tree-primary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.related-product-price {
    color: var(--tree-secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Action Buttons */
.tree-action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-tree-primary {
    background: linear-gradient(135deg, var(--tree-primary), var(--tree-secondary));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-tree-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
    color: white;
    text-decoration: none;
}

.btn-tree-outline {
    background: transparent;
    border: 2px solid var(--tree-primary);
    color: var(--tree-primary);
    padding: 10px 28px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-tree-outline:hover {
    background: var(--tree-primary);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .tree-hero-title {
        font-size: 2.5rem;
    }
    
    .tree-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .tree-specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tree-care-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .tree-hero {
        padding: 60px 0;
    }
    
    .tree-hero-title {
        font-size: 2rem;
    }
    
    .tree-hero-subtitle {
        font-size: 1rem;
    }
    
    .tree-info-content,
    .tree-specs-section,
    .tree-care-section {
        padding: 25px;
    }
    
    .tree-action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-tree-primary,
    .btn-tree-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Animation Effects */
@keyframes treeGrow {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.tree-animate {
    animation: treeGrow 0.6s ease-out;
}

/* Tree Status Badges */
.tree-status-available {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
}

.tree-status-limited {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
    color: white;
}

.tree-status-out-of-stock {
    background: linear-gradient(135deg, #f44336, #ef5350);
    color: white;
}

.tree-status-new {
    background: linear-gradient(135deg, #2196f3, #42a5f5);
    color: white;
}

.tree-status-popular {
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
    color: white;
} 