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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #fdf9f6;
    overflow-x: hidden;
    max-width: 100%;
}

/* Color Variables */
:root {
    --turquoise-primary: #20b2aa;
    --turquoise-light: #48cdc7;
    --turquoise-dark: #1a9892;
    --turquoise-accent: rgba(32, 178, 170, 0.1);
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: var(--turquoise-primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    z-index: 1001;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--turquoise-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--turquoise-primary);
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--turquoise-light);
    opacity: 0.7;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 90px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(160, 82, 45, 0.5), rgba(139, 69, 19, 0.5)), 
                url('./photo-collage.png') center/cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 69, 19, 0.05);
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.main-title {
    font-weight: 700 !important;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-size: 3.5rem !important;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #333;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--turquoise-primary), var(--turquoise-light));
    border-radius: 2px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #8b4513, var(--turquoise-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    line-height: 1.1;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Portfolio Grid */
.portfolio {
    padding: 50px 0 30px;
}

.portfolio-actions {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.view-work-btn {
    display: inline-block;
    background: linear-gradient(135deg, #a0522d, #8b4513);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(160, 82, 45, 0.3);
}

.view-work-btn:hover {
    background: linear-gradient(135deg, #b5633a, #a0522d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 82, 45, 0.4);
}

.view-work-btn:active,
.view-work-btn.active {
    background: linear-gradient(135deg, var(--turquoise-primary), var(--turquoise-dark)) !important;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.4) !important;
}

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

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(32, 178, 170, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: 5% auto;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--turquoise-light);
}

#lightbox-image {
    max-width: 60%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-info {
    color: white;
    max-width: 30%;
    padding: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}

.lightbox-info h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.lightbox-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* About Page Styles */
.about-hero,
.available-hero,
.contact-hero,
.portfolio-hero {
    padding: 90px 0 20px;
    text-align: center;
    background: linear-gradient(135deg, #f5f1eb 0%, #e8ddd4 100%);
    position: relative;
}

.about-hero::before,
.available-hero::before,
.contact-hero::before,
.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(32, 178, 170, 0.05) 100%);
}

.about-content,
.available-content,
.contact-content,
.portfolio-content {
    padding: 50px 0 30px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.artist-name {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
}

.about-text .intro-text {
    font-size: 1.3rem;
    font-weight: 300;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.artist-details {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.artist-details h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333;
}

.artist-details ul {
    list-style: none;
}

.artist-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.artist-details li:last-child {
    border-bottom: none;
}

.artist-details a {
    color: var(--turquoise-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.artist-details a:hover {
    color: var(--turquoise-dark);
    text-decoration: underline;
}

/* Artist Quote Styling */
.artist-quote {
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    color: #8b4513;
    background: #f9f6f3;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #a0522d;
    border-radius: 0 8px 8px 0;
    line-height: 1.7;
    position: relative;
}

.artist-quote::before {
    content: '"';
    font-size: 3rem;
    color: #a0522d;
    position: absolute;
    top: -10px;
    left: 15px;
    font-family: serif;
}

/* Back Arrow Styles */
.back-arrow {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 1000;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(160, 82, 45, 0.2);
}

.back-link:hover {
    background: #a0522d;
    color: white;
    transform: translateX(-2px);
    box-shadow: 0 4px 15px rgba(160, 82, 45, 0.3);
}

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

.back-link:hover svg {
    transform: translateX(-2px);
}

/* Mobile back arrow adjustment */
@media (max-width: 768px) {
    .back-arrow {
        top: 80px;
        left: 15px;
    }
    
    .back-link {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* Available Work Styles */
/* Available Work E-commerce Styles */
.available-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.available-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.available-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(32, 178, 170, 0.15);
}

.available-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
}

.available-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.available-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.available-info h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.available-medium {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    font-style: italic;
}

.available-dimensions {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.available-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--turquoise-primary);
    margin-bottom: 0.75rem;
}

.available-description {
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-size: 0.9rem;
}



/* Add to Cart Button Styles */
.add-to-cart-btn {
    background: linear-gradient(135deg, #a0522d, #8b4513);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 10px rgba(160, 82, 45, 0.3);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #b5633a, #a0522d);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(160, 82, 45, 0.4);
}

.add-to-cart-btn:active,
.add-to-cart-btn.clicked {
    background: linear-gradient(135deg, var(--turquoise-primary), var(--turquoise-dark)) !important;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.4) !important;
    transform: translateY(-1px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Enhanced Purchase Info */
.purchase-info {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 4rem;
}

.purchase-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #333;
}

.purchase-info h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #444;
}

.purchase-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.shipping-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.shipping-info li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.shipping-info li:last-child {
    border-bottom: none;
}

.order-info {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--turquoise-primary);
    box-shadow: 0 0 0 3px var(--turquoise-accent);
}

.submit-btn {
    background: linear-gradient(135deg, #a0522d, #8b4513);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(160, 82, 45, 0.3);
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #b5633a, #a0522d);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 82, 45, 0.4);
}

.submit-btn:active,
.submit-btn.clicked {
    background: linear-gradient(135deg, var(--turquoise-primary), var(--turquoise-dark)) !important;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.4) !important;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    display: none;
}

.form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-status.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* reCAPTCHA Styling */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}

.contact-info {
    padding: 2rem;
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #333;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.info-item p {
    color: #666;
}

.info-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--turquoise-primary);
}

.services-info ul {
    list-style: none;
    color: #666;
}

.services-info li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1rem;
}

.services-info li::before {
    content: '•';
    color: #333;
    position: absolute;
    left: 0;
}

.response-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0;
    margin-top: 2rem;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Social Media Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8b4513;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    color: var(--turquoise-primary);
    transform: scale(1.1);
}

.social-icon:active,
.social-icon.clicked {
    color: var(--turquoise-primary) !important;
}

/* Featured In Link Styling */
.featured-link {
    color: #333 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-link:visited {
    color: var(--turquoise-primary) !important;
}

.featured-link:hover {
    color: #8b4513 !important;
}

.social-icon svg {
    transition: all 0.3s ease;
}

/* Mobile Navigation Styles */
.nav-menu-active {
    position: fixed !important;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex !important;
}

.nav-toggle-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Snipcart Cart Button Override - Bottom Right Position */
.snipcart-cart-button {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
    background: linear-gradient(135deg, #a0522d, #8b4513) !important;
    border-radius: 50px !important;
    padding: 12px 16px !important;
    box-shadow: 0 4px 20px rgba(160, 82, 45, 0.3) !important;
    transition: all 0.3s ease !important;
    color: white !important;
}

.snipcart-cart-button:hover {
    background: linear-gradient(135deg, #b5633a, #a0522d) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 25px rgba(160, 82, 45, 0.4) !important;
}

.snipcart-cart-button:active {
    background: linear-gradient(135deg, var(--turquoise-primary), var(--turquoise-dark)) !important;
    box-shadow: 0 4px 20px rgba(32, 178, 170, 0.4) !important;
}

/* Snipcart Cart Item Image Styling - Make Images Square */
.snipcart-item__image,
.snipcart-cart-item__image {
    width: 60px !important;
    height: 60px !important;
    object-fit: cover !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important;
}

.snipcart-item__image img,
.snipcart-cart-item__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 4px !important;
}

/* Cart Item Container Styling */
.snipcart-item,
.snipcart-cart-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .available-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .available-info {
        padding: 1.25rem;
    }
    
    .available-info h3 {
        font-size: 1.25rem;
    }
    
    .available-price {
        font-size: 1.15rem;
    }
    
    .purchase-info {
        padding: 2rem;
    }
    
    .snipcart-cart-button {
        bottom: 15px !important;
        right: 15px !important;
        padding: 10px 14px !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lightbox-content {
        flex-direction: column;
        margin: 10% auto;
    }
    
    #lightbox-image {
        max-width: 90%;
    }
    
    .lightbox-info {
        max-width: 90%;
        padding: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .available-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Cart Image Fixes - Ensure Square Images */
    .snipcart-item__image,
    .snipcart-cart-item__image {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        object-fit: cover !important;
        border-radius: 4px !important;
        flex-shrink: 0 !important;
    }
    
    .snipcart-item__image img,
    .snipcart-cart-item__image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 4px !important;
        aspect-ratio: 1 !important;
    }
    
    .page-title {
        font-size: 2rem;
        line-height: 1.1;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        hyphens: none;
        word-break: normal;
        overflow-wrap: normal;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .main-title {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        max-width: 320px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        hyphens: none !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        min-height: 250px;
    }
    
    .available-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .purchase-info {
        padding: 1.5rem;
    }
}

/* Extra small screens - ensure title stays exactly two lines */
@media (max-width: 360px) {
    .main-title {
        font-size: 1.6rem !important;
        line-height: 1.1 !important;
        max-width: 300px !important;
        hyphens: none !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }
    
    .page-title {
        font-size: 1.6rem;
        max-width: 300px;
    }
}

/* Basic Snipcart Styling - Keep it simple */
.snipcart-cart-button {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
