/* Products Page - Luxury Styling */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%), url('../assets/images/about-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23C9A961" opacity="0.05"/><circle cx="80" cy="80" r="1" fill="%23C9A961" opacity="0.05"/><circle cx="40" cy="60" r="0.5" fill="%23C9A961" opacity="0.03"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
}

.page-title {
    color: var(--primary-gold);
    font-size: 3rem;
    font-family: var(--font-primary);
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    color: var(--light-gold);
    font-size: 1.2rem;
    font-family: var(--font-secondary);
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Product Filters */
.product-filters {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--soft-white) 0%, rgba(249, 249, 249, 0.8) 100%);
    position: sticky;
    top: 70px;
    z-index: var(--z-dropdown);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
}

/* Remove pseudo-elements for tighter layout */
.filter-container::-webkit-scrollbar {
    display: none;
}

.filter-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Product Filter Buttons */
.filter-btn {
    padding: 12px 20px;
    background: var(--pure-white);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: auto;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 3px 12px rgba(201, 169, 97, 0.12);
    backdrop-filter: blur(8px);
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
    transition: var(--transition-smooth);
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    background: var(--primary-gold);
    color: var(--deep-black);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.25);
    border-color: var(--primary-gold);
}

.filter-btn:active {
    transform: translateY(-1px) scale(0.99);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--deep-black);
    box-shadow: 0 6px 18px rgba(201, 169, 97, 0.3);
    transform: translateY(-1px);
    border-color: var(--dark-gold);
}

.filter-btn.active::before {
    left: 100%;
}

/* Product Categories */
.product-category {
    margin-bottom: 80px;
}

.category-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--deep-black);
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 0;
    padding: 0 10px;
    justify-items: center;
    align-items: stretch;
    position: relative;
}

.products-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top,
        rgba(201, 169, 97, 0.03) 0%,
        transparent 60%);
    pointer-events: none;
}

/* Products Grid Container */
.product-category {
    margin-bottom: 0;
    overflow: hidden;
}

.product-category:has(.product-item[style*="display: block"]),
.product-category:has(.product-item:not([style*="display: none"])) {
    margin-bottom: 40px;
}

/* Fallback for browsers that don't support :has() */
.product-category {
    margin-bottom: 40px;
}

.product-category.hidden {
    margin-bottom: 0;
}

/* Ensure proper spacing for grid sections */
section[style*="padding: 80px 0"] {
    padding: 40px 0 60px !important;
}

/* Product Items */
.product-item {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 1px solid rgba(201, 169, 97, 0.15);
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 550px;
}


.product-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12),
                0 8px 20px rgba(201, 169, 97, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--primary-gold);
    border-width: 1px;
}

.product-item:active {
    transform: translateY(-3px) scale(0.99);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--grey-light) 0%, var(--soft-white) 100%);
    flex-shrink: 0;
    margin-bottom: 0;
}

.product-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(201, 169, 97, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 3;
    pointer-events: none;
}

.product-item:hover .product-image-container::before {
    opacity: 1;
}

.product-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
    filter: brightness(1) contrast(1.05) saturate(1.1);
    display: block;
}

.product-item:hover .product-image-container img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--deep-black);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
    z-index: 4;
}

.product-item:hover .product-badge {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
}

.product-hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--pure-white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.product-item:hover .product-hover-info {
    transform: translateY(0);
}

.product-content {
    padding: 30px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(249, 249, 249, 0.9) 50%,
        rgba(255, 255, 255, 0.98) 100%);
    border-radius: 0 0 16px 16px;
}

.product-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 169, 97, 0.1) 20%,
        rgba(201, 169, 97, 0.4) 50%,
        rgba(201, 169, 97, 0.1) 80%,
        transparent 100%);
    border-radius: 2px;
}

.product-content::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg,
        var(--primary-gold) 0%,
        var(--dark-gold) 50%,
        var(--primary-gold) 100%);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.product-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--deep-black);
    margin-bottom: 12px;
    line-height: 1.3;
    text-align: center;
    padding: 0 10px;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--charcoal) 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.2px;
    position: relative;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.product-subtitle {
    color: var(--primary-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
    text-shadow: 0 1px 2px rgba(201, 169, 97, 0.2);
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.product-description {
    color: var(--grey-dark);
    line-height: 1.65;
    margin-bottom: 20px;
    text-align: left;
    font-size: 14px;
    flex: 1;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    font-family: var(--font-secondary);
    letter-spacing: 0.2px;
}

/* Product Features */
.product-features {
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(249, 249, 249, 0.7) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 20px 18px;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 97, 0.12);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(2px);
}

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

.feature-list li {
    padding: 10px 0;
    color: var(--grey-dark);
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(201, 169, 97, 0.08);
    transition: all 0.3s ease;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:hover {
    color: var(--deep-black);
    padding-left: 32px;
}

.feature-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 12px;
    text-shadow: 0 1px 3px rgba(201, 169, 97, 0.4);
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.feature-list li:hover::before {
    transform: translateY(-50%) scale(1.1);
    text-shadow: 0 2px 4px rgba(201, 169, 97, 0.5);
}

/* Product Specifications */
.product-specs {
    background: var(--grey-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    padding-bottom: 8px;
}

.spec-label {
    font-weight: 700;
    color: var(--grey-dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(201, 169, 97, 0.2);
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid transparent;
    background: linear-gradient(var(--pure-white), var(--pure-white)) padding-box,
                linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.3) 50%, transparent 100%) border-box;
    position: relative;
}

.product-actions::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg,
        var(--primary-gold) 0%,
        var(--dark-gold) 50%,
        var(--primary-gold) 100%);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.4);
}

.btn-product {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    text-decoration: none;
    display: block;
    border-radius: 6px;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(201, 169, 97, 0.1);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.15);
}

.btn-product:hover {
    background: var(--primary-gold);
    color: var(--deep-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

/* Specific button styles */
.btn-request-sample,
.btn-get-quote {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    text-decoration: none;
    display: block;
    border-radius: 6px;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(201, 169, 97, 0.1);
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-request-sample::before,
.btn-get-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-request-sample:hover,
.btn-get-quote:hover {
    background: var(--primary-gold);
    color: var(--deep-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
    border-color: var(--dark-gold);
}

.btn-request-sample:hover::before,
.btn-get-quote:hover::before {
    left: 100%;
}

.btn-request-sample {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    color: var(--deep-black);
    border-color: var(--primary-gold);
    font-weight: 800;
}

.btn-request-sample:hover {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--primary-gold) 100%);
    transform: translateY(-3px);
}

.btn-product.primary {
    background: var(--primary-gold);
    color: var(--deep-black);
}

.btn-product.primary:hover {
    background: var(--dark-gold);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--soft-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-family: var(--font-primary);
    font-weight: 900;
    color: var(--deep-black);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefits-grid > div {
    text-align: center;
    padding: 30px;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: var(--transition-smooth);
}

.benefits-grid > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-gold);
}

.benefits-grid h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--deep-black);
    margin: 20px 0 15px;
}

.benefits-grid p {
    color: var(--grey-dark);
    line-height: 1.6;
}

/* Quality Assurance Section */
.quality-assurance {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--charcoal) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--pure-white);
}

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

.quality-item {
    padding: 30px;
    border-radius: 10px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: var(--transition-smooth);
}

.quality-item:hover {
    background: rgba(201, 169, 97, 0.15);
    transform: translateY(-5px);
}

.quality-item h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.quality-item p {
    color: var(--light-gold);
}

/* Arabic RTL Support */
body.rtl .filter-btn {
    font-family: var(--font-arabic-luxury);
    letter-spacing: 0;
}

body.rtl .category-title {
    font-family: var(--font-arabic-display);
}

body.rtl .product-title {
    font-family: var(--font-arabic-luxury);
    font-weight: 700;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--charcoal) 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

body.rtl .product-description,
body.rtl .product-subtitle {
    font-family: var(--font-arabic-luxury);
}

body.rtl .product-subtitle {
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 2px rgba(201, 169, 97, 0.2);
}

body.rtl .feature-list li {
    padding-right: 22px;
    padding-left: 0;
    text-align: right;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}

body.rtl .feature-list li::before {
    right: 0;
    left: auto;
}

body.rtl .btn-product {
    font-family: var(--font-arabic-luxury);
    letter-spacing: 0;
}

/* Desktop Layout Optimization */
@media (min-width: 1401px) {
    .filter-container {
        gap: 18px;
        flex-wrap: nowrap;
    }

    .filter-btn {
        padding: 14px 24px;
        font-size: 13px;
        height: 46px;
        letter-spacing: 0.8px;
        min-width: 160px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .product-item {
        max-width: 380px;
        min-height: 550px;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .filter-container {
        gap: 12px;
        padding: 0 15px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
        letter-spacing: 0.6px;
        height: 40px;
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
        gap: 25px;
    }

    .product-item {
        max-width: 360px;
        min-height: 520px;
    }

    .filter-container {
        gap: 10px;
        padding: 0 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        padding: 9px 14px;
        font-size: 11px;
        height: 36px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        padding: 0 10px;
    }

    .product-item {
        max-width: 340px;
        min-height: 500px;
    }

    .product-image-container {
        height: 220px;
    }

    .filter-container::before,
    .filter-container::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .product-item {
        max-width: 100%;
        min-height: 480px;
    }

    .category-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .product-image-container {
        height: 200px;
    }

    .product-content {
        padding: 25px 20px 20px;
    }

    .filter-container {
        gap: 12px;
        padding: 0 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        font-size: 11px;
        padding: 10px 16px;
        min-width: auto;
        height: 40px;
        letter-spacing: 0.5px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .product-filters {
        padding: 30px 0;
        position: relative;
        top: 0;
    }

    .quality-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
        gap: 15px;
    }

    .product-image-container {
        height: 250px;
    }

    .product-content {
        padding: 18px 16px 14px;
    }
}

@media (max-width: 480px) {
    .filter-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .filter-btn {
        width: 85%;
        max-width: 300px;
        justify-content: center;
    }

    .product-item {
        min-height: 450px;
        margin: 0;
    }

    .products-grid {
        padding: 0 10px;
        gap: 25px;
    }

    .product-image-container {
        height: 180px;
    }

    .product-content {
        padding: 20px 18px 18px;
    }

    .feature-list li {
        font-size: 13px;
        padding: 8px 0;
    }

    .page-header {
        padding: 140px 0 60px;
    }

    .page-title {
        font-size: 2.2rem;
        padding: 0 15px;
    }
}

/* Animation Enhancements */
@keyframes luxuryEntranceEffect {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(5px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(15px) scale(0.95);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes goldShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(201, 169, 97, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(201, 169, 97, 0.4);
    }
}

.product-item {
    animation: luxuryEntranceEffect 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.2s; }
.product-item:nth-child(3) { animation-delay: 0.3s; }
.product-item:nth-child(4) { animation-delay: 0.4s; }
.product-item:nth-child(5) { animation-delay: 0.5s; }
.product-item:nth-child(6) { animation-delay: 0.6s; }

.product-badge {
    animation: pulseGlow 3s ease-in-out infinite;
}

.product-title::after,
.product-subtitle::after {
    background-size: 200% auto;
    animation: goldShimmer 3s linear infinite;
}