:root {
    --deep-teal: #104968;
    --warm-beige: #f7f3f0;
    --golden-yellow: #e6c967;
    --terracotta-red: #99331d;
    --white: #ffffff;
    --text-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tenor Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-beige);
}

/* Header Styles */
.header {
    background-color: var(--deep-teal);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo h1 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 400;
}

.logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--golden-yellow);
    color: var(--deep-teal);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--deep-teal);
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--golden-yellow);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--terracotta-red) 0%, #371f1a 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q30,10 40,20 T60,20 T80,20" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Page Hero - for individual pages */
.page-hero {
    background: linear-gradient(135deg, var(--deep-teal) 0%, #0a2d3f 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q30,10 40,20 T60,20 T80,20" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>') repeat;
    opacity: 0.2;
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-section {
    margin-bottom: 4rem;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-section:hover {
    transform: translateY(-5px);
}

.category-title {
    font-size: 2.5rem;
    color: var(--deep-teal);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.category-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.category-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.category-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-traditional {
    background-color: var(--terracotta-red);
    color: var(--white);
}

.btn-traditional:hover {
    background-color: #b83a1f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(153, 51, 29, 0.4);
}

.btn-contemporary {
    background-color: var(--golden-yellow);
    color: var(--deep-teal);
}

.btn-contemporary:hover {
    background-color: #f0d574;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 201, 103, 0.4);
}

.btn-customization {
    background-color: var(--deep-teal);
    color: var(--white);
}

.btn-customization:hover {
    background-color: #3697cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 201, 103, 0.4);
}

/* Product Gallery Styles */
.product-gallery {
    margin-bottom: 4rem;
}

.gallery-title {
    font-size: 2.5rem;
    color: var(--deep-teal);
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.image-info {
    padding: 1.5rem;
}

.image-info h3 {
    font-size: 1.3rem;
    color: var(--deep-teal);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.image-info p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Image Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    margin: 1vh auto;
    width: 90%;
    max-width: 900px;
    height: 95vh;
    max-height: 95vh;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: var(--deep-teal);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.modal-controls {
    display: flex;
    gap: 0.5rem;
}

.modal-btn {
    background: var(--golden-yellow);
    color: var(--deep-teal);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.modal-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.print-btn:hover {
    background: #e8f5e8;
    color: #2e7d32;
}

.download-btn:hover {
    background: #e3f2fd;
    color: #1976d2;
}

.close {
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--golden-yellow);
}

.modal-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #f8f9fa;
    overflow: hidden;
    min-height: 0;
}

.modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.modal-footer {
    background: var(--warm-beige);
    padding: 1rem 1.5rem;
    border-top: 1px solid #dee2e6;
    flex-shrink: 0;
}

.image-info {
    margin: 0;
    text-align: center;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.watermark {
    color: var(--terracotta-red);
    font-weight: 600;
}

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }
    
    .print-container,
    .print-container * {
        visibility: visible;
    }
    
    .print-container {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        page-break-inside: avoid;
    }
    
    .print-image {
        max-width: 80%;
        max-height: 70%;
        object-fit: contain;
        margin-bottom: 2rem;
    }
    
    .print-info {
        text-align: center;
        color: #333;
        font-family: 'Tenor Sans', sans-serif;
    }
    
    .print-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: #104968;
    }
    
    .print-watermark {
        font-size: 1rem;
        color: #99331d;
        font-weight: bold;
    }
    
    @page {
        margin: 1in;
        size: auto;
    }
}

/* Mini Artisan Profile in Categories */
.artisan-mini-profile {
    background: var(--warm-beige);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--golden-yellow);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.artisan-mini-photo {
    text-align: center;
    margin-bottom: 1rem;
}

.artisan-mini-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--golden-yellow);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.artisan-mini-info h4 {
    color: var(--deep-teal);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.artisan-mini-info p {
    color: var(--terracotta-red);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-mini {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    background: var(--deep-teal);
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-btn:hover {
    background: var(--terracotta-red);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(153, 51, 29, 0.3);
}

/* Master Artisans Section */
.master-artisans {
    background: var(--white);
    padding: 4rem 0;
    margin: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--deep-teal);
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-style: italic;
}

.artisans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.artisan-card {
    background: var(--warm-beige);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.artisan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--golden-yellow);
}

.artisan-card-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--golden-yellow);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.artisan-card:hover .artisan-card-photo {
    transform: scale(1.05);
}

.artisan-card-info h3 {
    color: var(--deep-teal);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.artisan-specialty {
    color: var(--terracotta-red);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.artisan-experience {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.artisan-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-icon {
    background: var(--deep-teal);
    color: var(--white);
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    background: var(--terracotta-red);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(153, 51, 29, 0.4);
}

/* More Button Styles */
.more-content-section {
    text-align: center;
    margin: 2rem 0;
}

.btn-more {
    background: linear-gradient(135deg, var(--golden-yellow), #f0d574);
    color: var(--deep-teal);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 201, 103, 0.3);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 201, 103, 0.4);
    background: linear-gradient(135deg, #f0d574, var(--golden-yellow));
}

.more-icon {
    font-size: 1.2rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.premium-badge {
    background: var(--terracotta-red);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    position: absolute;
    top: -8px;
    right: -8px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Paid Content Modal */
.paid-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.paid-modal-content {
    background: var(--white);
    margin: 3% auto;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    animation: slideIn 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.paid-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-dark);
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paid-modal-close:hover {
    color: var(--terracotta-red);
    background: var(--warm-beige);
}

.paid-feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.paid-modal-content h3 {
    color: var(--deep-teal);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.paid-modal-content > p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.feature-benefits {
    background: linear-gradient(135deg, var(--warm-beige), #f5f1ee);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid var(--golden-yellow);
}

.feature-benefits h4 {
    color: var(--deep-teal);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.feature-benefits ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-benefits li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    border-bottom: 1px solid rgba(16, 73, 104, 0.1);
    transition: all 0.3s ease;
}

.feature-benefits li:hover {
    background: rgba(230, 201, 103, 0.1);
    padding-left: 1rem;
    border-radius: 5px;
}

.feature-benefits li:last-child {
    border-bottom: none;
}

.pricing-info {
    background: var(--deep-teal);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.price-tag {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.period {
    font-size: 1.2rem;
    opacity: 0.8;
}

.price-description {
    opacity: 0.9;
    font-size: 0.95rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-premium {
    background: linear-gradient(135deg, var(--terracotta-red), #b83a1f);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(153, 51, 29, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 51, 29, 0.4);
    background: linear-gradient(135deg, #b83a1f, var(--terracotta-red));
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.trust-indicators {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(16, 73, 104, 0.1);
}

.trust-text {
    color: var(--text-dark);
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.trust-icon {
    color: #4CAF50;
}

/* Footer */
.footer {
    background-color: var(--deep-teal);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .artisans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero h1, .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .category-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .category-buttons {
        order: 1;
        margin-bottom: 1.5rem;
    }
    
    .artisan-mini-profile {
        order: 2;
    }
    
    .category-title, .gallery-title, .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .artisans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .artisan-card {
        padding: 1.5rem;
    }
    
    .artisan-card-photo {
        width: 100px;
        height: 100px;
    }
    
    .modal-content {
        width: 95%;
        margin: 1vh auto;
        height: 98vh;
        max-height: 98vh;
    }
    
    .modal-header {
        padding: 0.8rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .modal-controls {
        justify-content: center;
        order: 1;
    }
    
    .close {
        position: absolute;
        top: 0.5rem;
        right: 1rem;
        order: 2;
    }
    
    .modal-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .paid-modal-content {
        margin: 5% auto;
        padding: 2rem;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .btn-premium, .btn-secondary {
        width: 100%;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1, .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero p, .page-hero p {
        font-size: 1rem;
    }
    
    .category-section {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .contact-mini {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        text-align: center;
    }
    
    .artisan-contact {
        flex-wrap: wrap;
    }
    
    .master-artisans {
        padding: 3rem 0;
        margin: 3rem 0;
    }
    
    .modal-content {
        width: 98%;
        margin: 0.5vh auto;
        height: 99vh;
        max-height: 99vh;
    }
    
    .modal-controls {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .modal-btn {
        width: 100%;
        justify-content: center;
    }
    
    .modal-header {
        padding: 0.5rem;
    }
    
    .modal-image-container {
        padding: 0.5rem;
    }
    
    .modal-footer {
        padding: 0.5rem;
    }
    
    .paid-modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .feature-benefits {
        padding: 1.5rem;
    }
    
    .pricing-info {
        padding: 1.5rem;
    }
}