/* Базові стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

/* Хедер */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3);
    height: 10vh;
    min-height: 70px;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.logo i {
    font-size: 2rem;
    color: #a5d6a7;
}

.header-actions {
    display: flex;
    gap: 18px;
}

.search-btn, .menu-btn, .admin-btn {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.search-btn:hover, .menu-btn:hover, .admin-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Пошук */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.search-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.search-container {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 2px solid #e8f5e8;
}

.search-container input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
}

.search-container input:focus {
    border-color: #2e7d32;
    background: white;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.close-search {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-search:hover {
    background: #f0f0f0;
    color: #333;
    transform: rotate(90deg);
}

/* Основний контент */
.main-content {
    margin-top: 10vh;
    padding: 25px 20px 100px;
    flex: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Категорії */
.categories {
    margin-bottom: 35px;
}

.categories-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: thin;
    scrollbar-color: #2e7d32 #f0f0f0;
}

.categories-container::-webkit-scrollbar {
    height: 6px;
}

.categories-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.categories-container::-webkit-scrollbar-thumb {
    background: #2e7d32;
    border-radius: 3px;
}

.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 25px;
    background: white;
    border: 2px solid #e8f5e8;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-decoration: none;
    color: #2c3e50;
}

.category-btn.active {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    border-color: #1b5e20;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
    transform: translateY(-3px);
}

.category-btn:hover:not(.active) {
    background: #f8f9fa;
    border-color: #2e7d32;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.15);
}

.category-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.category-btn:hover i {
    transform: scale(1.1);
}

.category-btn span {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

/* Каталог рослин */
.plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.plant-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.plant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.2);
    border-color: #e8f5e8;
}

.plant-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fff8, #e8f5e8);
    position: relative;
    overflow: hidden;
}

.plant-emoji {
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #f8fff8, #e8f5e8);
}

.plant-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plant-card:hover .plant-img {
    transform: scale(1.05);
}

.plant-info {
    padding: 20px;
    background: white;
}

.plant-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.4;
}

.plant-category {
    font-size: 0.9rem;
    color: #2e7d32;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plant-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2e7d32;
    line-height: 1.3;
}

/* Тап-бар */
.tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 15px 0 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 2px solid #e8f5e8;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
    min-width: 60px;
    position: relative;
}

.tab-btn.active {
    color: #2e7d32;
    background: #e8f5e8;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.tab-btn:hover:not(.active) {
    color: #2e7d32;
    background: #f8f9fa;
    transform: translateY(-2px);
}

.tab-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.tab-btn:hover i {
    transform: scale(1.1);
}

.tab-btn span {
    font-weight: 600;
    font-size: 0.75rem;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e91e63;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

/* Модальне вікно */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 2px solid #e8f5e8;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255,255,255,0.9);
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.modal-close:hover {
    background: white;
    color: #333;
    transform: rotate(90deg);
}

/* Деталі рослини */
.plant-details {
    padding: 30px;
}

.plant-detail-image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fff8, #e8f5e8);
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}

.plant-emoji-large {
    font-size: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #f8fff8, #e8f5e8);
}

.plant-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.plant-detail-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.plant-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 15px;
}

.plant-detail-category {
    display: inline-block;
    background: #e8f5e8;
    color: #2e7d32;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plant-detail-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.care-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 4px solid #2e7d32;
}

.care-info h3 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.care-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.care-label {
    font-weight: 600;
    color: #555;
}

.care-value {
    color: #2e7d32;
    font-weight: 500;
}

/* Кнопки контакту */
.contact-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.contact-btn {
    flex: 1;
    min-width: 140px;
    padding: 15px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.viber-btn {
    background: linear-gradient(135deg, #7360f2, #5a4fcf);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #006699);
}

.add-to-cart-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #1b5e20, #0d4a14);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

/* Анімації */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Картки рослин */
.plant-card {
    animation: fadeIn 0.5s ease-out;
}

/* Повідомлення про відсутність результатів */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px dashed #e0e0e0;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
}

.no-results p {
    color: #999;
    font-size: 1rem;
    line-height: 1.6;
}

/* Кнопка адмін-панелі */
.admin-panel-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.admin-panel-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.admin-panel-btn i {
    transition: transform 0.3s ease;
}

.admin-panel-btn:hover i {
    transform: rotate(90deg);
}

/* Адаптивність для пристроїв без hover */
@media (hover: none) {
    .plant-card:hover {
        transform: none;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .category-btn:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    
    .contact-btn:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .admin-panel-btn:hover {
        transform: none;
        box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
    }
}

/* Кошик */
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid #e8f5e8;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: #2e7d32;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.15);
    transform: translateY(-2px);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fff8, #e8f5e8);
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cart-item-info p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e7d32;
    line-height: 1.3;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 15px;
}

.cart-item-quantity button {
    width: 35px;
    height: 35px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2e7d32;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-quantity button:hover {
    border-color: #2e7d32;
    background: #e8f5e8;
    transform: scale(1.1);
}

.cart-item-quantity span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    min-width: 30px;
    text-align: center;
}

.cart-item-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2e7d32;
    margin: 0 15px;
    min-width: 80px;
    text-align: right;
}

.remove-item {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 8px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    background: linear-gradient(135deg, #c82333, #a71e2a);
    transform: scale(1.1);
}

.cart-total {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid #e8f5e8;
}

.cart-total h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #1b5e20, #0d4a14);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

/* Новий дизайн сторінки продукту */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fff8, #e8f5e8);
    border-radius: 15px;
    border-left: 4px solid #2e7d32;
}

.availability {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.9rem;
}

.availability i {
    font-size: 1rem;
}

.article-number {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid #e8f5e8;
}

.price-promo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-main {
    font-size: 2rem;
    font-weight: 700;
    color: #e91e63;
}

.price-period {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.price-regular {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.price-old {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.quick-order-section {
    background: linear-gradient(135deg, #f8fff8, #e8f5e8);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 2px solid #e8f5e8;
}

.quick-order-section h4 {
    color: #2e7d32;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-order-section h4 i {
    font-size: 1.3rem;
}

.contact-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.contact-icon-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 140px;
    justify-content: center;
}

.viber-icon {
    background: linear-gradient(135deg, #7360f2, #5a4fcf);
}

.telegram-icon {
    background: linear-gradient(135deg, #0088cc, #006699);
}

.contact-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.product-description {
    margin-bottom: 25px;
}

.product-description h4 {
    color: #2e7d32;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-description p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Адаптивний дизайн */
@media (max-width: 768px) {
    .plants-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .plant-card {
        border-radius: 15px;
    }
    
    .main-content {
        padding: 20px 15px 100px;
    }
    
    .header-content {
        padding: 0 20px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .logo i {
        font-size: 1.8rem;
    }
    
    .plant-detail-image {
        height: 250px;
    }
    
    .plant-detail-name {
        font-size: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn {
        min-width: auto;
    }
}

@media (max-width: 540px) {
    .plants-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .plant-card {
        border-radius: 12px;
    }
    
    .main-content {
        padding: 15px 10px 100px;
    }
    
    .categories-container {
        gap: 10px;
    }
    
    .category-btn {
        padding: 15px 20px;
        min-width: 80px;
    }
    
    .category-btn i {
        font-size: 1.3rem;
    }
    
    .category-btn span {
        font-size: 0.8rem;
    }
    
    .plant-detail-image {
        height: 200px;
    }
    
    .plant-detail-name {
        font-size: 1.3rem;
    }
    
    .contact-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-icon-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .price-main {
        font-size: 1.6rem;
    }
}

@media (max-width: 360px) {
    .plants-grid {
        gap: 12px;
    }
    
    .plant-card {
        border-radius: 10px;
    }
    
    .main-content {
        padding: 12px 8px 100px;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo i {
        font-size: 1.6rem;
    }
    
    .categories-container {
        gap: 8px;
    }
    
    .category-btn {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .category-btn i {
        font-size: 1.2rem;
    }
    
    .category-btn span {
        font-size: 0.75rem;
    }
    
    .plant-detail-image {
        height: 180px;
    }
    
    .plant-detail-name {
        font-size: 1.2rem;
    }
    
    .plant-detail-price {
        font-size: 1.3rem;
    }
    
    .contact-buttons {
        gap: 10px;
    }
    
    .contact-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .add-to-cart-btn {
        padding: 15px;
        font-size: 1rem;
    }
} 