/* ─── Reset & Base ─────────────────────────────────── */

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

body {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #121212;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Capriola', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ─── Buttons ─────────────────────────────────────── */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: #121212;
    color: #fff;
}

.btn-primary:hover {
    background: #333;
}

/* ─── Announcement Bar ────────────────────────────── */

.announcement-bar {
    background: #121212;
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat Alternates', sans-serif;
}

/* ─── Header ──────────────────────────────────────── */

.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-family: 'Capriola', sans-serif;
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 15px;
    font-weight: 400;
    padding: 4px 0;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Montserrat Alternates', sans-serif;
    color: #121212;
}

.nav-link:hover {
    color: #666;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    vertical-align: 2px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 12px 0;
    min-width: 220px;
    z-index: 200;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.breed-dropdown {
    columns: 2;
    min-width: 400px;
    padding: 16px;
    gap: 0;
}

.dropdown-menu a {
    display: block;
    padding: 6px 16px;
    font-size: 14px;
    white-space: nowrap;
    break-inside: avoid;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon {
    position: relative;
    display: flex;
    align-items: center;
    color: #121212;
}

.header-icon:hover {
    color: #666;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #121212;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #121212;
}

/* ─── Mobile Nav ──────────────────────────────────── */

.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 300;
    transition: right 0.3s;
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 700;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #121212;
}

.mobile-nav-links {
    padding: 12px 0;
}

.mobile-nav-links > a,
.mobile-nav-links > details > summary {
    display: block;
    padding: 12px 20px;
    font-size: 16px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    list-style: none;
}

.mobile-dropdown-content a {
    display: block;
    padding: 8px 20px 8px 36px;
    font-size: 14px;
    color: #555;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 250;
}

.mobile-nav-overlay.open {
    display: block;
}

/* ─── Hero ────────────────────────────────────────── */

.hero {
    background: #e5e5e5 url('/static/images/hero-bg.webp') center/contain no-repeat;
    padding: 120px 20px;
    text-align: center;
}

.hero-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    display: inline-block;
    padding: 32px 48px;
    border-radius: 12px;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 70%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 80% at center, black 70%, transparent 100%);
}

.hero h1 {
    font-family: 'Capriola', sans-serif;
    font-size: 48px;
    margin-bottom: 12px;
}

.hero-tagline {
    font-size: 20px;
    color: #000;
    margin-bottom: 0;
}

.hero-btn {
    display: block;
    width: fit-content;
    margin: 24px auto 0;
}

/* ─── About Section ───────────────────────────────── */

.about-section {
    padding: 60px 20px;
    text-align: center;
}

.about-section h2 {
    font-family: 'Capriola', sans-serif;
    font-size: 28px;
    margin-bottom: 12px;
}

.about-section p {
    max-width: 640px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
}

/* ─── Collections Showcase ────────────────────────── */

.collections-showcase {
    padding: 60px 20px;
    background: #f9f9f9;
}

.collections-showcase h2 {
    font-family: 'Capriola', sans-serif;
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.collection-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
}

.collection-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.collection-card .collection-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f8f8;
}

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

.collection-card:hover .collection-card-image img {
    transform: scale(1.05);
}

.collection-card-inner {
    padding: 16px 20px;
    text-align: center;
}

.collection-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.collection-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.collection-link {
    font-size: 14px;
    font-weight: 400;
    color: #121212;
}

/* ─── Products Grid ───────────────────────────────── */

.featured-products,
.collection-products {
    padding: 60px 20px;
}

.featured-products h2 {
    font-family: 'Capriola', sans-serif;
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.collection-products .products-grid {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-2px);
}

.product-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
}

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

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

.product-type-mens-tee .product-card-image img {
    transform: scale(1.2) rotate(-15deg) translate(10%, 0%);
}

.product-type-mens-tee:hover .product-card-image img {
    transform: scale(1.3) rotate(-15deg) translate(10%, 0%);
}

.featured-products .product-type-mens-tee .product-card-image img {
    transform: scale(1.4) rotate(-25deg) translate(10%, 0%);
}

.featured-products .product-type-mens-tee:hover .product-card-image img {
    transform: scale(1.5) rotate(-25deg) translate(10%, 0%);
}

.product-type-womens-tee .product-card-image img {
    transform: scale(1.3);
    transform-origin: top center;
}

.product-type-womens-tee:hover .product-card-image img {
    transform: scale(1.35);
    transform-origin: top center;
}

.product-card-info {
    padding: 12px 4px;
}

.product-card-info h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 4px;
    font-family: 'Montserrat Alternates', sans-serif;
}

.product-price {
    font-size: 14px;
    color: #555;
}

/* ─── Collection Header ───────────────────────────── */

.collection-header {
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
}

.collection-header h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.collection-header p {
    color: #666;
    font-size: 15px;
}

.collection-quality-note {
    font-size: 13px;
    color: #888;
    margin-top: 6px;
    font-style: italic;
}

.product-count {
    color: #999;
    font-size: 13px;
    margin-top: 8px;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

/* ─── All Collections ─────────────────────────────── */

.collections-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    padding: 40px 0;
}

.collection-list-card {
    display: block;
    padding: 24px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.collection-list-card:hover {
    border-color: #121212;
}

.collection-list-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.collection-list-card p {
    font-size: 13px;
    color: #666;
}

/* ─── Product Detail ──────────────────────────────── */

.product-detail {
    padding: 40px 20px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.gallery-main {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    cursor: zoom-in;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s ease;
}

.gallery-main.zoomed img {
    transform: scale(2);
    cursor: zoom-out;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
}

.thumb {
    width: 64px;
    height: 64px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    background: none;
    padding: 0;
    flex-shrink: 0;
}

.thumb.active {
    border-color: #121212;
}

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

.product-info h1 {
    font-size: 28px;
    margin-bottom: 8px;
}

.product-detail-price {
    font-size: 22px;
    margin-bottom: 24px;
    color: #121212;
}

.variant-selector {
    margin-bottom: 20px;
}

.variant-selector label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.color-options, .size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.color-btn, .size-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.color-btn:hover, .size-btn:hover {
    border-color: #999;
}

.color-btn.active, .size-btn.active {
    border-color: #121212;
    background: #121212;
    color: #fff;
}

.btn-add-cart {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 8px;
}

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

.product-description {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* Product Tagline */
.product-tagline {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Product Quality Note */
.product-quality-note {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

/* Trust Badges Box */
.trust-badges-box {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 12px 16px;
    background: #f8f6f3;
    border-radius: 8px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.trust-badge svg {
    color: #16a34a;
    flex-shrink: 0;
}

.trust-badge-bold {
    font-weight: 700;
    color: #121212;
}

/* Info Accordions */
.product-info-accordions {
    margin-top: 8px;
}

.info-accordion {
    border-top: 1px solid #eee;
}

.info-accordion:last-child {
    border-bottom: 1px solid #eee;
}

.info-accordion summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: #333;
}

.info-accordion summary::-webkit-details-marker {
    display: none;
}

.info-accordion summary::after {
    content: '+';
    margin-left: auto;
    font-size: 18px;
    font-weight: 400;
    color: #999;
    transition: transform 0.2s;
}

.info-accordion[open] summary::after {
    content: '\2212';
}

.info-accordion summary svg {
    color: #666;
    flex-shrink: 0;
}

.accordion-content {
    padding: 0 0 16px 26px;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

.accordion-content p {
    margin-bottom: 8px;
}

.accordion-content ul {
    margin: 8px 0;
    padding-left: 18px;
}

.accordion-content li {
    margin-bottom: 4px;
}

/* Size Chart */
.size-chart {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 12px;
}

.size-chart th,
.size-chart td {
    padding: 6px 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.size-chart th {
    background: #f5f5f5;
    font-weight: 700;
    color: #333;
}

.size-chart td:first-child {
    text-align: left;
    font-weight: 600;
    background: #f9f9f9;
}

.size-chart-note {
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

.size-chart-tip {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding-top: 12px;
}

.payment-label {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

.payment-icons {
    display: flex;
    gap: 6px;
}

.payment-icons svg {
    opacity: 0.7;
}

/* Legacy quality box — keep for backwards compat but now in accordion */
.product-quality {
    margin-top: 24px;
    padding: 20px;
    background: #f8f6f3;
    border-radius: 8px;
    font-size: 12px;
    color: #888;
    line-height: 1.7;
}

.product-quality h3 {
    font-size: 13px;
    margin-bottom: 6px;
    color: #666;
    font-weight: 600;
}

.product-quality ul {
    margin: 12px 0 0 0;
    padding-left: 20px;
}

.product-quality li {
    margin-bottom: 4px;
}

/* ─── Cart ────────────────────────────────────────── */

.cart-page {
    padding: 40px 20px;
}

.cart-page h1 {
    font-size: 32px;
    margin-bottom: 32px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.cart-item-details h3 {
    font-size: 15px;
    font-weight: 400;
    font-family: 'Montserrat Alternates', sans-serif;
}

.cart-item-details h3 a:hover {
    text-decoration: underline;
}

.cart-item-variant {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

.cart-item-price {
    font-size: 14px;
    margin-top: 4px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.qty-value {
    padding: 0 12px;
    font-size: 14px;
    min-width: 32px;
    text-align: center;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 8px;
}

.cart-remove-btn:hover {
    color: #121212;
}

.cart-item-subtotal {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.cart-summary {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-size: 18px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.summary-row.discount {
    color: #16a34a;
}

.summary-row.total {
    border-top: 1px solid #ddd;
    margin-top: 8px;
    padding-top: 16px;
    font-size: 18px;
    font-weight: 700;
}

.shipping-note {
    font-size: 12px;
    color: #999;
    margin: 12px 0 20px;
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.cart-empty {
    text-align: center;
    padding: 60px 0;
}

.cart-empty p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

/* ─── Success Page ────────────────────────────────── */

.success-page {
    padding: 80px 20px;
    text-align: center;
}

.success-content {
    max-width: 500px;
    margin: 0 auto;
}

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

.success-page h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.success-page p {
    color: #555;
    margin-bottom: 12px;
}

.success-page .btn {
    margin-top: 20px;
}

/* ─── Contact Page ────────────────────────────────── */

.contact-page {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info {
    text-align: left;
}

.contact-page h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-page p {
    color: #555;
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-page a {
    color: #121212;
    text-decoration: underline;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
}

/* ─── Search Page ─────────────────────────────────── */

.search-page {
    padding: 40px 20px;
}

.search-page h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.search-form {
    display: flex;
    gap: 8px;
    max-width: 500px;
    margin-bottom: 24px;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 15px;
}

.search-input:focus {
    outline: none;
    border-color: #121212;
}

.search-results-count {
    color: #666;
    margin-bottom: 24px;
}

/* ─── Error Page ──────────────────────────────────── */

.error-page {
    padding: 80px 20px;
    text-align: center;
}

.error-page h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.error-page p {
    color: #666;
    margin-bottom: 24px;
}

/* ─── Legal Pages ────────────────────────────────── */

.legal-page {
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.legal-updated {
    color: #999;
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page p {
    color: #555;
    font-size: 15px;
    margin-bottom: 12px;
    max-width: 720px;
}

.legal-page ul {
    margin: 0 0 12px 24px;
    color: #555;
    font-size: 15px;
    max-width: 720px;
}

.legal-page li {
    margin-bottom: 6px;
}

.legal-page a {
    color: #121212;
    text-decoration: underline;
}

/* ─── Footer ──────────────────────────────────────── */

.site-footer {
    background: #121212;
    color: #fff;
    padding: 48px 20px 24px;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-breeds h3,
.footer-collections h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #aaa;
}

.footer-breed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 4px 20px;
    margin-bottom: 32px;
}

.footer-breed-grid a {
    font-size: 13px;
    color: #ccc;
    padding: 3px 0;
    display: block;
}

.footer-breed-grid a:hover {
    color: #fff;
}

.footer-collections {
    margin-bottom: 32px;
}

.footer-collections a {
    display: block;
    font-size: 13px;
    color: #ccc;
    padding: 3px 0;
}

.footer-collections a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #888;
}

/* ─── Responsive ──────────────────────────────────── */

@media (max-width: 990px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 750px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        text-align: center;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .hero h1 {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 12px;
    }

    .cart-item-actions {
        grid-column: 2;
    }

    .cart-item-subtotal {
        grid-column: 2;
    }

    .breed-dropdown {
        columns: 1;
        min-width: 200px;
    }

    .collection-header h1 {
        font-size: 28px;
    }

    .logo {
        font-size: 18px;
    }

    .trust-badges-box {
        flex-wrap: wrap;
        gap: 8px;
        padding: 10px 12px;
    }
}

/* ─── Email Popup ────────────────────────────────────── */

.email-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 500;
    align-items: center;
    justify-content: center;
}

.email-popup-overlay.show {
    display: flex;
}

.email-popup {
    background: #fff;
    border-radius: 12px;
    max-width: 440px;
    width: 90%;
    padding: 36px 32px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.email-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.email-popup-close:hover {
    color: #333;
}

.email-popup h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.email-popup .popup-subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.email-popup .popup-discount {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Capriola', sans-serif;
    color: #121212;
    margin-bottom: 4px;
}

.email-popup .popup-discount-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.email-popup-form {
    display: flex;
    gap: 8px;
}

.email-popup-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 14px;
}

.email-popup-form input:focus {
    outline: none;
    border-color: #121212;
}

.email-popup-form button {
    padding: 12px 20px;
    background: #121212;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.email-popup-form button:hover {
    background: #333;
}

.email-popup .popup-success {
    display: none;
    font-size: 15px;
    color: #16a34a;
    font-weight: 600;
}

.email-popup .popup-success .discount-code {
    display: inline-block;
    background: #f0fdf4;
    border: 2px dashed #16a34a;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 20px;
    font-family: monospace;
    letter-spacing: 2px;
    margin-top: 12px;
}

.email-popup .popup-fine-print {
    font-size: 11px;
    color: #999;
    margin-top: 12px;
}

/* ─── About Page ─────────────────────────────────────── */

.about-page {
    padding: 60px 20px;
}

.about-intro {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 48px;
}

.about-photo img {
    width: 100%;
    border-radius: 8px;
}

.about-intro-text h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

.about-intro-text .about-lead {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.about-contact {
    text-align: center;
    max-width: 600px;
    margin: 48px auto 0;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.about-contact h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.about-contact p {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}

.about-contact a {
    color: #121212;
    text-decoration: underline;
}

.about-contact-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.about-contact-links a {
    font-size: 14px;
    color: #555;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.about-value {
    text-align: center;
    padding: 24px;
}

.about-value svg {
    color: #121212;
    margin-bottom: 12px;
}

.about-value h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.about-value p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

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

.about-story h2 {
    font-size: 24px;
    margin-bottom: 16px;
}

.about-story p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

@media (max-width: 750px) {
    .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-photo {
        max-width: 250px;
        margin: 0 auto;
    }
    .about-values {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .about-contact-links {
        flex-direction: column;
        gap: 8px;
    }
}
