/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Gold/ochre metallic from logo */
    --primary-color: #C9A961;
    --secondary-color: #B8941F;
    --accent-color: #E8D5A3;
    --gold-light: #D4AF37;
    --gold-dark: #A0823D;
    
    /* Forest green from logo */
    --forest-green: #1B4D3E;
    --forest-green-dark: #0F2E24;
    --forest-green-darker: #0A1F18;
    --forest-green-light: #2D6B56;
    --forest-green-lighter: #3A7A63;
    
    /* Text colors */
    --text-dark: #1B4D3E;
    --text-light: #4A6B5F;
    --white: #ffffff;
    
    /* Background colors */
    --bg-light: #F5F1E8;
    --bg-cream: #FAF8F3;
    --bg-warm: #F8F5ED;
    
    /* Shadows and effects */
    --shadow: rgba(27, 77, 62, 0.15);
    --shadow-dark: rgba(10, 31, 24, 0.25);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    background-color: var(--forest-green-dark);
    box-shadow: 0 2px 10px var(--shadow-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    min-height: 100px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 0 2rem;
    margin: -1.5rem 0;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.logo-img {
    height: 120px;
    width: 120px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

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

/* Hide any text that might appear if image doesn't load */
.nav-brand h1 {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}

.nav-menu-left {
    justify-content: flex-end;
    padding-right: 1rem;
}

.nav-menu-right {
    justify-content: flex-start;
    padding-left: 1rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.nav-menu a:hover {
    background-color: rgba(201, 169, 97, 0.15);
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
    background-color: rgba(201, 169, 97, 0.12);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    margin-right: -0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.hamburger:hover span {
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(27, 77, 62, 0.75), rgba(15, 46, 36, 0.85)),
                url('/images/background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 77, 62, 0.65), rgba(10, 31, 24, 0.75));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

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

.btn-primary {
    background-color: var(--primary-color);
    color: var(--forest-green-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--forest-green-dark);
    border-color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--bg-warm);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

/* Instagram Feed Section */
.instagram-feed {
    padding: 5rem 0;
    background-color: var(--bg-cream);
}

.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.instagram-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.instagram-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-post {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-5px);
}

.instagram-post iframe {
    width: 100%;
    border: none;
    display: block;
}

.instagram-post blockquote.instagram-media {
    background: #FFF;
    border: 0;
    border-radius: 3px;
    box-shadow: 0 0 1px 0 rgba(0,0,0,0.5), 0 1px 10px 0 rgba(0,0,0,0.15);
    margin: 1px;
    max-width: 540px;
    min-width: 326px;
    padding: 0;
    width: 99.375%;
    width: -webkit-calc(100% - 2px);
    width: calc(100% - 2px);
}

.loading-spinner {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

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

.instagram-loading p {
    font-size: 1.1rem;
}

.instagram-loading code {
    background-color: rgba(212, 175, 55, 0.2);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--forest-green);
}

/* About Preview */
.about-preview {
    padding: 5rem 0;
}

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

.about-preview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-preview-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--forest-green-dark), var(--forest-green-darker));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 2px solid rgba(201, 169, 97, 0.3);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 4rem 0;
}

.about-section {
    margin-bottom: 3rem;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.offer-list {
    list-style: none;
    padding-left: 0;
}

.offer-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

/* Gallery */
.gallery {
    padding: 4rem 0;
    background-color: var(--bg-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    background: linear-gradient(135deg, var(--accent-color), var(--gold-light));
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--forest-green-dark);
}

.gallery-placeholder span {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.gallery-placeholder p {
    font-size: 1.2rem;
    color: var(--forest-green-dark);
    font-weight: 500;
    margin: 0.3rem 0;
}

.gallery-price {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: var(--forest-green) !important;
    margin: 0.5rem 0 !important;
}

.btn-add-to-cart {
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    background-color: var(--forest-green-dark);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-add-to-cart:hover {
    background-color: var(--primary-color);
    color: var(--forest-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(201, 169, 97, 0.3);
}

.gallery-note {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

.gallery-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.gallery-note a:hover {
    text-decoration: underline;
}

/* Contact */
.contact {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

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

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background-color: var(--bg-cream);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.contact-form-container h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

/* Location Section */
.location-section {
    padding: 4rem 0;
    background-color: var(--bg-cream);
}

.location-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.location-section > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.location-info h3 {
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

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

.location-contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(27, 77, 62, 0.2);
}

.location-contact-info p {
    margin-bottom: 0.75rem;
}

.location-contact-info a {
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.location-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        min-height: 300px;
    }
}

/* Shopping Cart */
.cart-section {
    padding: 4rem 0;
    background-color: var(--white);
    min-height: 60vh;
}

.cart-section h2 {
    font-size: 2rem;
    color: var(--forest-green);
    margin-bottom: 2rem;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.cart-items-container h2,
.cart-summary h2 {
    font-size: 1.8rem;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.empty-cart-message {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

.empty-cart-message p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cart-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px var(--shadow);
    display: grid;
    grid-template-columns: 100px 2fr 150px 120px 40px;
    gap: 1.5rem;
    align-items: center;
    position: relative;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-placeholder {
    font-size: 3rem;
}

.cart-item-details h3 {
    font-size: 1.3rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.cart-item-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cart-item-customizations {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background-color: var(--bg-cream);
    border-radius: 5px;
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.cart-item-customizations strong {
    color: var(--forest-green);
    font-weight: 600;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 2px solid var(--forest-green);
    background-color: var(--white);
    color: var(--forest-green);
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background-color: var(--forest-green);
    color: var(--white);
}

.quantity-input {
    width: 60px;
    height: 35px;
    text-align: center;
    border: 2px solid var(--forest-green);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
}

.cart-item-total {
    text-align: right;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--forest-green);
}

.remove-item {
    width: 35px;
    height: 35px;
    border: none;
    background-color: transparent;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.remove-item:hover {
    background-color: #ffebee;
    color: #d32f2f;
}

.cart-summary {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px var(--shadow);
    position: sticky;
    top: 100px;
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-top: 1rem;
}

.summary-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 1rem 0;
}

.btn-checkout {
    width: 100%;
    margin-bottom: 1rem;
    padding: 15px;
    font-size: 1.1rem;
}

.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

/* Customization Modal */
.customize-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.customize-modal-content {
    background-color: var(--white);
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px var(--shadow-dark);
    position: relative;
}

.customize-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid var(--bg-cream);
}

.customize-modal-header h2 {
    font-size: 2rem;
    color: var(--forest-green);
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.customize-modal-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.customize-modal-close:hover {
    color: var(--forest-green);
}

.customize-modal-body {
    padding: 2rem;
}

.customize-product-info {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bg-cream);
}

.customize-product-info h3 {
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.base-price {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.customize-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.customize-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.customize-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.required {
    color: #e74c3c;
}

.customize-select,
.customize-input,
.customize-textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
    color: var(--text-dark);
}

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

.customize-textarea {
    resize: vertical;
    min-height: 80px;
}

.customize-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.customize-price-summary {
    background-color: var(--bg-cream);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    color: var(--text-dark);
    font-size: 1rem;
}

.price-row.total {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-top: 0.5rem;
}

.price-divider {
    height: 1px;
    background-color: #d0d0d0;
    margin: 0.5rem 0;
}

.customize-note {
    background-color: var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.customize-note p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

.customize-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-cream);
}

.customize-actions .btn {
    flex: 1;
    padding: 12px 24px;
}

@media (max-width: 768px) {
    .customize-modal-content {
        max-width: 100%;
        margin: 10px;
    }
    
    .customize-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .customize-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .customize-modal-body {
        padding: 1.5rem;
    }
    
    .customize-actions {
        flex-direction: column;
    }
    
    .customize-actions .btn {
        width: 100%;
    }
}

.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: var(--forest-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px var(--shadow);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Success Page */
.success-section {
    padding: 6rem 0;
    background-color: var(--bg-cream);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    font-weight: bold;
}

.success-content h1 {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.success-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.success-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--forest-green-darker);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 2px solid rgba(201, 169, 97, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 70px;
    width: 70px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(1.1);
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        min-height: 100px;
        padding: 0.5rem 0;
        position: sticky;
        top: 0;
        overflow: visible;
    }

    .navbar .container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 0.5rem 15px;
        position: relative;
        gap: 10px;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
        flex-shrink: 0;
        cursor: pointer;
        padding: 0.5rem;
        margin: 0;
        justify-self: start;
    }

    .nav-brand {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: -1.5rem 0;
        justify-self: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }

    .logo-img {
        height: 110px;
        width: 110px;
        margin: 0;
        max-width: 110px;
        max-height: 110px;
        position: relative;
        z-index: 1001;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }
    
    /* Invisible spacer on right to balance hamburger on left */
    .navbar .container::after {
        content: '';
        width: 40px;
        height: 40px;
        justify-self: end;
    }

    .nav-menu-left,
    .nav-menu-right {
        display: none;
    }

    /* Mobile menu overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, var(--forest-green-dark), var(--forest-green-darker));
        flex-direction: column;
        padding: 5rem 0 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

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

    /* Mobile menu backdrop - will be added via JavaScript */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        padding: 1.25rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background-color: rgba(201, 169, 97, 0.2);
        padding-left: 2.5rem;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .nav-menu a.active {
        border-left: 4px solid var(--primary-color);
        padding-left: calc(2rem - 4px);
        background-color: rgba(201, 169, 97, 0.15);
        color: var(--primary-color);
        font-weight: 600;
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

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

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

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

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .instagram-container {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 40px;
        width: 40px;
    }

    .footer-logo {
        height: 60px;
        width: 60px;
    }

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

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .cart-item-quantity,
    .cart-item-total {
        grid-column: 2;
        justify-self: start;
        margin-top: 0.5rem;
    }

    .remove-item {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .cart-summary {
        position: static;
    }
}

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

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

    .about-preview-text h2,
    .contact-info h2,
    .contact-form-container h2 {
        font-size: 1.5rem;
    }
}

