/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #f5f5f5;
    --accent-color: #c9a961;
    --text-color: #333;
    --light-text: #666;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Lora', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.8;
    width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header-top {
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 8px;
    display: block;
}

.logo .tagline {
    font-size: 11px;
    color: var(--light-text);
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 400;
}

/* Navigation */
.nav {
    flex: 1;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.nav-menu a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    color: var(--accent-color);
}

/* Search Bar */
.search-bar {
    background-color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.search-bar.hidden {
    display: none;
}

.search-bar .container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    font-size: 14px;
    outline: none;
}

.search-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
    width: 100%;
}

/* Filter Section */
.filter-section {
    display: none;
}

.view-options {
    display: none;
}

.view-btn {
    display: none;
}

.filter-btn {
    display: none;
}

/* Products Grid */
.products-grid {
    display: none;
}

.product-card {
    display: none;
}

/* Hero Section */
.hero-section {
    padding: 120px 0;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url("https://firmamz.com/gezginoglugelinlik/gelinlik-blur.jpg");
    background-size: cover;
    background-position: center;
   
    position: relative;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.1);
}

.hero-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--body-font);
}

.cta-primary {
    background-color: #25D366;
    color: var(--white);
    text-decoration: none;
}

.cta-primary:hover {
    background-color: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.cta-secondary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.cta-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq-item {
    background-color: var(--secondary-color);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: var(--white);
}

.faq-question h3 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: inherit;
    margin: 0;
    text-align: left;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: inherit;
    flex-shrink: 0;
    margin-left: 15px;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 20px;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    max-height: 500px;
    overflow: hidden;
    opacity: 1;
    transition: all 0.3s ease;
}

.faq-answer.hidden {
    display: none;
    max-height: 0;
    opacity: 0;
    padding: 0 20px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--light-text);
    margin: 0;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal.hidden {
    display: none;
    opacity: 0;
}

.modal-content {
    background-color: var(--white);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.modal-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 15px;
}

/* Contact Info */
.contact-info {
    display: grid;
    gap: 25px;
}

.contact-item h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 13px;
    color: var(--light-text);
    margin: 5px 0;
}

.contact-item a {
    color: var(--accent-color);
    transition: var(--transition);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item ul {
    list-style: none;
    padding-left: 0;
}

.contact-item ul li {
    font-size: 13px;
    color: var(--light-text);
    padding: 4px 0;
    position: relative;
    padding-left: 15px;
}

.contact-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-content {
        gap: 15px;
        flex-wrap: wrap;
    }

    .nav-menu {
        gap: 15px;
        font-size: 10px;
    }

    .logo-img {
        height: 55px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-features {
        gap: 15px;
    }

    .feature {
        font-size: 13px;
    }

    .hero-cta {
        gap: 15px;
        margin-top: 40px;
    }

    .cta-btn {
        padding: 14px 30px;
        font-size: 13px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-section h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 13px;
    }

    .faq-answer {
        padding: 15px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .modal-content {
        width: 95%;
        padding: 25px;
    }

    .modal-content h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .logo-img {
        height: 50px;
    }

    .nav {
        width: 100%;
    }

    .nav-menu {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta {
        gap: 10px;
        margin-top: 30px;
        flex-direction: column;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }

    .faq-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .faq-question h3 {
        font-size: 12px;
    }

    .faq-toggle {
        font-size: 20px;
    }

    .modal-content {
        padding: 20px;
    }

    .contact-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 13px;
    }

    .info-item h3 {
        font-size: 13px;
    }

    .info-item p {
        font-size: 12px;
    }

    .instagram-post {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.footer-content {
    background-color: var(--primary-color);
}

.footer-content h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: var(--accent-color);
    text-align: center;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 15px;
    text-align: justify;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 80px;
    width: auto;
    display: inline-block;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    font-size: 13px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.footer-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.footer-section strong {
    color: var(--white);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 12px;
    color: #999999;
    margin: 0;
}

/* WhatsApp Fixed Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    animation: slideInUp 0.5s ease;
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
    bottom: 40px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.whatsapp-btn span {
    display: none;
}

.whatsapp-btn i {
    font-size: 28px;
    color: white;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn:hover {
        bottom: 30px;
    }

    .footer-content {
        padding: 0 10px;
    }

    .footer-section h3 {
        font-size: 14px;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 12px;
    }
}

/* Instagram Section */
.instagram-section {
    background-color: var(--secondary-color);
    padding: 60px 0;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.instagram-header {
    text-align: center;
    margin-bottom: 40px;
}

.instagram-header h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.instagram-header p {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.instagram-feed {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    min-height: 600px;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
}

.instagram-post {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    transition: all 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-8px);
}

.instagram-post:hover .instagram-media {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.instagram-media {
    border: none;
    border-radius: 8px;
    padding: 0 !important;
    background: var(--white);
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.loading-spinner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    font-size: 16px;
    color: var(--light-text);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.instagram-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.instagram-link {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.instagram-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-wrapper {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 4px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    color: var(--text-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.submit-btn {
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item h3 i {
    color: var(--accent-color);
    font-size: 18px;
}

.info-item p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--light-text);
    margin: 5px 0;
}

.info-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-color);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-link i {
    font-size: 16px;
}

/* Catalog Section */
.catalog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.catalog-header {
    text-align: center;
    margin-bottom: 60px;
}

.catalog-header h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.catalog-header p {
    font-size: 16px;
    color: var(--light-text);
    font-weight: 400;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.catalog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
    background: linear-gradient(45deg, #f5f5f5, #e8e8e8);
    flex-shrink: 0;
}

.catalog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.catalog-card:hover .catalog-image {
    transform: scale(1.03);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.catalog-card:hover .card-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 20;
    position: relative;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

.catalog-card-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: var(--white);
}

.catalog-card-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.catalog-card-content p {
    font-size: 12px;
    color: var(--light-text);
    line-height: 1.4;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-btn {
    padding: 10px 16px;
    background: linear-gradient(135deg, #ecf0ec 0%, #e9d29f 100%);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--light-text);
    font-size: 16px;
}

.catalog-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.catalog-cta p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Responsive Catalog */
@media (max-width: 768px) {
    .catalog-section {
        padding: 40px 0;
    }

    .catalog-header h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .catalog-header p {
        font-size: 14px;
    }

    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 18px;
        margin-bottom: 30px;
    }

    .card-image-wrapper {
        height: 280px;
    }

    .catalog-card-content {
        padding: 15px;
    }

    .catalog-card-content h3 {
        font-size: 13px;
    }

    .catalog-card-content p {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .quick-view-btn {
        padding: 8px 16px;
        font-size: 10px;
    }

    .info-btn {
        padding: 8px 12px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .catalog-header h2 {
        font-size: 20px;
    }

    .card-image-wrapper {
        height: 240px;
    }

    .catalog-card-content {
        padding: 12px;
    }

    .catalog-card-content h3 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .catalog-card-content p {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .info-btn {
        padding: 7px 10px;
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .nav{
        display: none;
    }
    .header-icons {
        display: none;
    }
    .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .logo-img {
        height: 35px;
    }
    .logo .tagline {
        font-size: 8px;
        color: var(--light-text);
        letter-spacing: 1px;
        margin-top: 4px;
        font-weight: 400;
    }
}


@media (max-width: 768px) {
    .instagram-section {
        padding: 40px 0;
    }

    .instagram-header h2 {
        font-size: 22px;
    }

    .instagram-feed {
        min-height: auto;
        gap: 20px;
        padding: 20px;
    }

    .instagram-post {
        flex: 0 1 calc(50% - 10px);
        max-width: 100%;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-section h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 1024px) {
    .instagram-post {
        flex: 0 1 calc(50% - 15px);
        min-width: 250px;
    }
}