/* ===== CSS Variables ===== */
:root {
    --primary-gold: #C9A961;
    --dark-gold: #B8954A;
    --light-gold: #E5D4A6;
    --bg-cream: #FAF8F5;
    --bg-white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-gray: #6B6B6B;
    --text-light: #9B9B9B;
    --border-light: #E8E8E8;
    --shadow: rgba(0, 0, 0, 0.08);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    animation: pageLoad 0.6s ease-out;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* ===== Buttons ===== */
.btn-primary, .btn-secondary, .btn-outline, .btn-text, .btn-overlay {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 12px 28px;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.btn-text {
    padding: 0;
    color: var(--primary-gold);
    font-weight: 500;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.btn-text:hover::after {
    width: 100%;
}

.btn-text:hover {
    color: var(--dark-gold);
}

/* ===== Navigation ===== */
.navbar {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle:hover span {
    background: var(--primary-gold);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== Hero Banner Slider ===== */
.hero-slider {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 85vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 60px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-content {
    padding: 0 60px;
    animation: slideInLeft 0.8s ease-out;
}

.slide.active .slide-content {
    animation: slideInLeft 0.8s ease-out;
}

.slide-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.slide.active .slide-title {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.slide-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.slide.active .slide-subtitle {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.slide-cta {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.slide.active .slide-cta {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.slide-image {
    padding: 0 40px;
    opacity: 0;
    animation: slideInRight 0.8s ease-out 0.3s forwards;
}

.slide.active .slide-image {
    animation: slideInRight 0.8s ease-out 0.3s forwards;
}

.slide-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-gold);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-gold);
}

.indicator:hover {
    background: rgba(201, 169, 97, 0.7);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary-gold);
    width: 30px;
    border-radius: 6px;
}

/* Slider Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Page Transitions ===== */
body {
    animation: pageLoad 0.5s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
        transform: scale(0.98);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/* Smooth page exit */
body.page-exit {
    animation: pageExit 0.3s ease-in forwards;
}

@keyframes pageExit {
    from {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
    to {
        opacity: 0;
        transform: scale(1.02);
        filter: blur(5px);
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

.fade-in-scale {
    animation: fadeInScale 0.6s ease forwards;
}

.slide-up {
    animation: slideUp 0.8s ease forwards;
}

/* ===== Trust Section ===== */
.trust-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 30px 20px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    transition: transform 0.3s ease;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.2) rotate(5deg);
}

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== Collections Preview ===== */
.collections-preview {
    padding: 100px 0;
    background: var(--bg-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.collection-card {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInScale 0.6s ease forwards;
    backface-visibility: visible;
    transform-style: preserve-3d;
    will-change: transform;
}

.collection-card:nth-child(1) { animation-delay: 0.1s; }
.collection-card:nth-child(2) { animation-delay: 0.2s; }
.collection-card:nth-child(3) { animation-delay: 0.3s; }
.collection-card:nth-child(4) { animation-delay: 0.4s; }

.collection-card:hover {
    transform: translateY(-10px) scale(1.02) translateZ(0);
    box-shadow: 0 15px 40px var(--shadow);
}

.collection-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-image img {
    transform: scale(1.15) rotate(2deg);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.btn-overlay {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 2px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .btn-overlay {
    transform: translateY(0);
}

.collection-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
}

.collection-card p {
    padding: 0 20px 20px;
    font-size: 0.9rem;
}

/* ===== Why Choose Section ===== */
.why-choose {
    padding: 100px 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    opacity: 0;
    animation: fadeInScale 0.8s ease forwards;
    transition: transform 0.3s ease, background 0.3s ease;
    border-radius: 4px;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-cream);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.feature-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover img {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    font-size: 0.95rem;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
    min-height: 400px;
}

/* Video Background for CTA */
.cta-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.cta-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.cta-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 3rem;
}

.cta-content p {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-section .btn-primary {
    background: var(--bg-white);
    color: var(--primary-gold);
    padding: 15px 40px;
    font-size: 1.1rem;
}

.cta-section .btn-primary:hover {
    background: var(--primary-gold);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-secondary {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.cta-section .btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-gold);
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: var(--primary-gold);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
}

.social-links a:hover {
    background: var(--light-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-white) 100%);
    padding: 80px 0;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.page-header h1 {
    margin-bottom: 15px;
    animation: fadeIn 0.6s ease-out 0.1s backwards;
}

.page-header p {
    font-size: 1.1rem;
    animation: fadeIn 0.6s ease-out 0.2s backwards;
}

/* ===== Filter Section ===== */
.filter-section {
    padding: 40px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-gray);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-white);
}

/* ===== Products Section ===== */
.products-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease;
    opacity: 0;
    animation: fadeInScale 0.6s ease forwards;
    backface-visibility: visible;
    transform-style: preserve-3d;
    will-change: transform;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.25s; }
.product-card:nth-child(5) { animation-delay: 0.3s; }
.product-card:nth-child(6) { animation-delay: 0.35s; }
.product-card:nth-child(7) { animation-delay: 0.4s; }
.product-card:nth-child(8) { animation-delay: 0.45s; }

.product-card:hover {
    transform: translateY(-8px) scale(1.02) translateZ(0);
    box-shadow: 0 12px 35px var(--shadow);
}

.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.12);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gold);
    color: var(--bg-white);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-material {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-price {
    font-size: 1rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===== Product Detail Page ===== */
.product-detail {
    padding: 60px 0;
    background: var(--bg-white);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.main-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.zoom-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px var(--shadow);
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-gold);
}

.product-details {
    padding: 20px 0;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.product-details h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.product-tagline {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 30px;
}

.product-specs {
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--text-gray);
}

.product-description {
    margin-bottom: 30px;
}

.product-description h3 {
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.styling-tips {
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.styling-tips h3 {
    margin-bottom: 15px;
}

.styling-tips ul {
    list-style: disc;
    padding-left: 25px;
}

.styling-tips li {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.product-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.product-assurance {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.assurance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.assurance-item span {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.related-products {
    padding: 80px 0;
    background: var(--bg-cream);
}

.related-products h2 {
    text-align: center;
    margin-bottom: 50px;
}

/* ===== About Page ===== */
.brand-story {
    padding: 80px 0;
    background: var(--bg-white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 25px;
}

.story-text p {
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.craftsmanship-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.process-step h3 {
    margin-bottom: 15px;
}

.quality-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.quality-text h2 {
    margin-bottom: 30px;
}

.cert-item {
    margin-bottom: 25px;
}

.cert-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.why-choose-detailed {
    padding: 100px 0;
    background: var(--bg-cream);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.reason-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 4px;
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.reason-card h3 {
    margin-bottom: 15px;
}

.testimonials {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-cream);
    padding: 35px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-gold);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 40px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-cream);
    border-radius: 4px;
}

.method-icon {
    font-size: 2rem;
}

.method-details h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.method-details p {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.method-hours {
    font-size: 0.85rem;
    color: var(--text-light);
}

.quick-actions {
    background: var(--bg-cream);
    padding: 25px;
    border-radius: 4px;
}

.quick-actions h3 {
    margin-bottom: 15px;
}

.action-link {
    display: block;
    padding: 12px 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-light);
}

.action-link:last-child {
    border-bottom: none;
}

.action-link:hover {
    color: var(--primary-gold);
}

.contact-form {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 4px;
}

.contact-form h2 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-gold);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.faq-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 4px;
}

.faq-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* ===== Store Locator Page ===== */
.store-locator {
    padding: 80px 0;
    background: var(--bg-white);
}

.locator-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.stores-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.store-card {
    background: var(--bg-cream);
    border-radius: 4px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
}

.store-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-info {
    padding: 30px;
}

.store-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.store-address,
.store-hours,
.store-phone {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.store-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.appointment-form {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 4px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.appointment-form h2 {
    margin-bottom: 15px;
}

.appointment-form > p {
    margin-bottom: 30px;
}

.visit-benefits {
    padding: 100px 0;
    background: var(--bg-cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    margin-bottom: 15px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .collections-grid,
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-layout,
    .story-content,
    .quality-content {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: static;
    }
    
    .contact-layout,
    .locator-layout {
        grid-template-columns: 1fr;
    }
    
    .store-card {
        grid-template-columns: 1fr;
    }
    
    .store-card img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    /* Disable animations on mobile for better performance */
    * {
        animation: none !important;
        transition: none !important;
    }
    
    /* Keep only essential transitions */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: left 0.3s ease !important;
        box-shadow: 0 4px 10px var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-actions .btn-primary {
        display: none;
    }
    
    /* Reset all elements to visible */
    .collection-card,
    .product-card,
    .feature-card,
    .trust-item,
    .testimonial-card,
    .reason-card,
    .process-step {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Fix: Make all images visible on mobile */
    img {
        opacity: 1 !important;
        animation: none !important;
    }
    
    /* Hero Slider Mobile Styles */
    .hero-slider {
        min-height: 70vh;
    }
    
    .slider-container {
        height: 70vh;
    }
    
    .slide {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }
    
    .slide-content {
        padding: 0 30px;
        order: 2;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-cta {
        flex-direction: column;
    }
    
    .slide-image {
        padding: 0 20px;
        order: 1;
        margin-bottom: 20px;
    }
    
    .slide-image img {
        height: 300px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 20px;
    }
    
    .hero {
        min-height: 70vh;
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .collections-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid,
    .trust-grid,
    .process-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .testimonials-grid,
    .reasons-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .collections-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta,
    .slide-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
    }
    
    .slide-image img {
        height: 250px;
    }
}

/* ===== Loading Animation ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--bg-cream);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Smooth Mobile Menu ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 10px var(--shadow);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
}

/* ===== Hover Effects for Cards ===== */
.testimonial-card {
    background: var(--bg-cream);
    padding: 35px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px var(--shadow);
    border-left-width: 8px;
}

.faq-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
    background: var(--bg-cream);
}

.store-card {
    background: var(--bg-cream);
    border-radius: 4px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.store-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-card:hover img {
    transform: scale(1.1);
}

/* ===== Parallax Effect for Sections ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-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 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* ===== Smooth Focus States ===== */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* ===== Selection Styling ===== */
::selection {
    background: var(--primary-gold);
    color: var(--bg-white);
}

::-moz-selection {
    background: var(--primary-gold);
    color: var(--bg-white);
}

/* ===== Smooth Image Loading ===== */
img {
    opacity: 0;
    animation: imageLoad 0.6s ease-out forwards;
}

@keyframes imageLoad {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Backdrop Blur for Overlays ===== */
.collection-overlay,
.product-overlay {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* ===== Physics-Based Animations ===== */

/* Spring Physics Keyframes */
@keyframes spring-in {
    0% {
        transform: scale(0) translateY(50px);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) translateY(-10px);
        opacity: 1;
    }
    75% {
        transform: scale(0.95) translateY(5px);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

@keyframes bounce-in {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    60% {
        transform: translateY(20px);
        opacity: 1;
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes elastic-scale {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    75% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes swing {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-2deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes wobble {
    0%, 100% {
        transform: translateX(0) rotate(0deg) translateZ(0);
    }
    15% {
        transform: translateX(-5px) rotate(-2deg) translateZ(0);
    }
    30% {
        transform: translateX(4px) rotate(1deg) translateZ(0);
    }
    45% {
        transform: translateX(-3px) rotate(-1deg) translateZ(0);
    }
    60% {
        transform: translateX(2px) rotate(0.5deg) translateZ(0);
    }
    75% {
        transform: translateX(-1px) rotate(-0.25deg) translateZ(0);
    }
}

@keyframes jello {
    0%, 100% {
        transform: skewX(0deg) skewY(0deg);
    }
    30% {
        transform: skewX(25deg) skewY(25deg);
    }
    40% {
        transform: skewX(-15deg) skewY(-15deg);
    }
    50% {
        transform: skewX(10deg) skewY(10deg);
    }
    65% {
        transform: skewX(-5deg) skewY(-5deg);
    }
    75% {
        transform: skewX(2deg) skewY(2deg);
    }
}

/* Physics-Enhanced Elements */
.physics-spring {
    animation: spring-in 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.physics-bounce {
    animation: bounce-in 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.physics-elastic {
    animation: elastic-scale 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.physics-float {
    animation: float 3s ease-in-out infinite;
}

.physics-swing {
    transform-origin: top center;
    animation: swing 1s ease-in-out;
}

/* Enhanced Card Physics */
.collection-card,
.product-card {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    backface-visibility: visible;
    transform-style: preserve-3d;
}

/* Button Physics */
.btn-primary:active,
.btn-secondary:active,
.btn-outline:active {
    animation: jello 0.5s;
}

/* Trust Icon Physics */
.trust-icon {
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.trust-item:hover .trust-icon {
    animation: elastic-scale 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Product Badge Physics */
.product-badge {
    animation: float 3s ease-in-out infinite;
}

/* Navigation Physics */
.nav-menu a {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Form Input Physics */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    animation: spring-in 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Magnetic Effect for Buttons */
.btn-magnetic {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Gravity Effect */
@keyframes gravity-drop {
    0% {
        transform: translateY(-500px) rotate(0deg);
        opacity: 0;
    }
    60% {
        transform: translateY(30px) rotate(180deg);
        opacity: 1;
    }
    80% {
        transform: translateY(-15px) rotate(200deg);
    }
    90% {
        transform: translateY(8px) rotate(350deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 1;
    }
}

.physics-gravity {
    animation: gravity-drop 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Pendulum Effect */
@keyframes pendulum {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(20deg);
    }
    75% {
        transform: rotate(-20deg);
    }
}

.physics-pendulum {
    transform-origin: top center;
    animation: pendulum 2s ease-in-out infinite;
}

/* Momentum Scroll Effect */
.momentum-scroll {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

/* Inertia Effect for Cards */
.card-inertia {
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    backface-visibility: visible;
    transform-style: preserve-3d;
}

/* Ensure cards stay visible during all animations */
.collection-card *,
.product-card * {
    backface-visibility: visible;
}

.collection-image,
.product-image {
    backface-visibility: visible;
    transform-style: preserve-3d;
}

/* Smooth Fade on Load - No Bounce */
.hero-title,
.hero-subtitle,
.hero-cta {
    animation: fadeIn 0.8s ease-out backwards;
}

/* Elastic Hover for Images */
.collection-image img,
.product-image img {
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Smooth Page Transitions - No Bounce */
@keyframes page-enter-smooth {
    0% {
        opacity: 0;
        transform: scale(0.98);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

body {
    animation: page-enter-smooth 0.5s ease-out;
}

/* Rubber Band Effect */
@keyframes rubber-band {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scaleX(1.25) scaleY(0.75);
    }
    40% {
        transform: scaleX(0.75) scaleY(1.25);
    }
    50% {
        transform: scaleX(1.15) scaleY(0.85);
    }
    65% {
        transform: scaleX(0.95) scaleY(1.05);
    }
    75% {
        transform: scaleX(1.05) scaleY(0.95);
    }
    100% {
        transform: scale(1);
    }
}

.physics-rubber-band:hover {
    animation: rubber-band 0.8s;
}

/* Shake Effect */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}

.physics-shake {
    animation: shake 0.5s;
}

/* Pulse with Physics */
@keyframes pulse-physics {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(201, 169, 97, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0);
    }
}

.physics-pulse {
    animation: pulse-physics 2s infinite;
}

/* Rotation with Momentum */
@keyframes rotate-momentum {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.physics-rotate {
    animation: rotate-momentum 20s linear infinite;
}

/* Magnetic Pull Effect */
.magnetic-area {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Fix for Card Visibility Issues ===== */

/* Ensure all cards remain visible during animations */
.collection-card,
.product-card,
.feature-card,
.testimonial-card {
    opacity: 1 !important;
    visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-backface-visibility: visible !important;
}

/* Override any conflicting animations on hover */
.collection-card:hover,
.product-card:hover {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure images stay visible */
.collection-image img,
.product-image img {
    opacity: 1 !important;
    visibility: visible !important;
    backface-visibility: visible !important;
}

/* Prevent overflow issues that might hide content */
.collection-card,
.product-card {
    overflow: visible;
    position: relative;
    z-index: 1;
}

.collection-card:hover,
.product-card:hover {
    z-index: 10;
    overflow: visible;
}

/* Fix for 3D transform issues */
.collection-card > *,
.product-card > * {
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
}

/* ===== Alternative Smooth Page Transitions ===== */

/* Option 1: Fade with Zoom (Current - Active) */
@keyframes fadeZoom {
    from {
        opacity: 0;
        transform: scale(0.98);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/* Option 2: Fade with Slide Up */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Option 3: Fade with Slide Down */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Option 4: Fade with Rotate */
@keyframes fadeRotate {
    from {
        opacity: 0;
        transform: rotate(-2deg) scale(0.98);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Option 5: Curtain Effect */
@keyframes curtainReveal {
    from {
        opacity: 0;
        clip-path: circle(0% at 50% 50%);
    }
    to {
        opacity: 1;
        clip-path: circle(150% at 50% 50%);
    }
}

/* Option 6: Wipe Effect */
@keyframes wipeIn {
    from {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

/* Smooth transitions for all interactive elements */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    body {
        animation: none !important;
    }
}
