/* Luxury Fashion Store - Main Stylesheet */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

:root {
    /* Core Colors - Clean, Minimal Luxury */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(0, 0%, 13%);
    
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 13%);
    
    --primary: hsl(0, 0%, 13%);
    --primary-foreground: hsl(0, 0%, 100%);
    
    --secondary: hsl(0, 0%, 96%);
    --secondary-foreground: hsl(0, 0%, 13%);
    
    --muted: hsl(0, 0%, 96%);
    --muted-foreground: hsl(0, 0%, 45%);
    
    --accent: hsl(0, 0%, 96%);
    --accent-foreground: hsl(0, 0%, 13%);
    
    --sale: hsl(0, 72%, 51%);
    --sale-foreground: hsl(0, 0%, 100%);
    
    --border: hsl(0, 0%, 90%);
    --input: hsl(0, 0%, 90%);
    --ring: hsl(0, 0%, 13%);
    
    --radius: 0px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container-luxury {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .container-luxury {
        padding: 0 30px;
    }
}

@media (min-width: 992px) {
    .container-luxury {
        max-width: 1140px;
    }
}

@media (min-width: 1200px) {
    .container-luxury {
        max-width: 1200px;
    }
}

.section-padding {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

.page-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3rem;
    }
}

.page-description {
    color: var(--muted-foreground);
    max-width: 42rem;
}

.text-center {
    text-align: center;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
    background-color: var(--primary);
    color: var(--primary-foreground);
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   HEADER
   ============================================ */

.main-header {
    position: sticky;
    top: 0;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.header-logo {
    flex-shrink: 0;
}

.main-nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    color: var(--foreground);
    opacity: 0.8;
    transition: opacity 0.2s ease;
    position: relative;
}

.nav-link:hover {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--foreground);
    transition: width 0.3s ease;
}

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

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

.header-btn {
    padding: 0.5rem;
    color: var(--foreground);
    transition: opacity 0.2s ease;
    position: relative;
}

.header-btn:hover {
    opacity: 0.7;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    width: 1.125rem;
    height: 1.125rem;
    font-size: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 1.25rem;
    height: 2px;
    background-color: var(--foreground);
    transition: all 0.3s ease;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-overlay-content {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    position: relative;
}

.search-close {
    position: absolute;
    top: 0;
    right: 2rem;
    color: white;
    padding: 0.5rem;
}

.search-form {
    display: flex;
    gap: 1rem;
}

.search-input {
    flex: 1;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid white;
    color: white;
    font-size: 1.5rem;
    padding: 1rem 0;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-submit {
    background-color: white;
    color: black;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.search-submit:hover {
    opacity: 0.9;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--background);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 150;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    font-size: 1.125rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-luxury {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    display: inline-block;
}

.btn-luxury:hover {
    opacity: 0.9;
}

.btn-luxury-outline {
    border: 1px solid var(--foreground);
    background-color: transparent;
    color: var(--foreground);
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-luxury-outline:hover {
    background-color: var(--foreground);
    color: var(--background);
}

/* ============================================
   DEPARTMENT GRID
   ============================================ */

.department-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .department-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.department-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.department-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: var(--secondary);
}

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

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

.department-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   PRODUCT GRID
   ============================================ */

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.product-card {
    position: relative;
}

.product-card-link {
    display: block;
}

.product-card-image {
    aspect-ratio: 3/4;
    background-color: var(--secondary);
    overflow: hidden;
    position: relative;
    margin-bottom: 0.75rem;
}

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

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

.sale-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background-color: var(--sale);
    color: var(--sale-foreground);
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-brand {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.product-name {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-original {
    text-decoration: line-through;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.price-sale {
    color: var(--sale);
    font-weight: 500;
}

.price-current {
    font-weight: 500;
}

.wishlist-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: white;
    border: 1px solid var(--border);
    padding: 0.5rem;
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.2s ease;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
}

.wishlist-btn:hover {
    border-color: var(--foreground);
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb-section {
    padding: 1rem 0;
}

.breadcrumb {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.breadcrumb a {
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--foreground);
}

.breadcrumb .separator {
    margin: 0 0.5rem;
}

.breadcrumb .current {
    color: var(--foreground);
}

/* ============================================
   FILTERS & SORTING
   ============================================ */

.page-header {
    padding: 2rem 0;
}

.filters-section {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.filters-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border);
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--foreground);
}

.sort-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.sort-select {
    border: 1px solid var(--border);
    padding: 0.5rem;
    background-color: var(--background);
    cursor: pointer;
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.product-gallery {
    display: flex;
    gap: 1rem;
}

.gallery-thumbnails {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    width: 5rem;
}

@media (min-width: 768px) {
    .gallery-thumbnails {
        display: flex;
    }
}

.gallery-thumb {
    aspect-ratio: 1;
    background-color: var(--secondary);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
}

.gallery-thumb.active {
    border-color: var(--foreground);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-main {
    flex: 1;
}

.gallery-main img {
    aspect-ratio: 3/4;
    width: 100%;
    object-fit: cover;
    background-color: var(--secondary);
}

.product-info {
    max-width: 28rem;
}

.product-detail-brand {
    font-size: 1.125rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.product-detail-brand:hover {
    text-decoration: underline;
}

.product-detail-name {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.product-detail-price .price-original {
    font-size: 1rem;
}

.product-detail-price .price-sale {
    font-size: 1.125rem;
}

.product-detail-price .price-discount {
    font-size: 0.875rem;
}

.size-selector {
    margin-bottom: 1.5rem;
}

.size-guide-btn {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: underline;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.size-guide-btn:hover {
    color: var(--foreground);
}

.size-select-wrapper {
    position: relative;
}

.size-select {
    width: 100%;
    border: 1px solid var(--border);
    padding: 0.875rem;
    background-color: var(--background);
    font-size: 0.875rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23212121' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    transition: border-color 0.2s ease;
}

.size-select:hover {
    border-color: var(--foreground);
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.add-to-bag-btn {
    flex: 1;
}

.wishlist-btn-large {
    border: 1px solid var(--border);
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.wishlist-btn-large:hover {
    border-color: var(--foreground);
}

.delivery-info {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.delivery-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.delivery-date {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.delivery-terms {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Accordion */
.product-details-accordion {
    border-top: 1px solid var(--border);
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    font-weight: 500;
    text-align: left;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding-bottom: 1rem;
    display: none;
    font-size: 0.875rem;
}

.detail-brand {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.detail-name {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.accordion-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.detail-list {
    list-style: none;
    color: var(--muted-foreground);
}

.detail-list li {
    margin-bottom: 0.25rem;
}

/* ============================================
   CART PAGE
   ============================================ */

.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .cart-layout {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

@media (max-width: 767px) {
    .cart-item {
        grid-template-columns: auto 1fr;
    }
    
    .cart-item-quantity,
    .cart-item-total {
        grid-column: 1 / -1;
    }
}

.cart-item-image {
    width: 6rem;
    height: 8rem;
    background-color: var(--secondary);
}

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

.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-brand {
    font-weight: 500;
    font-size: 0.875rem;
}

.cart-item-name {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0.25rem 0;
}

.cart-item-size {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    border: 1px solid var(--border);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: border-color 0.2s ease;
}

.qty-btn:hover {
    border-color: var(--foreground);
}

.qty-input {
    width: 3rem;
    text-align: center;
    border: 1px solid var(--border);
    padding: 0.5rem;
}

.cart-item-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.item-total {
    font-weight: 500;
}

.remove-btn {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.remove-btn:hover {
    color: var(--foreground);
}

.order-summary {
    background-color: var(--secondary);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 5rem;
}

.summary-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.summary-divider {
    height: 1px;
    background-color: var(--border);
    margin: 1rem 0;
}

.summary-total {
    font-size: 1rem;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    margin-top: 1.5rem;
}

.cart-benefits {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.cart-benefits p {
    margin-bottom: 0.5rem;
}

.empty-cart {
    text-align: center;
    padding: 4rem 1rem;
}

.empty-cart svg {
    margin: 0 auto 1.5rem;
    color: var(--muted-foreground);
}

.empty-cart h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

/* ============================================
   PAYMENT STATUS
   ============================================ */

.payment-status {
    max-width: 600px;
    margin: 3rem auto;
    text-align: center;
    padding: 2rem;
}

.success-icon,
.error-icon {
    margin: 0 auto 2rem;
}

.success-icon svg {
    color: hsl(142, 76%, 36%);
}

.error-icon svg {
    color: var(--sale);
}

.success-title,
.error-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message,
.error-message {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.order-details {
    background-color: var(--secondary);
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.order-details p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.success-info {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.success-actions,
.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-title {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.social-link:hover {
    border-color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: white;
    padding: 0.75rem;
    font-size: 0.875rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    background-color: white;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.newsletter-btn:hover {
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: white;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-in;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}

/* ============================================
   EMPTY STATES
   ============================================ */

.empty-state {
    text-align: center;
    padding: 4rem 1rem;
}

.empty-state p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}
