* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f8f8;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Styles */
        header {
            background-color: #383838;
            color: white;
            padding: 15px 0;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            gap: 20px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #f0c14b;
        }
        
        /* Cart Header */
        .cart-header {
            margin: 30px 0;
            text-align: center;
        }
        
        .cart-header h1 {
            font-size: 28px;
            color: #383838;
            margin-bottom: 10px;
        }
        
        .cart-steps {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .step {
            display: flex;
            align-items: center;
            margin: 0 15px;
            color: #777;
        }
        
        .step.active {
            color: #383838;
            font-weight: bold;
        }
        
        .step-number {
            background-color: #ddd;
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 14px;
        }
        
        .step.active .step-number {
            background-color: #383838;
        }
        
        /* Cart Content */
        .cart-content {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }
        
        .cart-items {
            flex: 3;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 20px;
        }
        
        .cart-summary {
            flex: 1;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            padding: 20px;
            height: fit-content;
        }
        
        /* Cart Item */
        .cart-item {
            display: flex;
            border-bottom: 1px solid #eee;
            padding: 20px 0;
            position: relative;
        }
        
        .cart-item:last-child {
            border-bottom: none;
        }
        
        .item-image {
            width: 100px;
            height: 100px;
            background-color: #f0f0f0;
            border-radius: 5px;
            overflow: hidden;
            margin-right: 20px;
        }
        
        .item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .item-details {
            flex: 1;
        }
        
        .item-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #383838;
        }
        
        .item-variant {
            color: #777;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .item-price {
            font-weight: 600;
            color: #383838;
            font-size: 18px;
        }
        
        .item-controls {
            display: flex;
            align-items: center;
            margin-top: 10px;
        }
        
        .quantity-controls {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .quantity-btn {
            background: none;
            border: none;
            width: 30px;
            height: 30px;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f5f5f5;
        }
        
        .quantity-btn:hover {
            background-color: #e9e9e9;
        }
        
        .quantity-input {
            width: 40px;
            height: 30px;
            border: none;
            text-align: center;
            font-size: 16px;
        }
        
        .remove-btn {
            margin-left: 15px;
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
        }
        
        .remove-btn:hover {
            color: #d9534f;
        }
        
        .remove-btn i {
            margin-right: 5px;
        }
        
        /* Cart Summary */
        .summary-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #383838;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .summary-row.total {
            font-weight: bold;
            font-size: 18px;
            border-top: 1px solid #eee;
            padding-top: 15px;
            margin-top: 15px;
        }
        
        .checkout-btn {
            background-color: #383838;
            color: white;
            border: none;
            padding: 12px;
            width: 100%;
            font-size: 16px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 20px;
            transition: background-color 0.3s;
        }
        
        .checkout-btn:hover {
            background-color: #2a2a2a;
        }
        
        .continue-shopping {
            text-align: center;
            margin-top: 20px;
        }
        
        .continue-shopping a {
            color: #383838;
            text-decoration: none;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
        }
        
        .continue-shopping a:hover {
            text-decoration: underline;
        }
        
        .continue-shopping i {
            margin-right: 5px;
        }
        
        .coupon-input {
            display: flex;
            margin-bottom: 20px;
        }
        
        .coupon-input input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px 0 0 4px;
            font-size: 14px;
        }
        
        .coupon-input button {
            background-color: #383838;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 14px;
        }
        
        .coupon-input button:hover {
            background-color: #2a2a2a;
        }
        
        /* Empty Cart */
        .empty-cart {
            text-align: center;
            padding: 50px 0;
        }
        
        .empty-cart i {
            font-size: 50px;
            color: #ddd;
            margin-bottom: 20px;
        }
        
        .empty-cart h2 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #383838;
        }
        
        .empty-cart p {
            color: #777;
            margin-bottom: 30px;
        }
        
        .shop-now-btn {
            background-color: #383838;
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .shop-now-btn:hover {
            background-color: #2a2a2a;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .cart-content {
                flex-direction: column;
            }
            
            .item-image {
                width: 80px;
                height: 80px;
            }
            
            .cart-steps {
                flex-wrap: wrap;
            }
            
            .step {
                margin-bottom: 10px;
            }
}