/* Watch Store CSS */
:root {
    --primary-color: #c9a74d; /* Màu vàng gold chủ đạo từ index.php */
    --primary-hover: #b89339; /* Màu vàng gold đậm hơn khi hover */
    --text-color: #333;
    --light-text: #666;
    --lighter-text: #999;
    --bg-color: #fff;
    --border-color: #eee;
    --hover-bg: #f5f5f5;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
}

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

.main-content {
    padding: 20px 0 40px;
}

/* Common Section Styles */
.quality-section, 
.collections-section, 
.featured-products-section, 
.brand-promise-section, 
.blog-section,
.contact-section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.collections-section h2, 
.featured-products-section h2, 
.blog-section h2,
.contact-section h2,
.section-title {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

/* Banner Section */
.banner-section {
    margin-bottom: 40px;
}

.banner-image {
    width: 100%;
    height: 300px;
    background-color: #e0e0e0;
    margin-bottom: 20px;
    overflow: hidden;
}

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

/* Quality Section */
.quality-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
    margin-bottom: 40px;
}

.quality-section h2 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-outline {
    padding: 12px 25px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
    font-weight: 500;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Collections Section */
.collections-section {
    text-align: center;
}

.collection-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.circle-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #e0e0e0;
    margin: 0 auto 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.collection-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.collection-item p {
    font-size: 14px;
    color: #666;
}

/* Featured Products Section */
.featured-products-section {
    text-align: center;
}

.product-item {
    border: 1px solid #eee;
    padding: 15px;
    transition: all 0.3s ease;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.product-item:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.product-info {
    margin-top: 15px;
    text-align: left;
}

.product-info h5 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 16px;
}

/* Brand Promise Section */
.brand-promise-section {
    background-color: #f9f9f9;
    padding: 40px 15px;
    border-radius: 5px;
}

.brand-image {
    background-color: #e0e0e0;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
}

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

.brand-text {
    padding: 0 15px;
}

.brand-text h2 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.brand-text p {
    font-size: 16px;
    line-height: 1.5;
}

/* Blog Section */
.blog-section {
    text-align: center;
}

.blog-item {
    text-align: left;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-3px);
}

.blog-image {
    height: 200px;
    background-color: #e0e0e0;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 5px;
}

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

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

.blog-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.contact-section .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    width: 20px;
    color: #666;
}

.policy-group h4 {
    font-size: 18px;
    font-weight: 600;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    margin-bottom: 8px;
}

.policy-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.policy-list a:hover {
    color: #e83e8c;
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 992px) {
    .collection-item {
        width: 30%;
    }
    
    .blog-image {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .buttons-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .collection-item {
        width: 48%;
    }
    
    .circle-image {
        width: 80px;
        height: 80px;
    }
    
    .collection-item h3 {
        font-size: 16px;
    }
    
    .collection-item p {
        font-size: 12px;
    }
    
    .brand-text {
        margin-top: 20px;
    }
    
    .contact-section .col-md-7 {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .quality-section h2,
    .collections-section h2,
    .featured-products-section h2,
    .brand-text h2,
    .blog-section h2 {
        font-size: 20px;
    }
    
    .collection-item {
        width: 45%;
    }
    
    .blog-image {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    img[src*="logoG.png"] {
        max-height: 38px !important;
        width: auto !important;
        object-fit: contain;
        padding: 2px 0 !important;
        display: inline-block;
    }
}

img[src*="logoG.png"] {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    padding: 5px 0;
    display: inline-block;
} 