/* Diamond Hero Section */
        .diamond-hero-section {
            width: 100%;
            height: 600px;
            display: flex;
            align-items: center;
            background-image: url('/static/home/default_en/images/diamonds-banner.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .diamond-hero-content {
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .diamond-hero-text {
            max-width: 500px;
            z-index: 1;
        }

        .diamond-hero-subtitle {
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .diamond-hero-title {
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .diamond-hero-description {
            font-size: 16px;
            line-height: 1.6;
            color: #ffffff;
            margin-bottom: 30px;
        }

        .diamond-hero-buttons {
            display: flex;
            gap: 16px;
            flex-direction: column;
            width: 80%;
        }

        .diamond-hero-button {
            padding: 14px 32px;
            background-color: #ffffff;
            color: #0d0e31;
            border: none;
            border-radius: 0px;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display:block;
        }

        .diamond-hero-button:hover {
            background-color: #f5f5f5;
        }

        .diamond-hero-button-secondary {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .diamond-hero-button-secondary:hover {
            background-color: #ffffff;
            color: #0d0e31;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .diamond-hero-content {
                flex-direction: column;
                text-align: center;
                padding-top: 80px;
            }

            .diamond-hero-text {
                max-width: 100%;
            }

            .diamond-hero-title {
                font-size: 36px;
            }
            .diamond-hero-buttons {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .diamond-hero-section {
                height: 500px;
            }

            .diamond-hero-title {
                font-size: 28px;
            }

            .diamond-hero-description {
                font-size: 14px;
            }

            .diamond-hero-buttons {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }

            .diamond-hero-button {
                width: 100%;
                max-width: 250px;
            }
        }

        /* 搜索钻石页面容器 */
        .search-diamond-container {
            margin: 0 auto;
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        /* 按钮容器样式 */
        .search-diamond-item-btns {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        /* 按钮样式 */
        .search-diamond-item-btn {
            flex: 1;
            padding: 10px 15px;
            background-color: #fff;
            color: #141543;
            border: 1px solid #141543;
            border-radius: 0px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 0; /* 防止按钮过宽 */
        }
        
        .search-diamond-item-btn:hover {
            background-color: #f5f9ff;
        }
        
        /* 单个按钮居中 */
        .search-diamond-item-btns:only-child {
            justify-content: center;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .search-diamond-item-btns {
                flex-direction: column;
            }
            
            .search-diamond-item-btn {
                width: 100%;
            }
        }
        
        /* 左侧筛选面板样式 */
        .search-left-silder-container {
            width: 360px;
            background-color: #fff;
            border-radius: 0px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
            flex-shrink: 0;
        }
        .search-left-silder-header {
            padding: 10px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .search-left-keyword-btn {
            width: 36px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            background-color: #141543;
            color: #fff;
            border: none;
            border-radius: 0px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .search-left-keyword-btn:hover {
            background-color: #0d0e33;
        }
        .search-left-silder-title {
            font-size: 18px;
            font-weight: 500;
            color: #333;
            margin: 0 0 15px 0;
        }
        .search-left-silder-search-box {
            position: relative;
            width: calc(100% - 36px);
        }
        .search-left-silder-search-input {
            width: 100%;
            padding: 0px 8px;
            border: 1px solid #e0e0e0;
            border-radius: 0px;
            font-size: 14px;
            padding-right: 40px;
            line-height: 34px;
            outline: none;
            transition: border-color 0.3s ease;
            box-sizing: border-box;
        }
        .search-left-silder-search-input:focus {
            border-color: #141543;
        }
        .search-left-silder-search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            width: 16px;
            height: 16px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .search-left-silder-tabs {
            display: flex;
            border-bottom: 1px solid #f0f0f0;
        }
        .search-left-silder-tab {
            flex: 1;
            text-align: center;
            padding: 12px;
            cursor: pointer;
            font-size: 14px;
            color: #666;
            transition: all 0.3s ease;
            position: relative;
        }
        .search-left-silder-tab.active {
            color: #141543;
            font-weight: 500;
        }
        .search-left-silder-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #141543;
        }
        .search-left-silder-content {
            padding: 10px;
        }
        .search-left-silder-section {
            margin-bottom: 25px;
        }
        .search-left-silder-section-title {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            margin: 0 0 15px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        .search-left-silder-section-toggle {
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            font-size: 12px;
            padding: 4px 8px;
            border-radius: 0px;
            transition: all 0.3s ease;
        }
        .search-left-silder-section-toggle:hover {
            background-color: #f5f5f5;
            color: #666;
        }
        /* 可折叠内容容器 */
        .search-left-silder-section-content {
            max-height: 1000px;
            transition: max-height 0.3s ease;
        }
        /* 收起状态 */
        .search-left-silder-section.collapsed .search-left-silder-section-content {
            display: none;
            margin-bottom: 0;
        }
        /* 展开/收起图标 */
        .search-left-silder-section-expand-icon {
            width: 12px;
            height: 12px;
            fill: none;
            stroke: #999;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s ease;
            margin-left: 8px;
        }
        .search-left-silder-section.collapsed .search-left-silder-section-expand-icon {
            transform: rotate(-90deg);
        }
        .search-left-silder-shape-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        .search-left-silder-shape-item {
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0px;
            border: 1px solid transparent;
        }
        .search-left-silder-shape-item:hover {
            background-color: #f5f5f5;
        }
        .search-left-silder-shape-item.selected {
            background-color: #f0f7ff;
            border: 1px solid #141543;
        }
        .search-left-silder-shape-image {
            width: 50px;
            height: 50px;
            margin: 0 auto 5px;
            background-color: #f9f9f9;
            border-radius: 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .search-left-silder-shape-item.selected .search-left-silder-shape-image {
            background-color: #e6f0ff;
        }
        .search-left-silder-shape-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        .search-left-silder-shape-name {
            font-size: 12px;
            color: #666;
            margin: 0;
        }
        .search-left-silder-slider {
            margin-bottom: 15px;
            padding-left: 10px;
            padding-right: 10px;
        }
        .search-left-silder-slider-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
            font-size: 14px;
            color: #666;
        }
        .search-left-silder-slider-value {
            font-weight: 500;
            color: #141543;
        }
        .search-left-silder-slider-value i{
            font-size: 12px;
        }
        .search-left-silder-checkbox-group {
            margin-bottom: 10px;
        }
        .search-left-silder-checkbox-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            cursor: pointer;
        }
        .search-left-silder-checkbox-item:last-child {
            margin-bottom: 0;
        }
        .search-left-silder-checkbox-item input[type="checkbox"] {
            margin-right: 8px;
        }
        .search-left-silder-checkbox-item label {
            font-size: 14px;
            color: #666;
            cursor: pointer;
        }
        .search-left-silder-select {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid #e0e0e0;
            border-radius: 0px;
            font-size: 14px;
            outline: none;
            background-color: #fff;
            cursor: pointer;
            transition: border-color 0.3s ease;
        }
        .search-left-silder-select:focus {
            border-color: #141543;
        }
        .search-left-silder-divider {
            height: 1px;
            background-color: #f0f0f0;
            margin: 20px 0;
        }
        .search-left-silder-footer {
            padding: 10px;
            border-top: 1px solid #f0f0f0;
            width: 340px;
            background-color: #fff;
            z-index: 99999999;
        }
        .search-left-silder-footer.fixed{
            position: fixed;
            bottom: 0px;
        }
        .search-left-silder-actions {
            display: flex;
            gap: 10px;
        }
        .search-left-silder-reset-btn {
            flex: 1;
            padding: 10px 15px;
            background-color: #fff;
            color: #666;
            border: 1px solid #e0e0e0;
            border-radius: 0px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-left-silder-reset-btn:hover {
            background-color: #f5f5f5;
        }
        .search-left-silder-apply-btn {
            flex: 1;
            padding: 10px 15px;
            background-color: #141543;
            color: #fff;
            border: none;
            border-radius: 0px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-left-silder-apply-btn:hover {
            background-color: #0052a3;
        }
        
        /* 右侧钻石搜索结果样式 */
        .search-diamond-item-container {
            flex: 1;
        }
        .search-diamond-item-header {
            background-color: #fff;
            margin-bottom: 20px;
            border-bottom: 1px solid #dddddd;
            display: flex;
            height: 60px;
            padding-left:10px;
            padding-right: 10px;
            justify-content: space-between;
            align-items: center;
        }
        .search-diamond-item-title-container {
            display: flex;
            justify-content: center;
        }
         .search-diamond-item-search a{
            font-size: 10px;
            margin-left: 10px;
            padding-bottom: 3px;
            padding-top: 3px;
            padding-left: 5px;
            border: 1px #ddd solid;
            float: left;
            margin-bottom: 5px;
        }
        .search-diamond-item-search span{
            padding-left: 5px;
            padding-right: 5px;
            color: red;
        }
        .search-diamond-item-title {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            margin: 0;
            text-align: center;
        }
        .search-diamond-item-compare-container {
            width: 50%;
            display: flex;
            justify-content: center;
        }
        .search-diamond-item-compare {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-diamond-item-compare:hover {
            color: #141543;
        }
        .search-diamond-item-compare-icon {
            margin-right: 8px;
            width: 16px;
            height: 16px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .search-diamond-item-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .search-diamond-item {
            background-color: #fff;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }
        .search-diamond-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .search-diamond-item.selected {
            border: 2px solid #141543;
            box-shadow: 0 0 0 2px rgba(0,102,204,0.1);
        }
        .search-diamond-item-image-container {
            width: 100%;
            padding-top: 100%;
            position: relative;
            background-color: #f5f5f5;
            overflow: hidden;
            display: block;
        }
        .search-diamond-item-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        .search-diamond-item:hover .search-diamond-item-image {
            transform: scale(1.05);
        }
        .search-diamond-item-favorite {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .search-diamond-item-favorite:hover {
            background-color: #fff;
            transform: scale(1.1);
        }
        .search-diamond-item-favorite-icon {
            width: 14px;
            height: 14px;
            fill: none;
            stroke: #ccc;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: all 0.3s ease;
        }
        .search-diamond-item-favorite.active .search-diamond-item-favorite-icon {
            fill: #ff4d4f;
            stroke: #ff4d4f;
        }
        .search-diamond-item-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background-color: #ff7a45;
            color: #fff;
            padding: 4px 10px;
            border-radius: 0px;
            font-size: 12px;
            font-weight: 500;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .search-diamond-item-tag.best-value {
            background-color: #52c41a;
        }
        .search-diamond-item-tag-icon {
            width: 12px;
            height: 12px;
            fill: currentColor;
        }
        .search-diamond-item-content {
            padding: 16px;
            text-align: center;
        }
        .search-diamond-item-name {
            font-size: 16px;
            font-weight: 400;
            color: #333;
            margin: 0 0 6px 0;
            height: 48px;
            overflow: hidden;
            line-height: 24px;
        }
        .search-diamond-item-details {
            font-size: 14px;
            color: #666;
            margin: 0 0 10px 0;
        }
        .search-diamond-item-price {
            font-size: 17px;
            font-weight: 500;
            color: #000;
            margin: 0 0 15px 0;
        }
        .search-diamond-item-select-btn {
            width: 100%;
            padding: 10px 15px;
            background-color: #fff;
            color: #141543;
            border: 1px solid #141543;
            border-radius: 0px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .search-diamond-item-select-btn:hover {
            background-color: #f5f9ff;
        }
        .search-diamond-item.selected .search-diamond-item-select-btn {
            background-color: #141543;
            color: #fff;
        }
        .search-diamond-item-select-arrow {
            width: 12px;
            height: 12px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s ease;
        }
        .search-diamond-item.selected .search-diamond-item-select-arrow {
            transform: rotate(180deg);
        }
        /* 弹出层背景遮罩 */
        .search-diamond-item-modal-backdrop {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.5);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .search-diamond-item-modal-backdrop.show {
            display: block;
            opacity: 1;
        }
        
        /* 弹出层容器 */
        .search-diamond-item-actions {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #fff;
            border-radius: 0px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            padding: 24px;
            min-width: 300px;
            max-width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            z-index: 1001;
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.95);
            transition: all 0.3s ease;
        }
        .search-diamond-item-actions.show {
            display: block;
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
        
        /* 弹出层标题 */
        .search-diamond-item-modal-title {
            font-size: 18px;
            font-weight: 500;
            color: #333;
            margin: 0 0 20px 0;
            text-align: center;
        }
        
        /* 弹出层关闭按钮 */
        .search-diamond-item-close-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            font-size: 20px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            z-index: 10;
        }
        .search-diamond-item-close-btn:hover {
            background-color: #f5f5f5;
            color: #666;
        }
        /* 弹出层按钮容器 */
        .search-diamond-item-actions-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        /* 弹出层按钮样式 */
        .search-diamond-item-action-btn {
            padding: 12px 16px;
            background-color: #fff;
            color: #141543;
            border: 1px solid #141543;
            border-radius: 0px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-diamond-item-action-btn:hover {
            background-color: #f5f9ff;
        }
        .search-diamond-item-action-btn {
            width: 100%;
            padding: 8px 12px;
            background-color: #fff;
            color: #141543;
            border: 1px solid #141543;
            border-radius: 0px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 8px;
        }
        .search-diamond-item-action-btn:last-child {
            margin-bottom: 0;
        }
        .search-diamond-item-action-btn:hover {
            background-color: #f5f9ff;
        }
        /* 添加成功提示样式 */
        .search-diamond-item-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background-color: #52c41a;
            color: #fff;
            padding: 12px 20px;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 10000;
            display: none;
            align-items: center;
            gap: 10px;
            max-width: 300px;
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.3s ease;
        }
        .search-diamond-item-notification.show {
            opacity: 1;
            display: flex;
            transform: translateY(0);
        }
        .search-diamond-item-notification-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        .search-diamond-item-notification-message {
            font-size: 14px;
            font-weight: 500;
        }
        .search-diamond-item-notification-close {
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            font-size: 18px;
            padding: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s ease;
            margin-left: auto;
        }
        .search-diamond-item-notification-close:hover {
            background-color: rgba(255,255,255,0.2);
        }
        
        /* 分页控件 */
        .search-diamond-item-pagination {
            margin-top: 30px;
            text-align: center;
        }
        
        /* 按钮容器样式 */
        .search-diamond-item-btns {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        /* 按钮样式 */
        .search-diamond-item-btn {
            flex: 1;
            padding: 10px 15px;
            background-color: #fff;
            color: #141543;
            border: 1px solid #141543;
            border-radius: 0px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 0;
        }
        
        .search-diamond-item-btn:hover {
            background-color: #f5f9ff;
        }
        .search-left-silder-tips{
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .search-left-silder-tips:last-child{
            margin-bottom: 0;
        }
        .search-left-silder-tips span{
            font-size: 12px;
        }
        /* 响应式调整 - 移动端垂直排列 */
        @media (max-width: 768px) {
            .search-diamond-item-btns {
                flex-direction: column;
            }
        }

         .search-left-silder-content{
            overflow-y:scroll;
        }
        .search-left-silder.fixed{
            position: fixed;
            z-index: 1000;
            top: 80px;
            background-color: #fff;
        }
        .search-diamond-header{
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 68px;
            background-color: #fff;
            width: 100%;
            padding: 15px 20px;
            box-sizing: border-box;
        }
        .search-diamond-header.fixed{
            position: fixed;
            z-index: 1000;
            top: 80px;
        }
        .design-ring-steps.fixed{
            position: fixed;
            z-index: 1009;
            top: 0;
        }
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .search-diamond-item-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .search-diamond-container {
                flex-direction: column;
                padding: 10px;
            }
            .search-diamond-header{
                flex-direction: column;
                align-items: center;
                justify-content: center;
                height: auto;
                gap: 20px;
            }
            .search-left-silder-container {
                width: 100%;
                border-radius: 0;
                display: none;
            }
            
            .search-left-silder-shape-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .search-diamond-item-container {
                padding: 0;
            }
            
            .search-diamond-item-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
        }


/* Shop Diamonds by Shape Section */
.diamonds-by-shape {
    padding: 40px 0;
    margin: 0 auto;
    background-color: #ffffff;
}

.diamonds-by-shape-title {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    line-height: 100px;
}

.diamonds-by-shape-container {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Swiper navigation buttons for diamonds by shape */
.diamonds-by-shape-container .swiper-button-prev,
.diamonds-by-shape-container .swiper-button-next {
    color: #333;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.diamonds-by-shape-container .swiper-button-prev::after,
.diamonds-by-shape-container .swiper-button-next::after {
    font-size: 18px;
}

.diamond-shape-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    padding: 0 10px;
}

.diamond-shape-image {
    width: 80px;
    height: 80px;
}

.diamond-shape-name {
    font-size: 13px;
    line-height: 60px;
}
/* Responsive for diamonds by shape section */
@media (max-width: 768px) {
    .diamonds-by-shape-title {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 60px;
    }
    
    .diamonds-by-shape-container {
        gap: 25px;
    }
    
    .diamond-shape-image {
        width: 50px;
        height: 50px;
    }
    
    .diamond-shape-name {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .diamonds-by-shape-container {
        gap: 15px;
        padding: 0 10px;
    }
    
    /* Adjust Swiper navigation buttons for diamonds by shape on mobile */
    .diamonds-by-shape-container .swiper-button-prev,
    .diamonds-by-shape-container .swiper-button-next {
        width: 30px;
        height: 30px;
        top: 45%;
    }
    
    .diamonds-by-shape-container .swiper-button-prev::after,
    .diamonds-by-shape-container .swiper-button-next::after {
        font-size: 14px;
    }
}

/* Design Your Own Diamond Ring Section */
.design-own-ring-section {
    width: 100%;
    background-color: #ffffff;
}

.design-own-ring-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 0px;
}

.design-own-ring-image {
    flex: 1;
    max-width: 50%;
}

.design-own-ring-image img {
    width: 100%;
    height: auto;
    display: block;
}

.design-own-ring-text {
    flex: 1;
    max-width: 45%;
    padding-left: 50px;
}

.design-own-ring-title {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.design-own-ring-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 25px;
}

.design-own-ring-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
}

.design-own-ring-button {
    flex: 1;
    min-width: 150px;
    padding: 12px 0px;
    color: #141543;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #141543;
    background-color: #ffffff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.design-own-ring-button:hover {
    background-color: #141543;
    color: #ffffff;
}

.design-own-ring-button-secondary {
    border: 1px solid #141543;
    background-color: #ffffff;
}

.design-own-ring-button-secondary:hover {
    background-color: #141543;
    color: #ffffff;
}

/* Responsive styles for Design Your Own Diamond Ring Section */
@media (max-width: 992px) {
    .design-own-ring-content {
        flex-direction: column;
        text-align: center;
    }
    
    .design-own-ring-image,
    .design-own-ring-text {
        max-width: 100%;
    }
    
    .design-own-ring-text {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .design-own-ring-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .design-own-ring-section {
        padding: 60px 0;
    }
    
    .design-own-ring-title {
        font-size: 22px;
    }
    
    .design-own-ring-description {
        font-size: 14px;
    }
    
    .design-own-ring-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .design-own-ring-button {
        padding: 10px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .design-own-ring-content {
        padding: 0 0px;
    }
    
    .design-own-ring-section {
        padding: 40px 0;
    }
    
    .design-own-ring-title {
        font-size: 20px;
    }
    
    .design-own-ring-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .design-own-ring-button {
        padding: 8px 12px;
        font-size: 11px;
        min-width: 0;
    }
    
    .design-own-ring-description {
         font-size: 14px;
     }
}

/* Jewelry Education Section */
.jewelry-education-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.jewelry-education-title {
    font-size: 28px;
    font-weight: 500;
    color: #141543;
    margin-bottom: 40px;
    text-transform: none;
    letter-spacing: 0;
}

.jewelry-education-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

.jewelry-education-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.jewelry-education-item:hover {
    transform: translateY(-5px);
}

.jewelry-education-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 20px;
}

.jewelry-education-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #141543;
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0;
}

.jewelry-education-item p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
    padding: 0 10px;
}

/* Responsive for Jewelry Education Section */
@media (max-width: 768px) {
    .jewelry-education-section {
        padding: 60px 0;
    }
    
    .jewelry-education-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .jewelry-education-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .jewelry-education-item img {
        height: 200px;
    }
}
