/* Reset and Base Styles */
html {
    font-size: 79%;
}

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

:root {
    --primary-color: #d4a574;
    --primary-dark: #b8905f;
    --secondary-color: #8b6f47;
    --text-dark: #2a2117;
    --text-medium: #4a3728;
    --text-light: #7f6346;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar .logo { color: #fff; }
.navbar .nav-menu a { color: rgba(255, 255, 255, 0.9); }
.navbar .nav-menu a:hover { color: #fff; }
.navbar .nav-menu a::after { background: rgba(255, 255, 255, 0.8); }
.navbar .dropdown-arrow { color: rgba(255, 255, 255, 0.9); }
.navbar .menu-toggle span { background: #fff; }

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.navbar.scrolled .logo { color: var(--primary-color); font-size: 1.6rem; }
.navbar.scrolled .logo:hover { color: var(--primary-dark); }
.navbar.scrolled .nav-menu a { color: var(--text-dark); }
.navbar.scrolled .nav-menu a:hover { color: var(--primary-color); }
.navbar.scrolled .nav-menu a::after { background: var(--primary-color); }
.navbar.scrolled .menu-toggle span { background: var(--text-dark); }
.navbar.scrolled .nav-content-full { padding-top: 0.6rem; padding-bottom: 0.6rem; }

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-content-full {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    width: 100%;
}

.logo {
    font-family: Georgia, serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, font-size 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo:hover {
    color: var(--primary-dark);
}

.logo-icon {
    height: calc(1.4em * 0.85);
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: -4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 1rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    box-shadow: var(--shadow-hover);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.dropdown-menu a::after {
    display: none;
}

/* Separator after "Best Sellers" (1st item) and before "All" (last item) */
.dropdown-menu li:first-child {
    border-bottom: 1px solid var(--border-light, #eee);
    margin-bottom: 0.25rem;
    padding-bottom: 0.25rem;
}

.dropdown-menu li:last-child {
    border-top: 1px solid var(--border-light, #eee);
    margin-top: 0.25rem;
    padding-top: 0.25rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 0;
    background: none;
    max-width: 100%;
    margin: 0;
}

.hero-icon {
    height: calc(1.4em * 0.85);
    margin-left: -8px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero-image {
    max-width: 800px;
    width: 100%;
}

.hero-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.placeholder-image svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Section Styles */
section {
    padding: 48px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: Georgia, serif;
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.section-header h2 .logo-icon {
    height: 1.1em;
    margin-left: 0;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg-white);
    padding-bottom: 20px;
}

.about-content {
    display: grid;
    gap: 2rem;
}

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

.about-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.feature {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

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

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.product-details {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Products Section */
.products {
    background: var(--bg-light);
    padding-top: 20px;
}

.products .container {
    max-width: 100%;
    padding: 0 30px;
}

/* Collection Navigation */
.collections-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.collection-btn {
    padding: 8px 18px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.9rem;
}

.collection-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Products Layout */
/* Browse mode buttons */
.browse-mode-row { display: flex; gap: 0.75rem; margin-top: 1.5rem; justify-content: center; }
.browse-mode-btn { padding: 10px 28px; border-radius: 999px; border: 2px solid var(--primary-color); font-size: 1rem; font-weight: 700; cursor: pointer; background: #fff; color: var(--primary-color); transition: background 0.2s, color 0.2s; }
.browse-mode-btn.active { background: var(--primary-color); color: #fff; }
.browse-mode-btn:hover:not(.active) { background: var(--bg-light); }

/* Collection tiles */
.collection-tiles-row { margin-top: 1.5rem; }
.collection-tiles-label { font-size: 1rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; text-align: center; }
.collection-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; }
.collection-tile { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; aspect-ratio: 1; background: var(--text-dark); transition: transform 0.2s, box-shadow 0.2s; }
.collection-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.collection-tile:hover img { transform: scale(1.04); }
.collection-tile .tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 0.6rem 0.65rem 0.55rem; }
.tile-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.85); text-transform: uppercase; margin-bottom: 0.15rem; }
.tile-tagline { font-family: Georgia, serif; font-size: 0.78rem; color: #fff; line-height: 1.25; margin: 0; }
.collection-tile.active { box-shadow: 0 0 0 3px var(--primary-color); }

/* Type pills */
.type-pills { display: flex; gap: 0.5rem; margin: 1.25rem 0 0.4rem; flex-wrap: wrap; justify-content: center; }
.type-pill { background: #fff; border: 1px solid var(--border-color); border-radius: 999px; padding: 5px 16px; font-size: 0.85rem; font-weight: 600; color: var(--text-medium); cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.type-pill:hover { border-color: var(--primary-color); color: var(--primary-color); }
.type-pill.active { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }

/* Active filter label */
.active-filter-label { text-align: center; font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; font-style: italic; }

/* Grid footer */
.grid-footer { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding: 1.5rem 0 0.5rem; border-top: 1px solid var(--border-color); margin-top: 1rem; }
.grid-footer .active-filter-label { margin-bottom: 0; }
.grid-footer-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.grid-footer-btn { background: #fff; border: 1px solid var(--border-color); border-radius: 999px; padding: 7px 18px; font-size: 0.85rem; font-weight: 600; color: var(--text-medium); cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.grid-footer-btn:hover { border-color: var(--primary-color); color: var(--primary-color); }
.grid-footer-btn--primary { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.grid-footer-btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }

.products-layout {
    display: block;
    margin-top: 0;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
    margin-right: 2rem;
    margin-bottom: 3rem;
    align-self: start;
    width: fit-content;
    min-width: 240px;
}

.filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-group:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

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

.filter-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.filter-controls button {
    background: none;
    border: none;
    color: #0066cc;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0;
    transition: color 0.3s ease;
    font-family: inherit;
}

.filter-controls button:hover {
    color: #0052a3;
    text-decoration: underline;
}

.filter-controls .divider {
    color: var(--text-light);
}

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

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

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

.filter-checkbox span {
    font-size: 0.9rem;
    color: var(--text-dark);
}

.filter-checkbox:hover span {
    color: var(--primary-color);
}

/* Products Content */
.products-content {
    min-width: 0;
    padding-left: 0;
}

/* Sub-collections */
.sub-collections {
    margin-bottom: 1.5rem;
}

.sub-collection-title {
    font-family: Georgia, serif;
    font-size: 1.65rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.sub-collection-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sub-collection-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.95rem;
}

.sub-collection-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--bg-light);
    padding: 10px;
}

.heart-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    padding: 0;
}

.heart-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.heart-btn.heart-animate {
    animation: heartPulse 0.3s ease;
}

@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.heart-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.heart-btn.hearted .heart-icon {
    animation: none;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
}

.product-title {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.product-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--bg-light);
    border-radius: 12px;
    color: var(--text-light);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.no-products code {
    background: var(--bg-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

/* Product Info Section */
.product-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2.25rem;
    margin-bottom: 1.5rem;
    clear: both;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Sizing Guide */
.sizing-guide {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sizing-title {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-medium);
    text-align: center;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0;
}
.sizing-title::-webkit-details-marker { display: none; }
.sizing-title::after { content: '▾'; font-size: 0.85rem; transition: transform 0.2s; }
details.sizing-guide[open] .sizing-title::after { transform: rotate(-180deg); }
details.sizing-guide[open] .sizing-title { margin-bottom: 1.25rem; }

.sizing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.sizing-section h4 {
    font-family: Georgia, serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.sizing-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.sizing-list li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.sizing-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.sizing-list li strong {
    color: var(--text-dark);
}

.coming-soon {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 15px;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

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

.coming-soon a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.coming-soon a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Locations Section */
.locations {
    background: var(--bg-white);
    padding-top: 20px;
}

.locations-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.location-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.location-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.location-card h3 {
    font-family: Georgia, serif;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.location-address {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.location-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.location-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.location-link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .locations-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .locations-content {
        grid-template-columns: 1fr;
    }
}

/* Product Badges */
.badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    margin-top: 0.4rem;
}

.badge-winery {
    background: #f5ede3;
    color: #8b4513;
}

.badge-soldout {
    background: #f0f0f0;
    color: #999;
    text-decoration: line-through;
}

.sold-out-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.45rem 0;
    pointer-events: none;
    z-index: 3;
}

/* Carousel */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.88);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    padding: 0;
    opacity: 0.75;
    transition: opacity 0.2s, background 0.2s;
}

.product-image-wrapper:hover .carousel-prev,
.product-image-wrapper:hover .carousel-next {
    opacity: 1;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #fff;
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 8px 0 0;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.carousel-dot.active {
    background: var(--primary-color);
}

/* Product highlight (from gallery link) */
.product-highlight {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 15px;
}

.product-description {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    line-height: 1.5;
    font-style: italic;
}

.badge-reversible,
.badge-photo {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgba(255,255,255,0.92);
    color: #555;
    backdrop-filter: blur(4px);
}

.reversible-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    width: 100%;
    height: 100%;
}

.reversible-images .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact {
    background: var(--primary-color);
    padding: 60px 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Gallery Section */
.gallery {
    background: var(--bg-white);
    padding-top: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.gallery-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.no-gallery {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.no-gallery code {
    background: var(--bg-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2.25rem 20px 1.25rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3,
.footer-logo {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-logo .logo-icon {
    height: calc(1.4em * 0.85);
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
    }

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

    .hero-image {
        max-width: 100%;
        margin-top: 2rem;
    }

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu.active a,
    .nav-menu.active .dropdown-arrow {
        color: var(--text-dark);
    }

    .nav-menu.active a:hover {
        color: var(--primary-color);
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0 1rem;
        margin-top: 0.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .collections-nav {
        gap: 0.75rem;
    }

    .collection-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .filters-section {
        padding: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .products-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .filters-sidebar {
        position: static;
        order: -1;
    }
}

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

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .product-categories {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .filters-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-header h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}


/* CHEWLA ADDITIONS */
.hero { padding: 0; background: none; max-width: 100%; margin: 0; }
.hero-image-wrapper { position: relative; width: 100%; min-height: 90vh; display: flex; align-items: center; overflow: hidden; background: #2c2c2c; }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%); z-index: 1; }
.hero-content { position: absolute; z-index: 2; top: 50%; left: 20px; transform: translateY(-50%); max-width: 420px; text-align: left; }
.hero-eyebrow { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary-color); margin-bottom: 1.25rem; }
.hero-title { font-family: Georgia, serif; font-size: 2.4rem; font-weight: 700; color: #ffffff; line-height: 1.15; margin-bottom: 1.25rem; display: block; }
.hero-description { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; line-height: 1.8; max-width: 320px; }
.btn-hero { background: var(--primary-color); color: #fff; padding: 16px 36px; border-radius: 50px; font-weight: 600; font-size: 1rem; text-decoration: none; display: inline-block; transition: background 0.3s, transform 0.2s; border: none; }
.btn-hero:hover { background: var(--primary-dark); transform: translateY(-2px); }
.hero-cta-group { display: flex; flex-direction: column; align-items: center; }
.hero-gallery-link { display: block; width: fit-content; margin-top: 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.75); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.hero-gallery-link:hover { color: #fff; border-color: rgba(255,255,255,0.9); }
.features-strip { background: #fff; padding: 20px 20px; border-bottom: 1px solid var(--border-color); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.features-grid .feature { text-align: center; padding: 0.75rem 0.85rem; background: none; box-shadow: none; }
.feature-icon-svg { width: 40px; height: 40px; margin: 0 auto 1rem; color: var(--primary-color); }
.feature-icon-svg svg { width: 100%; height: 100%; }
.features-grid .feature h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-dark); }
.features-grid .feature p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.about { background: var(--bg-light); padding: 60px 20px; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1000px; margin: 0 auto; }
.about-text h2 { font-family: Georgia, serif; font-size: 2rem; color: var(--text-dark); margin-bottom: 1rem; }
.about-text p { font-size: 0.9rem; color: var(--text-light); line-height: 1.9; margin-bottom: 1rem; }
.btn-secondary { display: inline-block; margin-top: 1rem; padding: 10px 24px; border-radius: 50px; border: 2px solid var(--primary-color); color: var(--primary-color); font-weight: 600; text-decoration: none; transition: all 0.3s; }
.btn-secondary:hover { background: var(--primary-color); color: #fff; }
.about-image img { width: 100%; border-radius: 20px; object-fit: cover; aspect-ratio: 4/5; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.product-type-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary-color); margin-bottom: 0.25rem; }
/* Gallery lightbox */
.lightbox-overlay { position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.92); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: 6px; box-shadow: 0 8px 40px rgba(0,0,0,0.5); cursor: zoom-out; }
.lightbox-caption { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 1rem; font-style: italic; }
.lightbox-caption-link { color: rgba(255,255,255,0.7); font-style: italic; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.lightbox-caption-link:hover { color: #fff; }
.lightbox-close { position: absolute; top: 1.25rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; line-height: 1; opacity: 0.7; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 2.5rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0.7; transition: opacity 0.2s, background 0.2s; line-height: 1; }
.lightbox-nav:hover { opacity: 1; background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.load-more-wrapper { text-align: center; padding: 1.5rem 0 0.75rem; }
.btn-load-more { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); padding: 10px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; cursor: pointer; font-family: inherit; transition: all 0.3s; }
.btn-load-more:hover { background: var(--primary-color); color: #fff; }
.wholesale { background: var(--bg-white); padding: 40px 20px; border-top: 1px solid var(--border-color); }
.gallery-see-all-row { text-align: center; margin-top: 1.5rem; display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.email-cta-strip { text-align: center; padding: 24px 20px; background: var(--bg-light); border-top: 1px solid var(--border-color); }
.email-cta-strip .btn-primary { background: var(--primary-color); color: #fff; padding: 14px 36px; font-size: 1rem; font-weight: 700; border-radius: 50px; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.2s; }
.email-cta-strip .btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.gallery-see-all-btn { background: none; border: 1px solid var(--primary-color); color: var(--primary-color); border-radius: 999px; padding: 8px 24px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: background 0.2s, color 0.2s; }
.gallery-see-all-btn:hover { background: var(--primary-color); color: #fff; }
.wholesale-cta { margin-top: 1.25rem; }
.wholesale-perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1100px; margin: 2rem auto 0; }
.location-icon-svg { width: 36px; height: 36px; margin: 0 auto 0.75rem; color: var(--primary-color); }
.location-icon-svg svg { width: 100%; height: 100%; }
.contact { background: var(--primary-color); padding: 36px 20px; }
.contact-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.contact-inner h2 { font-family: Georgia, serif; font-size: 2.4rem; color: #fff; margin-bottom: 0.5rem; }
.contact-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.88); line-height: 1.6; margin-bottom: 1rem; }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
.btn-large { padding: 12px 32px; font-size: 0.95rem; background: #fff; color: var(--primary-color); font-weight: 700; margin-bottom: 0.25rem; }
.btn-large:hover { background: var(--text-dark); color: #fff; transform: translateY(-2px); }
.our-story-link { text-align: center; margin-top: 0.75rem; }
.our-story-link a { font-size: 1.05rem; color: rgba(255,255,255,0.8); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.our-story-link a:hover { color: #fff; border-color: #fff; }

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal { background: #fff; border-radius: 20px; max-width: 860px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; transform: translateY(20px); transition: transform 0.3s ease; }
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 1rem; right: 1.25rem; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-light); line-height: 1; z-index: 10; }
.modal-close:hover { color: var(--text-dark); }
.modal-inner { display: grid; grid-template-columns: 1fr 1fr; }
.modal-text { padding: 3rem; }
.modal-text h2 { font-family: Georgia, serif; font-size: 2rem; color: var(--text-dark); margin-bottom: 1.25rem; }
.modal-text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.9; margin-bottom: 1rem; }
.modal-text .btn-secondary { margin-top: 0.5rem; display: block; text-align: center; }
.modal-tagline { display: flex; align-items: center; gap: 0; justify-content: center; }
.modal-paw-icon { height: 1.4em; width: auto; vertical-align: middle; opacity: 0.85; }
.modal-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 0 20px 20px 0; }
@media (max-width: 640px) { .modal-inner { grid-template-columns: 1fr; } .modal-image { display: none; } .modal-text { padding: 2rem; } }

.contact-email-display { font-size: 1.05rem; color: rgba(255,255,255,0.75); letter-spacing: 0.02em; margin: 0; }
.contact-social { font-size: 1.05rem; color: rgba(255,255,255,0.8); }
.contact-social a { color: #fff; font-weight: 600; text-decoration: none; margin-left: 4px; }
.contact-social a:hover { text-decoration: underline; }
@media (max-width: 900px) { .hero-title { font-size: 1.9rem; } .hero-content { max-width: 340px; } .features-grid { grid-template-columns: repeat(2, 1fr); max-width: 600px; } .about-inner { grid-template-columns: 1fr; gap: 1.5rem; } .about-image { order: -1; } .about-image img { aspect-ratio: 16/9; } .wholesale-perks-grid { grid-template-columns: repeat(2, 1fr); max-width: 600px; } .collection-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; max-width: 400px; } }
@media (max-width: 600px) { .hero-title { font-size: 1.6rem; } .hero-content { left: 0; right: 0; max-width: 100%; padding-left: 20px; padding-right: 20px; top: 0; bottom: 0; transform: none; display: flex; flex-direction: column; justify-content: flex-start; padding-top: 70px; padding-bottom: 48px; } .hero-bottom { display: flex; flex-direction: column; margin-top: auto; text-align: center; align-items: center; } .hero-bottom .hero-description { margin-bottom: 0.5rem; } .hero-image-wrapper { min-height: 85vh; } .contact-inner h2 { font-size: 1.65rem; } .collection-tiles { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; } .tile-tagline { display: none; }

    /* Product grid — tighter margins, more column breathing room */
    .products .container { padding: 0 6px; }
    .products-grid { gap: 16px 14px; }
    .product-info { padding: 0.5rem 0.6rem 0.65rem; }
    .product-title { font-size: 0.88rem; line-height: 1.25; margin-bottom: 0.2rem; }
    .heart-btn { width: 28px; height: 28px; top: 7px; right: 7px; }
    .heart-icon { font-size: 0.9rem; }

    /* Carousel — hide arrows on touch screens (swipe instead) */
    .carousel-prev, .carousel-next { display: none; }
}

/* Floating email button */
.fab-email { position: fixed; bottom: 28px; right: 24px; z-index: 999; background: var(--primary-color); color: #fff; font-size: 0.9rem; font-weight: 600; padding: 12px 20px; border-radius: 999px; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,0.18); transition: background 0.2s, transform 0.2s, opacity 0.3s; opacity: 0; pointer-events: none; }
.fab-email.fab-visible { opacity: 1; pointer-events: auto; }
.fab-email:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Apply brand text colors */
body { color: var(--text-medium); }
h1, h2, h3, h4 { color: var(--text-dark); }
p { color: var(--text-medium); }
