/* Product Card */
.product-card {
    position: relative;
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--color-ivory);
}

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

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

.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background-color: var(--color-espresso);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.product-info {
    padding: var(--space-lg);
}

.product-name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--color-espresso);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.price-current {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-espresso);
}

.price-original {
    font-size: var(--text-sm);
    color: var(--color-taupe);
    text-decoration: line-through;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-ivory) 0%, var(--color-sand) 100%);
    overflow: hidden;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-mocha);
    margin-bottom: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background-color: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius-sm);
}

.hero-text h1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    background-color: transparent;
    color: var(--color-espresso);
    border: 1.5px solid var(--color-espresso);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--color-espresso);
    color: white;
}

.hero-features {
    display: flex;
    gap: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-sand);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-charcoal);
}

.hero-feature svg {
    color: var(--color-mocha);
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.hero-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background-color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.badge-text {
    display: block;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-mocha);
}

.badge-season {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-taupe);
    margin-top: 2px;
}
    color: var(--color-espresso);
}

.hero-text p {
    font-size: var(--text-xl);
    color: var(--color-mocha);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Category Section */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.category-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 45, 45, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
}

.category-name {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: white;
    margin-bottom: var(--space-sm);
}

.category-link {
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sand);
}

/* Feature Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.feature-item {
    text-align: center;
    padding: var(--space-xl);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background-color: var(--color-ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-mocha);
}

.feature-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-espresso);
    margin-bottom: var(--space-sm);
}

.feature-desc {
    font-size: var(--text-sm);
    color: var(--color-mocha);
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--color-espresso);
    padding: var(--space-3xl) 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.newsletter-content p {
    color: var(--color-taupe);
    margin-bottom: var(--space-xl);
}

.newsletter-form {
    display: flex;
    gap: var(--space-md);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md);
    border: 1px solid var(--color-mocha);
    border-radius: var(--radius-sm);
    background-color: transparent;
    color: var(--color-cream);
    font-size: var(--text-base);
}

.newsletter-form input::placeholder {
    color: var(--color-taupe);
}

.newsletter-form button {
    padding: var(--space-md) var(--space-xl);
    background-color: var(--color-cream);
    color: var(--color-espresso);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--color-sand);
}

/* Cart Styles */
.cart-section {
    padding: var(--space-3xl) 0;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
}

.cart-items {
    background-color: white;
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-sand);
}

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

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: var(--color-ivory);
}

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

.cart-item-details h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.cart-item-price {
    font-weight: 600;
    color: var(--color-espresso);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background-color: var(--color-ivory);
}

.quantity-value {
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.cart-summary {
    background-color: white;
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    height: fit-content;
}

.summary-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-sand);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
}

.summary-row.total {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-espresso);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-sand);
    margin-top: var(--space-md);
}

/* Checkout Styles */
.checkout-section {
    padding: var(--space-3xl) 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.checkout-form {
    background-color: white;
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.form-section {
    margin-bottom: var(--space-xl);
}

.form-section-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-sand);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

/* Product Detail */
.product-detail {
    padding: var(--space-3xl) 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.product-gallery {
    position: relative;
}

.main-image {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--color-ivory);
    margin-bottom: var(--space-md);
}

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

.thumbnail-list {
    display: flex;
    gap: var(--space-sm);
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--color-mocha);
}

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

.product-info-detail h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
}

.product-price-detail {
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--color-espresso);
    margin-bottom: var(--space-lg);
}

.product-description {
    color: var(--color-mocha);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.add-to-cart-form {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.quantity-input {
    width: 100px;
    text-align: center;
}

.product-meta {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-sand);
}

.meta-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
}

.meta-label {
    font-weight: 600;
    color: var(--color-espresso);
    min-width: 100px;
}

/* Notification */
.notification {
    position: fixed;
    top: calc(var(--header-height) + var(--space-md));
    right: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background-color: var(--color-espresso);
    color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transform: translateX(150%);
    transition: transform 0.3s ease;
}

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

.notification.success {
    background-color: #4a7c59;
}

.notification.error {
    background-color: #c44d4d;
}

/* Page Header */
.page-header {
    background-color: var(--color-ivory);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.page-header h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
}

.page-header p {
    color: var(--color-mocha);
    font-size: var(--text-lg);
}

/* Content Pages */
.content-section {
    padding: var(--space-3xl) 0;
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
}

.content-section h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.content-section p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
    color: var(--color-mocha);
}

.content-section ul,
.content-section ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.content-section li {
    margin-bottom: var(--space-sm);
    color: var(--color-mocha);
}

/* Collection Showcase */
.collection-showcase {
    background-color: var(--color-cream);
}

.showcase-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.showcase-header h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-md);
}

.showcase-header p {
    color: var(--color-mocha);
    font-size: var(--text-lg);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: var(--space-lg);
}

.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.collection-large {
    grid-column: span 2;
    grid-row: span 2;
}

.collection-wide {
    grid-column: span 2;
}

.collection-image {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

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

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

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 45, 45, 0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
    color: white;
}

.collection-count {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: var(--space-xs);
}

.collection-overlay h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xs);
}

.collection-overlay p {
    font-size: var(--text-sm);
    opacity: 0.9;
}

/* Craftsmanship Section */
.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-mocha);
    margin-bottom: var(--space-md);
}

.craftsmanship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.craftsmanship-text h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
}

.craftsmanship-text p {
    color: var(--color-mocha);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.craftsmanship-steps {
    display: grid;
    gap: var(--space-lg);
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-md);
    padding: var(--space-lg);
    background-color: white;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-mocha);
}

.step-number {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-mocha);
    opacity: 0.5;
    line-height: 1;
}

.step-item h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.step-item p {
    font-size: var(--text-sm);
    color: var(--color-taupe);
}

/* Testimonials */
.testimonial-section {
    text-align: center;
}

.testimonial-section h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2xl);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    text-align: left;
}

.testimonial-card {
    background-color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-mocha);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.testimonial-author strong {
    display: block;
    color: var(--color-espresso);
    font-weight: 600;
}

.testimonial-author span {
    font-size: var(--text-sm);
    color: var(--color-taupe);
}

/* Newsletter Section Update */
.newsletter-section .section-label {
    color: var(--color-gold);
    background-color: rgba(201, 162, 39, 0.2);
}

.newsletter-note {
    font-size: var(--text-xs);
    color: var(--color-taupe);
    margin-top: var(--space-md);
}

/* Footer Redesign */
.site-footer {
    background-color: var(--color-espresso);
    color: var(--color-cream);
}

.footer-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-cream);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.footer-desc {
    font-size: var(--text-sm);
    color: var(--color-taupe);
    line-height: 1.7;
    max-width: 300px;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.footer-nav-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-xl);
}

.footer-nav-link {
    font-size: var(--text-sm);
    color: var(--color-cream);
    opacity: 0.8;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.footer-nav-link:hover {
    opacity: 1;
}

.footer-divider {
    width: 1px;
    height: 60px;
    background-color: var(--color-mocha);
    opacity: 0.3;
}

.footer-contact {
    text-align: right;
}

.footer-contact-title {
    font-size: var(--text-sm);
    color: var(--color-taupe);
    margin-bottom: var(--space-sm);
}

.footer-email {
    display: block;
    font-size: var(--text-base);
    color: var(--color-cream);
    margin-bottom: var(--space-lg);
    transition: color 0.2s ease;
}

.footer-email:hover {
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    background-color: var(--color-gold);
    color: var(--color-espresso);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg) 0;
}

.footer-bottom-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--color-taupe);
}

.footer-payment-icons {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    height: 24px;
}

.payment-icon.visa {
    background: linear-gradient(135deg, #1A1F71 0%, #1A1F71 100%);
    color: white;
    font-style: italic;
}

.payment-icon.mastercard {
    background: white;
    color: #333;
    position: relative;
}

.payment-icon.mastercard::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #EB001B;
    border-radius: 50%;
    margin-right: 4px;
}

.payment-icon.mastercard::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #F79E1B;
    border-radius: 50%;
    margin-left: -6px;
    opacity: 0.8;
}

.payment-icon.amex {
    background: linear-gradient(135deg, #016FD0 0%, #016FD0 100%);
    color: white;
}

.payment-icon.paypal {
    background: linear-gradient(135deg, #003087 0%, #009CDE 100%);
    color: white;
}
