/*
Theme Name: Dabble Extracts Theme
Theme URI: https://example.com/dabble-extracts-theme
Author: Your Name
Author URI: https://example.com/
Description: A custom theme for Dabble Extracts, designed with luxury and 3D animation in mind.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-logo, custom-menu, featured-images, theme-options, one-column, blog, right-sidebar, accessibility-ready
Text Domain: dabbleextractstheme
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
MODULAR CSS ARCHITECTURE:
This theme uses a modular CSS approach with conditional loading.
Base files (variables, typography, utilities) are loaded globally.
Page-specific and component styles are loaded conditionally.

REMAINING IN THIS FILE:
# Store Locator Components
# Deals Page Components  
# Products Page Components
# Single Product Components
# Standard Page Components
# Blog/Archive Components
# Header & Navigation (legacy)
# Brand Story Section
# Site-specific Animation Components
# Archive Product Page Components
# Store Location Components
# Product Type Pages
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic (Layout & Utilities)
--------------------------------------------------------------*/
.site-content {
    padding: 20px;
}

/*--------------------------------------------------------------
# Store Locator
--------------------------------------------------------------*/
.store-locator-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    min-height: 600px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
}

@media (max-width: 1024px) {
    .store-locator-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Enhanced Store Controls */
.store-controls-enhanced {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 20px 20px 0 0;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: none;
    margin: -2em 0 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    z-index: 4;
    backdrop-filter: blur(10px);
}

.search-filters-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .search-filters-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Search Wrapper */
.search-wrapper {
    flex: 1;
    min-width: 300px;
}

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

.search-icon {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 20px;
    fill: #888;
    z-index: 2;
}

.store-search-input {
    width: 100%;
    background: #0d0d0d;
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    padding: 12px 16px 12px 44px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.store-search-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.store-search-input:focus + .search-icon {
    fill: #FFD700;
}

.store-search-input::placeholder {
    color: #666;
}

.clear-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.clear-search-btn svg {
    width: 16px;
    height: 16px;
    fill: #888;
}

.clear-search-btn:hover svg {
    fill: #FFD700;
}

/* Filter Wrapper */
.filter-wrapper {
    display: flex;
    gap: 1rem;
}

.filter-group {
    position: relative;
}

.enhanced-select {
    background: #0d0d0d;
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    min-width: 160px;
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
}

.enhanced-select:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.enhanced-select:hover:not(:disabled) {
    border-color: #555;
}

.enhanced-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.enhanced-select.loading {
    background-image: linear-gradient(
        45deg,
        transparent 25%,
        rgba(255, 215, 0, 0.1) 25%,
        rgba(255, 215, 0, 0.1) 50%,
        transparent 50%,
        transparent 75%,
        rgba(255, 215, 0, 0.1) 75%
    );
    background-size: 20px 20px;
    animation: loading-stripe 0.5s linear infinite;
}

@keyframes loading-stripe {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

/* Location Controls */
.location-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.location-input-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ZIP Code Input Styles */
.zip-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.zip-code-input {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    padding: 12px 45px 12px 16px;
    font-size: 14px;
    font-weight: 500;
    width: 200px;
    transition: all 0.3s ease;
}

.zip-code-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.zip-code-input::placeholder {
    color: #888;
}

.find-zip-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.find-zip-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-50%) scale(1.05);
}

.find-zip-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.find-zip-btn.loading {
    background: #666;
}

.find-zip-btn .search-icon {
    width: 16px;
    height: 16px;
    fill: #000;
}

.find-zip-btn.loading .search-icon {
    animation: spin 1s linear infinite;
}

.find-zip-btn.success {
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
}

.find-zip-btn.error {
    background: linear-gradient(135deg, #f44336, #d32f2f) !important;
}



.location-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.location-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.location-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.location-btn.loading {
    background: #666;
}

.location-btn.loading .location-icon {
    animation: spin 1s linear infinite;
}

.location-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

/* Enhanced location button states */
.location-btn.success {
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    animation: successPulse 0.6s ease-out;
}

.location-btn.error {
    background: linear-gradient(135deg, #f44336, #d32f2f) !important;
    animation: errorShake 0.6s ease-out;
}

/* Enhanced animations */
@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}



/* Location notification styles */
.location-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideInFromRight 0.3s ease-out;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.location-notification.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.location-notification.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
}

.location-notification.info {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
}

.notification-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.notification-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.notification-message {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: currentColor;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.notification-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.results-summary {
    text-align: right;
}

.results-count {
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
}

/* Active Filters */
.active-filters {
    background: rgba(255, 215, 0, 0.1);
    border-top: 1px solid #333;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-label {
    color: #FFD700;
    font-weight: 600;
    font-size: 14px;
}

.filter-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.filter-tag .remove-filter {
    background: none;
    border: none;
    color: #FFD700;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
}

.filter-tag .remove-filter:hover {
    color: #FFA500;
}

.filter-tag .remove-filter svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.clear-all-btn {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.clear-all-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

#store-locator-map {
    width: 100%;
    height: 500px; /* Fixed height for better control */
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
}

/* Smaller height for tablets */
@media (max-width: 1024px) {
    #store-locator-map {
        height: 450px;
    }
    
    .store-list-container {
        height: 450px; /* Match tablet map height */
    }
}

#store-locator-map:empty::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #333;
    border-top: 3px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#store-locator-map:empty::after {
    content: 'Loading map...';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    color: #FFD700;
    font-size: 14px;
    font-weight: 500;
}

.store-list-container {
    height: 500px; /* Match map height */
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #FFD700 #1a1a1a;
}

.store-list-container::-webkit-scrollbar {
    width: 8px;
}

.store-list-container::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.store-list-container::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}

.store-list-container::-webkit-scrollbar-thumb:hover {
    background: #FFA500;
}

.store-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.store-item {
    background: linear-gradient(135deg, #1c1c1c 0%, #252525 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: block;
}

.store-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.store-item:hover::before {
    transform: scaleX(1);
}

.store-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.store-item.hidden {
    display: none;
}

.store-item.visible {
    display: block;
}

.store-item.highlighted {
    border-color: #FFD700 !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4) !important;
    transform: translateY(-3px) !important;
}

.store-item.highlighted::before {
    transform: scaleX(1) !important;
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.store-name {
    margin: 0;
    color: #FFD700;
    font-size: 1.25rem;
    font-weight: 600;
}

.store-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4CAF50;
}

.status-indicator.closed {
    background: #f44336;
}

.status-text {
    color: #4CAF50;
    font-weight: 500;
}

.status-text.closed {
    color: #f44336;
}

.store-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #ccc;
    font-size: 0.95rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    width: 16px;
    height: 16px;
    fill: #FFD700;
    flex-shrink: 0;
}

.store-address,
.store-phone {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.store-phone:hover {
    color: #FFD700;
}

.store-actions {
    display: flex;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

.btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Loading State */
.store-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    color: #FFD700;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #333;
    border-top: 3px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty State */
.no-stores-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    text-align: center;
    color: #ccc;
}

.empty-state-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-stores-found h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.no-stores-found p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}



/*--------------------------------------------------------------
# Deals Page
--------------------------------------------------------------*/
.page-header {
    text-align: center;
    margin-bottom: 3em;
}
.page-description {
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
}

/* Featured Deal */
.featured-deal-section {
    margin-bottom: 4em;
    padding-bottom: 4em;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}
.featured-deal-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
    align-items: center;
}
@media (min-width: 768px) {
    .featured-deal-item {
        grid-template-columns: 1fr 1fr;
        gap: 4em;
    }
}
.featured-deal-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}
.featured-deal-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}
.featured-deal-title {
    font-size: 3em;
    margin-top: 0;
}
.featured-deal-description {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 2em;
}



/* Deals Grid */
.deals-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2em;
}
.deal-item {
    background-color: #0d0d0d;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.deal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.deal-thumbnail {
    position: relative;
}
.deal-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}
.deal-content {
    padding: 1.5em;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.deal-title {
    margin-top: 0;
    color: var(--color-accent-yellow);
}
.deal-description {
    color: #ccc;
    flex-grow: 1;
    margin-bottom: 1.5em;
}

/* Shared Deal Components */
.deal-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-accent-gold);
    color: var(--color-primary-black);
    padding: 5px 15px;
    font-weight: bold;
    font-size: 1em;
    border-bottom-right-radius: 8px;
    z-index: 1;
}
.deal-countdown {
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    margin-top: auto;
}
.deal-countdown-label {
    margin: 0 0 5px;
    font-size: 0.8em;
    color: #aaa;
    letter-spacing: 1px;
    font-weight: bold;
}
.deal-countdown-timer {
    margin: 0;
    font-size: 1.5em;
    color: #fff;
    font-weight: bold;
}

.no-deals-found {
    text-align: center;
    grid-column: 1 / -1; /* Span full width */
    font-size: 1.2em;
    padding: 3em 0;
}

/*--------------------------------------------------------------
# Products Page
--------------------------------------------------------------*/
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2em;
}

.product-item {
    background-color: #0d0d0d;
    border: 1px solid var(--color-accent-gold);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Make product-item a flex container */
    flex-direction: column; /* Stack its children (link wrapper or direct content) vertically */
}

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

.product-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.product-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.product-content {
    padding: 1em;
    display: flex; /* For flex controls of children */
    flex-direction: column; /* Stack children vertically */
    flex-grow: 1; /* Allow content to grow and fill space */
}

.product-title {
    margin-top: 0;
    margin-bottom: 0.5em; /* Added space below title */
    font-size: 1.2em;
    font-weight: bold;
}

.product-excerpt {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 1em; /* Space before the button */
    flex-grow: 1; /* Allow excerpt to take available space */
}

/* Ensure the wrapper link styling is minimal if it exists */
.product-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: flex; /* if product item is flex container */
    flex-direction: column; /* if product item is flex container */
    height: 100%; /* Ensure it fills the article */
}

/* Adjustments for product item to better contain flex children */
.product-item {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s ease-in-out;
    display: flex; /* Make product-item a flex container */
    flex-direction: column; /* Stack its children (link wrapper or direct content) vertically */
}

/*--------------------------------------------------------------
# Single Product Page
--------------------------------------------------------------*/
.single-product-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
    align-items: start;
}

@media (min-width: 768px) {
    .single-product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 3em;
    }
}

.single-product-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid var(--color-accent-gold);
}

.single-product-content .entry-title {
    margin-top: 0;
    font-size: 2.8em;
}

.single-product-content .entry-content {
    font-size: 1.1em;
    color: #ccc;
}

/*--------------------------------------------------------------
# Standard Page
--------------------------------------------------------------*/
.standard-page {
    max-width: 800px;
    margin: 0 auto; /* Center the content */
}

.standard-page .entry-title {
    font-size: 3em;
    text-align: center;
    margin-bottom: 1em;
}

.standard-page .entry-content p,
.standard-page .entry-content li,
.standard-page .entry-content blockquote {
    font-size: 1.1em;
    line-height: 1.7;
    color: #ddd;
}

.standard-page .entry-content a {
    text-decoration: underline;
}

.standard-page .entry-content a:hover {
    color: var(--color-accent-gold);
}

/*--------------------------------------------------------------
# Blog / Archives
--------------------------------------------------------------*/
.blog .standard-page, .archive .standard-page {
    max-width: 1100px;
}

.blog .post, .archive .post {
    background-color: #0d0d0d;
    border: 1px solid var(--color-accent-gold);
    border-radius: 5px;
    margin-bottom: 2em;
    padding: 2em;
}

.blog .entry-title, .archive .entry-title {
    text-align: left;
    font-size: 2em;
    margin-bottom: 0.5em;
}

.blog .entry-title a, .archive .entry-title a {
    text-decoration: none;
    color: var(--color-accent-yellow);
}

.blog .entry-title a:hover, .archive .entry-title a:hover {
    color: var(--color-accent-gold);
}

.post-meta {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 1em;
}

.post-meta .author-name {
    font-weight: bold;
}

.entry-content {
    color: #ccc;
}

/* Oozing Dabs Animation */

.oozing-dab {
    position: absolute;
    width: 40px;
    height: 50px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.8;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    pointer-events: none;
    transform-origin: center;
    transition: transform 0.3s ease-out;
    z-index: 1000;
}

.oozing-dab::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 25px;
    background: inherit;
    border-radius: 50% 50% 0 0;
    filter: blur(3px);
    opacity: 0.7;
}

.oozing-dab::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 20px;
    background: inherit;
    border-radius: 50% 50% 0 0;
    filter: blur(2px);
    opacity: 0.9;
}

/* Hero Drip SVG Oozing Effect */
.hero-drip-container {
    position: fixed;
    top: 80px; /* Position below header - adjust based on header height */
    left: 0;
    width: 100%;
    height: 120px; /* Adjust height as needed */
    z-index: 3;
    pointer-events: none;
    display: flex;
    overflow: hidden;
}

.drip-svg {
    flex-shrink: 0; /* Prevent SVGs from shrinking */
    width: auto;
    height: 100%;
}

/* Hide the original source SVG if it hasn't been hidden by JS yet */
#drip-source {
    display: none;
}

@media (max-width: 600px) {
    .hero-drip-container, .drip-svg {
        height: 80px;
    }
    .hero-drip-container {
        top: 80px; /* Smaller header height on mobile */
    }
}

.hero-drip-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px; /* match SVG height */
    background: url('drips.svg') repeat-x top left;
    background-size: auto 100%;
    z-index: 3;
    pointer-events: none;
}


.callout-block p {
    font-size: 1em !important;
    margin-bottom: 1em;
}


/*--------------------------------------------------------------
# Founder Section
--------------------------------------------------------------*/
.founder-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.founder-content {
    padding-left: 20px;
}

.founder-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--color-accent-gold);
}

.founder-title {
    font-size: 1.2rem;
    color: var(--color-accent-yellow);
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.founder-quote {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 30px;
    border-left: 4px solid var(--color-accent-gold);
    border-radius: 8px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-neutral-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.founder-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: var(--color-accent-gold);
    font-size: 1rem;
}

/* Responsive Design for Founder Section */
@media screen and (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder-content {
        padding-left: 0;
    }

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

    .founder-quote {
        padding: 20px;
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .founder-section {
        padding: 60px 0;
    }

    .founder-content .section-title {
        font-size: 1.8rem;
    }

    .founder-title {
        font-size: 1rem;
    }

    .founder-content p {
        font-size: 1rem;
    }

    .founder-quote {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Single Continuous Viscous Fluid Effect
--------------------------------------------------------------*/
.concentrate-canvas {
    position: fixed;
    pointer-events: none;
    z-index: 1000;    mix-blend-mode: normal;
    opacity: 1;
}

/* Ensure header is above the dripping effect */
.site-header {
    position: relative;
    z-index: 10000;
    background-color: var(--color-primary-black);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/*--------------------------------------------------------------
>>> Responsive & Mobile Optimizations
--------------------------------------------------------------*/
@media (max-width: 768px) {
    /* --- Store Locator Mobile --- */
    .store-locator-container {
        gap: 1rem;
    }

    .store-controls-enhanced {
        margin-bottom: 1rem;
    }

    .search-filters-row {
        padding: 1rem;
        gap: 1rem;
    }

    .search-wrapper {
        min-width: auto;
    }

    .store-search-input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 10px 14px 10px 38px;
    }

    .search-icon {
        width: 18px;
        height: 18px;
        left: 10px;
    }

    .filter-wrapper {
        flex-direction: column;
        gap: 0.5rem;
    }

    .enhanced-select {
        min-width: auto;
        width: 100%;
        padding: 10px 14px;
        font-size: 14px;
    }

    .location-controls {
        align-items: stretch;
    }

    .location-input-group {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .zip-input-container {
        width: 100%;
    }

    .zip-code-input {
        width: 100%;
        padding: 14px 45px 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }



    .location-btn {
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
        width: 100%;
    }

    .results-summary {
        text-align: center;
    }

    .active-filters {
        padding: 0.75rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .filter-tags {
        width: 100%;
    }

    .clear-all-btn {
        margin-left: 0;
        align-self: flex-end;
    }

    /* Mobile responsive notifications */
    .location-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification-content {
        padding: 12px 16px;
    }
    
    .notification-message {
        font-size: 13px;
    }

    #store-locator-map {
        height: 380px;
        border-radius: 8px;
    }

    .store-list-container {
        height: 380px; /* Match mobile map height */
        padding-right: 8px;
    }

    .store-item {
        padding: 1.25rem;
    }

    .store-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .store-name {
        font-size: 1.1rem;
    }

    .detail-item {
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .detail-icon {
        width: 14px;
        height: 14px;
    }

    .store-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn {
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    /* General responsive adjustments */
    .page-header .page-title {
        font-size: 2rem;
    }

    /* --- Homepage Sections Mobile --- */
    .hero-title {
        font-size: 2.5em;
    }

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

    .brand-story-content,
    .store-locator-content {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .brand-story-text .section-title,
    .featured-products-section .section-title,
    .why-choose-us-section .section-title,
    .store-locator-text .section-title,
    .newsletter-section .section-title {
        font-size: 2em;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5em;
    }

    /* Brand story specific mobile adjustments */
    .brand-story-section,
    .featured-products-section,
    .why-choose-us-section,
    .store-locator-preview-section,    .newsletter-section {
        padding: 4em 1em;
    }

    /* --- General Mobile Styles --- */
    .section-title {
        font-size: 2.5em;
    }

    .entry-title {
        font-size: 2em;
    }

    .entry-content {
        font-size: 1.1em;
    }

    .post-meta {
        font-size: 0.8em;
    }

    /* Adjust any other global styles for mobile here */
}

/*--------------------------------------------------------------
>>> Header & Navigation
--------------------------------------------------------------*/
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--color-background-site); /* Assuming you have a black background */
}

.site-branding .custom-logo {
    max-height: 150px; /* Increased to match our main logo rule */
    width: auto;
}

.site-title {
    color: var(--color-accent-gold);
    text-decoration: none;
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--color-neutral-white);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--color-accent-gold);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Above the overlay */
}

.mobile-menu-toggle .hamburger-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-neutral-white);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .main-navigation {
        display: none; /* Hide desktop nav */
    }

    .main-navigation.toggled {
        display: block; /* Show mobile nav */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        z-index: 1000;
        padding-top: 80px; /* Space for header */
    }

    .main-navigation.toggled ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .main-navigation.toggled a {
        font-size: 1.5rem;
        padding: 1rem 0;
    }

    .mobile-menu-toggle {
        display: block; /* Show hamburger */
    }

    /* Animate hamburger to an 'X' */
    .mobile-menu-toggle.toggled .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.toggled .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.toggled .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Prevent scrolling when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
}

/* Fallback background for hero video */
.hero-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 50%, #8B7355 100%);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/*--------------------------------------------------------------
# Brand Story Section
--------------------------------------------------------------*/
.brand-story-section {
    padding: 6em 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d2d2d 50%, #1a1a1a 75%, #000000 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.brand-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-yellow) 50%, var(--color-gold) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

.brand-story-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}



.brand-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5em;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
    position: relative;
    z-index: 2;
}

.brand-story-text .section-title {
    color: var(--color-gold);
    margin-bottom: 1.5em;
    font-size: 3.2em;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
}

.brand-story-text .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-yellow));
    border-radius: 2px;
}

.brand-story-description {
    font-size: 1.3em;
    line-height: 1.8;
    margin-bottom: 2.5em;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.brand-story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.brand-story-image {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 215, 0, 0.3);
}

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

.brand-story-image:hover .story-image {
    transform: scale(1.05);
}

.brand-story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    pointer-events: none;
}

/*--------------------------------------------------------------
# Featured Products Section
--------------------------------------------------------------*/
.featured-products-section {
    padding: 5em 0;
    background: var(--color-white);
}

.featured-products-section .section-title {
    text-align: center;
    color: var(--color-black);
    margin-bottom: 3em;
    font-size: 2.8em;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5em;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
}

.product-item {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent-gold);
}

.product-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.product-item:hover .product-thumbnail img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5em;
}

.product-title {
    margin: 0 0 1em 0;
    font-size: 1.3em;
    line-height: 1.3;
}

.product-title a {
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.product-types {
    margin-bottom: 1em;
}

.product-type-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--color-gold), var(--color-yellow));
    color: var(--color-black);
    padding: 0.3em 0.8em;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    margin-right: 0.5em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-excerpt {
    color: #666;
    margin-bottom: 1.5em;
    line-height: 1.6;
}

/* Placeholder styling for when the brand image doesn't exist */
.brand-story-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 16px;
}

.placeholder-content {
    text-align: center;
    color: rgba(255, 215, 0, 0.8);
}

.placeholder-icon {
    font-size: 3em;
    margin-bottom: 0.5em;
    opacity: 0.6;
}

.placeholder-content p {
    margin: 0.5em 0;
    font-weight: 600;
    color: rgba(255, 215, 0, 0.9);
}

.placeholder-content small {
    font-size: 0.8em;
    opacity: 0.7;
    font-family: monospace;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-choose-us-section {
    padding: 5em 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
    position: relative;
    z-index: 1;
}

.why-choose-us-section .section-title {
    text-align: center;
    color: var(--color-accent-gold);
    margin-bottom: 3em;
    font-size: 2.8em;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5em;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2.5em 1.5em;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: var(--color-accent-gold);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-black), #2a2a2a);
    border: 2px solid var(--color-accent-gold);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

/* Feature Icons - Custom SVG Icons */
.icon-quality,
.icon-extraction,
.icon-local,
.icon-variety {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.icon-quality {
    background-image: url('./assets/images/icon-quality.svg');
}

.icon-extraction {
    background-image: url('./assets/images/icon-extraction.svg');
}

.icon-local {
    background-image: url('./assets/images/icon-local.svg');
}

.icon-variety {
    background-image: url('./assets/images/icon-variety.svg');
}

.feature-item:hover .icon-quality,
.feature-item:hover .icon-extraction,
.feature-item:hover .icon-local,
.feature-item:hover .icon-variety {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

@keyframes shimmer-icon {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.05);
    }
}

.feature-title {
    font-size: 1.4em;
    color: var(--color-accent-gold);
    margin: 0 0 1em 0;
    font-weight: 600;
}

.feature-description {
    color: var(--color-neutral-white);
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/*--------------------------------------------------------------
# Store Locator Preview Section
--------------------------------------------------------------*/
.store-locator-preview-section {
    padding: 5em 0;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-yellow) 100%);
    position: relative;
    overflow: hidden;
}

.store-locator-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.store-locator-preview-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
    position: relative;
    z-index: 1;
}

.store-locator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    align-items: center;
}

.store-locator-text .section-title {
    color: var(--color-primary-black);
    margin-bottom: 1.5em;
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.2;
}

.store-locator-description {    color: var(--color-primary-black);
    font-size: 1.2em;
    line-height: 1.7;
    margin-bottom: 2.5em;
    opacity: 0.8;
}

.store-locator-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.map-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./assets/images/colorado-roads-map.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.map-pin {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg) !important;
    position: relative;
    z-index: 3;
    animation: pin-bounce 2s step-start infinite;
    /* Center the pin properly */
    margin-left: -20px;
    margin-top: -20px;
}

.map-pin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: black;
    border-radius: 50%;
}

.map-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.circle {
    position: absolute;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    animation: pulse 2.5s infinite ease-out;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
    animation-delay: 0s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    top: -60px;
    left: -60px;
    animation-delay: 0.8s;
}

.circle-3 {
    width: 160px;
    height: 160px;
    top: -80px;
    left: -80px;
    animation-delay: 1.6s;
}



/*--------------------------------------------------------------
# Newsletter Section
--------------------------------------------------------------*/
.newsletter-section {
    padding: 5em 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2em;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-content .section-title {
    color: var(--color-accent-gold);
    margin-bottom: 1em;
    font-size: 2.8em;
    font-weight: 700;
}

.newsletter-description {
    color: var(--color-neutral-white);
    font-size: 1.2em;
    line-height: 1.7;
    margin-bottom: 2.5em;
    opacity: 0.9;
}



.newsletter-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .store-locator-content {
        grid-template-columns: 1fr;
        gap: 3em;
        text-align: center;
    }
    
    .map-placeholder {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2em;
    }    
    .newsletter-submit {
        padding: 1.2em 2em;
    }
    
    .why-choose-us-section .section-title,
    .store-locator-preview-section .section-title,
    .newsletter-section .section-title {
        font-size: 2.2em;
    }
}

/*--------------------------------------------------------------
# Responsive adjustments for Brand Story Section on smaller screens
--------------------------------------------------------------*/
@media (max-width: 768px) {
    .brand-story-content {
        grid-template-columns: 1fr; /* Stack content in a single column */
        gap: 3em; /* Adjust gap for mobile */
        padding: 0 1.5em; /* Adjust padding for mobile */
    }

    .brand-story-section {
        padding: 4em 0; /* Adjust section padding for mobile */
    }

    .brand-story-text .section-title {
        font-size: 2.5em; /* Adjust title size for mobile */
        text-align: center; /* Center align title on mobile */
    }

    .brand-story-text .section-title::after {
        left: 50%; /* Center the underline */
        transform: translateX(-50%);
    }

    .brand-story-description {
        font-size: 1.1em; /* Adjust description size for mobile */
        text-align: center; /* Center align description on mobile */
    }

    .brand-story-cta {
        display: block; /* Make button a block element */
        margin: 0 auto; /* Center the button */
        text-align: center;
    }

    .brand-story-visual {
        order: -1; /* Place image above text on mobile */
        margin-bottom: 2em; /* Add space below image */
    }
}

/*--------------------------------------------------------------
# Product Type Pages (Modern Stylized) - Scoped to prevent conflicts
--------------------------------------------------------------*/

/* Only apply to product type pages */
.product-type-page {
    /* Reset any potential conflicts */
    box-sizing: border-box;
}

.product-type-page *,
.product-type-page *::before,
.product-type-page *::after {
    box-sizing: border-box;
}

/* Product Type Hero Section */
.product-type-page .product-type-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.product-type-page .hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product-type-page .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.product-type-page .hero-slide.active {
    opacity: 1;
}

.product-type-page .hero-background-default {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
    z-index: 1;
}

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

.product-type-page .hero-content-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem 0;
}

.product-type-page .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-type-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--color-accent-gold);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    color: var(--color-accent-gold);
    animation: fadeInUp 0.8s ease-out;
}

.product-type-page .badge-icon {
    font-size: 1.2rem;
}

.product-type-page .hero-title {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.product-type-page .title-main {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--color-neutral-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-type-page .title-subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--color-accent-gold);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-type-page .hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.product-type-page .hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.product-type-page .stat-item {
    text-align: center;
}

.product-type-page .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.product-type-page .stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-type-page .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.product-type-page .hero-cta {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/*--------------------------------------------------------------
# Merchandise About Section
--------------------------------------------------------------*/
.merchandise-info {
    margin: 6rem 0 4rem;
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.merchandise-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.merchandise-info h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
}

.merchandise-info h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-gold), var(--color-accent-yellow));
    border-radius: 2px;
}

.merchandise-info .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.merchandise-info .info-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.merchandise-info .info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.merchandise-info .info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
    border-color: var(--color-accent-gold);
}

.merchandise-info .info-item:hover::before {
    left: 100%;
}

.merchandise-info .info-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-yellow) 100%);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.merchandise-info .info-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.merchandise-info .info-item:hover .info-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.merchandise-info .info-item:hover .info-icon::before {
    transform: translateX(100%);
}

.merchandise-info .info-icon .dashicons {
    font-size: 2.5rem;
    color: var(--color-primary-black);
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.merchandise-info .info-item h3 {
    margin-bottom: 1.5rem;
    color: var(--color-accent-gold);
    font-size: 1.5rem;
    font-weight: 600;
}

.merchandise-info .info-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Enhanced visual effects */
.merchandise-info .info-item:nth-child(1) {
    animation-delay: 0.1s;
}

.merchandise-info .info-item:nth-child(2) {
    animation-delay: 0.2s;
}

.merchandise-info .info-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* Hover animation for the entire section */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.merchandise-info .info-item:hover {
    animation: float 3s ease-in-out infinite;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .merchandise-info {
        margin: 4rem 0 3rem;
        padding: 3rem 0;
        border-radius: 15px;
    }
    
    .merchandise-info .info-content {
        padding: 0 1.5rem;
    }
    
    .merchandise-info h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .merchandise-info .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .merchandise-info .info-item {
        padding: 2rem 1.5rem;
    }
      .merchandise-info .info-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .merchandise-info .info-icon .dashicons {
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        line-height: 1;
    }
    
    .merchandise-info .info-item h3 {
        font-size: 1.3rem;
    }
    
    .merchandise-info .info-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .merchandise-info h2 {
        font-size: 2rem;
    }
    
    .merchandise-info .info-item {
        padding: 1.5rem 1rem;
    }
      .merchandise-info .info-icon {
        width: 70px;
        height: 70px;
    }
    
    .merchandise-info .info-icon .dashicons {
        font-size: 1.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        line-height: 1;
    }
}

/*--------------------------------------------------------------
# Additional Merchandise Page Enhancements
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Enhanced Featured Categories Section
--------------------------------------------------------------*/
.featured-categories {
    margin: 5rem 0;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(255, 215, 0, 0.01) 100%);
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.featured-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.category-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.featured-categories h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.featured-categories h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-gold), var(--color-accent-yellow));
    border-radius: 2px;
}

.category-section-description {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.15);
}

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

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.category-image {
    width: 100%;
    height: 120px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

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

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

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-yellow) 100%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-icon.default-icon {
    background: linear-gradient(135deg, #666 0%, #888 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.category-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.category-card:hover .category-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.category-card:hover .category-icon::before {
    transform: translateX(100%);
}

.category-icon .dashicons {
    font-size: 2rem;
    color: var(--color-primary-black);
    z-index: 2;
    position: relative;
}

.category-content {
    position: relative;
}

.category-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary-black);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.category-card:hover .category-name {
    color: var(--color-accent-gold);
}

.category-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    opacity: 0.8;
}

.category-count {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-accent-gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.category-card:hover .category-count {
    background: var(--color-accent-gold);
    color: var(--color-primary-black);
    transform: scale(1.05);
}

.coming-soon-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse-badge 2s infinite;
}

.default-category .category-link {
    cursor: default;
}

.default-category:hover {
    transform: translateY(-8px);
}

/* Staggered animation for category cards */
.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }

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

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .featured-categories {
        margin: 4rem 0;
        padding: 3rem 0;
        border-radius: 20px;
    }
    
    .category-section-header {
        margin-bottom: 3rem;
    }
    
    .featured-categories h2 {
        font-size: 2.5rem;
    }
    
    .category-section-description {
        font-size: 1.1rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .category-link {
        padding: 2rem 1.5rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .category-icon .dashicons {
        font-size: 1.8rem;
    }
    
    .category-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .featured-categories h2 {
        font-size: 2rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .category-link {
        padding: 1.5rem 1rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon .dashicons {
        font-size: 1.5rem;
    }
}

/*--------------------------------------------------------------
# Awards & Recognition Section
--------------------------------------------------------------*/
.awards-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.award-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
    border-color: var(--color-accent-gold);
}

.award-icon {
    margin-bottom: 20px;
}

.award-trophy {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.award-item:hover .award-trophy {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 25px rgba(255, 215, 0, 0.5));
}

.award-content h3 {
    color: var(--color-accent-gold);
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.award-year {
    color: var(--color-accent-yellow);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.award-content p:not(.award-year) {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Awards Stats */
.awards-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #333 0%, #2a2a2a 100%);
    border-radius: 15px;
    border: 1px solid #444;
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Update Product Gallery for additional items */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

/* Responsive adjustments for awards */
@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .awards-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .award-trophy {
        width: 60px !important;
        height: 60px !important;
    }
}

@media (max-width: 480px) {
    .awards-stats {
        flex-direction: column;
    }
    
    .stat-item {
        width: 100%;
        margin-bottom: 10px;
    }
}

/*--------------------------------------------------------------
# Social Media Links
--------------------------------------------------------------*/

/* Footer Social Media Styles */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-section h3,
.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-social h4 {
    text-align: center;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

/* Social Media Links */
.social-media-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social .social-media-links {
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Platform-specific hover colors */
.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.twitter:hover {
    background: #000;
    border-color: #000;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-link.tiktok:hover {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    border-color: #ff0050;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1rem;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

.disclaimer p {
    margin: 0.5rem 0;
}

.disclaimer a {
    color: #d4af37;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* Shortcode Social Media Links */
.shortcode-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.shortcode-social.small .social-link {
    width: 32px;
    height: 32px;
}

.shortcode-social.small svg {
    width: 16px;
    height: 16px;
}

.shortcode-social.large .social-link {
    width: 48px;
    height: 48px;
}

.shortcode-social.large svg {
    width: 24px;
    height: 24px;
}

.shortcode-social.minimal .social-link {
    background: transparent;
    border: none;
    color: #666;
}

.shortcode-social.minimal .social-link:hover {
    color: #d4af37;
    transform: scale(1.1);
    box-shadow: none;
}

.shortcode-social.colored .social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.shortcode-social.colored .social-link.facebook {
    background: #1877f2;
}

.shortcode-social.colored .social-link.twitter {
    background: #000;
}

.shortcode-social.colored .social-link.youtube {
    background: #ff0000;
}

.shortcode-social.colored .social-link.tiktok {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
}

.social-label {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

/* Header Social Media (optional) */
.header-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-social .social-link {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.header-social .social-link:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

/*--------------------------------------------------------------
# About Page Callout Blocks
--------------------------------------------------------------*/

/* About Page Social Integration */
.callout-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.callout-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.callout-block h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.callout-block p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.callout-block .social-media-links {
    margin-top: 1rem;
    justify-content: flex-start;
}

.text-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #fff;
    text-decoration: underline;
}

/*--------------------------------------------------------------
# Product Showcase Section
--------------------------------------------------------------*/
.product-type-page .product-showcase-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.product-type-page .product-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent-gold) 50%, transparent 100%);
}

.product-type-page .product-showcase-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.product-type-page .product-showcase-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-neutral-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-type-page .product-showcase-section .title-highlight {
    color: var(--color-accent-gold);
    position: relative;
}

.product-type-page .product-showcase-section .title-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-gold) 0%, transparent 100%);
}

.product-type-page .product-showcase-section .section-subtitle {
    font-size: 1.1rem;
    color: #bbb;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.product-type-page .showcase-item {
    background: var(--color-primary-black);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #333;
    position: relative;
}

.product-type-page .showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
    border-color: var(--color-accent-gold);
}

.product-type-page .showcase-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #111;
}

.product-type-page .showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-type-page .showcase-item:hover .showcase-image {
    transform: scale(1.05);
}

.product-type-page .showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-type-page .showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.product-type-page .showcase-overlay .overlay-content {
    color: var(--color-accent-gold);
    text-align: center;
}

.product-type-page .showcase-overlay svg {
    width: 32px;
    height: 32px;
    opacity: 0.8;
}

.product-type-page .showcase-caption {
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}

.product-type-page .showcase-caption p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    text-align: center;
}

.product-type-page .showcase-note {
    text-align: center;
    margin-top: 2rem;
}

.product-type-page .showcase-note .note-content {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: #bbb;
    font-size: 0.9rem;
    max-width: 600px;
}

.product-type-page .showcase-note svg {
    color: var(--color-accent-gold);
    flex-shrink: 0;
}

/* Responsive Design for Showcase */
@media (max-width: 768px) {
    .product-type-page .product-showcase-section {
        padding: 4rem 0;
    }
    
    .product-type-page .product-showcase-section .section-title {
        font-size: 2rem;
    }
    
    .product-type-page .showcase-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-type-page .showcase-note .note-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem;
    }
}

/*--------------------------------------------------------------
# Store Locator Hero Section
--------------------------------------------------------------*/
.store-locator-hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: white;
    padding: 4em 0 3em;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.store-locator-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.store-locator-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.01)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="20" cy="60" r="0.5" fill="rgba(255,255,255,0.01)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.015)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.store-locator-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.store-locator-hero-section .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 0.5em 1.2em;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5em;
    backdrop-filter: blur(10px);
    animation: badgeGlow 3s ease-in-out infinite alternate;
}

.store-locator-hero-section .badge-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-locator-hero-section .badge-icon svg {
    width: 100%;
    height: 100%;
}

.store-locator-hero-section .hero-title {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1em 0;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 30%, #ffffff 60%, #FFD700 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 4s ease-in-out infinite;
}

.store-locator-hero-section .hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.store-locator-hero-section .hero-description p {
    margin: 0;
}

.store-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    margin-top: 2em;
    padding: 1.5em 2em;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: statsFloat 6s ease-in-out infinite;
}

.store-stats .stat-item {
    text-align: center;
    min-width: 80px;
}

.store-stats .stat-number {
    font-size: 2.2em;
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 0.2em;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.store-stats .stat-label {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.store-stats .stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.3), transparent);
}

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

@keyframes badgeGlow {
    from {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
    }
    to {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .store-locator-hero-section {
        padding: 3em 0 2em;
        min-height: 50vh;
    }
    
    .store-locator-hero-section .hero-title {
        font-size: 2.5em;
    }
    
    .store-locator-hero-section .hero-description {
        font-size: 1.1em;
        margin-bottom: 2em;
    }
    
    .store-stats {
        flex-direction: column;
        gap: 1em;
        padding: 1.5em;
    }
    
    .store-stats .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.3), transparent);
    }
    
    .store-locator-hero-section .hero-badge {
        font-size: 0.8em;
        padding: 0.4em 1em;
    }
}

@media (max-width: 480px) {
    .store-locator-hero-section {
        padding: 2em 0 1.5em;
    }
    
    .store-locator-hero-section .hero-title {
        font-size: 2em;
        margin-bottom: 0.8em;
    }
    
    .store-locator-hero-section .hero-description {
        font-size: 1em;
        margin-bottom: 1.5em;
    }
    
    .store-stats .stat-number {
        font-size: 1.8em;
    }
    
    .store-stats .stat-label {
        font-size: 0.75em;
    }
}

