:root {
   --bs-primary: #84CC16;
   --bs-primary-dark: #65A30D;
   --bs-primary-light: #A3E635;
   --bs-secondary: #22C55E;
   --bs-secondary-dark: #16A34A;
   --bs-gray-50: #FAFAFA;
   --bs-gray-100: #F4F4F5;
   --bs-gray-200: #E4E4E7;
   --bs-gray-300: #D4D4D8;
   --bs-gray-400: #A1A1AA;
   --bs-gray-500: #71717A;
   --bs-gray-600: #52525B;
   --bs-gray-700: #3F3F46;
   --bs-gray-800: #27272A;
   --bs-gray-900: #18181B;
   --bs-text-primary: #18181B;
   --bs-text-secondary: #52525B;
   --bs-text-muted: #71717A;
   --bs-bg-primary: #FAFAFA;
   --bs-bg-secondary: #F4F4F5;
   --bs-surface: #FFFFFF;
   --bs-border: #E4E4E7;
   --bs-shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
   --bs-shadow-md: 0 4px 8px rgba(0,0,0,0.06);
   --bs-shadow-lg: 0 10px 20px rgba(0,0,0,0.08);
   --bs-radius: 8px;
   --bs-radius-lg: 16px;
   --bs-space-xs: 0.325rem;
   --bs-space-sm: 0.65rem;
   --bs-space-md: 0.975rem;
   --bs-space-lg: 1.3rem;
   --bs-space-xl: 1.95rem;
   --bs-space-2xl: 2.6rem;
   --bs-space-3xl: 3.9rem;
   --ast-global-color-0: #84CC16 !important;
   --ast-global-color-1: #65A30D !important;
   --ast-global-color-2: #18181B !important;
   --ast-global-color-3: #52525B !important;
   --ast-global-color-4: #FFFFFF !important;
   --ast-global-color-5: #FAFAFA !important;
   --ast-global-color-6: #F4F4F5 !important;
   --ast-global-color-7: #E4E4E7 !important;
   --ast-global-color-8: #18181B !important;
}

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

html {
   font-size: 16px;
   scroll-behavior: smooth;
}

body {
   font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
   color: var(--bs-text-primary);
   background-color: var(--bs-bg-primary);
   line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
   font-weight: 700;
   line-height: 1.3;
   margin-bottom: var(--bs-space-md);
   color: var(--bs-text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

a {
   color: var(--bs-primary);
   text-decoration: none;
   transition: color 0.3s ease;
}

a:hover {
   color: var(--bs-primary-dark);
}

p {
   margin-bottom: var(--bs-space-md);
   color: var(--bs-text-secondary);
}

.container {
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 var(--bs-space-lg);
}

.btn,
.button,
button,
input[type="submit"],
input[type="button"],
.wp-block-button__link,
.ast-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: var(--bs-space-sm);
   padding: var(--bs-space-sm) var(--bs-space-xl);
   font-size: 0.9375rem;
   font-weight: 600;
   line-height: 1;
   border-radius: var(--bs-radius);
   border: 2px solid transparent;
   cursor: pointer;
   transition: all 0.3s ease;
   text-decoration: none;
   background: var(--bs-primary);
   color: white;
   border-color: var(--bs-primary);
}

.btn:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.wp-block-button__link:hover,
.ast-button:hover {
   background: var(--bs-primary-dark);
   border-color: var(--bs-primary-dark);
   transform: translateY(-2px);
   box-shadow: var(--bs-shadow-md);
}

.card {
   background: var(--bs-surface);
   border: 1px solid var(--bs-border);
   border-radius: var(--bs-radius-lg);
   padding: var(--bs-space-xl);
   box-shadow: var(--bs-shadow-sm);
   transition: all 0.3s ease;
}

.card:hover {
   box-shadow: var(--bs-shadow-lg);
   transform: translateY(-4px);
}

input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
textarea,
select {
   width: 100%;
   padding: var(--bs-space-sm) var(--bs-space-md);
   font-size: 1rem;
   color: var(--bs-text-primary);
   background: var(--bs-surface);
   border: 2px solid var(--bs-border);
   border-radius: var(--bs-radius);
   transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
   outline: none;
   border-color: var(--bs-primary);
   box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
}

.site-header {
   background: var(--bs-surface);
   box-shadow: 0 1px 3px rgba(0,0,0,0.1);
   position: relative;
   z-index: 999;
}

.main-header-bar {
   background-color: var(--bs-surface);
   padding: 0;
   border-bottom: 1px solid var(--bs-border);
}

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

.ast-primary-header-bar .ast-container {
   display: flex;
   align-items: center;
   min-height: 70px;
}

.site-branding {
   flex: 0 0 auto;
}

.site-title {
   font-size: 1.5rem;
   margin: 0;
   font-weight: 700;
}

.site-title a {
   color: var(--bs-text-primary);
}

.main-header-bar-navigation {
   flex: 1 1 auto;
   display: flex;
   justify-content: flex-end;
}

.main-navigation a {
   color: var(--bs-text-primary) !important;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
   color: var(--bs-primary) !important;
}

.main-header-menu > .menu-item > a {
   padding: 25px 20px;
   font-weight: 500;
   transition: all 0.3s ease;
   display: inline-block;
}

.main-header-menu .sub-menu {
   background: var(--bs-surface);
   box-shadow: 0 4px 20px rgba(0,0,0,0.1);
   border-top: 3px solid var(--bs-primary);
   border-radius: 0 0 8px 8px;
}

.main-header-menu .sub-menu a {
   color: var(--bs-text-secondary);
   padding: 12px 20px;
   display: block;
}

.main-header-menu .sub-menu a:hover {
   background: var(--bs-bg-secondary);
   color: var(--bs-primary);
}

.ast-builder-menu-1 .sub-menu {
   border-top-color: var(--bs-primary) !important;
}

@media (max-width: 921px) {
   .main-header-menu {
       background: var(--bs-surface);
   }
   
   .ast-mobile-header-wrap .main-header-bar {
       padding: 15px 0;
   }
   
   .main-navigation ul li a {
       border-bottom: 1px solid var(--bs-border);
       padding: 15px 20px;
   }
}

.page-header,
.modern-page-header {
   background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
   padding: 80px 0 60px;
   margin-bottom: var(--bs-space-3xl);
   position: relative;
   overflow: hidden;
}

.page-header::after,
.modern-page-header::after {
   content: '';
   position: absolute;
   top: -50%;
   right: -10%;
   width: 40%;
   height: 200%;
   background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
   transform: rotate(-15deg);
}

.page-header h1,
.page-title {
   color: white !important;
   font-size: 3rem !important;
   font-weight: 700 !important;
   margin-bottom: 20px !important;
   text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-content,
.modern-page-content {
   padding: var(--bs-space-3xl) 0;
   background: var(--bs-bg-primary);
}

.content-wrapper,
.content-inner {
   background: var(--bs-surface);
   border-radius: var(--bs-radius-lg);
   padding: var(--bs-space-3xl);
   box-shadow: var(--bs-shadow-sm);
}

.catalog-page-wrapper {
   min-height: 70vh;
   background: var(--bs-bg-secondary);
}

.catalog-container {
   max-width: 1400px;
   margin: 0 auto;
   padding: 40px 20px;
}

.catalog-header {
   background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
   padding: 60px 20px 40px;
   margin: -40px -20px 40px;
   text-align: center;
   color: white;
   position: relative;
   overflow: hidden;
   border-radius: var(--bs-radius-lg);
}

.catalog-header h1 {
   font-size: 2.5rem;
   color: white;
   margin-bottom: 16px;
   font-weight: 700;
}

.catalog-description {
   font-size: 1.125rem;
   opacity: 0.9;
   max-width: 600px;
   margin: 0 auto;
   line-height: 1.6;
}

.catalog-layout {
   display: grid !important;
   grid-template-columns: 280px 1fr !important;
   gap: 30px !important;
}

.catalog-filters {
   background: var(--bs-surface);
   border-radius: var(--bs-radius);
   padding: 25px;
   box-shadow: var(--bs-shadow-sm);
   position: sticky;
   top: 100px;
   height: fit-content;
}

.filters-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 25px;
   padding-bottom: 15px;
   border-bottom: 2px solid var(--bs-border);
}

.filters-header h3 {
   font-size: 20px;
   font-weight: 700;
   color: var(--bs-text-primary);
   margin: 0;
}

.clear-filters {
   font-size: 14px;
   color: var(--bs-primary);
   text-decoration: none;
}

.clear-filters:hover {
   color: var(--bs-primary-dark);
   text-decoration: underline;
}

.filter-section {
   margin-bottom: 30px;
}

.filter-section:last-child {
   margin-bottom: 0;
}

.filter-title {
   font-size: 16px;
   font-weight: 600;
   color: var(--bs-text-primary);
   margin-bottom: 15px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   cursor: pointer;
}

.catalog-search-box {
   position: relative;
}

.catalog-search-input {
   width: 100%;
   padding: 12px 45px 12px 16px;
   border: 2px solid var(--bs-border);
   border-radius: var(--bs-radius);
   font-size: 16px;
}

.catalog-search-btn {
   position: absolute;
   right: 5px;
   top: 50%;
   transform: translateY(-50%);
   background: none;
   border: none;
   padding: 8px;
   cursor: pointer;
   color: var(--bs-text-muted);
}

.filter-checkbox {
   display: flex;
   align-items: center;
   margin-bottom: 12px;
   cursor: pointer;
}

.filter-checkbox input[type="checkbox"] {
   width: 18px;
   height: 18px;
   margin-right: 10px;
   cursor: pointer;
   accent-color: var(--bs-primary);
}

.filter-checkbox label {
   cursor: pointer;
   font-size: 14px;
   color: var(--bs-text-primary);
   flex: 1;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.filter-count {
   font-size: 12px;
   color: var(--bs-text-muted);
   margin-left: 5px;
}

.price-range-inputs {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 10px;
}

.price-input {
   padding: 10px 12px;
   border: 2px solid var(--bs-border);
   border-radius: var(--bs-radius);
   font-size: 14px;
}

.catalog-content {
   min-height: 400px;
}

.catalog-toolbar {
   background: var(--bs-surface);
   padding: 20px;
   border-radius: var(--bs-radius);
   margin-bottom: 30px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   box-shadow: var(--bs-shadow-sm);
   flex-wrap: wrap;
   gap: 15px;
}

.toolbar-left,
.toolbar-right {
   display: flex;
   align-items: center;
   gap: 20px;
}

.results-count {
   color: var(--bs-text-muted);
   font-size: 14px;
}

.sort-select {
   padding: 10px 35px 10px 15px;
   border: 2px solid var(--bs-border);
   border-radius: var(--bs-radius);
   font-size: 14px;
   background: var(--bs-surface);
   cursor: pointer;
   appearance: none;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
   background-repeat: no-repeat;
   background-position: right 12px center;
}

.view-switcher {
   display: flex;
   gap: 5px;
}

.view-btn {
   padding: 8px;
   background: var(--bs-surface);
   border: 2px solid var(--bs-border);
   cursor: pointer;
   border-radius: var(--bs-radius);
   color: var(--bs-text-muted);
   transition: all 0.3s ease;
}

.view-btn.active {
   background: var(--bs-primary);
   color: white;
   border-color: var(--bs-primary);
}

.products-container {
   min-height: 400px;
   position: relative;
}

.products-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
   gap: 25px;
}

.product-card {
   background: var(--bs-surface);
   border-radius: var(--bs-radius-lg);
   overflow: hidden;
   box-shadow: var(--bs-shadow-sm);
   transition: all 0.3s ease;
   height: 100%;
   display: flex;
   flex-direction: column;
}

.product-card:hover {
   transform: translateY(-10px);
   box-shadow: var(--bs-shadow-lg);
}

.product-image {
   width: 100%;
   height: 300px;
   overflow: hidden;
   background: var(--bs-bg-secondary);
   position: relative;
}

.product-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
   transform: scale(1.1);
}

.product-badges {
   position: absolute;
   top: 15px;
   left: 15px;
   display: flex;
   flex-direction: column;
   gap: 8px;
   z-index: 2;
}

.product-badge,
.stock-badge {
   padding: 6px 14px;
   border-radius: 20px;
   font-size: 12px;
   font-weight: 600;
   color: white;
   backdrop-filter: blur(10px);
}

.badge-new {
   background: #3B82F6;
}

.badge-sale {
   background: #EF4444;
}

.stock-badge {
   position: absolute;
   top: 15px;
   right: 15px;
   background: var(--bs-secondary);
}

.stock-badge.out-of-stock {
   background: #EF4444;
}

.product-content {
   padding: 25px;
   flex: 1;
   display: flex;
   flex-direction: column;
}

.product-category {
   font-size: 12px;
   color: var(--bs-primary);
   margin-bottom: 8px;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.product-title {
   font-size: 20px;
   font-weight: 600;
   margin-bottom: 10px;
   line-height: 1.3;
}

.product-title a {
   color: inherit;
   text-decoration: none;
}

.product-title a:hover {
   color: var(--bs-primary);
}

.product-sku {
   font-size: 12px;
   color: var(--bs-text-muted);
   margin-bottom: 12px;
}

.product-excerpt {
   font-size: 14px;
   color: var(--bs-text-muted);
   line-height: 1.5;
   margin-bottom: 15px;
   flex: 1;
}

.product-characteristics {
   font-size: 13px;
   color: #555;
   margin-bottom: 15px;
}

.product-characteristic {
   display: flex;
   justify-content: space-between;
   padding: 4px 0;
   border-bottom: 1px dotted var(--bs-border);
}

.product-price-wrapper {
   display: flex;
   align-items: baseline;
   gap: 10px;
   margin-bottom: 20px;
}

.product-price {
   font-size: 28px;
   font-weight: 700;
   color: var(--bs-primary);
}

.product-old-price {
   font-size: 20px;
   color: var(--bs-text-muted);
   text-decoration: line-through;
}

.product-actions {
   display: flex;
   gap: 10px;
   margin-top: auto;
}

.btn-quick-view {
   padding: 12px 16px;
   background: var(--bs-surface);
   color: var(--bs-text-primary);
   border: 2px solid var(--bs-border);
   border-radius: var(--bs-radius);
   font-size: 14px;
   font-weight: 600;
   cursor: pointer;
   text-align: center;
}

.btn-quick-view:hover {
   background: var(--bs-bg-secondary);
   border-color: var(--bs-primary);
   color: var(--bs-primary);
}

.add-to-cart-btn {
   flex: 1;
   padding: 12px 20px;
   background: var(--bs-primary);
   color: white;
   border: none;
   border-radius: var(--bs-radius);
   font-size: 14px;
   font-weight: 600;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
}

.add-to-cart-btn:hover:not(:disabled) {
   background: var(--bs-primary-dark);
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(132, 204, 22, 0.3);
}

.add-to-cart-btn:disabled {
   background: #ccc;
   cursor: not-allowed;
   transform: none;
}

.add-to-cart-btn svg {
   width: 18px;
   height: 18px;
}

.catalog-loading {
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 400px;
}

.loading-spinner {
   width: 60px;
   height: 60px;
   border: 4px solid var(--bs-border);
   border-top-color: var(--bs-primary);
   border-radius: 50%;
   animation: spin 1s linear infinite;
}

@keyframes spin {
   to { transform: rotate(360deg); }
}

.no-products {
   text-align: center;
   padding: 80px 20px;
   background: var(--bs-surface);
   border-radius: var(--bs-radius);
   box-shadow: var(--bs-shadow-sm);
}

.no-products h3 {
   font-size: 28px;
   color: var(--bs-text-primary);
   margin-bottom: 15px;
}

.no-products p {
   color: var(--bs-text-muted);
   font-size: 18px;
   margin-bottom: 30px;
}

.catalog-pagination {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 8px;
   margin-top: 60px;
   flex-wrap: wrap;
}

.pagination-item {
   min-width: 44px;
   height: 44px;
   display: flex;
   align-items: center;
   justify-content: center;
   border: 2px solid var(--bs-border);
   border-radius: var(--bs-radius);
   color: var(--bs-text-primary);
   text-decoration: none;
   font-weight: 600;
}

.pagination-item:hover {
   border-color: var(--bs-primary);
   color: var(--bs-primary);
   background: var(--bs-bg-secondary);
}

.pagination-item.active {
   background: var(--bs-primary);
   color: white;
   border-color: var(--bs-primary);
}

.pagination-item.disabled {
   opacity: 0.4;
   cursor: not-allowed;
   pointer-events: none;
}

.filters-toggle-mobile {
   display: none;
}

@media (max-width: 1024px) {
   .catalog-layout {
       grid-template-columns: 240px 1fr !important;
   }
   
   h1, .page-header h1 { font-size: 2.5rem; }
   h2 { font-size: 1.75rem; }
}

@media (max-width: 768px) {
   .catalog-layout {
       grid-template-columns: 1fr !important;
   }
   
   .catalog-filters {
       display: none;
       position: static;
   }
   
   .catalog-filters.mobile-visible {
       display: block;
       animation: slideDown 0.3s ease;
   }
   
   @keyframes slideDown {
       from {
           opacity: 0;
           transform: translateY(-20px);
       }
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }
   
   .filters-toggle-mobile {
       display: flex;
       width: 100%;
       padding: 14px 20px;
       background: var(--bs-primary);
       color: white;
       border: none;
       border-radius: var(--bs-radius);
       font-size: 16px;
       font-weight: 600;
       cursor: pointer;
       margin-bottom: 25px;
       align-items: center;
       justify-content: center;
       gap: 10px;
   }
   
   .catalog-toolbar {
       flex-direction: column;
       gap: 15px;
       align-items: stretch;
   }
   
   .toolbar-left,
   .toolbar-right {
       width: 100%;
       justify-content: space-between;
   }
   
   .products-grid {
       grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
       gap: 15px;
   }
   
   .product-image {
       height: 200px;
   }
   
   h1, .page-header h1 { font-size: 2rem !important; }
   h2 { font-size: 1.5rem; }
   
   .container {
       padding: 0 var(--bs-space-md);
   }
}

@media (max-width: 480px) {
   .products-grid {
       grid-template-columns: 1fr;
   }
   
   h1, .page-header h1 { font-size: 1.75rem !important; }
}

.hidden { display: none !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--bs-space-xs) !important; }
.mt-2 { margin-top: var(--bs-space-sm) !important; }
.mt-3 { margin-top: var(--bs-space-md) !important; }
.mt-4 { margin-top: var(--bs-space-lg) !important; }
.mt-5 { margin-top: var(--bs-space-xl) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--bs-space-xs) !important; }
.mb-2 { margin-bottom: var(--bs-space-sm) !important; }
.mb-3 { margin-bottom: var(--bs-space-md) !important; }
.mb-4 { margin-bottom: var(--bs-space-lg) !important; }
.mb-5 { margin-bottom: var(--bs-space-xl) !important; }

@keyframes fadeIn {
   from { opacity: 0; transform: translateY(20px); }
   to { opacity: 1; transform: translateY(0); }
}

.fade-in {
   animation: fadeIn 0.6s ease-out;
}

.bonseeds-cart-menu-item {
   position: relative;
}

.bonseeds-cart-link {
   display: flex;
   align-items: center;
   gap: 5px;
}

.cart-count {
   background: var(--bs-primary);
   color: white;
   border-radius: 50%;
   width: 20px;
   height: 20px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 12px;
   font-weight: bold;
}

.cart-count:empty,
.cart-count:contains("0") {
   display: none;
}

.ast-separate-container .ast-article-inner {
   box-shadow: none !important;
   border: none !important;
}

.ast-separate-container .ast-article-post,
.ast-separate-container .ast-article-single {
   padding: 0 !important;
}

.ast-footer-copyright a[href*="wpastra.com"] {
   display: none !important;
}

.bonseeds-modern-layout .ast-container {
   max-width: 100% !important;
   padding: 0 !important;
}

img {
   max-width: 100%;
   height: auto;
}

.product-card,
.btn {
   will-change: transform;
}

@media (hover: none) {
   .product-card:hover {
       transform: none;
   }
}

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

.hero-section {
   position: relative;
   min-height: 100vh;
   display: flex;
   align-items: center;
   overflow: hidden;
   background: #000;
}

.hero-video-wrapper {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 1;
}

.hero-video {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
   z-index: 2;
}

.hero-content {
   position: relative;
   z-index: 10;
   color: white;
   text-align: center;
   width: 100%;
   padding: 0 20px;
}

.hero-badge {
   display: inline-block;
   padding: 10px 24px;
   background: rgba(255,255,255,0.1);
   border: 1px solid rgba(255,255,255,0.2);
   border-radius: 50px;
   font-size: 14px;
   text-transform: uppercase;
   letter-spacing: 2px;
   margin-bottom: 32px;
   backdrop-filter: blur(10px);
}

.hero-title {
   font-size: 72px;
   font-weight: 900;
   line-height: 1.1;
   margin-bottom: 24px;
   letter-spacing: -0.02em;
   color: white !important;
}

.text-gradient {
   background: linear-gradient(135deg, #84CC16 0%, #3B82F6 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.hero-subtitle {
   font-size: 24px;
   font-weight: 300;
   opacity: 0.9;
   max-width: 700px;
   margin: 0 auto 48px;
   line-height: 1.6;
   color: white;
}

.hero-stats {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 40px;
   max-width: 800px;
   margin: 60px auto;
}

.stat-item {
   text-align: center;
}

.stat-number {
   font-size: 48px;
   font-weight: 800;
   display: block;
   margin-bottom: 8px;
   color: white;
}

.stat-label {
   font-size: 14px;
   text-transform: uppercase;
   opacity: 0.8;
   letter-spacing: 1px;
   color: white;
}

.hero-actions {
   display: flex;
   gap: 20px;
   justify-content: center;
   margin-top: 40px;
}

.btn-primary {
   background: linear-gradient(135deg, #84CC16 0%, #65A30D 100%);
   color: white;
   box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
   color: white;
}

.btn-glass {
   background: rgba(255,255,255,0.1);
   color: white;
   border: 1px solid rgba(255,255,255,0.2);
   backdrop-filter: blur(10px);
}

.btn-glass:hover {
   background: rgba(255,255,255,0.2);
   border-color: rgba(255,255,255,0.3);
   color: white;
}

.btn-glow {
   position: relative;
   overflow: hidden;
}

.btn-glow::before {
   content: '';
   position: absolute;
   top: -2px;
   left: -2px;
   right: -2px;
   bottom: -2px;
   background: linear-gradient(135deg, #84CC16, #22C55E, #84CC16);
   border-radius: inherit;
   opacity: 0;
   transition: opacity 0.3s;
   z-index: -1;
}

.btn-glow:hover::before {
   opacity: 1;
   animation: glow 1.5s linear infinite;
}

@keyframes glow {
   0% { background-position: 0% 50%; }
   100% { background-position: 100% 50%; }
}

.btn-lg {
   padding: 20px 40px;
   font-size: 18px;
}

section {
   padding: 100px 0;
   position: relative;
}

.section-header {
   text-align: center;
   max-width: 800px;
   margin: 0 auto 80px;
}

.section-label {
   display: inline-block;
   padding: 8px 20px;
   background: rgba(132, 204, 22, 0.1);
   color: #84CC16;
   border-radius: 50px;
   font-size: 14px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 16px;
}

.section-title {
   font-size: 48px;
   font-weight: 900;
   line-height: 1.2;
   margin-bottom: 24px;
   color: #111827;
   letter-spacing: -0.02em;
}

.section-subtitle {
   font-size: 20px;
   color: #6B7280;
   line-height: 1.6;
}

.products-showcase {
   background: #F3F4F6;
}

.products-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
   gap: 40px;
}

.product-category {
   background: white;
   border-radius: 24px;
   overflow: hidden;
   box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
   transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-visual {
   position: relative;
   height: 400px;
   overflow: hidden;
}

.category-image {
   width: 100%;
   height: 100%;
   position: relative;
}

.category-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s;
}

.product-category:hover .category-image img {
   transform: scale(1.1);
}

.image-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
}

.floating-stats {
   position: absolute;
   bottom: 30px;
   left: 30px;
   right: 30px;
   display: flex;
   gap: 20px;
}

.float-item {
   background: rgba(255,255,255,0.95);
   padding: 16px 24px;
   border-radius: 16px;
   backdrop-filter: blur(10px);
   display: flex;
   align-items: baseline;
   gap: 4px;
   box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.float-item .value {
   font-size: 32px;
   font-weight: 800;
   color: #84CC16;
}

.float-item .unit {
   font-size: 14px;
   color: #6B7280;
   font-weight: 500;
}

.category-content {
   padding: 40px;
}

.category-title {
   font-size: 32px;
   font-weight: 800;
   margin-bottom: 16px;
   color: #111827;
}

.category-description {
   font-size: 18px;
   color: #6B7280;
   line-height: 1.6;
   margin-bottom: 32px;
}

.category-features {
   margin: 32px 0;
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.feature {
   display: flex;
   align-items: center;
   gap: 16px;
   font-size: 16px;
   color: #111827;
}

.feature svg {
   color: #84CC16;
   flex-shrink: 0;
}

.products-list {
   margin: 32px 0;
   padding: 24px;
   background: #F3F4F6;
   border-radius: 16px;
}

.products-list h4 {
   font-size: 18px;
   font-weight: 700;
   margin-bottom: 16px;
   color: #111827;
}

.products-list ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.products-list li {
   padding: 8px 0;
   color: #6B7280;
}

.products-list strong {
   color: #111827;
   font-weight: 600;
}

.category-link {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   color: #84CC16;
   font-weight: 600;
   font-size: 18px;
   text-decoration: none;
   transition: gap 0.3s;
}

.category-link:hover {
   gap: 16px;
   color: #65A30D;
}

.advantages-section {
   background: white;
}

.advantages-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.advantage-card {
   background: #F3F4F6;
   padding: 40px;
   border-radius: 24px;
   transition: all 0.3s;
}

.advantage-card:hover {
   background: white;
   box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
   transform: translateY(-5px);
}

.advantage-icon {
   position: relative;
   width: 80px;
   height: 80px;
   margin-bottom: 24px;
}

.icon-bg {
   position: absolute;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, #84CC16 0%, #65A30D 100%);
   border-radius: 20px;
   opacity: 0.1;
}

.advantage-icon svg {
   position: relative;
   width: 48px;
   height: 48px;
   margin: 16px;
   color: #84CC16;
}

.advantage-card h3 {
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 16px;
   color: #111827;
}

.advantage-card p {
   color: #6B7280;
   line-height: 1.6;
}

.technology-section {
   background: #F3F4F6;
}

.tech-showcase {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
   align-items: center;
}

.tech-card {
   background: white;
   padding: 32px;
   border-radius: 20px;
   margin-bottom: 24px;
   cursor: pointer;
   transition: all 0.3s;
   border: 2px solid transparent;
}

.tech-card.active {
   border-color: #84CC16;
   box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tech-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 20px;
}

.tech-header h3 {
   font-size: 24px;
   font-weight: 700;
   color: #111827;
}

.tech-badge {
   padding: 6px 16px;
   background: rgba(132, 204, 22, 0.1);
   color: #84CC16;
   border-radius: 20px;
   font-size: 12px;
   font-weight: 600;
}

.tech-benefits {
   list-style: none;
   padding: 0;
   margin-top: 20px;
}

.tech-benefits li {
   padding: 8px 0 8px 24px;
   position: relative;
   color: #6B7280;
}

.tech-benefits li::before {
   content: "✓";
   position: absolute;
   left: 0;
   color: #84CC16;
   font-weight: bold;
}

.tech-visual {
   position: relative;
}

.tech-visual img {
   width: 100%;
   border-radius: 24px;
   box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.economics-section {
   background: white;
}

.economics-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   gap: 40px;
   margin-bottom: 40px;
}

.economics-card {
   background: #F3F4F6;
   padding: 40px;
   border-radius: 24px;
}

.economics-card h3 {
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 24px;
   color: #111827;
}

.economics-data {
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.data-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 12px 0;
   border-bottom: 1px solid rgba(0,0,0,0.05);
}

.data-row.highlight {
   background: white;
   margin: 16px -16px 0;
   padding: 16px;
   border-radius: 12px;
   border: none;
}

.data-row .label {
   color: #6B7280;
}

.data-row .value {
   font-size: 20px;
   font-weight: 700;
   color: #111827;
}

.data-row.highlight .value {
   color: #84CC16;
   font-size: 28px;
}

.results-section {
   background: #F3F4F6;
}

.result-card {
   background: white;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.result-image {
   height: 300px;
   overflow: hidden;
}

.result-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.result-content {
   padding: 32px;
}

.result-content h3 {
   font-size: 20px;
   font-weight: 700;
   margin-bottom: 16px;
   color: #111827;
}

.result-yield {
   font-size: 48px;
   font-weight: 900;
   color: #84CC16;
   margin-bottom: 8px;
}

.cta-section {
   background: linear-gradient(135deg, #84CC16 0%, #65A30D 100%);
   color: white;
   text-align: center;
   padding: 120px 0;
}

.cta-content h2 {
   font-size: 48px;
   font-weight: 900;
   margin-bottom: 24px;
   color: white;
}

.cta-content p {
   font-size: 24px;
   opacity: 0.9;
   max-width: 700px;
   margin: 0 auto 48px;
}

.cta-actions {
   display: flex;
   gap: 24px;
   justify-content: center;
   flex-wrap: wrap;
   margin-bottom: 60px;
}

.cta-features {
   display: flex;
   justify-content: center;
   gap: 60px;
   flex-wrap: wrap;
}

.cta-feature {
   display: flex;
   align-items: center;
   gap: 12px;
   font-size: 18px;
}

@media (max-width: 1024px) {
   .hero-stats {
       grid-template-columns: repeat(2, 1fr);
   }

   .tech-showcase {
       grid-template-columns: 1fr;
       gap: 40px;
   }

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

@media (max-width: 768px) {
   .hero-title {
       font-size: 48px;
   }

   .section-title {
       font-size: 36px;
   }

   .hero-actions {
       flex-direction: column;
       align-items: center;
   }

   .btn {
       width: 100%;
       justify-content: center;
   }

   .floating-stats {
       flex-direction: column;
   }

   .advantages-grid,
   .economics-grid {
       grid-template-columns: 1fr;
   }

   .cta-features {
       flex-direction: column;
       gap: 20px;
   }
}

.swiper {
   padding-bottom: 50px;
}

.swiper-pagination {
   bottom: 0 !important;
}

.swiper-pagination-bullet {
   width: 12px;
   height: 12px;
   background: #84CC16;
   opacity: 0.3;
}

.swiper-pagination-bullet-active {
   opacity: 1;
}
