/* Enhanced Engagement Rings Styles */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding: 15px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.breadcrumb li {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #ccc;
}

.breadcrumb li a {
    color: #12263a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: #d4af37;
}

.breadcrumb li.active {
    color: #d4af37;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(18, 38, 58, 0.05) 100%);
    z-index: 1;
}

.hero-content {
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 300;
    color: #12263a;
    margin-bottom: 30px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-weight: 300;
}

.hero-buttons {
    margin-top: 40px;
}

.hero-buttons .btn {
    margin-right: 20px;
    margin-bottom: 10px;
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-5px);
}

/* Enhanced Button Styles */
.btn {
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #fff;
    padding: 12px 30px;
}

.btn-primary:hover {
    background-color: #12263a;
    border-color: #12263a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(18, 38, 58, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: #12263a;
    color: #12263a;
    padding: 12px 30px;
}

.btn-outline:hover {
    background-color: #12263a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(18, 38, 58, 0.2);
}

/* Ring Process Steps */
.ring-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #12263a 0%, #1a3350 100%);
    color: white;
    position: relative;
}

.ring-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/ring-pattern.svg') repeat;
    opacity: 0.05;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 280px;
    margin: 30px 20px;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #d4af37 0%, transparent 100%);
}

.step:last-child::after {
    display: none;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #f0d870 100%);
    color: #12263a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.1);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 300;
}

.step p {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.6;
}

/* Collection Section */
.collection-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.collection-header h2 {
    font-size: 2.8rem;
    color: #12263a;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: -1px;
}

.collection-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* Enhanced Filters */
.filters-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    font-weight: 600;
    color: #12263a;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    background-color: white;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Active Filters */
.active-filters {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    display: none;
}

.active-filters.show {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.active-filters-label {
    font-weight: 600;
    color: #333;
}

.filter-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tag {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-tag button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
}

.clear-all-filters {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.clear-all-filters:hover {
    background: #c82333;
}

/* Results Summary */
.results-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Ring Styles Section */
.ring-styles-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    color: #12263a;
    font-weight: 700;
}

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

.style-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.style-image {
    height: 250px;
    overflow: hidden;
}

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

.style-card:hover .style-image img {
    transform: scale(1.1);
}

.style-content {
    padding: 30px;
}

.style-content h3 {
    font-size: 1.4rem;
    color: #12263a;
    margin-bottom: 15px;
    font-weight: 600;
}

.style-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Style Actions */
.style-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.style-actions .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.style-actions .btn-outline {
    background: white;
    color: #c9a961;
    border: 2px solid #c9a961;
}

.style-actions .btn-outline:hover {
    background: #c9a961;
    color: white;
    transform: translateY(-2px);
}

.style-actions .btn-primary {
    background: #c9a961;
    color: white;
    border: 2px solid #c9a961;
}

.style-actions .btn-primary:hover {
    background: #b8956b;
    border-color: #b8956b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

@media (max-width: 768px) {
    .style-actions {
        flex-direction: column;
    }
    
    .style-actions .btn {
        width: 100%;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #12263a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.why-choose-us h4 {
    color: #12263a;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-choose-us p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.faq-question h4 {
    margin: 0;
    color: #12263a;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #12263a;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #12263a;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Quick View Modal Styles */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-view-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #12263a;
}

.modal-body {
    padding: 40px;
}

.modal-product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.modal-product-info {
    padding-left: 30px;
}

.modal-product-info h2 {
    font-size: 1.8rem;
    color: #12263a;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-product-price {
    font-size: 1.5rem;
    color: #12263a;
    font-weight: 700;
    margin-bottom: 25px;
}

.product-specifications {
    margin-bottom: 25px;
}

.product-specifications p {
    margin-bottom: 8px;
    color: #666;
}

.product-specifications strong {
    color: #12263a;
}

.modal-product-description {
    margin-bottom: 30px;
}

.modal-product-description p {
    color: #666;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.modal-actions .btn {
    flex: 1;
    min-width: 150px;
}

/* Breadcrumb Styles */
.breadcrumb-section {
    padding: 20px 0;
    background: #f8f9fa;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #12263a;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #0f1f2e;
}

.breadcrumb-item.active {
    color: #666;
}

/* Category Hero Styles */
.category-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

/* About Style Section */
.about-style-section {
    padding: 80px 0;
    background: white;
}

.about-content h3 {
    font-size: 2rem;
    color: #12263a;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-section h3 {
    font-size: 2rem;
    color: #12263a;
    font-weight: 600;
}

/* Related Styles Section */
.related-styles {
    padding: 80px 0;
    background: white;
}

.related-styles h3 {
    font-size: 2rem;
    color: #12263a;
    margin-bottom: 50px;
    font-weight: 600;
}

.related-style-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.related-style-link:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.related-style-link img {
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.related-style-link:hover img {
    transform: scale(1.05);
}

.related-style-link h5 {
    color: #12263a;
    font-weight: 600;
    margin-top: 15px;
}

.related-style-link p {
    color: #666;
    font-size: 0.9rem;
}

/* Product Details in Cards */
.product-details {
    font-size: 0.85rem;
    color: #999;
    margin-top: 8px;
}

.product-shape,
.product-metal {
    font-weight: 500;
}

/* Professional Enhancement Styles */

/* Collection Stats */
.collection-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.stat-item {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Enhanced Hero Section */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Enhanced Filter Styles */
.filters-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.filter-group label i {
    color: #d4af37;
}

.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Active Filters */
.active-filters {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    display: none;
}

.active-filters.show {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.active-filters-label {
    font-weight: 600;
    color: #333;
}

.filter-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tag {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-tag button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
}

.clear-all-filters {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.clear-all-filters:hover {
    background: #c82333;
}

/* Results Summary */
.results-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.customer-info strong {
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
}

.customer-info span {
    color: #28a745;
    font-size: 0.9rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-weight: 500;
}

.trust-indicators i {
    color: #28a745;
}

/* Educational Section */
.educational-section {
    padding: 80px 0;
}

.guide-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.guide-icon i {
    font-size: 2rem;
    color: white;
}

.guide-card h4 {
    margin-bottom: 1rem;
    color: #333;
}

.guide-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.guide-link:hover {
    color: #b8941f;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h4 {
    margin-bottom: 1rem;
    color: #333;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-card li {
    position: relative;
    padding: 0.25rem 0 0.25rem 1.5rem;
    color: #555;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-feature i {
    color: #d4af37;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.whatsapp-cta {
    margin-top: 1rem;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: white;
}

/* Enhanced Search Functionality */
#search-container {
    background: #f8f9fa;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

#search-container.active {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.search-input-container {
    position: relative;
    margin-bottom: 20px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 2;
}

#ring-search-input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

#ring-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(173, 147, 229, 0.1);
}

.search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #ccc;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 16px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.search-clear:hover {
    background: #999;
}

.search-suggestions {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

#search-container.active .search-suggestions {
    display: block;
}

.suggestions-header {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.2s ease;
    color: var(--text-light);
}

.suggestion-item:hover {
    background: #f8f9ff;
    color: var(--primary-color);
    transform: translateX(5px);
}

.search-results {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

.results-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.results-count {
    color: var(--text-light);
    font-size: 14px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.search-result-item:hover {
    background: #f8f9ff;
    border-color: var(--primary-color);
    text-decoration: none;
    color: inherit;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.result-image {
    position: relative;
    flex-shrink: 0;
}

.result-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.result-type {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

.result-content {
    flex: 1;
}

.result-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.result-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
}

.result-content mark {
    background: rgba(173, 147, 229, 0.2);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.no-results h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.search-alternatives {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.alt-query {
    background: #f8f9ff;
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.alt-query:hover {
    background: var(--primary-color);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #search-container {
        padding: 20px 15px;
    }
    
    .search-wrapper {
        padding: 0 10px;
    }
    
    #ring-search-input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .search-result-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .result-image {
        align-self: center;
    }
    
    .search-alternatives {
        flex-direction: column;
        align-items: center;
    }
}
