* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --farm-green: #6B8E23;
    --farm-brown: #8B4513;
    --farm-beige: #F5F5DC;
    --farm-cream: #FFF8DC;
    --farm-dark-green: #556B2F;
    --farm-gold: #DAA520;
    --text-dark: #2F4F2F;
    --text-light: #5A5A5A;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: white;
    min-height: 100vh;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 50%, var(--farm-green) 100%);
    padding: 0.5rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(to bottom, var(--farm-green), var(--farm-dark-green));
    opacity: 0.8;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--farm-cream);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav {
    display: flex;
    gap: 1rem;
}

.nav a {
    color: var(--farm-cream);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(107, 142, 35, 0.5), rgba(85, 107, 47, 0.5)),
                url('images/kezdőlap átmenet.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Fallback ha nincs kép */
.hero:not([style*="background-image"]) {
    background: linear-gradient(135deg, #6B8E23 0%, #556B2F 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
    padding: 2rem;
    max-width: 90%;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.4;
    word-wrap: break-word;
}

.cta-button {
    background-color: var(--farm-gold);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #C9A020;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.3;
}

.barn-icon {
    font-size: 8rem;
    animation: float 3s ease-in-out infinite;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--farm-beige);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--farm-dark-green);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--farm-green), var(--farm-gold));
    margin: 1rem auto;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--farm-green);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--farm-dark-green);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    margin-top: -100px;
    padding-top: 150px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 248, 220, 0.3) 10%, var(--farm-cream) 50%, var(--farm-cream) 100%);
    position: relative;
    z-index: 1;
}

.gallery-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--farm-dark-green);
    margin: 3rem 0 2rem 0;
    text-align: center;
}

.gallery-category-title:first-of-type {
    margin-top: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

.gallery-edit-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #333;
    border-radius: 8px;
    border: 1px solid #444;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-placeholder {
    font-size: 6rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--farm-beige), var(--farm-cream));
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-title {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    font-weight: 600;
    color: var(--farm-dark-green);
    font-size: 1.1rem;
    margin: 0;
}

.gallery-description {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--farm-cream), white);
}

.partners .container {
    padding: 2rem 20px;
}

.partners .section-title {
    color: red;
    margin-bottom: 1rem;
}

.partners-intro {
    text-align: center;
    font-size: 1.2rem;
    color: red;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 142, 35, 0.1), transparent);
    transition: left 0.5s ease;
}

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: var(--farm-green);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.partner-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--farm-dark-green);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.partner-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--farm-beige);
    position: relative;
}

.contact .section-title {
    color: #E2001A;
    font-family: 'Arial Black', 'Arial', 'Helvetica', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.3),
        1px 1px 0px rgba(255, 255, 255, 0.1),
        -1px -1px 0px rgba(0, 0, 0, 0.2);
    font-stretch: condensed;
}

/* Password Admin Panel */
.password-admin-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.password-admin-panel.open {
    display: flex;
}

.password-admin-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.password-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--farm-green);
}

.password-admin-header h2 {
    color: var(--farm-dark-green);
    font-family: 'Playfair Display', serif;
    margin: 0;
    font-size: 2.5rem;
}

.password-admin-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.password-admin-item {
    padding: 1.5rem;
    background: var(--farm-cream);
    border-radius: 10px;
    border: 2px solid var(--farm-green);
}

.password-admin-item h3 {
    color: var(--farm-dark-green);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

/* Admin Panel - Chrome ablak szerű, bárhova mozgatható */
.admin-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 500px;
    min-width: 400px;
    min-height: 300px;
    max-width: none;
    max-height: none;
    background: #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #333;
    /* Chrome ablak szerű mozgatás */
    cursor: default;
    user-select: none;
}

.admin-panel.open {
    display: flex;
}

.admin-panel.resizing {
    user-select: none;
}

.admin-panel-content {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    background: #1a1a1a;
    color: white;
}

.admin-panel-content::-webkit-scrollbar {
    width: 10px;
}

.admin-panel-content::-webkit-scrollbar-track {
    background: #2a2a2a;
}

.admin-panel-content::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 5px;
}

.admin-panel-content::-webkit-scrollbar-thumb:hover {
    background: #777;
}

.admin-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #444;
    background: #1a1a1a;
    padding: 1rem 2rem;
    cursor: move;
    user-select: none;
}

.admin-panel-header h2 {
    color: white;
    font-family: 'Playfair Display', serif;
    margin: 0;
    font-size: 1.8rem;
}

.admin-close-btn {
    background: #333;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.admin-close-btn:hover {
    background: #ff4444;
    transform: scale(1.1);
}

/* Resize handle */
.admin-panel-resize {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #444;
    cursor: nwse-resize;
    border-top-left-radius: 10px;
}

.admin-panel-resize:hover {
    background: #666;
}

.admin-panel-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.admin-setting-item {
    padding: 1.5rem;
    background: #2a2a2a;
    border-radius: 10px;
    border: 2px solid #444;
    margin-bottom: 1.5rem;
}

.admin-setting-item h3 {
    color: white;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.admin-setting-item p {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.admin-setting-item input[type="file"] {
    width: 100%;
    padding: 0.5rem;
    border: 2px dashed #555;
    border-radius: 5px;
    background: #333;
    color: white;
    cursor: pointer;
    margin-bottom: 1rem;
}

.admin-input, .admin-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #555;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
    background: #333;
    color: white;
}

.admin-input:focus, .admin-textarea:focus {
    outline: none;
    border-color: #6B8E23;
    box-shadow: 0 0 0 2px rgba(107, 142, 35, 0.3);
}

.admin-textarea {
    resize: vertical;
    min-height: 100px;
}

.admin-file-input {
    width: 100%;
    padding: 0.5rem;
    border: 2px dashed var(--farm-green);
    border-radius: 5px;
    background: white;
    cursor: pointer;
    margin-bottom: 1rem;
}

.admin-save-btn {
    width: 100%;
    padding: 1rem;
    background: #6B8E23;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.admin-save-btn:hover {
    background: #556B2F;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.image-preview {
    margin-top: 1rem;
    border-radius: 5px;
    overflow: hidden;
    max-height: 200px;
}

.image-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.admin-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(85, 107, 47, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-toggle-btn:hover {
    background: rgba(85, 107, 47, 1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-item h3 {
    color: var(--farm-dark-green);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--farm-beige);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--farm-green);
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, var(--farm-green), var(--farm-dark-green));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Category Page Styles */
.breadcrumb-section {
    background: var(--farm-beige);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--farm-dark-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--farm-green);
}

.breadcrumb-separator {
    color: var(--text-light);
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 600;
}

.category-header {
    background: linear-gradient(135deg, var(--farm-beige), white);
    padding: 3rem 0;
    text-align: center;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--farm-dark-green);
    margin-bottom: 1rem;
}

.category-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.products-section {
    padding: 3rem 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.product-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--farm-beige), var(--farm-cream));
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.product-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--farm-dark-green);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-specs {
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-specs h4 {
    font-size: 1.1rem;
    color: var(--farm-dark-green);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.specs-list {
    list-style: none;
    padding: 0;
}

.specs-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list li strong {
    color: var(--farm-dark-green);
    margin-right: 0.5rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid var(--farm-beige);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--farm-green);
}

.product-details-btn,
.product-contact-btn {
    padding: 0.75rem 1.5rem;
    background: var(--farm-green);
    color: white;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.product-details-btn:hover,
.product-contact-btn:hover {
    background: var(--farm-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Product Detail Page Styles */
.product-detail-section {
    padding: 3rem 0;
    background: white;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-detail-image-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--farm-beige), var(--farm-cream));
}

.product-detail-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-detail-placeholder {
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
}

.product-detail-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--farm-dark-green);
    margin-bottom: 0.5rem;
}

.product-detail-category {
    font-size: 1.1rem;
    color: var(--farm-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-detail-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-detail-specs {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--farm-beige);
    border-radius: 10px;
}

.product-detail-specs h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--farm-dark-green);
    margin-bottom: 1rem;
}

.specs-detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--farm-green);
}

.spec-label {
    font-weight: 600;
    color: var(--farm-dark-green);
}

.spec-value {
    color: var(--text-dark);
}

.product-detail-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid var(--farm-beige);
    margin-top: auto;
}

.product-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--farm-green);
    flex: 1;
}

.product-contact-btn-large {
    padding: 1rem 2rem;
    background: var(--farm-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-contact-btn-large:hover {
    background: var(--farm-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-additional-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--farm-beige);
    border-radius: 15px;
}

.product-additional-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--farm-dark-green);
    margin-bottom: 1.5rem;
}

.additional-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.additional-content p {
    margin-bottom: 1rem;
}

.additional-content strong {
    color: var(--farm-dark-green);
}

/* Responsive Design for Product Detail */
@media (max-width: 968px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .product-detail-name {
        font-size: 2rem;
    }
    
    .specs-detail-list {
        grid-template-columns: 1fr;
    }
    
    .product-detail-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-contact-btn-large {
        width: 100%;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--farm-dark-green), var(--farm-green));
    color: var(--farm-cream);
    padding: 2rem 0;
    text-align: center;
}

.footer-message {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .barn-icon {
        font-size: 5rem;
    }
}

