:root {
    --primary: #c5a059;
    --primary-dark: #a68546;
    --secondary: #1a1a1a;
    --accent: #f8f9fa;
    --text: #333333;
    --text-muted: #777777;
    --bg: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Cairo', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--secondary);
    color: #fff;
    padding: 0.6rem 0;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.announcement-bar p {
    margin: 0;
}

.announcement-close {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
}

/* Navigation */
.main-nav {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.main-nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary);
    filter: drop-shadow(0 2px 4px rgba(197, 160, 89, 0.2));
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #1a1a1a, #c5a059);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 80%;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    margin-right: 5px;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text);
    white-space: nowrap;
}

.dropdown-menu a i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.dropdown-menu a:hover {
    background: rgba(197, 160, 89, 0.05);
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-actions button, .nav-actions a {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--secondary);
    cursor: pointer;
    position: relative;
    text-decoration: none;
    transition: var(--transition);
}

.nav-actions button:hover, .nav-actions a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    font-weight: 700;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
    z-index: 10000;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.search-overlay.active .search-container {
    transform: scale(1);
}

.search-form-new {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.95), rgba(15, 15, 15, 0.98));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 4.5rem 2.5rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    box-shadow: 0 40px 100px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 35px rgba(197, 160, 89, 0.15);
    position: relative;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.4rem 1.5rem;
    gap: 1rem;
    direction: rtl;
    transition: var(--transition);
}

.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.search-bar input {
    flex: 1;
    background: none;
    border: none;
    padding: 1rem 0;
    font-size: 1.15rem;
    font-family: 'Cairo', sans-serif;
    color: #fff;
    outline: none;
    text-align: right;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

.search-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    z-index: 20 !important;
}

.search-close:hover {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
    transform: rotate(90deg) scale(1.05) !important;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4) !important;
}

.search-hints {
    margin-top: 2rem;
    text-align: center;
}

.search-hints p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
}

.hint-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.hint-tags a {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1px solid rgba(197, 160, 89, 0.25);
    font-family: 'Cairo', sans-serif;
}

.hint-tags a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

/* Hero Slider */
.hero-slider {
    height: 90vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 10s ease;
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-content {
    max-width: 700px;
    color: #fff;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-delay: 0.3s;
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-transform: uppercase;
}

.slide-title {
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.slide-text {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-family: 'Cairo', sans-serif;
    max-width: 550px;
}

.slide-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--primary);
    text-align: center;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #fff;
    transition: var(--transition);
    text-align: center;
}

.btn-outline:hover {
    background: #fff;
    color: var(--secondary);
}

/* Swiper Navigation Customization */
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary);
    color: #fff;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 0.8rem;
    gap: 10px;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 20px); }
}

/* Categories Section */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #e2e2e2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
}

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

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid #e2e2e2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(197, 160, 89, 0.15);
    border-color: var(--primary);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-actions {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.8rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 5;
}

.btn-cart {
    flex: 1;
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-cart:hover {
    background: var(--primary);
}

.btn-wishlist {
    background: #fff;
    color: var(--secondary);
    border: 1px solid rgba(0,0,0,0.1);
    width: 45px;
    height: 45px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-wishlist:hover {
    color: #e74c3c;
    border-color: #e74c3c;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 3px;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-cat {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.product-name a {
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
}

.product-name a:hover {
    color: var(--primary);
}

.product-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 10px;
}

/* Footer */
.main-footer {
    background: #111;
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
}

.footer-logo .logo-sub {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: #666;
    text-transform: uppercase;
}

.footer-desc {
    color: #888;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-right: 10px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #888;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

.whatsapp-label {
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Cairo', sans-serif;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    background: #20ba5a;
}

/* RTL Specific */
[dir="rtl"] .footer-col h4::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .footer-col ul a:hover {
    padding-right: 10px;
    padding-left: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-label {
        display: none;
    }
    
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky header */
}

/* About Us Section */
.about-section {
    background: linear-gradient(to bottom, #ffffff, #fdfbf7);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.about-content {
    text-align: right;
}

.section-title-left {
    margin-bottom: 2rem;
}

.section-title-left .sub-title {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Cairo', sans-serif;
}

.section-title-left h2 {
    font-size: 2.6rem;
    margin-top: 0.5rem;
    color: var(--secondary);
    font-family: 'Playfair Display', 'Cairo', serif;
}

.divider-left {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-top: 0.8rem;
}

.about-main-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-family: 'Cairo', sans-serif;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    direction: rtl;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(197, 160, 89, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.feature-item:hover .feature-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.feature-text {
    text-align: right;
}

.feature-text h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.4rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-family: 'Cairo', sans-serif;
}

.about-image-wrapper {
    display: flex;
    justify-content: center;
}

.about-img-box {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.about-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--secondary);
    color: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.08);
}

.exp-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.exp-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.3rem;
    font-family: 'Cairo', sans-serif;
    letter-spacing: 1px;
}

/* Contact Us Section */
.contact-section {
    background: linear-gradient(to bottom, #fdfbf7, #f7f5f0);
}

.section-subtitle {
    font-family: 'Cairo', sans-serif;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
    margin-top: 3.5rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    padding: 1.8rem;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition);
    direction: rtl;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.12);
}

.card-icon {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(197, 160, 89, 0.05);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.info-card:hover .card-icon {
    background: var(--primary);
    color: #fff;
}

.card-details {
    text-align: right;
}

.card-details h4 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.3rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
}

.card-details a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    direction: ltr;
}

.card-details a:hover {
    color: var(--primary-dark);
}

.card-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    font-family: 'Cairo', sans-serif;
}

.address-text {
    font-size: 1.05rem !important;
    color: var(--secondary) !important;
    font-weight: 500;
}

.contact-form-panel {
    display: flex;
}

.form-container-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    width: 100%;
}

.form-container-glass h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 0.4rem;
    text-align: right;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

.form-container-glass p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

.form-group-lux {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: right;
}

.form-group-lux label {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    right: 15px;
    color: var(--primary);
    font-size: 1rem;
    pointer-events: none;
}

.input-wrapper input, .input-wrapper textarea {
    width: 100%;
    padding: 0.9rem 45px 0.9rem 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    background: #fff;
    text-align: right;
}

.input-wrapper input:focus, .input-wrapper textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.15);
}

.textarea-wrapper i {
    top: 15px;
}

.btn-contact-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem;
    background: #25d366; /* WhatsApp Green */
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    font-family: 'Cairo', sans-serif;
}

.btn-contact-submit:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.3);
}

.btn-contact-submit i {
    font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .about-image-wrapper {
        order: -1;
    }
    
    .about-main-img {
        height: 400px;
    }
    
    .about-experience-badge {
        left: 20px;
    }
    
    .section-title-left {
        text-align: center;
    }
    
    .divider-left {
        margin: 0.8rem auto 0;
    }
    
    .about-content {
        text-align: center;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-text {
        text-align: center;
    }
}

/* Shop Header Banner */
.shop-header-banner {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.97), rgba(10, 10, 10, 0.99));
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    position: relative;
    overflow: hidden;
}

.shop-header-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.08;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.shop-header-title {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.6rem;
    font-family: 'Playfair Display', 'Cairo', serif;
    font-weight: 700;
}

.shop-header-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Cairo', sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

/* Shop Layout Structure */
.shop-section {
    background: #fdfbf7;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    direction: rtl;
}

.shop-sidebar {
    position: relative;
}

.filter-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.02);
    position: sticky;
    top: 110px;
    z-index: 10;
}

.filter-group {
    margin-bottom: 2rem;
    border-bottom: 1px dashed rgba(197, 160, 89, 0.2);
    padding-bottom: 2rem;
}

.filter-group:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Cairo', sans-serif;
}

.filter-title i {
    color: var(--primary);
    font-size: 1rem;
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.filter-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.filter-link:hover {
    background: rgba(197, 160, 89, 0.04);
    color: var(--primary);
    transform: translateX(-5px);
}

.filter-link.active {
    background: rgba(197, 160, 89, 0.08);
    color: var(--primary) !important;
    font-weight: 700;
    border-right: 3px solid var(--primary);
    padding-right: 1.25rem;
    border-color: rgba(197, 160, 89, 0.1);
}

.link-text {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cat-icon {
    font-size: 0.95rem;
    color: var(--primary);
}

.arrow-icon {
    font-size: 0.75rem;
    opacity: 0.4;
    transition: var(--transition);
}

.filter-link:hover .arrow-icon {
    opacity: 1;
    transform: translateX(-3px);
}

.filter-link.active .arrow-icon {
    color: var(--primary);
    opacity: 1;
}

.male-icon {
    color: #3498db;
}

.female-icon {
    color: #e74c3c;
}

/* Price Range Filter Form */
.price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-inputs {
    display: flex;
    gap: 0.8rem;
}

.price-input-box {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.price-input-box label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Cairo', sans-serif;
}

.price-input-box input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    text-align: right;
    outline: none;
    transition: var(--transition);
    background: #fff;
}

.price-input-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.1);
}

.btn-price-apply {
    width: 100%;
    padding: 0.85rem;
    background: var(--secondary);
    color: #fff;
    border: 1px solid var(--secondary);
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-price-apply:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.2);
}

.clear-filters-box {
    margin-top: 1.5rem;
    text-align: center;
}

.btn-clear-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e74c3c;
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-clear-all:hover {
    color: #c0392b;
    transform: scale(1.02);
}

/* Shop Control Bar */
.shop-control-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: #fff;
    padding: 1rem 1.8rem;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.01);
    direction: rtl;
}

.results-count {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-family: 'Cairo', sans-serif;
}

.results-count span {
    font-weight: 700;
    color: var(--secondary);
}

.sort-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sort-selector-wrapper label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-family: 'Cairo', sans-serif;
}

.sort-selector-wrapper select {
    padding: 0.6rem 2.5rem 0.6rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c5a059'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat left 12px center/18px;
    cursor: pointer;
    text-align: right;
    appearance: none;
}

.sort-selector-wrapper select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.1);
}

/* Active Tags Section */
.active-tags-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    direction: rtl;
}

.active-tags-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
}

.active-tags-list {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: rgba(197, 160, 89, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.15);
    color: var(--primary);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
    transition: var(--transition);
}

.filter-tag i {
    font-size: 0.75rem;
    opacity: 0.7;
    transition: var(--transition);
}

.filter-tag:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
}

.filter-tag:hover i {
    color: #fff;
    opacity: 1;
}

/* Shop Products Grid override */
.shop-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* Pagination Styling */
.pagination-wrapper {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

/* No Products Found */
.no-products-box {
    text-align: center;
    padding: 5rem 2rem;
    background: #fff;
    border-radius: 24px;
    border: 1px dashed rgba(197, 160, 89, 0.25);
    max-width: 600px;
    margin: 3rem auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}

.icon-empty {
    font-size: 3.8rem;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.no-products-box h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.6rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

.no-products-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-family: 'Cairo', sans-serif;
}

.btn-reset-shop {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.15);
}

.btn-reset-shop:hover {
    background: var(--secondary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Responsive Styles for Shop */
@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .shop-sidebar {
        order: -1;
    }
    
    .filter-card {
        position: relative;
        top: 0;
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .shop-control-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        padding: 1.2rem;
    }
    
    .sort-selector-wrapper {
        justify-content: space-between;
    }
    
    .results-count {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .shop-grid {
        grid-template-columns: 1fr !important;
    }
    
    .price-inputs {
        flex-direction: column;
    }
}

/* Checkout Page Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    direction: rtl;
    align-items: start;
}

.checkout-summary-column,
.checkout-form-column {
    width: 100%;
}

.summary-card,
.checkout-form-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.02);
}

.summary-card-title,
.form-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding-bottom: 0.8rem;
    font-family: 'Cairo', sans-serif;
}

.summary-card-title i,
.form-card-title i {
    color: var(--primary);
}

.form-card-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Cairo', sans-serif;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

/* Cart Items Scroll List */
.cart-items-scroll-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 380px;
    overflow-y: auto;
    padding-left: 0.5rem;
    margin-bottom: 2rem;
}

.cart-item-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 0.9rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
}

.cart-item-card:hover {
    border-color: rgba(197, 160, 89, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.cart-item-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.2rem;
    font-family: 'Cairo', sans-serif;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
}

.cart-item-quantity-control {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.btn-qty {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-qty:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.qty-display {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 15px;
    text-align: center;
}

.btn-remove-item {
    background: transparent;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 0.95rem;
    opacity: 0.6;
    transition: var(--transition);
    padding: 0.4rem;
}

.btn-remove-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Pricing Summary Box */
.pricing-summary-box {
    background: rgba(197, 160, 89, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 16px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-family: 'Cairo', sans-serif;
    margin-bottom: 0.6rem;
}

.pricing-row:last-child {
    margin-bottom: 0;
}

.total-row {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: var(--secondary) !important;
}

.shipping-free-tag {
    color: #27ae60;
    font-weight: 700;
}

.shipping-notice-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(46, 204, 113, 0.08);
    border: 1px dashed rgba(46, 204, 113, 0.3);
    color: #27ae60;
    font-size: 0.85rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    line-height: 1.4;
}

/* Luxury Checkout Form inputs */
.luxury-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-input-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.form-input-group label i {
    color: var(--primary);
}

.form-input-group input,
.form-input-group select,
.form-input-group textarea {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    background: #fff;
    text-align: right;
}

.form-input-group select {
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c5a059'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat left 16px center/20px;
    padding-left: 2.5rem;
}

.form-input-group input:focus,
.form-input-group select:focus,
.form-input-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.1);
}

.btn-submit-order {
    width: 100%;
    padding: 1.1rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-submit-order:hover {
    background: var(--secondary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Confirmation Success Layout */
.confirmation-success-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 28px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.02);
    text-align: center;
}

.success-icon-box {
    font-size: 4.5rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(46, 204, 113, 0.2));
}

.confirmation-success-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Cairo', sans-serif;
    margin-bottom: 1rem;
}

.order-status-alert {
    font-size: 1.15rem;
    color: var(--text);
    font-family: 'Cairo', sans-serif;
    margin-bottom: 0.8rem;
}

.order-status-alert strong {
    color: var(--primary);
    font-size: 1.25rem;
}

.order-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-family: 'Cairo', sans-serif;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* WhatsApp Action Card in confirmation */
.whatsapp-action-card {
    background: rgba(39, 174, 96, 0.04);
    border: 1px solid rgba(39, 174, 96, 0.2);
    border-radius: 20px;
    padding: 1.8rem;
    margin: 2rem auto;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    text-align: right;
    direction: rtl;
    max-width: 650px;
}

.whatsapp-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2ecc71;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.whatsapp-content h4 {
    font-size: 1.1rem;
    color: #27ae60;
    margin-bottom: 0.5rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

.whatsapp-content p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 1.2rem;
    font-family: 'Cairo', sans-serif;
    line-height: 1.5;
}

.btn-whatsapp-confirm {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    background: #2ecc71;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.25);
}

.btn-whatsapp-confirm:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

/* Order breakdown card in confirmation */
.order-details-card {
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.12);
    border-radius: 20px;
    padding: 2rem;
    text-align: right;
    direction: rtl;
    max-width: 650px;
    margin: 0 auto 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
}

.details-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cairo', sans-serif;
}

.details-title i {
    color: var(--primary);
}

.details-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.info-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Cairo', sans-serif;
}

.info-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    font-family: 'Cairo', sans-serif;
}

.details-divider {
    height: 1px;
    background: rgba(197, 160, 89, 0.12);
    margin: 1.5rem 0;
}

.items-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
}

.purchased-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.purchased-item-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-family: 'Cairo', sans-serif;
}

.item-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.item-name {
    color: var(--secondary);
    font-weight: 600;
}

.item-qty {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.item-subtotal {
    color: var(--primary);
    font-weight: 700;
}

.details-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-family: 'Cairo', sans-serif;
    margin-bottom: 0.6rem;
}

.details-summary-row.total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 0.5rem;
}

.actions-footer {
    display: flex;
    justify-content: center;
}

.btn-return-shop {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: var(--secondary);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-return-shop:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Responsive checkout & confirmation */
@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-summary-column {
        order: 1;
    }
}

@media (max-width: 768px) {
    .details-info-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .whatsapp-action-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .whatsapp-content h4 {
        margin-top: 0.5rem;
    }
}

/* Custom Premium Pagination Styling for Shop */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    gap: 0.5rem;
    margin: 2rem 0;
    direction: ltr; /* Keep navigation arrows in correct direction */
}

.page-item {
    display: inline-block;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    background-color: rgba(255, 255, 255, 0.85);
    color: var(--secondary);
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.page-item .page-link:hover {
    border-color: var(--primary);
    background-color: rgba(197, 160, 89, 0.08);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.1);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary), #a8843f);
    border-color: var(--primary);
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25);
}

.page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.05);
    transform: none !important;
    box-shadow: none !important;
}


