/* Product Pages Styles */

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #d4af37;
}

/* Catalog Layout */
.products-catalog {
    padding: 80px 0;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.sidebar {
    background: #f8f8f8;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-link {
    color: #666;
    font-size: 14px;
    transition: 0.3s;
}

.filter-link:hover, .filter-link.active {
    color: #d4af37;
    padding-left: 5px;
}

.size-filter, .color-filter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.color-swatch {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

/* Product Detail */
.product-detail {
    padding: 150px 0 80px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0;
}

.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.wishlist-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.3s;
}

.wishlist-btn:hover {
    background: #d4af37;
    color: white;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.thumbnail-images img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.thumbnail-images img:hover, .thumbnail-images img.active {
    border-color: #d4af37;
}

.product-info-detail {
    padding: 20px 0;
}

.product-price-detail {
    margin: 20px 0;
}

.current-price {
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

.old-price {
    font-size: 24px;
    text-decoration: line-through;
    color: #999;
    margin-left: 15px;
}

.product-options {
    margin: 40px 0;
}

.option-group {
    margin-bottom: 25px;
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.size-selector, .color-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-btn, .color-btn {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    cursor: pointer;
    transition: 0.3s;
}

.size-btn:hover, .size-btn.active,
.color-btn:hover, .color-btn.active {
    border-color: #d4af37;
    background: #d4af37;
    color: white;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    background: white;
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid #e0e0e0;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

.product-tabs {
    margin-top: 80px;
}

.tab-buttons {
    display: flex;
    gap: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active {
    border-bottom-color: #d4af37;
    color: #d4af37;
}

.tab-content {
    display: none;
    padding: 40px 0;
}

.tab-content.active {
    display: block;
}

/* Cart Page */
.cart-page {
    padding: 150px 0 80px;
}

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

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: #f8f8f8;
    margin-bottom: 20px;
}

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

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-quantity button {
    width: 35px;
    height: 35px;
    border: 1px solid #e0e0e0;
    background: white;
}

.cart-item-quantity input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.cart-summary-section {
    background: #f8f8f8;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.summary-row.total {
    font-size: 20px;
    font-weight: 700;
    border-bottom: none;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart i {
    font-size: 80px;
    color: #d4af37;
    margin-bottom: 20px;
}

/* FAQ Styles */
.faq-section {
    padding: 80px 0;
}

.faq-categories {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.faq-cat-btn {
    padding: 12px 25px;
    border: 2px solid #e0e0e0;
    background: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-cat-btn:hover, .faq-cat-btn.active {
    border-color: #d4af37;
    background: #d4af37;
    color: white;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d4af37;
}

.faq-question {
    padding: 25px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-question i {
    font-size: 20px;
    color: #d4af37;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px;
    margin: 0;
    line-height: 1.8;
    color: #666;
}

.faq-answer a {
    color: #d4af37;
    text-decoration: underline;
}

.faq-contact {
    text-align: center;
    background: linear-gradient(135deg, #000, #1a1a1a);
    color: white;
    padding: 60px 40px;
    border-radius: 10px;
}

.faq-contact h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.faq-contact > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-option i {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 15px;
}

.contact-option h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-option p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-option span {
    font-size: 14px;
    opacity: 0.8;
}

.contact-option .btn {
    margin-top: 15px;
}

/* About Page Styles */
.about-story {
    padding: 80px 0;
}

.about-story .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story .about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.mission-values {
    padding: 80px 0;
    background: #f8f8f8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 50px;
    color: #d4af37;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

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

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-member p {
    color: #666;
    margin-bottom: 15px;
}

.team-member .social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.team-member .social-links a {
    width: 40px;
    height: 40px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.team-member .social-links a:hover {
    background: #d4af37;
    color: white;
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000, #1a1a1a);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.stat-box h2 {
    font-size: 60px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 18px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
    }
}

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