/* Products Search Section */
.products-search-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef9e7 0%, #faf6ee 50%, #f4efe5 100%);
    border-bottom: 1px solid rgba(74, 124, 62, 0.1);
    overflow: hidden;
}

.products-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 124, 62, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 196, 105, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.products-search-section .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.products-search-form {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem 4rem;
    border-radius: 1.5rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(74, 124, 62, 0.1);
}

.search-form-grid {
    display: grid;
    grid-template-columns: 5fr 2.5fr 3fr 2.5fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.search-actions-wrapper {
    grid-column: 5;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    width: 1.5rem;
    height: 1.5rem;
    stroke: rgba(31, 31, 31, 0.5);
    fill: none;
    stroke-width: 2;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 4rem;
    border: 2px solid rgba(74, 124, 62, 0.2);
    border-radius: 1rem;
    font-size: 1.1rem;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-height: 3.5rem;
}

.search-input:focus {
    border-color: #E8C469;
    box-shadow: 
        0 0 0 4px rgba(232, 196, 105, 0.15),
        0 4px 12px rgba(232, 196, 105, 0.2);
    transform: translateY(-1px);
}

.search-clear-btn {
    position: absolute;
    right: 1rem;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 2;
}

.search-clear-btn:hover {
    background: rgba(31, 31, 31, 0.1);
}

.search-clear-btn svg {
    width: 1rem;
    height: 1rem;
    stroke: rgba(31, 31, 31, 0.6);
    fill: none;
    stroke-width: 2;
}

.filter-select-wrapper {
    position: relative;
}

.filter-select {
    width: 100%;
    padding: 1.25rem 3rem 1.25rem 1.5rem;
    border: 2px solid rgba(74, 124, 62, 0.2);
    border-radius: 1rem;
    font-size: 1.1rem;
    font-family: inherit;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%234A7C3E' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-height: 3.5rem;
}

.filter-select:hover {
    border-color: rgba(74, 124, 62, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.filter-select:focus {
    border-color: #E8C469;
    box-shadow: 
        0 0 0 4px rgba(232, 196, 105, 0.15),
        0 4px 12px rgba(232, 196, 105, 0.2);
    transform: translateY(-1px);
}

.price-range-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.price-input {
    flex: 1;
    min-width: 0;
    padding: 1.25rem 1.75rem;
    border: 2px solid rgba(74, 124, 62, 0.2);
    border-radius: 1rem;
    font-size: 1.1rem;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-height: 3.5rem;
    width: 100%;
}

.price-input:focus {
    border-color: #E8C469;
    box-shadow: 
        0 0 0 4px rgba(232, 196, 105, 0.15),
        0 4px 12px rgba(232, 196, 105, 0.2);
    transform: translateY(-1px);
}

.price-separator {
    color: rgba(31, 31, 31, 0.5);
    font-weight: 500;
    font-size: 1.25rem;
    padding: 0 0.5rem;
    flex-shrink: 0;
}

.search-submit-btn {
    flex: 1;
    padding: 1.25rem 3.5rem;
    background: linear-gradient(135deg, #E8C469 0%, #d4af37 100%);
    color: #1F1F1F;
    border: none;
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 
        0 4px 12px rgba(232, 196, 105, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 3.5rem;
}

.search-clear-filters-btn {
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    color: #1F1F1F;
    border: 2px solid rgba(74, 124, 62, 0.2);
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-height: 3.5rem;
    flex-shrink: 0;
}

.search-clear-filters-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(74, 124, 62, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.search-clear-filters-btn:active {
    transform: translateY(0);
}

.search-clear-filters-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.search-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.search-submit-btn:hover::before {
    left: 100%;
}

.search-submit-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #c19a2e 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(232, 196, 105, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.search-submit-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(232, 196, 105, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.1);
}

.search-submit-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Active Filters */
.active-filters {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(31, 31, 31, 0.1);
}

.active-filters-label {
    font-size: 0.875rem;
    color: rgba(31, 31, 31, 0.6);
    margin-bottom: 0.75rem;
    display: block;
}

.active-filters-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(232, 196, 105, 0.2) 0%, rgba(232, 196, 105, 0.15) 100%);
    border: 1px solid rgba(232, 196, 105, 0.4);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1F1F1F;
    box-shadow: 0 2px 8px rgba(232, 196, 105, 0.15);
    transition: all 0.2s ease;
}

.filter-tag:hover {
    background: linear-gradient(135deg, rgba(232, 196, 105, 0.25) 0%, rgba(232, 196, 105, 0.2) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 196, 105, 0.2);
}

.filter-tag-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: rgba(31, 31, 31, 0.1);
    color: #1F1F1F;
    text-decoration: none;
    font-size: 1.25rem;
    line-height: 1;
    transition: all 0.2s ease;
}

.filter-tag-remove:hover {
    background: rgba(31, 31, 31, 0.2);
    transform: scale(1.1);
}

.clear-all-filters {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(31, 31, 31, 0.2);
    border-radius: 999px;
    font-size: 0.875rem;
    color: rgba(31, 31, 31, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.clear-all-filters:hover {
    background: rgba(31, 31, 31, 0.05);
    border-color: rgba(31, 31, 31, 0.3);
}

/* Responsive Search Form */
@media (max-width: 1200px) {
    .search-form-grid {
        grid-template-columns: 3fr 2fr 2.5fr 2fr auto;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .search-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    
    .search-input-wrapper {
        grid-column: 1 / -1;
    }
    
    .price-range-wrapper {
        grid-column: 1 / -1;
    }
    
    .search-actions-wrapper {
        grid-column: 1 / -1;
        display: flex;
        gap: 1rem;
    }
    
    .search-submit-btn {
        flex: 1;
        justify-content: center;
    }
    
    .search-clear-filters-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .products-search-section {
        padding: 1.5rem 0;
    }
    
    .products-search-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .products-search-form {
        padding: 1.5rem 1.25rem;
        border-radius: 1rem;
    }
    
    .search-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-input-wrapper {
        margin-bottom: 0;
    }
    
    .search-icon {
        left: 1rem;
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .search-input {
        padding: 0.875rem 1rem 0.875rem 3.25rem;
        font-size: 1rem;
        border-radius: 0.75rem;
        min-height: 3rem;
        border-width: 1.5px;
    }
    
    .search-clear-btn {
        right: 0.75rem;
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .search-clear-btn svg {
        width: 0.875rem;
        height: 0.875rem;
    }
    
    .filter-select {
        padding: 0.875rem 2.5rem 0.875rem 1.25rem;
        font-size: 1rem;
        border-radius: 0.75rem;
        min-height: 3rem;
        border-width: 1.5px;
        background-position: right 1rem center;
    }
    
    .price-range-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .price-input {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
        border-radius: 0.75rem;
        min-height: 3rem;
        border-width: 1.5px;
    }
    
    .price-separator {
        display: none;
    }
    
    .search-actions-wrapper {
        display: flex;
        gap: 0.75rem;
        flex-direction: column;
    }
    
    .search-submit-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        border-radius: 0.75rem;
        min-height: 3rem;
        width: 100%;
        justify-content: center;
    }
    
    .search-submit-btn svg {
        width: 1.125rem;
        height: 1.125rem;
    }
    
    .search-clear-filters-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        border-radius: 0.75rem;
        min-height: 3rem;
        width: 100%;
        justify-content: center;
        border-width: 1.5px;
    }
    
    .search-clear-filters-btn svg {
        width: 1.125rem;
        height: 1.125rem;
    }
    
    .active-filters {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }
    
    .active-filters-label {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }
    
    .active-filters-tags {
        gap: 0.5rem;
    }
    
    .filter-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
        border-radius: 999px;
    }
    
    .filter-tag-remove {
        width: 1.125rem;
        height: 1.125rem;
        font-size: 1.125rem;
    }
    
    .clear-all-filters {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .products-search-section {
        padding: 1.25rem 0;
    }
    
    .products-search-section .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .products-search-form {
        padding: 1.25rem 1rem;
        border-radius: 0.875rem;
    }
    
    .search-form-grid {
        gap: 0.875rem;
    }
    
    .search-icon {
        left: 0.875rem;
        width: 1.125rem;
        height: 1.125rem;
    }
    
    .search-input {
        padding: 0.75rem 0.875rem 0.75rem 2.875rem;
        font-size: 0.9375rem;
        min-height: 2.75rem;
        border-radius: 0.625rem;
    }
    
    .search-clear-btn {
        right: 0.625rem;
        width: 1.375rem;
        height: 1.375rem;
    }
    
    .filter-select {
        padding: 0.75rem 2.25rem 0.75rem 1rem;
        font-size: 0.9375rem;
        min-height: 2.75rem;
        border-radius: 0.625rem;
        background-position: right 0.875rem center;
    }
    
    .price-input {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
        min-height: 2.75rem;
        border-radius: 0.625rem;
    }
    
    .search-actions-wrapper {
        gap: 0.625rem;
    }
    
    .search-submit-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.9375rem;
        min-height: 2.75rem;
        border-radius: 0.625rem;
    }
    
    .search-submit-btn svg {
        width: 1rem;
        height: 1rem;
    }
    
    .search-clear-filters-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        min-height: 2.75rem;
        border-radius: 0.625rem;
        border-width: 1.5px;
    }
    
    .search-clear-filters-btn svg {
        width: 1rem;
        height: 1rem;
    }
    
    .active-filters {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .active-filters-label {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .active-filters-tags {
        gap: 0.375rem;
    }
    
    .filter-tag {
        padding: 0.4375rem 0.875rem;
        font-size: 0.75rem;
    }
    
    .filter-tag-remove {
        width: 1rem;
        height: 1rem;
        font-size: 1rem;
    }
    
    .clear-all-filters {
        padding: 0.4375rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.no-results-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    stroke: rgba(31, 31, 31, 0.3);
    fill: none;
    stroke-width: 1.5;
}

.no-results-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 0.75rem;
}

.no-results-message {
    font-size: 1rem;
    color: rgba(31, 31, 31, 0.6);
    margin-bottom: 2rem;
}

.no-results-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #E8C469;
    color: #1F1F1F;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.no-results-btn:hover {
    background: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 196, 105, 0.3);
}

/* Products Hero Section */
.products-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.products-hero-background {
    position: absolute;
    inset: 0;
}

.products-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(59, 47, 47, 0.8) 0%, rgba(74, 124, 62, 0.6) 50%, rgba(59, 47, 47, 0.8) 100%);
    z-index: 10;
}

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

.products-hero-blurs {
    position: absolute;
    inset: 0;
    z-index: 15;
    pointer-events: none;
    overflow: hidden;
}

.products-hero-blur {
    position: absolute;
    bottom: 0;
    width: 10rem;
    height: 10rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(3rem);
    opacity: 0.2;
}

.products-hero-blur-1 {
    transform: translateX(10%) translateY(-1.71px) scale(1.01);
}

.products-hero-blur-2 {
    transform: translateX(22%) translateY(-319.16px) scale(2.6);
}

.products-hero-blur-3 {
    transform: translateX(34%) translateY(-201.21px) scale(2.01);
}

.products-hero-blur-4 {
    transform: translateX(46%) translateY(-172.66px) scale(1.86);
}

.products-hero-blur-5 {
    transform: translateX(58%) translateY(-125.17px) scale(1.63);
}

.products-hero-blur-6 {
    transform: translateX(70%) translateY(-76.25px) scale(1.38);
}

.products-hero-blur-7 {
    transform: translateX(82%) translateY(-30px) scale(1.15);
}

.products-hero-blur-8 {
    transform: translateX(94%);
}

.products-hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    color: white;
    padding: 0 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

.products-hero-title {
    font-family: 'Lobster', cursive;
    font-size: 3.75rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 400;
}

.products-hero-subtitle {
    font-family: 'Lobster', cursive;
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: #E8C469;
    opacity: 1;
    font-weight: 400;
}

.products-hero-tagline {
    font-family: 'Lobster', cursive;
    font-size: 1.25rem;
    color: rgba(248, 246, 240, 0.95);
    opacity: 1;
    font-weight: 400;
}

.special-collection {
    background: #ffffff;
    padding: 6rem 0;
}

.special-header {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto 4rem;
}

.special-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2E5939;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.special-divider {
    width: 10rem;
    height: 5px;
    margin: 0 auto 1.5rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #4A7C3E 0%, #E8C469 50%, #4A7C3E 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(232, 196, 105, 0.3);
}

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

.special-subtitle {
    font-size: 1.125rem;
    color: rgba(59, 47, 47, 0.7);
    line-height: 1.7;
}

.special-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.special-card {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 3rem;
    background: #ffffff;
    border-radius: 2rem;
    padding: 3.5rem;
    border: 2px solid transparent;
    box-shadow: 
        0 20px 60px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(74, 124, 62, 0.1);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.special-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 196, 105, 0.05) 0%, rgba(74, 124, 62, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.special-card > * {
    position: relative;
    z-index: 1;
}

.special-card:nth-child(even) {
    flex-direction: row-reverse;
}

.special-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 
        0 40px 100px rgba(15, 23, 42, 0.15),
        0 0 0 1px rgba(232, 196, 105, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(232, 196, 105, 0.4);
}

.special-card:hover::before {
    opacity: 1;
}

.special-card-media {
    position: relative;
    flex: 1 1 42%;
    min-height: 300px;
    border-radius: 1.6rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f7f5f1 0%, #f1f0eb 100%);
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.special-card:hover .special-card-media {
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: scale(1.02);
}

.product-images-container {
    border-radius: 1.6rem 1.6rem 0 0;
    overflow: hidden;
}

.product-card-thumbnails {
    border-radius: 0 0 1.6rem 1.6rem;
    overflow: hidden;
}

.product-images-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 14, 20, 0) 10%, rgba(12, 14, 20, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
    pointer-events: none;
}

.special-card:hover .product-images-container::after {
    opacity: 1;
}

/* Product Images Container */
.product-images-container {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
}

.product-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.product-card-image.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.special-card:hover .product-card-image.active {
    transform: scale(1.06);
}

/* Thumbnail Carousel */
.product-card-thumbnails {
    position: relative;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10;
    flex-shrink: 0;
    margin-top: auto;
}

.product-thumbnails-track {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(31, 31, 31, 0.2) transparent;
    padding: 0.25rem;
    -webkit-overflow-scrolling: touch;
}

.product-thumbnails-track::-webkit-scrollbar {
    height: 4px;
}

.product-thumbnails-track::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 2px;
}

.product-thumbnails-track::-webkit-scrollbar-thumb {
    background: rgba(31, 31, 31, 0.2);
    border-radius: 2px;
}

.product-thumbnails-track::-webkit-scrollbar-thumb:hover {
    background: rgba(31, 31, 31, 0.4);
}

.product-thumbnail {
    position: relative;
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f5f5f5;
    flex-shrink: 0;
}

.product-thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-thumbnail.active {
    border-color: #E8C469;
    box-shadow: 0 0 0 2px rgba(232, 196, 105, 0.3);
}

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

.product-thumbnails-indicator {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: rgba(31, 31, 31, 0.6);
    font-weight: 500;
}

.thumbnails-count {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.current-thumb {
    color: #E8C469;
    font-weight: 600;
}

/* Responsive Thumbnails */
@media (max-width: 768px) {
    .product-thumbnail {
        min-width: 45px;
        width: 45px;
        height: 45px;
    }
    
    .product-card-thumbnails {
        padding: 0.5rem;
    }
    
    .product-thumbnails-indicator {
        font-size: 0.7rem;
        margin-top: 0.375rem;
    }
}

@media (min-width: 1024px) {
    .product-thumbnail {
        min-width: 55px;
        width: 55px;
        height: 55px;
    }
}

.special-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    color: #1F1F1F;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    text-transform: uppercase;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(232, 196, 105, 0.2);
    border: 1px solid rgba(232, 196, 105, 0.3);
    transition: all 0.3s ease;
    z-index: 5;
}

.special-card:hover .special-badge {
    background: linear-gradient(135deg, rgba(232, 196, 105, 0.2) 0%, rgba(232, 196, 105, 0.15) 100%);
    border-color: rgba(232, 196, 105, 0.5);
    box-shadow: 
        0 12px 32px rgba(232, 196, 105, 0.25),
        0 0 0 1px rgba(232, 196, 105, 0.3);
    transform: scale(1.05);
}

.special-badge svg {
    width: 0.9rem;
    height: 0.9rem;
    stroke: #1F1F1F;
    fill: none;
    stroke-width: 2;
}

.special-card-body {
    flex: 1 1 58%;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    color: #1F1F1F;
}

.special-card-heading {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.special-card-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(34, 34, 34, 0.6);
}

.special-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1F1F1F;
    letter-spacing: 0.01em;
}

.special-card-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(31, 31, 31, 0.75);
    max-width: 32rem;
}

.special-meta {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    padding: 0.75rem 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.special-meta-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.special-meta-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(232, 196, 105, 0.15) 0%, rgba(74, 124, 62, 0.1) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 196, 105, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.special-card:hover .special-meta-icon {
    background: linear-gradient(135deg, rgba(232, 196, 105, 0.25) 0%, rgba(74, 124, 62, 0.15) 100%);
    border-color: rgba(232, 196, 105, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.special-meta-icon svg {
    width: 1rem;
    height: 1rem;
    stroke: #1F1F1F;
    fill: none;
    stroke-width: 1.65;
}

.special-meta-label {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(31, 31, 31, 0.55);
    margin-bottom: 0.3rem;
}

.special-meta-value {
    font-size: 0.95rem;
    color: rgba(31, 31, 31, 0.85);
}

.special-card-footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.75rem;
}

.special-price-label {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(31, 31, 31, 0.5);
    margin-bottom: 0.4rem;
}

.special-price-value {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E8C469 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.special-price-weight {
    font-size: 0.8rem;
    color: rgba(31, 31, 31, 0.55);
}

.special-button {
    padding: 1rem 2.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(232, 196, 105, 0.1) 0%, rgba(232, 196, 105, 0.05) 100%);
    color: #1F1F1F;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border: 2px solid rgba(232, 196, 105, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(232, 196, 105, 0.15);
    position: relative;
    overflow: hidden;
}

.special-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.special-button:hover::before {
    left: 100%;
}

.special-button:hover {
    background: linear-gradient(135deg, #E8C469 0%, #d4af37 100%);
    border-color: #E8C469;
    color: #1F1F1F;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(232, 196, 105, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.special-button:active {
    transform: translateY(0);
}

.special-button svg {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.special-button:hover {
    color: #ffffff;
    background: #1F1F1F;
    border-color: #1F1F1F;
}

/* Responsive */
@media (min-width: 1024px) {
    .products-hero-title {
        font-size: 4.5rem;
    }
    
    .products-hero-subtitle {
        font-size: 2.5rem;
    }
}

@media (max-width: 1023px) {
    .products-hero {
        min-height: 450px;
        height: 80vh;
    }
}

@media (max-width: 767px) {
    .products-hero {
        min-height: 400px;
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .products-hero-title {
        font-size: 2.5rem;
    }
    
    .products-hero-subtitle {
        font-size: 1.75rem;
    }
    
    .products-hero-tagline {
        font-size: 1rem;
    }
}

@media (max-width: 1200px) {
    .special-card {
        padding: 2.25rem;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .special-title {
        font-size: 2.5rem;
    }

    .special-card {
        flex-direction: column;
        padding: 2.25rem;
    }

    .special-card:nth-child(even) {
        flex-direction: column;
    }

    .special-card-media {
        min-height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 1.75rem;
    }

    .special-card-footer {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .special-grid {
        gap: 2rem;
    }

    .special-card {
        padding: 2rem;
    }

    .special-card:nth-child(even) {
        flex-direction: column;
    }

    .special-card-title {
        font-size: 2.2rem;
    }

    .special-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

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

@media (max-width: 576px) {
    .special-collection {
        padding: 4rem 0;
    }

    .special-card {
        padding: 1.75rem;
        border-radius: 1.75rem;
    }

    .special-card-media {
        min-height: auto;
        aspect-ratio: 4 / 3;
    }

    .special-card-footer {
        width: 100%;
        gap: 1rem;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(74, 124, 62, 0.95) 0%, 
        rgba(232, 196, 105, 0.9) 50%, 
        rgba(74, 124, 62, 0.95) 100%);
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 196, 105, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-family: 'Lobster', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.cta-subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: #FFFFFF;
    color: #2E5939;
    border: 2px solid #FFFFFF;
    border-radius: 999px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Noto Sans', sans-serif;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 124, 62, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-section .btn:hover::before {
    left: 100%;
}

.cta-section .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-section .btn:active {
    transform: translateY(0);
}

.cta-section .btn-white {
    background: #FFFFFF;
    color: #2E5939;
}

.cta-section .btn-white:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1F3D2A;
}

/* Responsive CTA */
@media (max-width: 1024px) {
    .cta-section {
        padding: 5rem 0;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content {
        padding: 0 1.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .cta-section .btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3.5rem 0;
    }
    
    .cta-content {
        padding: 0 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .cta-section .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
