@font-face {
    font-family: 'Averia';
    src: url('../fonts/averia-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Averia';
    src: url('../fonts/averia-italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Averia';
    src: url('../fonts/averia-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Averia';
    src: url('../fonts/averia-lightitalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Averia';
    src: url('../fonts/averia-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Averia';
    src: url('../fonts/averia-bolditalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Averia';
    src: url('../fonts/averia-gruesa.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

:root {
    --primary-orange: #FF6B6B;
    --primary-purple: #6B4CE6;
    --primary-green: #4CE6B4;
    --primary-blue: #4C9FE6;
    --text-dark: #2D1F3F;
    --background-light: #FFF6F6;
    --pink-light: #FFE6E6;
    --yellow-light: #FFF3E0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: white;
}

/* Header Styles */
.site-header {
    padding: 1.5rem 0;
    background: var(--background-light);
}

.navbar {
    padding: 0;
    position: relative;
}

.navbar > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left - Logo */
.navbar-brand {
    font-family: 'Averia', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    text-decoration: none;
    margin-right: 2rem;
}

/* Center - Navigation */
.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: -webkit-inline-box;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    white-space: nowrap;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-purple);
}

/* Right - Icons */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 2rem;
}

.nav-icon {
    color: var(--text-dark);
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-icon:hover {
    color: var(--primary-purple);
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.hero-title {
    font-family: 'Averia', sans-serif;
    font-size: 4.5rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.text-orange {
    color: #FF6B6B;
}

.text-purple {
    color: var(--primary-purple);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: backwards;
}

.btn-shop-now {
    background: #FF6B6B;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s;
    animation: fadeInUp 0.8s ease-out 0.4s;
    animation-fill-mode: backwards;
}

.btn-shop-now:hover {
    transform: translateY(-3px);
}

/* Category Section */
.category-section {
    padding: 4rem 0;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.link-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.link-item i {
    color: var(--primary-purple);
    font-size: 1.5rem;
}

.link-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Story Section */
.story-section {
    padding: 4rem 0;
    background: var(--background-light);
}

/* Footer */
.site-footer {
    background: var(--background-light);
    padding: 4rem 0 2rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.footer-policies {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-policies a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-policies a:hover {
    color: var(--primary-purple);
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar > .container {
        flex-wrap: wrap;
    }

    .navbar-center {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }

    .navbar-nav {
        justify-content: center;
        width: 100%;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .navbar-right {
        margin-left: 1rem;
        gap: 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-policies {
        justify-content: center;
    }
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Shop Page Styles */
.section-title {
    font-family: 'Averia', sans-serif;
    font-size: 3.5rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
  }

  .subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: left;
  }

.shop-hero {
    padding: 60px 0;
    background-color: var(--background-light);
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.shop-filters {
    display: flex;
    gap: 20px;
}

.filter-row {
    display: flex;
    gap: 15px;
}

.filter-group select {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: white;
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-group select:hover {
    border-color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.rating {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating i {
    color: #FFD700;
}

.btn-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-favorite:hover {
    background: var(--primary-color);
    color: white;
}

.btn-favorite.active {
    background: var(--primary-color);
    color: white;
}

.product-info {
    padding: 20px;
}

.brand {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
    display: block;
    margin-bottom: 5px;
}

.product-info h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.original {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.6;
    text-decoration: line-through;
}

.btn-add {
    margin-left: auto;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Responsive Shop Styles */
@media (max-width: 992px) {
    .shop-header {
        flex-direction: column;
        gap: 20px;
    }

    .shop-filters {
        width: 100%;
    }

    .filter-row {
        width: 100%;
        flex-wrap: wrap;
    }

    .filter-group {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .filter-group {
        min-width: 100%;
    }
}

/* Gallery Page Styles */
.gallery-hero {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

.gallery-filter {
    padding: 30px 0;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    background: transparent;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.gallery-grid {
    padding: 60px 0;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

/* Responsive Gallery Styles */
@media (max-width: 992px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
}

/* About Page Styles */
.about-hero {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

.story-section {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 30px;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.team-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-info .position {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Responsive About Styles */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .story-content h2 {
        font-size: 2rem;
    }

    .story-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .value-card,
    .team-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

.locations-section {
    padding: 80px 0;
}

.location-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.location-card.factory {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.showrooms-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-info {
    padding: 40px;
}

.location-header {
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.location-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.location-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 3px;
}

.detail-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.location-map {
    height: 100%;
    min-height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Contact Styles */
@media (max-width: 992px) {
    .location-card.factory {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .location-info {
        padding: 30px;
    }

    .location-header h2 {
        font-size: 1.75rem;
    }

    .showrooms-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .location-info {
        padding: 20px;
    }

    .location-header h2 {
        font-size: 1.5rem;
    }

    .detail-item {
        flex-direction: column;
        gap: 5px;
    }

    .detail-item i {
        margin-top: 0;
    }
} 