/* =============================================
   Clérieux Lyséa Kozmetik - Premium Frontend Styles
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --gold: #C8A45C;
    --gold-light: #d4b36a;
    --gold-dark: #b08d42;
    --black: #1A1A1A;
    --dark: #111111;
    --white: #FFFFFF;
    --gray-light: #f5f5f5;
    --gray: #888888;
    --text: #333333;
    --text-light: #666666;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

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

/* === TOP BAR === */
.top-bar {
    background: var(--gray-light);
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.top-bar .social-links a {
    color: var(--text-light);
    font-size: 14px;
    margin-left: 12px;
    transition: var(--transition);
}

.top-bar .social-links a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* === HEADER === */
.site-header {
    background: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo-text span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--gray);
    margin-top: -2px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav a {
    color: var(--black);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 60%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid #ebebeb;
    min-width: 220px;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 50;
    border-radius: 0 0 4px 4px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px !important;
    font-size: 13px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border-bottom: 1px solid #f9f9f9;
}

.dropdown-menu a:hover {
    background: #fdfdfd;
    color: var(--gold) !important;
}

.dropdown-menu a::after { display: none !important; }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* === HERO SLIDER === */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--gray-light);
}

.swiper-slide {
    position: relative;
}

.slider-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.slider-content {
    padding: 0 60px;
    max-width: 600px;
}

.slider-content .subtitle {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 16px;
    font-style: italic;
    margin-bottom: 8px;
    animation: fadeInUp 0.6s ease;
}

.slider-content h2 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease;
}

.slider-content p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin-bottom: 28px;
    animation: fadeInUp 1s ease;
}

.slider-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--gold);
    transition: var(--transition);
    animation: fadeInUp 1.2s ease;
}

.slider-btn:hover {
    background: transparent;
    color: var(--gold);
}

.hero-slider .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
}

/* === CATEGORY GRID === */
.category-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.section-title .divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.category-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: var(--transition);
}

.category-card:hover .overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.category-card .overlay h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-card .overlay p {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* No image placeholder */
.category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 48px;
}

/* === CATALOG SECTION === */
.catalog-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--dark);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.catalog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.catalog-section * {
    position: relative;
    z-index: 1;
}

.catalog-section h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 12px;
    margin-bottom: 20px;
}

.catalog-section p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 32px;
}

.catalog-btn {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 14px 40px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.catalog-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

/* === FOOTER === */
.site-footer {
    background: var(--black);
    color: var(--gray);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: var(--gray);
    font-size: 13px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.8;
}

.footer-col .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.footer-col .contact-item i {
    color: var(--gold);
    margin-top: 4px;
    min-width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: var(--gray);
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 20px 0;
    background: var(--gray-light);
    border-bottom: 1px solid #e8e8e8;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.breadcrumb ul li a {
    color: var(--text-light);
    transition: var(--transition);
}

.breadcrumb ul li a:hover { color: var(--gold); }

.breadcrumb ul li::after {
    content: '/';
    margin-left: 8px;
    color: #ccc;
}

.breadcrumb ul li:last-child::after { display: none; }
.breadcrumb ul li:last-child { color: var(--gold); font-weight: 500; }

/* === PRODUCT GRID === */
.product-section {
    padding: 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

.product-card .card-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card .card-body {
    padding: 20px;
    text-align: center;
}

.product-card .card-body h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.product-card .card-body p {
    color: var(--text-light);
    font-size: 13px;
}

.product-card .card-body .view-btn {
    display: inline-block;
    margin-top: 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: var(--transition);
}

.product-card .card-body .view-btn:hover {
    color: var(--gold-dark);
}

/* === PRODUCT DETAIL === */
.product-detail {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery .main-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
}

.product-gallery .thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.product-gallery .thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.product-gallery .thumbnails img:hover,
.product-gallery .thumbnails img.active {
    border-color: var(--gold);
}

.product-info h1 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.product-info .product-category {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.product-info .product-desc {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.product-features {
    margin-top: 20px;
}

.product-features h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--black);
}

.product-features ul {
    list-style: none;
}

.product-features ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features ul li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
}

/* === PAGE CONTENT === */
.page-header {
    background: var(--dark);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--white);
    letter-spacing: 3px;
}

.page-content {
    padding: 60px 0;
    min-height: 400px;
}

.page-content .content-inner {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.9;
}

/* === CATALOG PAGE === */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 0;
}

.catalog-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.catalog-card:hover {
    box-shadow: var(--shadow);
}

.catalog-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.catalog-card .card-body {
    padding: 20px;
}

.catalog-card .card-body h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 12px;
}

.catalog-card .download-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.catalog-card .download-btn:hover {
    background: transparent;
    color: var(--gold);
}

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pagination .active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity:0; transform: translateY(20px); }
    to { opacity:1; transform: translateY(0); }
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .header-inner { 
        position: relative; 
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo img {
        height: 60px;
    }

    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        padding: 80px 0 30px;
        transition: right 0.3s ease;
        z-index: 200;
        overflow-y: auto;
        border-left: 1px solid rgba(200,164,92,0.2);
    }

    .main-nav.open { right: 0; }

    .main-nav a {
        width: 100%;
        padding: 14px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .main-nav a::after { display: none; }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255,255,255,0.03);
        border: none;
        min-width: auto;
    }

    .menu-toggle { display: block; }

    .menu-overlay {
        position: fixed; top:0; left:0;
        width:100%; height:100%;
        background: rgba(0,0,0,0.5);
        z-index: 199;
        display: none;
    }

    .menu-overlay.show { display: block; }

    .slider-content { padding: 0 30px; }
    .slider-content h2 { font-size: 28px; }
    .slider-image { height: 400px; }

    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 576px) {
    .logo-text { font-size: 24px; letter-spacing: 2px; }
    .slider-content h2 { font-size: 22px; }
    .slider-image { height: 320px; }
    .category-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .catalog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .catalog-section h2 { font-size: 28px; letter-spacing: 6px; }
    .section-title h2 { font-size: 26px; }
}

/* === CONTACT PAGE === */
.full-width-map iframe {
    width: 100%;
    display: block;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid-custom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.company-name {
    font-family: var(--font-main);
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 40px;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.coffee-icon {
    font-size: 40px;
    color: var(--gray);
}

.address-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
}

.address-text .invite {
    display: block;
    font-style: italic;
    font-size: 12px;
    color: var(--gray-light);
    margin-bottom: 5px;
}

.address-text strong {
    color: var(--black);
    font-size: 15px;
}

.info-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 13px;
    letter-spacing: 1px;
}

.info-item-mini i {
    color: var(--gold);
    font-size: 16px;
}

.contact-form-custom .form-title {
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 20px;
}

.contact-form-custom .form-desc {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.gold-form .form-group-with-icon {
    background: var(--gold);
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 15px;
    height: 50px;
}

.gold-form .form-group-with-icon.align-top {
    align-items: flex-start;
    padding-top: 15px;
    height: auto;
}

.gold-form .form-group-with-icon i {
    color: var(--white);
    font-size: 16px;
    margin-right: 15px;
}

.gold-form input, .gold-form textarea {
    background: transparent;
    border: none;
    color: var(--white);
    width: 100%;
    font-family: var(--font-main);
    font-size: 13px;
    outline: none;
    letter-spacing: 1px;
}

.gold-form input::placeholder, .gold-form textarea::placeholder {
    color: rgba(255,255,255,0.8);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.privacy-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--gray);
    cursor: pointer;
}

.submit-btn-silver {
    background: linear-gradient(to bottom, #f5f5f5, #d0d0d0);
    border: 1px solid #ccc;
    color: var(--black);
    padding: 10px 30px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.submit-btn-silver:hover {
    background: linear-gradient(to bottom, #fff, #e0e0e0);
}

@media (max-width: 768px) {
    .contact-grid-custom {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .info-2x2 {
        grid-template-columns: 1fr;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .form-footer {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}
