/*
Theme Name: Ageo Jewelry
Theme URI: https://ageojewelry.com
Description: A modern and elegant jewelry theme for WooCommerce
Author: Your Name
Author URI: https://ageojewelry.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ageo-jewelry
Tags: e-commerce, jewelry, woocommerce, elegant, modern
*/

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

html {
    margin: 0;
    padding: 0;
}

/* 隐藏不需要的服务特色板块 */
/* .elementor-917,
.post-917,
[data-elementor-id="917"] {
    display: none !important;
} */

/* 头部菜单颜色 */

[data-header*="type-1"] .ct-header [data-id="menu"] > ul > li > a,.ct-header-wishlist,.ct-icon,[data-header*="type-1"] .ct-header-compare .ct-label,[data-header*="type-1"] [data-id="account"] .ct-label{
    color: #fff !important;
}

.ct-icon, .ct-icon-container svg{
    fill: #fff !important;
}

/* 当前菜单项下划线（仅当前页面） */
#header-menu-1 .menu > li > a {
    position: relative;
}

#header-menu-1 .menu > li.current-menu-item > a::after,
#header-menu-1 .menu > li.current_page_item > a::after,
#header-menu-1 .menu > li > a[aria-current="page"]::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    background-color: #fff; /* 与当前头部文字颜色一致 */
}

.elementor-917,
.post-917,
[data-elementor-id="917"] {
    margin-block-end: 0 !important;
}

/* Missdiamond Moments 板块样式 */
.missdiamond-moments-section {
    padding: 80px 0;
    background-color: #121212;
}

.missdiamond-moments-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header.moments {
    text-align: center;
    margin-bottom: 50px;
}

.missdiamond-moments-section .section-title {
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.missdiamond-moments-section .section-subtitle {
    font-size: 16px;
    color: #cccccc;
    margin: 0;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.moment-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #1e1e1e;
}

.moment-media {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.moment-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.moment-item:hover .moment-media img {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .moments-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .missdiamond-moments-section { padding: 60px 0; }
    .moments-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .missdiamond-moments-section .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .moments-grid { grid-template-columns: 1fr; }
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
    display: block;
}

/* Trendy Jewelry 板块样式 */
.trendy-jewelry-section {
    padding: 80px 0;
    background-color: #000000;
    position: relative;
}

.trendy-jewelry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.trendy-jewelry-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

.trendy-jewelry-left {
    flex: 1;
    position: relative;
}

.jewelry-showcase {
    position: relative;
    width: 100%;
}

.jewelry-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
}

.jewelry-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jewelry-main-image:hover {
    transform: scale(1.05);
}

.product-hotspot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.product-hotspot:hover {
    background: #000;
    transform: scale(1.1);
}

.product-hotspot:hover .hotspot-number {
    color: #fff;
}

.hotspot-number {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    transition: color 0.3s ease;
}

.product-popup {
    position: absolute;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 20;
}

.product-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-content {
    display: flex;
    gap: 15px;
    align-items: center;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    flex: 1;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: #e74c3c;
}

.product-price del {
    color: #999;
    font-weight: 400;
    margin-right: 8px;
}

.product-price ins {
    text-decoration: none;
    color: #e74c3c;
}

.trendy-jewelry-right {
    flex: 1;
    padding-left: 40px;
}

.jewelry-content {
    max-width: 500px;
}

.jewelry-subtitle {
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-weight: 500;
}

.jewelry-title {
    font-family: 'EB Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 30px 0;
}

.jewelry-description {
    margin-bottom: 20px;
}

.jewelry-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
    margin: 0;
}

.jewelry-additional-text {
    margin-bottom: 40px;
}

.jewelry-additional-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
    margin: 0;
}

.jewelry-button {
    margin-top: 40px;
}

.shop-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.shop-now-btn:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-2px);
}

.shop-now-btn:hover .btn-arrow svg path {
    fill: #000;
}

.btn-arrow svg {
    transition: all 0.3s ease;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .trendy-jewelry-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 15px;
    }
    
    .trendy-jewelry-right {
        padding-left: 0;
    }
    
    .jewelry-title {
        font-size: 2.5rem;
    }
    
    .jewelry-image-container {
        height: 400px;
    }
    
    .product-popup {
        width: 250px;
    }
}

/* Trending Products 板块样式 */
.trending-products-section {
    padding: 80px 0;
    background-color: #000000;
    position: relative;
}

.trending-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.trending-products-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: left;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-item {
    background: transparent;
    position: relative;
}

.product-image-wrapper {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    background-color: #f5f5f5;
}

.product-labels {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.label-hot {
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label-discount {
    background-color: #2c3e50;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
}

.product-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-image.hover {
    opacity: 0;
}

.product-image-wrapper.has-hover:hover .product-image.primary {
    opacity: 0;
}

.product-image-wrapper.has-hover:hover .product-image.hover {
    opacity: 1;
}

.product-buttons {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-wrapper:hover .product-buttons {
    opacity: 1;
}

.btn-cart,
.btn-wishlist,
.btn-quickview {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-cart {
    color: #2c3e50;
}

.btn-wishlist {
    color: #e74c3c;
    font-size: 16px;
    padding: 8px 10px;
}

.btn-quickview {
    color: #2c3e50;
}

.btn-cart:hover,
.btn-quickview:hover {
    background: #2c3e50;
    color: #ffffff;
}

.btn-wishlist:hover {
    background: #e74c3c;
    color: #ffffff;
}

.product-info {
    text-align: left;
}

.product-title {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.product-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #ffffff;
}

.product-price {
    margin-bottom: 15px;
}

.product-price .woocommerce-Price-amount {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.product-price del .woocommerce-Price-amount {
    color: #999999;
    font-size: 14px;
    font-weight: 400;
}

.product-price ins .woocommerce-Price-amount {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.product-price del {
    margin-right: 10px;
}

.product-price ins {
    text-decoration: none;
}

.price-current {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.price-original {
    color: #999999;
    font-size: 14px;
    text-decoration: line-through;
    margin-right: 10px;
}

.price-range {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.product-colors {
    display: flex;
    gap: 8px;
    align-items: center;
}

.color-option {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:hover {
    border-color: #ffffff;
    transform: scale(1.1);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trending-products-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trending-products-container {
        padding: 0 15px;
    }
}

/* Service Features 板块样式 */
.service-features-section {
    padding: 80px 0;
    background-color: #212121;
    position: relative;
}

/* .service-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
} */

.service-features-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: start;
}

.feature-item {
    text-align: center;
    padding: 0;
}

.feature-icon {
    margin: 0 auto 30px auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-icon svg {
    color: #fff;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    border-color: #fff;
    transform: translateY(-5px);
}

.feature-item:hover .feature-icon svg {
    color: #ffffff;
}

.feature-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-features-section {
        padding: 60px 0;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .feature-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .service-features-container {
        padding: 0 15px;
    }
    
    .feature-description {
        max-width: 100%;
    }
}

/* 产品分类展示板块样式 */
.product-categories-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    position: relative;
}

.product-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.product-categories-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-categories-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-categories-section .section-title {
    font-family: 'EB Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-transform: none;
    letter-spacing: 0;
}

.section-subtitle {
    font-size: 16px;
    color: #cccccc;
    margin: 0;
    line-height: 1.6;
}

/* Tab导航栏样式 */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-button {
    background: transparent;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: none;
    border-bottom: 2px solid transparent;
}

.tab-button:hover {
    color: #ffffff;
}

.tab-button.active {
    color: #000;
    border-bottom-color: #000;
    background-color: #fff;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #000;
}

/* 产品展示区域 */
.category-products {
    margin-bottom: 60px;
}

.category-products .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    min-height: 400px;
}

/* 加载动画 */
.loading-spinner {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    color: #cccccc;
    font-size: 16px;
    margin: 0;
}

/* 产品项目样式（继承之前的样式并做调整） */
.category-products .product-item {
    background: transparent;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.category-products .product-item:nth-child(1) { animation-delay: 0.1s; }
.category-products .product-item:nth-child(2) { animation-delay: 0.2s; }
.category-products .product-item:nth-child(3) { animation-delay: 0.3s; }
.category-products .product-item:nth-child(4) { animation-delay: 0.4s; }
.category-products .product-item:nth-child(5) { animation-delay: 0.5s; }
.category-products .product-item:nth-child(6) { animation-delay: 0.6s; }
.category-products .product-item:nth-child(7) { animation-delay: 0.7s; }
.category-products .product-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 查看更多按钮 */
.view-more-section {
    text-align: center;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.view-more-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.view-more-btn:hover svg {
    transform: translateX(5px);
}

.view-more-btn svg {
    transition: all 0.3s ease;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .category-products .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .product-categories-section {
        padding: 60px 0;
    }
    
    .product-categories-section .section-title {
        font-size: 2.5rem;
    }
    
    .category-tabs {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .tab-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .category-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-categories-container {
        padding: 0 15px;
    }
    
    .product-categories-section .section-title {
        font-size: 2rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .tab-button {
        width: 200px;
        text-align: center;
    }
    
    .category-products .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* Shop D
iamonds by Shape 板块样式 */
.gemstones-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    position: relative;
}

.gemstones-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 20px;
}

.gemstones-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* 左侧：标题和展示图 */
.gemstones-left {
    flex: 1;
    max-width: 500px;
}

.gemstones-title {
    font-family: 'EB Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #000;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

.gemstones-featured-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
}

.gemstones-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

#gemstone-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

/* 右侧：钻石形状网格 */
.gemstones-right {
    flex: 1;
}

.gemstones-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.gemstone-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 120px;
}

.gemstone-card:hover {
    border-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gemstone-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gemstone-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gemstone-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.gemstone-card:hover .gemstone-name {
    color: #000;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .gemstones-layout {
        gap: 40px;
    }
    
    .gemstones-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .gemstones-layout {
        flex-direction: column;
        gap: 50px;
    }
    
    .gemstones-left {
        max-width: 100%;
    }
    
    .gemstones-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .gemstones-section {
        padding: 60px 0;
    }
    
    .gemstones-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .gemstones-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .gemstone-card {
        padding: 15px;
        min-height: 100px;
    }
    
    .gemstone-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .gemstone-name {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .gemstones-container {
        padding: 0 15px;
    }
    
    .gemstones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gemstone-card {
        padding: 12px;
        min-height: 90px;
    }
}
