.logo-container{
    margin-top: 0px;
    margin-bottom: 0px;
    width: 60px;
}

/* Shopping Cart Page Styles */
body {
    font-family: 'Cairo', sans-serif;
    background-color: #f8f9fa;
}

/* Cart Section */
.cart-section {
    padding: 40px 0;
    min-height: 80vh;
}

/* Continue Shopping Link */
.continue-shopping-link {
    color: #C39F2B;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.continue-shopping-link:hover {
    color: #a67c1a;
    text-decoration: underline;
}

/* Cart Items Container (Right Side) */
.cart-items-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.cart-title {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.cart-subtitle {
    color: #666;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    text-align: center;
}

/* Cart Item */
.cart-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 150px;
    height: 150px;
    margin-right: -90px;
    flex-shrink: 0;
    order: 3;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
    text-align: center;
    order: 2;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    position: absolute;
    top: 10px;
    right: 10px;
    order: 1;
}

.remove-item-btn:hover {
    color: #c82333;
    transform: scale(1.1);
}

.product-name {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.product-size, .product-color {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
    text-align: center;
}

/* Order Summary (Left Side) */
.order-summary {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

/* Summary Table */
.summary-table {
    margin-bottom: 25px;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.header-cell {
    font-weight: 600;
    color: #333;
    text-align: center;
    font-size: 16px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.cell {
    text-align: center;
    font-size: 14px;
}

.total-cell, .price-cell {
    font-weight: 600;
    color: #333;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C39F2B;
    border-radius: 20px;
    padding: 5px 15px;
    gap: 15px;
}

.qty-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.qty-btn:hover {
    background-color: rgba(255,255,255,0.2);
}

.qty-number {
    color: white;
    font-weight: 600;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

/* Special Rows */
.subtotal-row, .shipping-row, .grand-total-row {
    border-bottom: none;
    padding: 15px 0;
}

.subtotal-row {
    border-top: 2px solid #eee;
    margin-top: 20px;
}

.shipping-row {
    border-top: 1px solid #eee;
}

.grand-total-row {
    border-top: 2px solid #C39F2B;
    margin-top: 20px;
    padding-top: 20px;
}

.subtotal-cell, .shipping-cell, .grand-total-cell {
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.subtotal-label, .shipping-label, .grand-total-label {
    color: #666;
    font-size: 14px;
    text-align: right;
}

.grand-total-cell {
    color: #C39F2B;
    font-size: 18px;
}

/* Next Button */
.next-btn {
    width: 100%;
    background-color: #C39F2B;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.next-btn:hover {
    background-color: #a67c1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(195, 159, 43, 0.3);
}

/* Responsive Design */
@media (max-width: 1399px) and (min-width: 1200px) {
    .cart-item-image {
        width: 120px;
        height: 120px;
        margin-right: -60px;
    }
    
    .remove-item-btn {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .cart-item-image {
        width: 100px;
        height: 100px;
        margin-right: -40px;
    }
    
    .remove-item-btn {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 991px) {
    .cart-section {
        padding: 20px 0;
    }
    
    .cart-items-container, .order-summary {
        margin-bottom: 20px;
        padding: 20px;
    }
    
    .cart-title {
        font-size: 28px;
    }
    
    .cart-subtitle {
        font-size: 18px;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
        margin-right: -20px;
    }
    
    .remove-item-btn {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .table-header, .table-row {
        gap: 10px;
    }
    
    .header-cell, .cell {
        font-size: 13px;
    }
    
    .quantity-selector {
        padding: 3px 10px;
        gap: 10px;
    }
    
    .qty-btn {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .cart-item-image {
        width: 70px;
        height: 70px;
        margin-right: -10px;
    }
    
    .remove-item-btn {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
    .product-name {
        font-size: 15px;
    }
    
    .product-size, .product-color {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .cart-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 0;
    }
    
    .cart-item-image {
        width: 100px;
        height: 100px;
        margin-right: 0;
        margin-bottom: 15px;
        order: 1;
    }
    
    .cart-item-details {
        order: 2;
        margin-bottom: 15px;
    }
    
    .remove-item-btn {
        position: absolute;
        top: 5px;
        right: 5px;
        order: 3;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .header-cell:nth-child(3), .cell:nth-child(3) {
        display: none;
    }
    
    .quantity-selector {
        padding: 2px 8px;
        gap: 8px;
    }
    
    .qty-btn {
        width: 18px;
        height: 18px;
        font-size: 14px;
    }
}

/* Creative Footer */
.footer-section {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 50%, #2a2a2a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

/* Decorative Top Border */
.footer-top-border {
    height: 4px;
    background: linear-gradient(90deg, #DBB63F 0%, #c19b2e 50%, #DBB63F 100%);
    position: relative;
}

.footer-top-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

/* Main Footer Content */
.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand {
    margin-bottom: 30px;
}

.brand-logo-footer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
}

.brand-text {
    flex: 1;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #DBB63F;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.brand-tagline {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0 0 0;
    font-style: italic;
}

.brand-description {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-awards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #DBB63F;
    font-size: 14px;
    font-weight: 500;
}

.award-item i {
    font-size: 16px;
}

/* Footer Links */
.footer-links {
    margin-bottom: 30px;
    text-align: center;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #DBB63F, #c19b2e);
    border-radius: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 15px;
}

.footer-menu a::before {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: #DBB63F;
}

.footer-menu a:hover {
    color: #DBB63F;
    padding-right: 20px;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #DBB63F, #c19b2e);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.social-icon i {
    position: relative;
    z-index: 2;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(219, 182, 63, 0.3);
}

.social-icon.facebook {
    background: #1877f2;
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(219, 182, 63, 0.3);
}

.social-icon::before {
    opacity: 1;
}

.social-icon i {
    color: #fff;
    transform: scale(1.1);
}

/* Footer Social Section */
.footer-social {
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 25px 0;
    background: rgba(0,0,0,0.1);
}

.footer-copyright p {
    color: #999;
    margin: 0;
    font-size: 14px;
}


/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .brand-logo-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-awards {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}
