/* Frontend CSS - All public pages (home, shop, about, products) */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    padding: 60px 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* 
 * SAVED: Original 2×3 layout for 6 categories:
 * .hero-categories {
 *     display: grid;
 *     grid-template-columns: repeat(2, 1fr);
 *     grid-template-rows: repeat(3, 100px);
 *     gap: 16px;
 *     height: 332px;
 * }
 */

.hero-categories {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
    height: 320px;
    width: 80%;
    max-width: 500px;
    justify-self: center;
}

.category-card {
    background: white;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    transition: background 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(45, 95, 63, 0.15);
    border-color: var(--accent-green);
}

.category-card:hover::before {
    background: rgba(255, 255, 255, 0.2);
}

.category-card:hover .category-name {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.category-card:hover .category-subtitle {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.category-card > * {
    position: relative;
    z-index: 2;
}

.category-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.category-name {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.category-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    text-align: center;
    margin-top: 4px;
}

/* All category cards use same grid layout */

/* Features Strip */
.features {
    padding: 60px 0;
    background: var(--light-green);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.feature-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0;
}

/* Products */
.products {
    padding: 1px 0 40px 0;
    background: var(--light-green);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 557px;
    max-width: 300px;
    width: 100%;
    justify-self: start;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(45, 95, 63, 0.15);
}

.product-image {
    height: 225px;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-emoji {
    font-size: 64px;
    color: var(--accent-green);
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    height: 1.4em;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    position: relative;
    transition: color 0.2s ease;
}

.product-title a {
    color: inherit;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.product-title:hover {
    color: var(--primary-green);
}

.product-title:hover a {
    color: var(--primary-green);
}

.product-title a:hover::before,
.product-title a:hover::after,
.product-title:hover::before,
.product-title:hover::after {
    text-decoration: none !important;
}

.product-title[title]:hover::after {
    content: attr(title);
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    white-space: normal;
    max-width: 280px;
    width: max-content;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    line-height: 1.4;
    word-wrap: break-word;
    opacity: 0;
    animation: tooltip-fade-in 0.3s ease-out 0.2s forwards;
}

@keyframes tooltip-fade-in {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
    height: calc(1.5em * 4);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-bottom {
    margin-top: auto;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.add-to-cart {
    width: 100%;
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: var(--accent-green);
}

.see-more-card {
    background: var(--primary-green);
    color: white;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 400px;
}

.see-more-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(45, 95, 63, 0.15);
    background: var(--accent-green);
}

.see-more-content {
    text-align: center;
    padding: 40px 20px;
}

.see-more-content h3 {
    font-size: 20px;
    font-weight: 600;  
    color: white;
    margin-bottom: 16px;
}

.see-more-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
}

.see-more-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    background: white;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 0;
    align-items: stretch;
    min-height: 400px;
}

.about-text {
    max-width: none;
    padding: 80px 60px 80px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-text .section-title {
    text-align: left;
}

.about-text .cta-button {
    align-self: center;
    width: auto;
}

.about-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-description:last-of-type {
    margin-bottom: 32px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-green);
    border-left: 1px solid var(--border-light);
}

.about-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--accent-green);
}

.placeholder-text {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
    margin: 0;
}

/* About Page Styles */
.about-page-content {
    padding: 80px 0;
    background: white;
}

.about-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-main-section,
.about-values-section,
.about-story-section {
    margin-bottom: 80px;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 24px;
    text-align: center;
}

.about-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.product-list {
    list-style-type: disc;
    margin: 20px 0;
    padding-left: 20px;
    text-align: left;
}

.product-list li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 12px;
    text-align: left;
}

.product-highlight {
    color: var(--primary-green);
    font-weight: 600;
    position: relative;
    transition: all 0.6s ease;
    animation: gentle-glow 8s ease-in-out infinite;
}

@keyframes gentle-glow {
    0%, 100% {
        color: var(--primary-green);
        text-shadow: none;
    }
    50% {
        color: #1b5e1f;
        text-shadow: 0 0 8px rgba(45, 125, 50, 0.3);
    }
}

.product-highlight:hover {
    animation-play-state: paused;
    color: #1b5e1f;
    text-shadow: 0 0 12px rgba(45, 125, 50, 0.5);
}

/* About Images Row */
.about-images-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.about-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.about-image-placeholder {
    background: var(--light-green);
    border: 2px solid var(--border-light);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    transition: all 0.3s ease;
}

.about-image-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(45, 95, 63, 0.15);
}

.about-image-placeholder.large {
    min-height: 400px;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-green);
    border: 1px solid var(--border-light);
    border-radius: 0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(45, 95, 63, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: var(--primary-green);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* About Page Specific - Value Card Icons */
.about-page-content .value-card {
    padding: 30px 20px;
}

.about-page-content .value-icon {
    background: transparent;
}

.about-page-content .value-icon img {
    filter: brightness(0) saturate(100%) invert(21%) sepia(45%) saturate(1244%) hue-rotate(95deg) brightness(95%) contrast(92%);
    width: 100%;
    height: 100%;
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text .about-heading {
    text-align: left;
}

/* Contact CTA */
.about-cta-section {
    text-align: center;
    padding: 60px;
    background: var(--light-green);
    border: 2px solid var(--border-light);
    border-radius: 0;
}

.about-cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.about-cta-section p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--light-green);
    border-top: 1px solid var(--border-light);
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(45, 95, 63, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--accent-green);
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.blog-category {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: var(--text-gray);
}

.blog-title {
    margin-bottom: 16px;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.blog-title a:hover {
    color: var(--primary-green);
}

.blog-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
    display: inline-block;
}

.blog-read-more:hover {
    color: var(--accent-green);
}

.blog-cta {
    text-align: center;
}

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
    background: white;
}

.product-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.breadcrumb a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--primary-green);
}

.breadcrumb .separator {
    margin: 0 10px;
    color: var(--border-light);
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 500;
}

/* Product Detail Grid */
.product-detail-grid {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 100px;
    align-self: start;
}

.main-image {
    background: var(--light-green);
    border: 2px solid var(--border-light);
    border-radius: 0;
    overflow: hidden;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-placeholder {
    text-align: center;
}

.placeholder-icon.large {
    font-size: 120px;
    color: var(--accent-green);
    margin-bottom: 20px;
}

/* Product Info */
.product-header {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.product-category-badge,
.product-type-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-green);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-type-badge {
    background: var(--accent-green);
}

/* Kratom Color-specific badges */
.product-type-badge.kratom-green {
    background: var(--primary-green); /* Use site's primary green */
}

.product-type-badge.kratom-white {
    background: #f5f5f5; /* Light gray/white */
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.product-type-badge.kratom-red {
    background: #af4040; /* Muted red */
}

.product-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

.price-label {
    font-size: 18px;
    color: var(--text-gray);
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
}

.product-description-box {
    margin-bottom: 40px;
}

.product-description-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.product-description-box p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quantity-selector label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-light);
    border-radius: 0;
}

.quantity-minus,
.quantity-plus {
    width: 44px;
    height: 44px;
    border: none;
    background: var(--light-green);
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.quantity-minus:hover,
.quantity-plus:hover {
    background: var(--primary-green);
    color: white;
}

.quantity-controls input {
    width: 60px;
    height: 44px;
    border: none;
    border-left: 2px solid var(--border-light);
    border-right: 2px solid var(--border-light);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.add-to-cart-large {
    flex: 1;
    max-width: 400px;
    height: 56px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.add-to-cart-large:hover {
    background: var(--accent-green);
}

/* Product Details */
.product-details {
    margin-bottom: 40px;
}

.product-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.details-list {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
}

.details-list dt {
    font-weight: 600;
    color: var(--text-dark);
}

.details-list dd {
    color: var(--text-gray);
    margin: 0;
}

.availability.in-stock {
    color: var(--primary-green);
    font-weight: 600;
}

.availability.out-of-stock {
    color: #f44336;
    font-weight: 600;
}

/* Product Attributes */
.product-attributes {
    background: var(--light-green);
    padding: 32px;
    border: 1px solid var(--border-light);
    border-radius: 0;
}

.product-attributes h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.product-attributes .note {
    font-style: italic;
    color: var(--text-gray);
}

/* Product Features Section */
.product-features {
    padding: 60px 0;
    background: var(--light-green);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

/* Related Products */
.related-products {
    padding: 80px 0;
    background: white;
}

.related-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-products .products-grid {
    justify-content: center;
}

/* Shop Page Styles */
.page-hero {
    background: var(--light-green);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-light);
}

.page-header-content {
    text-align: left;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin: 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.filters-sidebar {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.filter-section {
    margin-bottom: 32px;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.product-type-filters {
    border-top: 2px solid var(--light-green);
    padding-top: 24px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.2s ease;
}

.filter-option:hover {
    background-color: var(--light-green);
}

.filter-option.active {
    background-color: var(--primary-green);
    color: white;
}

.filter-option.active .filter-text {
    color: white;
}

.filter-option input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-green);
}

.filter-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.shop-main {
    min-height: 600px;
}

.shop-main .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
    gap: 32px;
    margin-top: 0;
    justify-content: start;
}

/* No Products Message */
.no-products-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--light-green);
    border: 2px dashed var(--border-light);
    border-radius: 0;
}

.no-products-message p {
    font-size: 18px;
    color: var(--text-gray);
    margin: 0;
}

/* No Products Home */
.no-products-home {
    grid-column: span 3;
    background: var(--light-green);
    border: 2px dashed var(--border-light);
    border-radius: 0;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.no-products-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.no-products-home h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.no-products-home p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

/* Responsive Design */

/* Responsive Blog Section */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-card {
        display: grid;
        grid-template-columns: 300px 1fr;
    }
    
    .blog-image {
        height: 100%;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-grid {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .blog-card {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 24px;
    }
    
    .blog-title a {
        font-size: 20px;
    }
}

/* Responsive Product Detail */
@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-images {
        position: static;
    }
    
    .main-image {
        height: 400px;
    }
    
    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .add-to-cart-large {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .product-name {
        font-size: 28px;
    }
    
    .price-value {
        font-size: 28px;
    }
    
    .main-image {
        height: 300px;
    }
    
    .placeholder-icon.large {
        font-size: 80px;
    }
    
    .details-list {
        grid-template-columns: 120px 1fr;
        gap: 12px;
        font-size: 14px;
    }
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .about-images-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text .about-heading {
        text-align: center;
    }
    
    .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-page-content {
        padding: 60px 0;
    }
    
    .about-main-section,
    .about-values-section,
    .about-story-section {
        margin-bottom: 60px;
    }
    
    .about-heading {
        font-size: 28px;
    }
    
    .about-paragraph {
        font-size: 16px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .about-cta-section {
        padding: 40px 20px;
    }
}

/* Responsive About Section */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        min-height: auto;
    }
    
    .about-text {
        padding: 40px 20px;
    }
    
    .about-image {
        order: -1;
        min-height: 300px;
        border-left: none;
        border-bottom: 1px solid var(--border-light);
    }
}

@media (max-width: 768px) {
    .about-text {
        padding: 30px 20px;
    }
    
    .about-image {
        min-height: 250px;
    }
    
    .placeholder-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
}

/* Responsive Shop Layout */
@media (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .filters-sidebar {
        position: static;
        order: -1;
    }
    
    .filter-options {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-option {
        border: 1px solid var(--border-light);
        border-radius: 20px;
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .shop-main .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* General Responsive */
@media (max-width: 1024px) {
    .hero-categories {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        height: 280px;
    }
    
    .category-card {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .product-card {
        height: 517px;
    }
    
    .no-products-home {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-categories {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 100px);
        height: 320px;
        gap: 10px;
    }
    
    .cat-kratom,
    .cat-cbd,
    .cat-kava,
    .cat-doplnky,
    .cat-byliny,
    .cat-adaptogeny {
        grid-column: span 1;
        grid-row: span 1;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        height: 487px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}