/* General Body Styles */
body {
    font-family: 'Georgia', serif; /* A classic, luxurious font */
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; /* Pure white background as requested for logo, but a soft off-white for body */
}

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

a {
    color: #a07a4a; /* Warm gold accent */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c09a6a; /* Lighter gold on hover */
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.primary-button {
    background-color: #a07a4a; /* Warm gold */
    color: #fff;
}

.primary-button:hover {
    background-color: #c09a6a; /* Lighter gold */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.secondary-button {
    background-color: #8b0000; /* Deep red accent */
    color: #fff;
    border: 1px solid #8b0000;
}

.secondary-button:hover {
    background-color: #a52a2a; /* Slightly lighter red */
    border-color: #a52a2a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Header Styles */
.luxury-header {
    background-color: #ffffff; /* Pure white background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
}

.header-top-bar {
    background-color: #8b0000; /* Deep red accent */
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
    text-align: center;
}

.header-main-nav {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.header-main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area .brand-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #a07a4a; /* Gold for logo text */
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-area .brand-logo .logo-tagline {
    font-size: 0.9rem;
    font-weight: normal;
    letter-spacing: 1px;
    color: #666;
    margin-top: 5px;
}

.main-navigation .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation .nav-menu > li {
    position: relative;
    margin-left: 30px;
}

.main-navigation .nav-menu > li > a {
    display: block;
    padding: 10px 0;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.main-navigation .nav-menu > li > a:hover,
.main-navigation .nav-menu > li.current-menu-item > a {
    color: #a07a4a; /* Gold on hover/active */
}

.main-navigation .sub-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    display: none;
    top: 100%;
    left: 0;
    border-top: 3px solid #a07a4a;
}

.main-navigation .nav-menu > li:hover > .sub-menu {
    display: block;
}

.main-navigation .sub-menu li a {
    padding: 8px 20px;
    display: block;
    color: #555;
    font-size: 0.9rem;
}

.main-navigation .sub-menu li a:hover {
    background-color: #f5f5f5;
    color: #a07a4a;
}

.header-actions {
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
}

.header-actions .action-item {
    color: #555;
    position: relative;
}

.header-actions .action-item:hover {
    color: #a07a4a;
}

.cart-icon .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #8b0000;
    color: #fff;
    font-size: 0.7rem;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Hero Banner */
.hero-banner {
    background: url('https://via.placeholder.com/1920x600/a07a4a/ffffff?text=Opulent+Background') no-repeat center center/cover; /* Placeholder background */
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
}

.hero-banner .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif; /* A more elegant font for titles */
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.promo-strip {
    background-color: #f0f0f0;
    padding: 15px 0;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid #ddd;
}

.promo-strip strong {
    color: #8b0000;
}

.promo-strip a {
    color: #8b0000;
    font-weight: bold;
    text-decoration: underline;
}

/* Footer Styles */
.luxury-footer {
    background-color: #222;
    color: #bbb;
    padding: 50px 0 20px;
    font-size: 0.9rem;
}

.footer-widgets .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col .widget-title {
    color: #a07a4a; /* Gold for footer titles */
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-col ul li a {
    color: #bbb;
}

.footer-col ul li a:hover {
    color: #a07a4a;
}

.footer-col p {
    margin-bottom: 15px;
}

.footer-col address {
    font-style: normal;
    margin-top: 15px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #bbb;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #a07a4a;
}

.newsletter-signup {
    margin-top: 30px;
}

.newsletter-signup .newsletter-title {
    color: #a07a4a;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.newsletter-signup form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-signup input[type="email"] {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #555;
    background-color: #333;
    color: #eee;
    border-radius: 3px;
}

.newsletter-signup input[type="email"]::placeholder {
    color: #888;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom .copyright {
    margin: 0;
}

.footer-bottom .separator {
    margin: 0 10px;
    color: #666;
}

.payment-methods img {
    height: 25px;
    margin-left: 10px;
    opacity: 0.7;
}

/* Basic icon placeholders (replace with actual icon font like FontAwesome) */
.icon-search::before { content: '🔍'; }
.icon-user::before { content: '👤'; }
.icon-cart::before { content: '🛒'; }
.icon-facebook::before { content: '📘'; }
.icon-instagram::before { content: '📸'; }
.icon-twitter::before { content: '🐦'; }
.icon-pinterest::before { content: '📌'; }
.icon-linkedin::before { content: '🔗'; }
.icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .main-navigation .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-top: 3px solid #a07a4a;
    }
    .main-navigation .nav-menu.active {
        display: flex;
    }
    .main-navigation .nav-menu > li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    .main-navigation .nav-menu > li:last-child {
        border-bottom: none;
    }
    .main-navigation .nav-menu > li > a {
        padding: 15px 20px;
    }
    .main-navigation .sub-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        padding-left: 20px;
        background-color: #f9f9f9;
    }
    .menu-toggle {
        display: block;
    }
    .header-main-nav .container {
        justify-content: center;
        flex-wrap: wrap;
    }
    .logo-area {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .logo-area .brand-logo {
        align-items: center;
    }
    .header-actions {
        order: 3; /* Move actions below logo and nav toggle */
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }
    .payment-methods {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .footer-widgets .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col .widget-title {
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .newsletter-signup form {
        flex-direction: column;
    }
}
/* 移动端内容区防溢出（系统追加，请勿删除） */
@media (max-width: 768px) {
  .page-content img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-content {
    overflow-x: hidden;
    max-width: 100%;
  }
  body {
    overflow-x: hidden;
  }
}
