/* ===========================
   Shop Styles - Premium Design
   HolzArt Swiss
   =========================== */

/* Override Custom Cursor - Normal Cursor im Shop */
@media (hover: hover) and (pointer: fine) {
    * {
        cursor: auto !important;
    }

    a, button, .btn, input[type="submit"], input[type="button"],
    select, .filter-tab, .product-action-btn, .quick-view,
    .cart-toggle, .nav-link, .product-item, label {
        cursor: pointer !important;
    }

    input[type="text"], input[type="email"], input[type="search"], textarea {
        cursor: text !important;
    }
}

/* ===========================
   Page Header (Category Pages)
   =========================== */

.page-header,
.shop-page-header {
    background: var(--dark);
    padding: 110px 0 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-page-header h1,
.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.3rem;
    letter-spacing: -0.02em;
}

.shop-page-header p,
.page-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header a {
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.page-header a:hover {
    color: var(--white);
    transform: translateX(-5px);
}

.page-header a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

/* Cart Sidebar for Category Pages */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--off-white);
}

.cart-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--black);
}

.cart-close {
    width: 45px;
    height: 45px;
    background: var(--off-white);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--black);
}

.cart-close:hover {
    background: var(--matt-grey);
    color: var(--white);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem;
}

.empty-cart {
    text-align: center;
    color: var(--light-grey);
    padding: 3rem 0;
    font-size: 1rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--off-white);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: var(--off-white);
    flex-shrink: 0;
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--light-grey);
    cursor: pointer;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0;
    text-decoration: underline;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    color: var(--black);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--off-white);
    background: var(--off-white);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.cart-total span:last-child {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black);
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--matt-grey);
    color: var(--white);
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.checkout-btn:hover {
    background: var(--accent);
}

/* Cart Link in Navigation */
.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add to Cart Button */
.add-to-cart-btn {
    padding: 0.8rem 1.5rem;
    background: var(--matt-grey);
    color: var(--white);
    border: 1px solid var(--black);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}

.add-to-cart-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* Premium Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--matt-grey);
    color: var(--white);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10002;
    transform: translateX(150%);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification .toast-icon {
    color: var(--gold-light);
    font-size: 1.2rem;
}

.toast-notification .toast-message {
    font-size: 0.9rem;
}

/* Responsive for Category Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Premium Shop Scroll Indicator */
.shop-header .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    animation: fadeInUp 1s ease forwards 1.5s;
    opacity: 0;
}

.shop-header .scroll-indicator span {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

.shop-header .scroll-indicator .scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.shop-header .scroll-indicator .scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--gold-light);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(200%);
    }
}

/* Small Category Cards */
.small-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.category-card-small {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.category-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-card-small .category-image {
    height: 180px;
}

.category-card-small .category-info {
    padding: 1.2rem 1.5rem;
}

.category-card-small .category-info h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.category-card-small .category-info p {
    font-size: 0.85rem;
}

/* Section Description Enhancement */
.section-description {
    font-size: 1.1rem;
    color: var(--medium-grey);
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Shop Header with Video */
.shop-header {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shop-header-bg video,
.shop-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-header-bg video {
    opacity: 0.8;
}

.shop-header-bg .fallback-img {
    position: absolute;
    top: 0;
    left: 0;
}

.shop-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(35, 35, 35, 0.7) 0%,
        rgba(35, 35, 35, 0.4) 50%,
        rgba(35, 35, 35, 0.6) 100%
    );
    z-index: 2;
}

.shop-header-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 3;
    padding: 0 2rem;
    padding-top: 80px;
}

.shop-header-content .section-tag {
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.shop-header-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.shop-header-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Shop Stats */
.shop-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Trust Bar */
.trust-bar {
    background: var(--matt-grey);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-items {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
}

.trust-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Shop Categories */
.shop-categories {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.category-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    transition: var(--transition-smooth);
    overflow: hidden;
    position: relative;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Large Category Cards */
.category-card-large {
    grid-row: span 2;
}

.category-card-large .category-image {
    height: 100%;
    min-height: 500px;
}

.category-card-large .category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: var(--white);
}

.category-card-large .category-info h3 {
    color: var(--white);
    font-size: 1.8rem;
}

.category-card-large .category-info p {
    color: rgba(255, 255, 255, 0.7);
}

.category-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    margin-top: 1rem;
    transition: var(--transition-fast);
}

.category-card:hover .category-link {
    gap: 1rem;
}

.category-link svg {
    transition: var(--transition-fast);
}

.category-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--off-white);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.category-btn {
    padding: 0.8rem 2rem;
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-fast);
    background: transparent;
}

.category-card:hover .category-btn {
    background: var(--white);
    color: var(--black);
}

.category-info {
    padding: 1.5rem;
}

.category-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.category-info p {
    color: var(--light-grey);
    font-size: 0.9rem;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--off-white);
}

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

.filter-tab {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--off-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--medium-grey);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-tab:hover {
    border-color: var(--black);
    color: var(--black);
}

.filter-tab.active {
    background: var(--matt-grey);
    border-color: var(--black);
    color: var(--white);
}

.filter-sort select {
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    border: 1px solid var(--off-white);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--black);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23888' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

/* Featured Products */
.featured-products {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

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

.product-item {
    background: var(--white);
    transition: var(--transition-smooth);
    overflow: hidden;
    position: relative;
}

/* Product Link Styling - clickable product cards */
a.product-item,
a.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.product-item-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--off-white);
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.bestseller {
    background: var(--matt-grey);
    color: var(--white);
}

.product-badge.new {
    background: var(--accent);
    color: var(--white);
}

.product-badge.aktion {
    background: var(--shop-error);
    color: var(--white);
}

.product-badge.angebot {
    background: var(--accent);
    color: var(--white);
}

.product-badge.verfügbar {
    background: var(--shop-success);
    color: var(--white);
}

/* Product Actions */
.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-fast);
    z-index: 2;
}

.product-item:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--black);
    text-decoration: none;
}

.product-action-btn:hover {
    background: var(--matt-grey);
    color: var(--white);
}

.product-item-info {
    padding: 1.5rem;
}

.product-item-category {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.product-item-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.product-item-description {
    color: var(--light-grey);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--off-white);
}

.product-price-wrapper {
    display: flex;
    flex-direction: column;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--black);
    font-weight: 500;
}

.product-price-note {
    font-size: 0.75rem;
    color: var(--light-grey);
}

.btn-sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Process Section */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--off-white);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border: 2px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--black);
    transition: var(--transition-fast);
}

.process-step:hover .process-number {
    background: var(--matt-grey);
    color: var(--white);
}

.process-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.8rem;
}

.process-content p {
    font-size: 0.9rem;
    color: var(--light-grey);
    line-height: 1.6;
}

/* Custom Order CTA */
.custom-order-cta {
    padding: var(--section-padding) 0;
    background: var(--matt-grey);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.cta-text {
    color: var(--white);
}

.cta-text .section-tag {
    color: var(--gold-light);
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.cta-features svg {
    color: var(--gold-light);
    flex-shrink: 0;
}

.cta-text .btn-primary {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.cta-text .btn-primary:hover {
    background: transparent;
    color: var(--white);
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.cta-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

/* Testimonials */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--medium-grey);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
}

.author-location {
    font-size: 0.85rem;
    color: var(--light-grey);
}

/* Newsletter */
.newsletter-section {
    padding: 4rem 0;
    background: var(--accent);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}

.newsletter-form .btn:hover {
    background: var(--matt-grey);
    color: var(--white);
    border-color: var(--black);
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.quick-view-modal.active {
    display: flex;
}

.quick-view-content {
    background: var(--white);
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.quick-view-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: var(--off-white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.quick-view-close:hover {
    background: var(--matt-grey);
    color: var(--white);
}

.quick-view-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.quick-view-image {
    height: 500px;
    background: var(--off-white);
}

.quick-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quick-view-category {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.quick-view-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 1rem;
}

.quick-view-info > p {
    color: var(--medium-grey);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.quick-view-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--off-white);
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--light-grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.detail-value {
    font-size: 1rem;
    color: var(--black);
    font-weight: 500;
}

.quick-view-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.quick-view-price span:first-child {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--black);
    font-weight: 500;
}

.quick-view-price .price-note {
    font-size: 0.85rem;
    color: var(--light-grey);
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-card-large {
        grid-row: span 1;
    }

    .category-card-large .category-image {
        min-height: 300px;
    }

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

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

@media (max-width: 968px) {
    .shop-header {
        height: 70vh;
        min-height: 500px;
    }

    .shop-header-content h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .shop-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .trust-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .trust-item {
        flex: 0 0 calc(50% - 1rem);
        justify-content: center;
    }

    .filter-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .filter-tabs {
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-image {
        order: -1;
    }

    .cta-image::before {
        display: none;
    }

    .cta-image img {
        height: 350px;
    }

    .quick-view-grid {
        grid-template-columns: 1fr;
    }

    .quick-view-image {
        height: 300px;
    }

    .quick-view-info {
        padding: 2rem;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .shop-header {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        padding-bottom: 60px;
    }

    .shop-header-content {
        padding-top: 100px;
    }

    .shop-header-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .shop-header-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .shop-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Trust Bar Mobile */
    .trust-bar {
        padding: 1.5rem 0;
    }

    .trust-items {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-item {
        flex: 0 0 100%;
        justify-content: flex-start;
        padding: 0.5rem 0;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
    }

    .trust-title {
        font-size: 0.85rem;
    }

    .trust-subtitle {
        font-size: 0.75rem;
    }

    /* Categories Mobile */
    .categories-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card-large .category-image {
        min-height: 250px;
    }

    .category-card-large .category-info {
        padding: 1.5rem;
    }

    .category-card-large .category-info h3 {
        font-size: 1.4rem;
    }

    .category-image {
        height: 200px;
    }

    .category-info {
        padding: 1.25rem;
    }

    .category-info h3 {
        font-size: 1.1rem;
    }

    /* Products Mobile */
    .product-item-image {
        height: 280px;
    }

    .product-item-info {
        padding: 1.25rem;
    }

    .product-item-title {
        font-size: 1.2rem;
    }

    .product-item-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .product-item-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .product-item-footer .btn-sm,
    .add-to-cart-btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
        min-height: 48px;
    }

    .product-actions {
        opacity: 1;
        transform: translateX(0);
    }

    .product-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }

    /* Process Steps Mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }

    .process-content h3 {
        font-size: 1.1rem;
    }

    .process-content p {
        font-size: 0.85rem;
    }

    /* CTA Section Mobile */
    .cta-text h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-features li {
        font-size: 0.9rem;
    }

    .cta-image img {
        height: 280px;
    }

    /* Testimonials Mobile */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card::before {
        font-size: 3rem;
        top: 1rem;
        right: 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-name {
        font-size: 0.95rem;
    }

    /* Newsletter Mobile */
    .newsletter-section {
        padding: 3rem 0;
    }

    .newsletter-text h3 {
        font-size: 1.4rem;
    }

    .newsletter-text p {
        font-size: 0.9rem;
    }

    .newsletter-form input {
        padding: 1rem;
        font-size: 16px; /* Prevent iOS zoom */
    }

    /* Quick View Modal Mobile */
    .quick-view-content {
        width: 95%;
        max-height: 90vh;
    }

    .quick-view-image {
        height: 250px;
    }

    .quick-view-info {
        padding: 1.5rem;
    }

    .quick-view-info h2 {
        font-size: 1.5rem;
    }

    .quick-view-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }

    .quick-view-price span:first-child {
        font-size: 1.5rem;
    }

    .quick-view-close {
        width: 40px;
        height: 40px;
        top: 1rem;
        right: 1rem;
    }

    /* Filter Bar Mobile */
    .filter-bar {
        padding-bottom: 1rem;
        margin-bottom: 2rem;
    }

    .filter-tabs {
        display: flex;
        gap: 0.5rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-tab {
        flex-shrink: 0;
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .filter-sort {
        width: 100%;
    }

    .filter-sort select {
        width: 100%;
        padding: 0.8rem 2.5rem 0.8rem 1rem;
        font-size: 16px; /* Prevent iOS zoom */
    }
}

@media (max-width: 480px) {
    .shop-header {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .shop-header-content h1 {
        font-size: 1.8rem;
    }

    .shop-header-content p {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* Categories Extra Small */
    .category-image {
        height: 180px;
    }

    .category-card-large .category-image {
        min-height: 220px;
    }

    /* Products Extra Small */
    .product-item-image {
        height: 240px;
    }

    .product-item-title {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    /* Process Steps Extra Small */
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }

    /* Testimonials Extra Small */
    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-rating {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Newsletter Extra Small */
    .newsletter-text h3 {
        font-size: 1.2rem;
    }

    /* Quick View Extra Small */
    .quick-view-image {
        height: 200px;
    }

    .quick-view-info h2 {
        font-size: 1.3rem;
    }

    /* Filter Extra Small */
    .filter-tab {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Touch-friendly for Shop */
@media (hover: none) and (pointer: coarse) {
    .category-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.3);
    }

    .product-actions {
        opacity: 1;
        transform: translateX(0);
    }

    .product-action-btn {
        min-width: 44px;
        min-height: 44px;
    }

    .filter-tab {
        min-height: 44px;
    }

    .add-to-cart-btn {
        min-height: 48px;
    }
}

/* Landscape mode for Shop */
@media (max-height: 500px) and (orientation: landscape) {
    .shop-header {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 40px;
    }

    .shop-header-content h1 {
        font-size: 2rem;
    }

    .shop-stats {
        flex-direction: row;
        gap: 2rem;
    }

    .stat-divider {
        width: 1px;
        height: 40px;
    }
}

/* =========================
   Premium Badge Variations
   ========================= */
.product-badge.aktion {
    background: var(--gold);
    color: var(--white);
}

.product-badge.angebot {
    background: var(--accent);
    color: var(--white);
}

.product-badge.verfügbar {
    background: var(--shop-success);
    color: var(--white);
}

/* =========================
   Premium Hover Effects
   ========================= */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(213, 154, 18, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
    pointer-events: none;
}

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

.product-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    z-index: 10;
}

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

/* =========================
   Premium Typography
   ========================= */
.shop-header-content h1 span {
    display: inline-block;
    animation: fadeInWord 0.8s ease forwards;
    opacity: 0;
}

.shop-header-content h1 span:nth-child(1) { animation-delay: 0.3s; }
.shop-header-content h1 span:nth-child(2) { animation-delay: 0.5s; }
.shop-header-content h1 span:nth-child(3) { animation-delay: 0.7s; }

@keyframes fadeInWord {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   Premium Card Accents
   ========================= */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--off-white);
    line-height: 1;
}

.testimonial-card {
    position: relative;
}

/* =========================
   Premium Loading State
   ========================= */
.product-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    transform: translateX(-100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-item-image::after {
    animation: shimmer 1.5s infinite;
    opacity: 1;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* =========================
   Enhanced Trust Icons
   ========================= */
.trust-icon svg {
    transition: var(--transition-fast);
}

.trust-item:hover .trust-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.trust-item:hover .trust-icon svg {
    color: var(--white);
}

/* =========================
   Premium Button States
   ========================= */
.btn-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
}

.btn-dark:hover::after {
    animation: btnShine 0.6s ease;
}

@keyframes btnShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.btn-dark {
    position: relative;
    overflow: hidden;
}

/* ===========================
   Premium Cart Quantity Controls
   =========================== */

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--off-white);
    background: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--black);
}

.qty-btn:hover {
    background: var(--matt-grey);
    color: var(--white);
    border-color: var(--black);
}

.cart-item-quantity span {
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--light-grey);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    color: var(--black);
}

/* ===========================
   Premium Entrance Animations
   =========================== */

@keyframes premiumFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes premiumScaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.category-card {
    animation: premiumFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.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; }

.product-item {
    animation: premiumScaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.15s; }
.product-item:nth-child(3) { animation-delay: 0.2s; }
.product-item:nth-child(4) { animation-delay: 0.25s; }
.product-item:nth-child(5) { animation-delay: 0.3s; }
.product-item:nth-child(6) { animation-delay: 0.35s; }

/* ===========================
   Premium Gradient Overlays
   =========================== */

.shop-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(35, 35, 35, 1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* ===========================
   Premium Trust Items Animation
   =========================== */

.trust-item {
    opacity: 0;
    animation: premiumFadeInUp 0.6s ease forwards;
}

.trust-item:nth-child(1) { animation-delay: 0.2s; }
.trust-item:nth-child(2) { animation-delay: 0.3s; }
.trust-item:nth-child(3) { animation-delay: 0.4s; }
.trust-item:nth-child(4) { animation-delay: 0.5s; }

/* ===========================
   Premium Product Price Styling
   =========================== */

.product-price {
    position: relative;
    display: inline-block;
}

.product-price::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.product-item:hover .product-price::after {
    width: 100%;
}

/* ===========================
   Premium CTA Enhancement
   =========================== */

.custom-order-cta {
    position: relative;
    overflow: hidden;
}

.custom-order-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(213, 154, 18, 0.05), transparent);
    animation: ctaShimmer 4s ease-in-out infinite;
}

@keyframes ctaShimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* ===========================
   Premium Stats Animation
   =========================== */

.stat-number {
    display: inline-block;
}

.shop-stats .stat-item {
    opacity: 0;
    animation: premiumFadeInUp 0.8s ease forwards;
}

.shop-stats .stat-item:nth-child(1) { animation-delay: 0.5s; }
.shop-stats .stat-item:nth-child(3) { animation-delay: 0.7s; }
.shop-stats .stat-item:nth-child(5) { animation-delay: 0.9s; }

.shop-stats .stat-divider {
    opacity: 0;
    animation: premiumFadeInUp 0.8s ease forwards;
}

.shop-stats .stat-divider:nth-child(2) { animation-delay: 0.6s; }
.shop-stats .stat-divider:nth-child(4) { animation-delay: 0.8s; }

/* ===========================
   Premium Focus Visible
   =========================== */

.filter-tab:focus-visible,
.add-to-cart-btn:focus-visible,
.checkout-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ===========================
   Premium Newsletter Enhancement
   =========================== */

.newsletter-section {
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: newsletterGlow 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes newsletterGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

/* ===========================
   SHOP IMPROVEMENTS 2025
   =========================== */

/* Product Count Badge */
.product-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--medium-grey);
    margin-left: auto;
    padding-left: 1.5rem;
}

.product-count strong {
    color: var(--black);
    font-weight: 600;
}

/* Enhanced Hover Effects */
.product-item:hover .product-item-title {
    color: var(--accent);
}

.product-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-item:hover::after {
    transform: scaleX(1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--matt-grey);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.back-to-top svg {
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-3px);
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--off-white) 25%, var(--light-grey) 50%, var(--off-white) 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s ease-in-out infinite;
}

@keyframes skeletonLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.product-skeleton {
    background: var(--white);
}

.product-skeleton .skeleton-image {
    height: 350px;
    background: linear-gradient(90deg, var(--off-white) 25%, var(--light-grey) 50%, var(--off-white) 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s ease-in-out infinite;
}

.product-skeleton .skeleton-text {
    padding: 1.75rem;
}

.product-skeleton .skeleton-line {
    height: 20px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.product-skeleton .skeleton-line.short { width: 40%; }
.product-skeleton .skeleton-line.medium { width: 70%; }
.product-skeleton .skeleton-line.long { width: 100%; }

/* Lazy Loading Images */
.lazy-image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Additional Mobile Responsive for New Features */
@media (max-width: 992px) {
    .product-count {
        margin-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ===========================
   SHOP SEARCH BAR
   =========================== */

.shop-search-section {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--off-white);
}

.shop-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

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

.shop-search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 3.5rem;
    border: 2px solid var(--off-white);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    transition: all 0.3s ease;
}

.shop-search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(213, 154, 18, 0.15);
}

.shop-search-input::placeholder {
    color: var(--light-grey);
}

.search-input-container .search-icon {
    position: absolute;
    left: 1.2rem;
    color: var(--light-grey);
    pointer-events: none;
    transition: color 0.3s ease;
}

.shop-search-input:focus + .search-icon,
.search-input-container:hover .search-icon {
    color: var(--accent);
}

.clear-search-btn {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--light-grey);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clear-search-btn:hover {
    color: var(--black);
}

/* Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--off-white);
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.search-results-dropdown.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    color: var(--black);
    border-bottom: 1px solid var(--off-white);
    transition: all 0.2s ease;
}

.search-result-item:hover {
    background: var(--off-white);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--off-white);
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info {
    flex: 1;
}

.search-result-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.search-result-category {
    font-size: 0.8rem;
    color: var(--accent);
}

.search-result-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
}

.search-no-results {
    padding: 2rem;
    text-align: center;
    color: var(--light-grey);
}

.search-no-results svg {
    margin-bottom: 1rem;
    color: var(--off-white);
}

/* Mobile Search */
@media (max-width: 768px) {
    .shop-search-section {
        padding: 1.5rem 0;
    }

    .shop-search-input {
        font-size: 16px; /* Prevent iOS zoom */
        padding: 0.9rem 2.5rem 0.9rem 3rem;
    }

    .search-input-container .search-icon {
        left: 1rem;
    }

    .clear-search-btn {
        right: 0.75rem;
    }

    .search-result-item {
        padding: 0.75rem;
    }

    .search-result-image {
        width: 50px;
        height: 50px;
    }

    .search-result-title {
        font-size: 0.9rem;
    }
}

/* ===========================
   Shop Mobile Zoom Prevention
   =========================== */

/* Prevent pinch zoom on shop pages */
.is-shop-page {
    touch-action: pan-x pan-y;
    -webkit-touch-callout: none;
}

.is-shop-page * {
    touch-action: manipulation;
}

/* Prevent image zoom on long press */
.product-item-image img,
.category-image img,
.quick-view-image img {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Allow interaction with buttons */
.product-item-image .product-actions,
.product-item-image .product-badge {
    pointer-events: auto;
}

/* Shop-specific mobile fixes */
@media screen and (max-width: 768px) {
    /* Fix product grid overflow */
    .products-grid {
        overflow-x: hidden;
    }

    /* Ensure cart sidebar doesn't cause horizontal scroll */
    .cart-sidebar {
        max-width: 100%;
    }

    /* Fix quick view modal on mobile */
    .quick-view-modal {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .quick-view-content {
        margin: 20px auto;
        max-height: calc(100vh - 40px);
    }
}
