:root {
    --primary-color: #D4AF37; /* Luxe Gold */
    --secondary-color: #1A1A1A; /* Charcoal */
    --bg-color: #FAF9F6; /* Cream White */
    --accent-color: #F4F1EA; /* Lighter Beige */
    --text-main: #333333;
    --text-muted: #666666;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--secondary-color);
}

.logo span {
    font-weight: 300;
    color: var(--primary-color);
    margin-left: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-links a:hover:after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-whatsapp-icon, .btn-instagram-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: var(--transition);
}

.btn-whatsapp-icon {
    background: #25D366;
    color: white;
}

.btn-instagram-icon {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.btn-whatsapp-icon:hover, .btn-instagram-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-whatsapp-icon svg, .btn-instagram-icon svg {
    fill: white;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

/* Modern Hero Section */
.hero-modern {
    min-height: 100vh;
    padding: 140px 0 80px;
    background-color: #F8F5F2;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 4rem;
}

.hero-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.hero-text-side h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.hero-text-side h1 span {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 400;
}

.hero-text-side p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-outline {
    padding: 1rem 2.5rem;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

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

.hero-image-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-main-img-wrapper {
    position: relative;
    width: 80%;
    aspect-ratio: 4/5;
    z-index: 2;
    overflow: visible;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 30px 30px 80px rgba(0,0,0,0.1);
}

.hero-sub-img-wrapper {
    position: absolute;
    bottom: -40px;
    left: -10%;
    width: 45%;
    aspect-ratio: 1/1;
    z-index: 3;
    border: 15px solid var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

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

.hero-floating-card {
    position: absolute;
    top: 20%;
    right: -10%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    z-index: 4;
}

.card-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-style: italic;
    line-height: 1;
}

.card-content h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .hero-modern {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-tag {
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .hero-text-side h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-text-side p {
        font-size: 1rem;
        margin: 0 auto 2.5rem;
        padding: 0 10px;
        max-width: 100%;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-image-side {
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-main-img-wrapper {
        width: 90%;
        margin: 0 auto;
    }
    
    .hero-sub-img-wrapper {
        display: none; /* Mobilde görsel karmaşıklığı azaltmak için gizle */
    }
    
    .hero-floating-card {
        position: static;
        margin-top: -30px;
        width: 85%;
        padding: 1rem;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-5px);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 5rem 2rem;
    text-align: center;
}

.feature-item i {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
}

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

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Products Section */
.products {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.underline {
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--white);
    transition: var(--transition);
    border: 1px solid #eee;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-whatsapp-sm {
    background: var(--white);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .btn-whatsapp-sm {
    transform: translateY(0);
}

.btn-whatsapp-sm:hover {
    background: #25D366; /* WhatsApp Green */
    color: var(--white);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.product-info .price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Brand Story */
.brand-story {
    background: var(--accent-color);
    padding: 8rem 0;
    margin-top: 5rem;
}

.grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 20px 20px 0 var(--primary-color);
}

.story-content span {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.story-content h2 {
    font-size: 3rem;
    margin: 1.5rem 0;
    color: var(--secondary-color);
}

.story-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-underline {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    transition: var(--transition);
}

.btn-underline:hover {
    letter-spacing: 1px;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-info .logo {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-info p {
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    color: var(--white);
    opacity: 0.6;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-links h4, .footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.7;
}

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

.footer-bottom p {
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Fixed Social Buttons Container */
.fixed-socials {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2500;
}

.whatsapp-fixed, .instagram-fixed {
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.whatsapp-fixed {
    background: #25D366;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.instagram-fixed {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    box-shadow: 0 5px 20px rgba(188, 24, 136, 0.3);
}

.whatsapp-fixed:hover, .instagram-fixed:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Responsive */
@media (max-width: 968px) {
    nav {
        padding: 0 1.5rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    
    .btn-whatsapp-icon {
        color: var(--secondary-color);
        display: flex;
        align-items: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        color: var(--secondary-color);
        cursor: pointer;
    }
    
    .grid-two-cols {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-image img {
        height: 400px;
        box-shadow: 10px 10px 0 var(--primary-color);
    }
    
    .story-content h2 {
        font-size: 2.2rem;
    }
    
    .fixed-socials {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .whatsapp-fixed, .instagram-fixed {
        padding: 15px;
        border-radius: 50%;
    }
    
    .whatsapp-fixed span, .instagram-fixed span {
        display: none;
    }
    
    .logos-grid {
        justify-content: center;
        gap: 3rem;
    }
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-overlay .nav-links-mobile {
    list-style: none;
    text-align: center;
}

.mobile-nav-overlay .nav-links-mobile li {
    margin-bottom: 2rem;
}

.mobile-nav-overlay .nav-links-mobile a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.overlay-bg {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    display: none;
    backdrop-filter: blur(5px);
}

.overlay-bg.active {
    display: block;
}

/* Trust Seals */
.trust-seals {
    padding: 3rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 3rem auto;
}

.logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.5;
}

.brand-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--secondary-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    inset: 0;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    width: 90%;
    max-width: 1000px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    animation: modalSlideUp 0.5s ease;
}

@keyframes modalSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: 300;
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
}

.modal-image-selector {
    background: #fdfdfd;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-container {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.thumbnail-item {
    aspect-ratio: 1/1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    overflow: hidden;
}

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

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

.modal-info {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-info h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    line-height: 1.2;
}

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

.modal-description h3, .modal-options h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.color-swatches {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.swatch-item {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ddd;
    transition: var(--transition);
    background-size: cover;
    background-position: center;
}

.swatch-item.active {
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.modal-actions {
    margin-top: 20px;
}

.btn-whatsapp-detail {
    width: 100%;
    padding: 1.2rem;
    background: #25D366;
    color: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-whatsapp-detail:hover {
    background: #1eb954;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-detail i {
    width: 22px;
    height: 22px;
}

/* Responsive Modal */
@media (max-width: 850px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-info {
        padding: 30px 20px;
    }
    
    .modal-image-selector {
        padding: 20px;
    }
    
    .modal-content {
        margin: 0;
        width: 100%;
    }
}
