/*
Theme Name: Akasco
Theme URI: https://akasco.com
Author: Akasco
Author URI: https://akasco.com
Description: A premium WooCommerce theme for Akasco - luxury e-commerce experience
Version: 1.0.0
License: GPL v2 or later
Text Domain: akasco
*/

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    color: #2C2C2C;
    background: #FFFFFF;
    line-height: 1.5;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.site-header {
    background: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.top-bar {
    background: #F9F9F9;
    padding: 8px 0;
    font-size: 12px;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: 32px;
}

.top-bar a {
    color: #6B6B6B;
    text-decoration: none;
    font-size: 12px;
}

.top-bar a:hover {
    color: #C5A572;
}

.main-header {
    padding: 24px 0;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-logo a {
    font-size: 24px;
    text-decoration: none;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.search-form {
    flex: 1;
    max-width: 400px;
}

.search-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E8E8E8;
    border-radius: 0;
    font-size: 14px;
    background: #FFFFFF;
    transition: all 0.2s ease;
}

.search-form input:focus {
    outline: none;
    border-color: #C5A572;
}

.header-icons {
    display: flex;
    gap: 32px;
}

.header-icons a {
    color: #2C2C2C;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.header-icons a:hover {
    color: #C5A572;
}

/* Main Navigation */
.main-nav {
    background: #FFFFFF;
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 16px 0;
}

.main-nav a {
    text-decoration: none;
    color: #4A4A4A;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #C5A572;
}

/* Products Grid */
.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 32px;
    margin: 60px 0;
}

.product-item {
    text-align: center;
    background: #FFFFFF;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-4px);
}

.product-item a {
    text-decoration: none;
}

.product-item img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.product-item:hover img {
    opacity: 0.92;
}

.product-item h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #2C2C2C;
}

.product-item .price {
    font-size: 14px;
    color: #C5A572;
    font-weight: 400;
}

/* Section Titles */
.section-title {
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #4A4A4A;
}

/* Hero Banner */
.hero-banner {
    margin: 40px 0 60px;
    position: relative;
    background: #F9F9F9;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-content p {
    font-size: 16px;
    color: #6B6B6B;
    margin-bottom: 30px;
}

/* Buttons */
.btn, .btn-primary {
    display: inline-block;
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover, .btn-primary:hover {
    background: #C5A572;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid #C5A572;
    color: #C5A572;
}

.btn-outline:hover {
    background: #C5A572;
    color: #FFFFFF;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin: 60px 0;
}

.category-item {
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-4px);
}

.category-item img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.category-item h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #4A4A4A;
}

/* Brand Collaboration Section */
.brand-collab {
    background: #F9F9F9;
    padding: 100px 0;
    text-align: center;
    margin: 80px 0;
}

.brand-collab h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
}

.brand-collab p {
    color: #6B6B6B;
    margin-bottom: 32px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin: 60px 0;
}

.blog-item {
    text-align: center;
}

.blog-item img {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    transition: opacity 0.3s ease;
}

.blog-item:hover img {
    opacity: 0.9;
}

.blog-item h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
}

.blog-item h3 a {
    text-decoration: none;
    color: #1A1A1A;
}

.blog-item p {
    color: #6B6B6B;
    font-size: 14px;
}

/* Single Product Page */
.single-product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin: 60px 0 100px;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
}

.woocommerce-product-gallery .flex-control-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    list-style: none;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    width: calc(25% - 9px);
    cursor: pointer;
}

.woocommerce-product-gallery .flex-control-thumbs img {
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.woocommerce-product-gallery .flex-control-thumbs img.flex-active,
.woocommerce-product-gallery .flex-control-thumbs img:hover {
    opacity: 1;
}

.product-summary .product_title {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 400;
}

.product-summary .price {
    font-size: 24px;
    color: #C5A572;
    margin: 24px 0;
    display: block;
}

.single_add_to_cart_button {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 16px 32px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.single_add_to_cart_button:hover {
    background: #C5A572;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: #F9F9F9;
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-widgets h3 {
    font-size: 14px;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #4A4A4A;
}

.footer-widgets ul {
    list-style: none;
}

.footer-widgets li {
    margin-bottom: 12px;
}

.footer-widgets a {
    color: #6B6B6B;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-widgets a:hover {
    color: #C5A572;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #E8E8E8;
    color: #9B9B9B;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .single-product-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .hero-content {
        position: relative;
        left: 0;
        transform: none;
        padding: 40px;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 32px;
        text-align: center;
    }
}

/* ============================================
   1. ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: #F5F5F5;
    position: relative;
    width: 100%;
    z-index: 1001;
    padding: 10px 0;
}

.announcement-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.announcement-text {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #4A4A4A;
    margin: 0;
    text-align: center;
}

.announcement-close {
    position: absolute;
    right: 40px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #9B9B9B;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.announcement-close:hover {
    color: #C5A572;
}

@media (max-width: 768px) {
    .announcement-container {
        padding: 0 20px;
    }
    
    .announcement-close {
        right: 20px;
    }
}