/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;
    color: #141543;
}

.wedding-hero {
    background-image: url('/static/home/default_en/images/wedding-banner.jpeg');
    background-color: #f5f2ed;
}

.hero-content {
    max-width: 600px;
    padding: 0 30px;
    z-index: 2;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-button.primary {
    background-color: #141543;
    color: #fff;
    border: 2px solid #141543;
}

.hero-button.primary:hover {
    background-color: #2a2c7a;
    border-color: #2a2c7a;
    transform: translateY(-2px);
}

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

.hero-button.secondary:hover {
    background-color: #141543;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive styles for Hero Section */
@media only screen and (max-width: 992px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .hero-section {
        height: 450px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 13px;
        margin-bottom: 28px;
    }
    
    .hero-button {
        padding: 12px 28px;
        font-size: 13px;
    }
}

@media only screen and (max-width: 480px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 12px;
        margin-bottom: 22px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-button {
        padding: 10px 24px;
        font-size: 12px;
        width: 80%;
    }
}

/* Ring Item Demo Container */
.ring-item-demo-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }
        .ring-item-demo-title {
            font-size: 24px;
            font-weight: 500;
            color: #333;
            margin: 0 0 30px 0;
            text-align: center;
        }
        .ring-item-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .ring-item-filter{
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        /* 戒指项容器 */
        .ring-item {
            background-color: #fff;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
        }
        .ring-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        /* 戒指图片容器 */
        .ring-item-image-container {
            width: 100%;
            padding-top: 100%;
            position: relative;
            background-color: #f5f5f5;
            overflow: hidden;
        }
        .ring-item-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        .ring-item:hover .ring-item-image {
            transform: scale(1.05);
        }
        /* 收藏按钮 */
        .ring-item-favorite {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 32px;
            height: 32px;
            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);
        }
        .ring-item-favorite:hover {
            background-color: #fff;
            transform: scale(1.1);
        }
        .ring-item-favorite-icon {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: #ccc;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: all 0.3s ease;
        }
        .ring-item-favorite.active .ring-item-favorite-icon {
            fill: #ff4d4f;
            stroke: #ff4d4f;
        }
        /* 戒指内容 */
        .ring-item-content {
            padding: 16px;
            text-align: center;
        }
        .ring-item-name {
            font-size: 16px;
            font-weight: 400;
            color: #333;
            margin: 0 0 6px 0;
            height: 48px;line-height: 24px;
            overflow: hidden;
        }
        .ring-item-price {
            font-size: 17px;
            font-weight: 500;
            color: #000;
            margin: 0;
        }
        /* 通知提示样式 */
        .ring-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: flex;
            align-items: center;
            gap: 10px;
            max-width: 300px;
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.3s ease;
        }
        .ring-item-notification.show {
            opacity: 1;
            transform: translateY(0);
        }
        .ring-item-notification-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        .ring-item-notification-message {
            font-size: 14px;
            font-weight: 500;
        }
        .ring-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;
        }
        .ring-item-notification-close:hover {
            background-color: rgba(255,255,255,0.2);
        }
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .ring-item-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .ring-item-demo-container {
                padding: 10px;
            }
            .ring-item-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            .ring-item-image {
                padding: 30px;
            }
        }
        @media (max-width: 480px) {
            .ring-item-grid {
                grid-template-columns: 1fr;
            }
        }

/* 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;
    line-height: 100px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

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

/* 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;
    margin-bottom: 30px;
    border-radius: 0;
    padding: 0;
    background-color: transparent;
    object-fit: contain;
}

.diamond-shape-name {
    font-size: 14px;
    color: #666;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 0;
    font-weight: 400;
    text-align: center;
}

.diamond-shape-item:hover .diamond-shape-name {
    color: #141543;
    font-weight: 500;
}

/* Shop Diamonds by Styles Section */
.diamonds-by-styles {
    padding: 40px 0;
    margin: 0 auto;
}

.diamonds-by-styles-title {
    font-size: 28px;
    font-weight: 500;
    color: #222;
    text-align: center;
    margin-bottom: 15px;
}

.diamonds-by-styles-description {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.diamonds-by-styles-container {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

/* Swiper navigation buttons */
.diamonds-by-styles-container .swiper-button-prev,
.diamonds-by-styles-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);
}

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

.diamonds-by-styles {
    padding: 50px 0;
}

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

.diamond-styles-image {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 50%;
    padding: 15px;
    background-color: #f8f8f8;
    object-fit: contain;
}

.diamond-styles-name {
    font-size: 14px;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.diamond-styles-item:hover .diamond-styles-name {
    color: #141543;
    font-weight: 600;
}

/* Lab-Grown Diamonds Section */
.lab-grown-diamonds-section {
    background-color: #f0f7ff;
    background-image: url('/static/home/default_en/images/wedding-banner-ad.jpeg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lab-grown-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.lab-grown-text {
    flex: 1;
    padding-right: 60px;
}

.lab-grown-tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #141543;
    margin-bottom: 16px;
    display: block;
}

.lab-grown-title {
    font-size: 32px;
    font-weight: 500;
    color: #222;
    margin-bottom: 16px;
}

.lab-grown-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
}

.lab-grown-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #141543;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0px;
    transition: background-color 0.3s ease;
}

.lab-grown-button:hover {
    background-color: #fff;
    color: #0d0e31;
}

.lab-grown-images {
    flex: 1;
    height: 200px;
    background-image: url('https://images.unsplash.com/photo-1515598424310-a385d0b63773?q=80&w=1000&auto=format&fit=crop');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
}

/* Responsive for lab-grown diamonds section */
@media (max-width: 992px) {
    .lab-grown-content {
        flex-direction: column;
        text-align: center;
    }
    
    .lab-grown-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .lab-grown-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .lab-grown-images {
        width: 100%;
        height: 300px;
        background-position: center;
    }
}

/* 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(200px, 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;
    }
}

/* 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;
    }
    
    .diamonds-by-styles-container {
        gap: 20px;
        padding: 0;
    }
    
    .diamond-shape-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
        padding: 0 5px;
        min-width: 60px;
    }
    
    .diamond-styles-item {
        margin-bottom: 0;
        padding: 0 10px;
    }
    
    /* Adjust Swiper navigation buttons for mobile */
    .diamonds-by-styles-container .swiper-button-prev,
    .diamonds-by-styles-container .swiper-button-next {
        width: 30px;
        height: 30px;
        top: 45%;
    }
    
    .diamonds-by-styles-container .swiper-button-prev::after,
    .diamonds-by-styles-container .swiper-button-next::after {
        font-size: 14px;
    }
    
    .diamond-shape-image {
        width: 40px;
        height: 40px;
    }
    
    .diamond-styles-image {
        width: 50px;
        height: 50px;
    }
    
    .diamond-shape-name {
        font-size: 12px;
    }
    
    .diamond-styles-name {
        font-size: 13px;
    }
}

/* Our Engagement Ring Picks Section */
.engagement-picks {
    padding: 60px 0;
    text-align: center;
}

.engagement-picks-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.engagement-picks-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.engagement-picks-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    height: 600px;
}

.engagement-picks-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 35%;
    height: 100%;
}

.engagement-pick-item {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}



.engagement-pick-item-small {
    height: calc(50% - 10px);
}

.engagement-pick-item-large {
    width: 65%;
    height: 100%;
}

.engagement-pick-image {
    width: 100%;
    height: calc(100% - 40px);
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}


.engagement-pick-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
}

/* Responsive Design for Engagement Picks */
@media (max-width: 768px) {
    .engagement-picks-container {
        flex-direction: column;
        align-items: center;
        height: auto;
    }
    
    .engagement-picks-left {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 20px;
        height: auto;
    }
    
    .engagement-pick-item-small {
        width: calc(50% - 10px);
        height: 300px;
    }
    
    .engagement-pick-item-large {
        width: 100%;
        height: 300px;
    }
    
    .engagement-picks-title {
        font-size: 28px;
    }
    
    .engagement-picks-description {
        font-size: 15px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .engagement-picks {
        padding: 40px 0;
    }
    
    .engagement-picks-title {
        font-size: 24px;
    }
    
    .engagement-picks-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .engagement-picks-left {
        flex-direction: column;
        gap: 15px;
    }
    
    .engagement-pick-item-small {
        width: 100%;
        height: 250px;
    }
    
    .engagement-pick-item-large {
        height: 250px;
    }
}

/* Popular Engagement Rings Section Styles */
.popular-rings-section {
  padding: 60px 0;
}

.popular-rings-title {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.popular-rings-swiper-container {
  margin: 0 auto;
  position: relative;
}

.popular-rings-swiper {
  width: 100%;
  padding-bottom: 30px;
}

.popular-rings-swiper .swiper-wrapper {
  align-items: stretch;
}

.popular-rings-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}

.popular-ring-item {
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.popular-ring-item:hover {
  transform: translateY(-5px);
}

.popular-ring-image-container {
  width: 100%;
  padding-top: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.popular-ring-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.popular-ring-item:hover .popular-ring-image {
  transform: scale(1.05);
}

.popular-ring-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.popular-ring-name {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  margin: 0 0 6px 0;
  line-height: 1.4;
  min-height: 40px;
}

.popular-ring-price {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

/* Swiper Navigation Arrows */
.popular-rings-swiper .popular-rings-nav-btn {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.08);
  color: #333;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  top: 50%;
  margin-top: -18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.popular-rings-swiper .popular-rings-nav-btn:hover {
  background-color: #fff;
  transform: scale(1.1) translateY(-2px);
  color: #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popular-rings-swiper .popular-rings-nav-btn::after {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


/* Responsive styles for Popular Engagement Rings */
@media only screen and (max-width: 992px) {
  .popular-rings-swiper .swiper-slide {
    width: calc(25% - 15px);
  }
}

@media only screen and (max-width: 768px) {
  .popular-rings-swiper .swiper-slide {
    width: calc(33.333% - 10px);
  }
  
  .popular-ring-name {
    font-size: 12px;
  }
  
  .popular-ring-price {
    font-size: 14px;
  }
  
  .popular-rings-nav-btn {
    width: 35px;
    height: 35px;
    margin-top: -17.5px;
  }
  
  .popular-rings-nav-btn::after {
    font-size: 16px;
  }
}

@media only screen and (max-width: 480px) {
  .popular-rings-swiper .swiper-slide {
    width: calc(50% - 10px);
  }
  
  .popular-ring-name {
    font-size: 12px;
    min-height: 36px;
  }
  
  .popular-ring-price {
    font-size: 14px;
  }
  
  .popular-rings-nav-btn {
    display: none;
  }
}

/* Design Your Own Diamond Ring Section */
.design-own-ring-section {
  padding: 60px 0;
}

.design-own-ring-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.design-own-ring-text {
  flex: 1;
  padding-right: 40px;
}

.design-own-ring-title {
  font-size: 36px;
  font-weight: 700;
  color: #141543;
  margin-bottom: 20px;
  line-height: 1.2;
}

.design-own-ring-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.design-own-ring-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.design-own-ring-ul{
    line-height: 36px;
}
.design-own-ring-ul li{
    list-style: solid;
}
.service-item {
            background-color: white;
            padding: 15px;
            margin-top:15px ;
            display: block;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        /* 鼠标悬浮效果 */
        .service-item:hover {
            transform: translateY(-5px);
        }
        .service-title {
            font-size: 18px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 10px;
        }
        .service-desc {
            font-size: 14px;
            color: #4a5568;
            line-height: 1.6;
        }
.design-own-ring-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: none;
  border: 2px solid #141543;
  color: #141543;
}

.design-own-ring-button:hover {
  background-color: #1e2065;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 21, 67, 0.3);
}

.design-own-ring-image {
  flex: 1;
}

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

/* Responsive styles for Design Your Own Diamond Ring */
@media only screen and (max-width: 992px) {
  .design-own-ring-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .design-own-ring-title {
    font-size: 28px;
  }
  
  .design-own-ring-buttons {
    justify-content: center;
  }
  
  .design-own-ring-image {
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .design-own-ring-section {
    padding: 40px 0;
  }
  
  .design-own-ring-title {
    font-size: 24px;
  }
  
  .design-own-ring-description {
    font-size: 14px;
  }
  
  .design-own-ring-button {
    padding: 10px 24px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  .design-own-ring-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .design-own-ring-button {
    width: 100%;
    max-width: 280px;
  }
}