/* Store Wrapper */
.cod-store-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    direction: ltr;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.cod-store-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Header Styles */
.cod-store-header {
    background: #000 url('../../images/header-bg.svg') center/cover;
    color: #fff;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cod-store-header-top {
    padding: 20px 0;
}

.cod-store-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cod-store-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.cod-store-logo:hover {
    opacity: 0.8;
}

.cod-store-logo-image {
    width: 40px;
    height: 40px;
    display: block;
}

.cod-store-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.cod-store-nav {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.cod-store-nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: opacity 0.3s;
    text-transform: uppercase;
}

.cod-store-nav-link:hover {
    opacity: 0.6;
}

.cod-store-header-actions {
    display: flex;
    gap: 20px;
}

.cod-store-icon-link {
    color: #fff;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
}

.cod-store-icon-link:hover {
    opacity: 0.6;
}

/* Hero Banner */
.cod-store-hero {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 400"><rect fill="%23000000" width="1440" height="400"/></svg>') center/cover;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.cod-store-hero-overlay {
    position: absolute;
    inset: 0;
    background: #000 url('../../images/background_image.png') center/cover;
    /* background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%); */
}

.cod-store-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cod-store-hero-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.cod-store-hero-title {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.cod-store-hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.cod-store-hero-button {
    display: inline-block;
    padding: 16px 48px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.cod-store-hero-button:hover {
    background: transparent;
    color: #fff;
}

/* Products Section */
.cod-store-section {
    padding: 80px 0 120px;
    flex: 1;
    background: #fafafa;
    position: relative;
    z-index: 10;
}

.cod-store-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.cod-store-section-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #666;
    text-transform: uppercase;
}

.cod-store-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cod-store-section-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.cod-store-empty {
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.cod-store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

@media (max-width: 640px) {
    .cod-store-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.cod-store-card {
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.cod-store-card:hover {
    transform: translateY(-8px);
}

.cod-store-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.cod-store-card-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f8f8;
    position: relative;
}

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

.cod-store-card:hover .cod-store-card-image img {
    transform: scale(1.08);
}

.cod-store-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cod-store-card-content {
    padding: 24px;
}

.cod-store-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.cod-store-card-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.cod-store-price-amount {
    font-size: 18px;
}

.cod-store-price-currency {
    font-size: 14px;
    margin-left: 2px;
}

.cod-store-card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    background: #000;
    color: #fff;
    text-align: center;
    border: 2px solid #000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.cod-store-card:hover .cod-store-card-button {
    background: #fff;
    color: #000;
    box-shadow: 0 6px 15px rgba(255, 65, 85, 0.3);
}

.cod-store-button-icon {
    font-size: 18px;
}

/* Footer Styles */
.cod-store-footer {
    background: #000;
    color: #fff;
    padding: 80px 0 0;
    margin-top: auto;
}

.cod-store-footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.cod-store-footer-col {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}

.cod-store-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cod-store-footer-logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cod-store-footer-desc {
    color: #888;
    line-height: 1.8;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 25px;
}

.cod-store-footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cod-store-social-icon {
    color: #888;
    transition: color 0.3s;
}

.cod-store-social-icon:hover {
    color: #fff;
}

.cod-store-footer-bottom {
    border-top: 1px solid #222;
    padding: 30px 0;
    text-align: center;
}

.cod-store-footer-bottom p {
    color: #666;
    font-size: 12px;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .cod-store-container {
        padding: 0 20px;
    }
    
    .cod-store-nav {
        display: none;
    }
    
    .cod-store-logo-text {
        font-size: 16px;
    }
    
    .cod-store-hero {
        padding: 80px 0;
    }
    
    .cod-store-hero-title {
        font-size: 38px;
    }
    
    .cod-store-hero-subtitle {
        font-size: 16px;
    }
    
    .cod-store-section-title {
        font-size: 32px;
    }
    
    .cod-store-footer-col {
        padding: 0 20px;
    }
    
    .cod-store-section-title {
        font-size: 28px;
    }
}
